Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version 0.47.0 #867

Merged
merged 1 commit into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 0.47.0 (2024-06-12)

* return CRITICAL instead of UNKNOWN when check-redis reachable is failed #865 (kmuto)
* Bump the golang-x group with 3 updates #863 (dependabot[bot])
* use go 1.22.x on build phase #862 (lufia)
* update dependencies #861 (lufia)
* [check-mailq] fix pattern #857 (lufia)
* Bump github.com/docker/docker from 25.0.4+incompatible to 25.0.5+incompatible #839 (dependabot[bot])


## 0.46.3 (2024-04-23)

* Revert "Bump github.com/miekg/dns from 1.1.50 to 1.1.59" #840 (ne-sachirou)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = 0.46.3
VERSION = 0.47.0
CURRENT_REVISION = $(shell git rev-parse --short HEAD)
ifeq ($(OS),Windows_NT)
GOPATH_ROOT:=$(shell cygpath ${GOPATH})
Expand Down
2 changes: 1 addition & 1 deletion mackerel-check.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func run(args []string) int {
return exitOK
}

const version = "0.46.3"
const version = "0.47.0"

var gitcommit string

Expand Down
17 changes: 17 additions & 0 deletions packaging/deb-v2/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
mackerel-check-plugins (0.47.0-1.v2) stable; urgency=low

* return CRITICAL instead of UNKNOWN when check-redis reachable is failed (by kmuto)
<https://github.com/mackerelio/go-check-plugins/pull/865>
* Bump the golang-x group with 3 updates (by dependabot[bot])
<https://github.com/mackerelio/go-check-plugins/pull/863>
* use go 1.22.x on build phase (by lufia)
<https://github.com/mackerelio/go-check-plugins/pull/862>
* update dependencies (by lufia)
<https://github.com/mackerelio/go-check-plugins/pull/861>
* [check-mailq] fix pattern (by lufia)
<https://github.com/mackerelio/go-check-plugins/pull/857>
* Bump github.com/docker/docker from 25.0.4+incompatible to 25.0.5+incompatible (by dependabot[bot])
<https://github.com/mackerelio/go-check-plugins/pull/839>

-- mackerel <[email protected]> Wed, 12 Jun 2024 06:58:04 +0000

mackerel-check-plugins (0.46.3-1.v2) stable; urgency=low

* Revert "Bump github.com/miekg/dns from 1.1.50 to 1.1.59" (by ne-sachirou)
Expand Down
8 changes: 8 additions & 0 deletions packaging/rpm/mackerel-check-plugins-v2.spec
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ done
%{__targetdir}/*

%changelog
* Wed Jun 12 2024 <[email protected]> - 0.47.0
- return CRITICAL instead of UNKNOWN when check-redis reachable is failed (by kmuto)
- Bump the golang-x group with 3 updates (by dependabot[bot])
- use go 1.22.x on build phase (by lufia)
- update dependencies (by lufia)
- [check-mailq] fix pattern (by lufia)
- Bump github.com/docker/docker from 25.0.4+incompatible to 25.0.5+incompatible (by dependabot[bot])

* Tue Apr 23 2024 <[email protected]> - 0.46.3
- Revert "Bump github.com/miekg/dns from 1.1.50 to 1.1.59" (by ne-sachirou)
- Bump github.com/go-ldap/ldap/v3 from 3.4.4 to 3.4.8 (by dependabot[bot])
Expand Down
Loading