Skip to content

Commit 7d8da80

Browse files
committed
ready for next release and update changelogs. version: 0.34.0
1 parent ed10194 commit 7d8da80

8 files changed

+111
-2
lines changed

CHANGELOG.md

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

3+
## 0.34.0 (2020-04-03)
4+
5+
* Bump github.com/aws/aws-sdk-go from 1.29.24 to 1.29.30 #342 (dependabot-preview[bot])
6+
* Bump github.com/beevik/ntp from 0.2.0 to 0.3.0 #340 (dependabot-preview[bot])
7+
* Bump github.com/aws/aws-sdk-go from 1.29.14 to 1.29.24 #339 (dependabot-preview[bot])
8+
* [check-redis] Add password support for check-redis #338 (n-rodriguez)
9+
* Bump github.com/aws/aws-sdk-go from 1.28.7 to 1.29.14 #336 (dependabot-preview[bot])
10+
* Bump github.com/shirou/gopsutil from 2.20.1+incompatible to 2.20.2+incompatible #335 (dependabot-preview[bot])
11+
* Bump github.com/fsouza/go-dockerclient from 1.6.0 to 1.6.3 #332 (dependabot-preview[bot])
12+
* Bump github.com/stretchr/testify from 1.4.0 to 1.5.1 #331 (dependabot-preview[bot])
13+
* Bump github.com/go-ldap/ldap/v3 from 3.1.5 to 3.1.7 #329 (dependabot-preview[bot])
14+
* [check-aws-cloudwatch-logs] Added option to specify AWS API retry count #334 (masahide)
15+
* [check-aws-cloudwatch-logs] fix removing of quote (") implicitly from few options #330 (lufia)
16+
* Bump github.com/shirou/gopsutil from 2.19.12+incompatible to 2.20.1+incompatible #323 (dependabot-preview[bot])
17+
* rename: github.com/motemen/gobump -> github.com/x-motemen/gobump #322 (lufia)
18+
19+
320
## 0.33.1 (2020-01-22)
421

522
* Bump github.com/aws/aws-sdk-go from 1.27.0 to 1.28.7 #319 (dependabot-preview[bot])

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = 0.33.1
1+
VERSION = 0.34.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.33.1"
63+
const version = "0.34.0"
6464

6565
var gitcommit string
6666

packaging/deb-v2/debian/changelog

+31
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
mackerel-check-plugins (0.34.0-1.v2) stable; urgency=low
2+
3+
* Bump github.com/aws/aws-sdk-go from 1.29.24 to 1.29.30 (by dependabot-preview[bot])
4+
<https://github.com/mackerelio/go-check-plugins/pull/342>
5+
* Bump github.com/beevik/ntp from 0.2.0 to 0.3.0 (by dependabot-preview[bot])
6+
<https://github.com/mackerelio/go-check-plugins/pull/340>
7+
* Bump github.com/aws/aws-sdk-go from 1.29.14 to 1.29.24 (by dependabot-preview[bot])
8+
<https://github.com/mackerelio/go-check-plugins/pull/339>
9+
* [check-redis] Add password support for check-redis (by n-rodriguez)
10+
<https://github.com/mackerelio/go-check-plugins/pull/338>
11+
* Bump github.com/aws/aws-sdk-go from 1.28.7 to 1.29.14 (by dependabot-preview[bot])
12+
<https://github.com/mackerelio/go-check-plugins/pull/336>
13+
* Bump github.com/shirou/gopsutil from 2.20.1+incompatible to 2.20.2+incompatible (by dependabot-preview[bot])
14+
<https://github.com/mackerelio/go-check-plugins/pull/335>
15+
* Bump github.com/fsouza/go-dockerclient from 1.6.0 to 1.6.3 (by dependabot-preview[bot])
16+
<https://github.com/mackerelio/go-check-plugins/pull/332>
17+
* Bump github.com/stretchr/testify from 1.4.0 to 1.5.1 (by dependabot-preview[bot])
18+
<https://github.com/mackerelio/go-check-plugins/pull/331>
19+
* Bump github.com/go-ldap/ldap/v3 from 3.1.5 to 3.1.7 (by dependabot-preview[bot])
20+
<https://github.com/mackerelio/go-check-plugins/pull/329>
21+
* [check-aws-cloudwatch-logs] Added option to specify AWS API retry count (by masahide)
22+
<https://github.com/mackerelio/go-check-plugins/pull/334>
23+
* [check-aws-cloudwatch-logs] fix removing of quote (") implicitly from few options (by lufia)
24+
<https://github.com/mackerelio/go-check-plugins/pull/330>
25+
* Bump github.com/shirou/gopsutil from 2.19.12+incompatible to 2.20.1+incompatible (by dependabot-preview[bot])
26+
<https://github.com/mackerelio/go-check-plugins/pull/323>
27+
* rename: github.com/motemen/gobump -> github.com/x-motemen/gobump (by lufia)
28+
<https://github.com/mackerelio/go-check-plugins/pull/322>
29+
30+
-- mackerel <[email protected]> Fri, 03 Apr 2020 03:01:04 +0000
31+
132
mackerel-check-plugins (0.33.1-1.v2) stable; urgency=low
233

334
* Bump github.com/aws/aws-sdk-go from 1.27.0 to 1.28.7 (by dependabot-preview[bot])

packaging/deb/debian/changelog

+31
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
mackerel-check-plugins (0.34.0-1) stable; urgency=low
2+
3+
* Bump github.com/aws/aws-sdk-go from 1.29.24 to 1.29.30 (by dependabot-preview[bot])
4+
<https://github.com/mackerelio/go-check-plugins/pull/342>
5+
* Bump github.com/beevik/ntp from 0.2.0 to 0.3.0 (by dependabot-preview[bot])
6+
<https://github.com/mackerelio/go-check-plugins/pull/340>
7+
* Bump github.com/aws/aws-sdk-go from 1.29.14 to 1.29.24 (by dependabot-preview[bot])
8+
<https://github.com/mackerelio/go-check-plugins/pull/339>
9+
* [check-redis] Add password support for check-redis (by n-rodriguez)
10+
<https://github.com/mackerelio/go-check-plugins/pull/338>
11+
* Bump github.com/aws/aws-sdk-go from 1.28.7 to 1.29.14 (by dependabot-preview[bot])
12+
<https://github.com/mackerelio/go-check-plugins/pull/336>
13+
* Bump github.com/shirou/gopsutil from 2.20.1+incompatible to 2.20.2+incompatible (by dependabot-preview[bot])
14+
<https://github.com/mackerelio/go-check-plugins/pull/335>
15+
* Bump github.com/fsouza/go-dockerclient from 1.6.0 to 1.6.3 (by dependabot-preview[bot])
16+
<https://github.com/mackerelio/go-check-plugins/pull/332>
17+
* Bump github.com/stretchr/testify from 1.4.0 to 1.5.1 (by dependabot-preview[bot])
18+
<https://github.com/mackerelio/go-check-plugins/pull/331>
19+
* Bump github.com/go-ldap/ldap/v3 from 3.1.5 to 3.1.7 (by dependabot-preview[bot])
20+
<https://github.com/mackerelio/go-check-plugins/pull/329>
21+
* [check-aws-cloudwatch-logs] Added option to specify AWS API retry count (by masahide)
22+
<https://github.com/mackerelio/go-check-plugins/pull/334>
23+
* [check-aws-cloudwatch-logs] fix removing of quote (") implicitly from few options (by lufia)
24+
<https://github.com/mackerelio/go-check-plugins/pull/330>
25+
* Bump github.com/shirou/gopsutil from 2.19.12+incompatible to 2.20.1+incompatible (by dependabot-preview[bot])
26+
<https://github.com/mackerelio/go-check-plugins/pull/323>
27+
* rename: github.com/motemen/gobump -> github.com/x-motemen/gobump (by lufia)
28+
<https://github.com/mackerelio/go-check-plugins/pull/322>
29+
30+
-- mackerel <[email protected]> Fri, 03 Apr 2020 03:01:04 +0000
31+
132
mackerel-check-plugins (0.33.1-1) stable; urgency=low
233

334
* Bump github.com/aws/aws-sdk-go from 1.27.0 to 1.28.7 (by dependabot-preview[bot])

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

+15
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,21 @@ done
3737
%{__targetdir}/*
3838

3939
%changelog
40+
* Fri Apr 03 2020 <[email protected]> - 0.34.0
41+
- Bump github.com/aws/aws-sdk-go from 1.29.24 to 1.29.30 (by dependabot-preview[bot])
42+
- Bump github.com/beevik/ntp from 0.2.0 to 0.3.0 (by dependabot-preview[bot])
43+
- Bump github.com/aws/aws-sdk-go from 1.29.14 to 1.29.24 (by dependabot-preview[bot])
44+
- [check-redis] Add password support for check-redis (by n-rodriguez)
45+
- Bump github.com/aws/aws-sdk-go from 1.28.7 to 1.29.14 (by dependabot-preview[bot])
46+
- Bump github.com/shirou/gopsutil from 2.20.1+incompatible to 2.20.2+incompatible (by dependabot-preview[bot])
47+
- Bump github.com/fsouza/go-dockerclient from 1.6.0 to 1.6.3 (by dependabot-preview[bot])
48+
- Bump github.com/stretchr/testify from 1.4.0 to 1.5.1 (by dependabot-preview[bot])
49+
- Bump github.com/go-ldap/ldap/v3 from 3.1.5 to 3.1.7 (by dependabot-preview[bot])
50+
- [check-aws-cloudwatch-logs] Added option to specify AWS API retry count (by masahide)
51+
- [check-aws-cloudwatch-logs] fix removing of quote (") implicitly from few options (by lufia)
52+
- Bump github.com/shirou/gopsutil from 2.19.12+incompatible to 2.20.1+incompatible (by dependabot-preview[bot])
53+
- rename: github.com/motemen/gobump -> github.com/x-motemen/gobump (by lufia)
54+
4055
* Wed Jan 22 2020 <[email protected]> - 0.33.1
4156
- Bump github.com/aws/aws-sdk-go from 1.27.0 to 1.28.7 (by dependabot-preview[bot])
4257
- [check-aws-cloudwatch-logs] Use "errors" instead of "github.com/pkg/errors" (by astj)

packaging/rpm/mackerel-check-plugins.spec

+15
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,21 @@ done
4646
%{__oldtargetdir}/*
4747

4848
%changelog
49+
* Fri Apr 03 2020 <[email protected]> - 0.34.0
50+
- Bump github.com/aws/aws-sdk-go from 1.29.24 to 1.29.30 (by dependabot-preview[bot])
51+
- Bump github.com/beevik/ntp from 0.2.0 to 0.3.0 (by dependabot-preview[bot])
52+
- Bump github.com/aws/aws-sdk-go from 1.29.14 to 1.29.24 (by dependabot-preview[bot])
53+
- [check-redis] Add password support for check-redis (by n-rodriguez)
54+
- Bump github.com/aws/aws-sdk-go from 1.28.7 to 1.29.14 (by dependabot-preview[bot])
55+
- Bump github.com/shirou/gopsutil from 2.20.1+incompatible to 2.20.2+incompatible (by dependabot-preview[bot])
56+
- Bump github.com/fsouza/go-dockerclient from 1.6.0 to 1.6.3 (by dependabot-preview[bot])
57+
- Bump github.com/stretchr/testify from 1.4.0 to 1.5.1 (by dependabot-preview[bot])
58+
- Bump github.com/go-ldap/ldap/v3 from 3.1.5 to 3.1.7 (by dependabot-preview[bot])
59+
- [check-aws-cloudwatch-logs] Added option to specify AWS API retry count (by masahide)
60+
- [check-aws-cloudwatch-logs] fix removing of quote (") implicitly from few options (by lufia)
61+
- Bump github.com/shirou/gopsutil from 2.19.12+incompatible to 2.20.1+incompatible (by dependabot-preview[bot])
62+
- rename: github.com/motemen/gobump -> github.com/x-motemen/gobump (by lufia)
63+
4964
* Wed Jan 22 2020 <[email protected]> - 0.33.1
5065
- Bump github.com/aws/aws-sdk-go from 1.27.0 to 1.28.7 (by dependabot-preview[bot])
5166
- [check-aws-cloudwatch-logs] Use "errors" instead of "github.com/pkg/errors" (by astj)

0 commit comments

Comments
 (0)