Skip to content

Commit df4dde4

Browse files
authored
Merge pull request #867 from mackerelio/bump-version-0.47.0
Release version 0.47.0
2 parents 9d5405b + fd07a1c commit df4dde4

6 files changed

+37
-2
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 0.47.0 (2024-06-12)
4+
5+
* return CRITICAL instead of UNKNOWN when check-redis reachable is failed #865 (kmuto)
6+
* Bump the golang-x group with 3 updates #863 (dependabot[bot])
7+
* use go 1.22.x on build phase #862 (lufia)
8+
* update dependencies #861 (lufia)
9+
* [check-mailq] fix pattern #857 (lufia)
10+
* Bump github.com/docker/docker from 25.0.4+incompatible to 25.0.5+incompatible #839 (dependabot[bot])
11+
12+
313
## 0.46.3 (2024-04-23)
414

515
* Revert "Bump github.com/miekg/dns from 1.1.50 to 1.1.59" #840 (ne-sachirou)

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = 0.46.3
1+
VERSION = 0.47.0
22
CURRENT_REVISION = $(shell git rev-parse --short HEAD)
33
ifeq ($(OS),Windows_NT)
44
GOPATH_ROOT:=$(shell cygpath ${GOPATH})

mackerel-check.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func run(args []string) int {
6060
return exitOK
6161
}
6262

63-
const version = "0.46.3"
63+
const version = "0.47.0"
6464

6565
var gitcommit string
6666

packaging/deb-v2/debian/changelog

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
mackerel-check-plugins (0.47.0-1.v2) stable; urgency=low
2+
3+
* return CRITICAL instead of UNKNOWN when check-redis reachable is failed (by kmuto)
4+
<https://github.com/mackerelio/go-check-plugins/pull/865>
5+
* Bump the golang-x group with 3 updates (by dependabot[bot])
6+
<https://github.com/mackerelio/go-check-plugins/pull/863>
7+
* use go 1.22.x on build phase (by lufia)
8+
<https://github.com/mackerelio/go-check-plugins/pull/862>
9+
* update dependencies (by lufia)
10+
<https://github.com/mackerelio/go-check-plugins/pull/861>
11+
* [check-mailq] fix pattern (by lufia)
12+
<https://github.com/mackerelio/go-check-plugins/pull/857>
13+
* Bump github.com/docker/docker from 25.0.4+incompatible to 25.0.5+incompatible (by dependabot[bot])
14+
<https://github.com/mackerelio/go-check-plugins/pull/839>
15+
16+
-- mackerel <[email protected]> Wed, 12 Jun 2024 06:58:04 +0000
17+
118
mackerel-check-plugins (0.46.3-1.v2) stable; urgency=low
219

320
* Revert "Bump github.com/miekg/dns from 1.1.50 to 1.1.59" (by ne-sachirou)

packaging/rpm/mackerel-check-plugins-v2.spec

+8
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ done
3636
%{__targetdir}/*
3737

3838
%changelog
39+
* Wed Jun 12 2024 <[email protected]> - 0.47.0
40+
- return CRITICAL instead of UNKNOWN when check-redis reachable is failed (by kmuto)
41+
- Bump the golang-x group with 3 updates (by dependabot[bot])
42+
- use go 1.22.x on build phase (by lufia)
43+
- update dependencies (by lufia)
44+
- [check-mailq] fix pattern (by lufia)
45+
- Bump github.com/docker/docker from 25.0.4+incompatible to 25.0.5+incompatible (by dependabot[bot])
46+
3947
* Tue Apr 23 2024 <[email protected]> - 0.46.3
4048
- Revert "Bump github.com/miekg/dns from 1.1.50 to 1.1.59" (by ne-sachirou)
4149
- Bump github.com/go-ldap/ldap/v3 from 3.4.4 to 3.4.8 (by dependabot[bot])

0 commit comments

Comments
 (0)