-
Notifications
You must be signed in to change notification settings - Fork 33
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 #673 from mackerelio/bump-version-0.59.1
Release version 0.59.1
- Loading branch information
Showing
6 changed files
with
49 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,18 @@ | ||
# Changelog | ||
|
||
## 0.59.1 (2025-01-27) | ||
|
||
* Bump the stable-packages group across 1 directory with 3 updates #672 (dependabot[bot]) | ||
* Fix CI build #671 (ne-sachirou) | ||
* Bump golang.org/x/net from 0.23.0 to 0.33.0 #669 (dependabot[bot]) | ||
* host-status option doesn't receive File in alerts command #668 (do-su-0805) | ||
* Use strings.Replacer and strings.ReplaceAll where appropriate #667 (itchyny) | ||
* use mackerelio/[email protected] #666 (yseto) | ||
* Bump alpine from 3.19.1 to 3.20.3 #661 (dependabot[bot]) | ||
* Bump golang from 1.22-alpine to 1.23-alpine #660 (dependabot[bot]) | ||
* Bump docker/build-push-action from 5 to 6 #654 (dependabot[bot]) | ||
|
||
|
||
## 0.59.0 (2024-11-26) | ||
|
||
* Support query monitorings #664 (rmatsuoka) | ||
|
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,26 @@ | ||
mkr (0.59.1-1.v2) stable; urgency=low | ||
|
||
* Bump the stable-packages group across 1 directory with 3 updates (by dependabot[bot]) | ||
<https://github.com/mackerelio/mkr/pull/672> | ||
* Fix CI build (by ne-sachirou) | ||
<https://github.com/mackerelio/mkr/pull/671> | ||
* Bump golang.org/x/net from 0.23.0 to 0.33.0 (by dependabot[bot]) | ||
<https://github.com/mackerelio/mkr/pull/669> | ||
* host-status option doesn't receive File in alerts command (by do-su-0805) | ||
<https://github.com/mackerelio/mkr/pull/668> | ||
* Use strings.Replacer and strings.ReplaceAll where appropriate (by itchyny) | ||
<https://github.com/mackerelio/mkr/pull/667> | ||
* use mackerelio/[email protected] (by yseto) | ||
<https://github.com/mackerelio/mkr/pull/666> | ||
* Bump alpine from 3.19.1 to 3.20.3 (by dependabot[bot]) | ||
<https://github.com/mackerelio/mkr/pull/661> | ||
* Bump golang from 1.22-alpine to 1.23-alpine (by dependabot[bot]) | ||
<https://github.com/mackerelio/mkr/pull/660> | ||
* Bump docker/build-push-action from 5 to 6 (by dependabot[bot]) | ||
<https://github.com/mackerelio/mkr/pull/654> | ||
|
||
-- mackerel <[email protected]> Mon, 27 Jan 2025 15:50:52 +0000 | ||
|
||
mkr (0.59.0-1.v2) stable; urgency=low | ||
|
||
* Support query monitorings (by rmatsuoka) | ||
|
File renamed without changes.
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 |
---|---|---|
|
@@ -35,6 +35,17 @@ rm -f %{buildroot}%{_bindir}/%{name} | |
%{_bindir}/%{name} | ||
|
||
%changelog | ||
* Mon Jan 27 2025 <[email protected]> - 0.59.1 | ||
- Bump the stable-packages group across 1 directory with 3 updates (by dependabot[bot]) | ||
- Fix CI build (by ne-sachirou) | ||
- Bump golang.org/x/net from 0.23.0 to 0.33.0 (by dependabot[bot]) | ||
- host-status option doesn't receive File in alerts command (by do-su-0805) | ||
- Use strings.Replacer and strings.ReplaceAll where appropriate (by itchyny) | ||
- use mackerelio/[email protected] (by yseto) | ||
- Bump alpine from 3.19.1 to 3.20.3 (by dependabot[bot]) | ||
- Bump golang from 1.22-alpine to 1.23-alpine (by dependabot[bot]) | ||
- Bump docker/build-push-action from 5 to 6 (by dependabot[bot]) | ||
|
||
* Tue Nov 26 2024 <[email protected]> - 0.59.0 | ||
- Support query monitorings (by rmatsuoka) | ||
- fix unintentionally return in validateRules (by rmatsuoka) | ||
|
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.59.0" | ||
const version = "0.59.1" | ||
|
||
var gitcommit string |