Skip to content

Commit 57f3f0c

Browse files
authored
Merge pull request #673 from mackerelio/bump-version-0.59.1
Release version 0.59.1
2 parents 8857b62 + fa51cad commit 57f3f0c

File tree

6 files changed

+49
-2
lines changed

6 files changed

+49
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 0.59.1 (2025-01-27)
4+
5+
* Bump the stable-packages group across 1 directory with 3 updates #672 (dependabot[bot])
6+
* Fix CI build #671 (ne-sachirou)
7+
* Bump golang.org/x/net from 0.23.0 to 0.33.0 #669 (dependabot[bot])
8+
* host-status option doesn't receive File in alerts command #668 (do-su-0805)
9+
* Use strings.Replacer and strings.ReplaceAll where appropriate #667 (itchyny)
10+
* use mackerelio/[email protected] #666 (yseto)
11+
* Bump alpine from 3.19.1 to 3.20.3 #661 (dependabot[bot])
12+
* Bump golang from 1.22-alpine to 1.23-alpine #660 (dependabot[bot])
13+
* Bump docker/build-push-action from 5 to 6 #654 (dependabot[bot])
14+
15+
316
## 0.59.0 (2024-11-26)
417

518
* Support query monitorings #664 (rmatsuoka)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
BIN := mkr
2-
VERSION := 0.59.0
2+
VERSION := 0.59.1
33
CURRENT_REVISION := $(shell git rev-parse --short HEAD)
44
BUILD_LDFLAGS := "-w -s -X main.gitcommit=$(CURRENT_REVISION)"
55
export CGO_ENABLED := 0

packaging/deb-v2/debian/changelog

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
mkr (0.59.1-1.v2) stable; urgency=low
2+
3+
* Bump the stable-packages group across 1 directory with 3 updates (by dependabot[bot])
4+
<https://github.com/mackerelio/mkr/pull/672>
5+
* Fix CI build (by ne-sachirou)
6+
<https://github.com/mackerelio/mkr/pull/671>
7+
* Bump golang.org/x/net from 0.23.0 to 0.33.0 (by dependabot[bot])
8+
<https://github.com/mackerelio/mkr/pull/669>
9+
* host-status option doesn't receive File in alerts command (by do-su-0805)
10+
<https://github.com/mackerelio/mkr/pull/668>
11+
* Use strings.Replacer and strings.ReplaceAll where appropriate (by itchyny)
12+
<https://github.com/mackerelio/mkr/pull/667>
13+
* use mackerelio/[email protected] (by yseto)
14+
<https://github.com/mackerelio/mkr/pull/666>
15+
* Bump alpine from 3.19.1 to 3.20.3 (by dependabot[bot])
16+
<https://github.com/mackerelio/mkr/pull/661>
17+
* Bump golang from 1.22-alpine to 1.23-alpine (by dependabot[bot])
18+
<https://github.com/mackerelio/mkr/pull/660>
19+
* Bump docker/build-push-action from 5 to 6 (by dependabot[bot])
20+
<https://github.com/mackerelio/mkr/pull/654>
21+
22+
-- mackerel <[email protected]> Mon, 27 Jan 2025 15:50:52 +0000
23+
124
mkr (0.59.0-1.v2) stable; urgency=low
225

326
* Support query monitorings (by rmatsuoka)
File renamed without changes.

packaging/rpm/mkr-v2.spec

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,17 @@ rm -f %{buildroot}%{_bindir}/%{name}
3535
%{_bindir}/%{name}
3636

3737
%changelog
38+
* Mon Jan 27 2025 <[email protected]> - 0.59.1
39+
- Bump the stable-packages group across 1 directory with 3 updates (by dependabot[bot])
40+
- Fix CI build (by ne-sachirou)
41+
- Bump golang.org/x/net from 0.23.0 to 0.33.0 (by dependabot[bot])
42+
- host-status option doesn't receive File in alerts command (by do-su-0805)
43+
- Use strings.Replacer and strings.ReplaceAll where appropriate (by itchyny)
44+
- use mackerelio/[email protected] (by yseto)
45+
- Bump alpine from 3.19.1 to 3.20.3 (by dependabot[bot])
46+
- Bump golang from 1.22-alpine to 1.23-alpine (by dependabot[bot])
47+
- Bump docker/build-push-action from 5 to 6 (by dependabot[bot])
48+
3849
* Tue Nov 26 2024 <[email protected]> - 0.59.0
3950
- Support query monitorings (by rmatsuoka)
4051
- fix unintentionally return in validateRules (by rmatsuoka)

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package main
22

3-
const version = "0.59.0"
3+
const version = "0.59.1"
44

55
var gitcommit string

0 commit comments

Comments
 (0)