-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #844 from mackerelio/bump-version-0.74.0
Release version 0.74.0
- Loading branch information
Showing
7 changed files
with
55 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
mackerel-agent (0.74.0-1.systemd) stable; urgency=low | ||
|
||
* [ci]fix timeout (by yseto) | ||
<https://github.com/mackerelio/mackerel-agent/pull/843> | ||
* use ubuntu-20.04 (by yseto) | ||
<https://github.com/mackerelio/mackerel-agent/pull/842> | ||
* refactor(config/validate): use `candidates` instead of `parentConfKeys` (by wafuwafu13) | ||
<https://github.com/mackerelio/mackerel-agent/pull/839> | ||
* improve purge stage of Debian package to remove id file and keep custom files (by kmuto) | ||
<https://github.com/mackerelio/mackerel-agent/pull/837> | ||
* fix(configtest): don't detect child key if parent key has already detected (by wafuwafu13) | ||
<https://github.com/mackerelio/mackerel-agent/pull/832> | ||
|
||
-- mackerel <[email protected]> Tue, 20 Dec 2022 09:02:12 +0000 | ||
|
||
mackerel-agent (0.73.3-1.systemd) stable; urgency=low | ||
|
||
* Fix config test (by ryuichi1208) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
mackerel-agent (0.74.0-1) stable; urgency=low | ||
|
||
* [ci]fix timeout (by yseto) | ||
<https://github.com/mackerelio/mackerel-agent/pull/843> | ||
* use ubuntu-20.04 (by yseto) | ||
<https://github.com/mackerelio/mackerel-agent/pull/842> | ||
* refactor(config/validate): use `candidates` instead of `parentConfKeys` (by wafuwafu13) | ||
<https://github.com/mackerelio/mackerel-agent/pull/839> | ||
* improve purge stage of Debian package to remove id file and keep custom files (by kmuto) | ||
<https://github.com/mackerelio/mackerel-agent/pull/837> | ||
* fix(configtest): don't detect child key if parent key has already detected (by wafuwafu13) | ||
<https://github.com/mackerelio/mackerel-agent/pull/832> | ||
|
||
-- mackerel <[email protected]> Tue, 20 Dec 2022 09:02:12 +0000 | ||
|
||
mackerel-agent (0.73.3-1) stable; urgency=low | ||
|
||
* Fix config test (by ryuichi1208) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,6 +54,13 @@ systemctl enable %{name}.service | |
%config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf | ||
|
||
%changelog | ||
* Tue Dec 20 2022 <[email protected]> - 0.74.0 | ||
- [ci]fix timeout (by yseto) | ||
- use ubuntu-20.04 (by yseto) | ||
- refactor(config/validate): use `candidates` instead of `parentConfKeys` (by wafuwafu13) | ||
- improve purge stage of Debian package to remove id file and keep custom files (by kmuto) | ||
- fix(configtest): don't detect child key if parent key has already detected (by wafuwafu13) | ||
|
||
* Wed Nov 9 2022 <[email protected]> - 0.73.3 | ||
- Fix config test (by ryuichi1208) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,6 +61,13 @@ fi | |
/usr/local/bin/%{name} | ||
|
||
%changelog | ||
* Tue Dec 20 2022 <[email protected]> - 0.74.0 | ||
- [ci]fix timeout (by yseto) | ||
- use ubuntu-20.04 (by yseto) | ||
- refactor(config/validate): use `candidates` instead of `parentConfKeys` (by wafuwafu13) | ||
- improve purge stage of Debian package to remove id file and keep custom files (by kmuto) | ||
- fix(configtest): don't detect child key if parent key has already detected (by wafuwafu13) | ||
|
||
* Wed Nov 9 2022 <[email protected]> - 0.73.3 | ||
- Fix config test (by ryuichi1208) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
package main | ||
|
||
const version = "0.73.3" | ||
const version = "0.74.0" | ||
|
||
var gitcommit string |