Skip to content

Commit ab6a0dc

Browse files
authored
Merge pull request mackerelio#705 from mackerelio/bump-version-0.43.0
Release version 0.43.0
2 parents 1f9f36c + 020585c commit ab6a0dc

File tree

7 files changed

+95
-2
lines changed

7 files changed

+95
-2
lines changed

CHANGELOG.md

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

3+
## 0.43.0 (2023-02-01)
4+
5+
* fix generate docs #703 (yseto)
6+
* Bump actions/checkout from 2 to 3 #702 (dependabot[bot])
7+
* Bump actions/setup-go from 2 to 3 #701 (dependabot[bot])
8+
* Bump actions/cache from 2 to 3 #700 (dependabot[bot])
9+
* Bump actions/upload-artifact from 2 to 3 #699 (dependabot[bot])
10+
* Bump actions/download-artifact from 2 to 3 #698 (dependabot[bot])
11+
* Bump github.com/aws/aws-sdk-go from 1.44.157 to 1.44.189 #697 (dependabot[bot])
12+
* Enables Dependabot version updates for GitHub Actions #696 (Arthur1)
13+
* Stop build for apt v1 #695 (Arthur1)
14+
* Bump github.com/fsouza/go-dockerclient from 1.9.0 to 1.9.3 #694 (dependabot[bot])
15+
* [check-http] add test.sh #692 (lufia)
16+
* check-ssl-cert: add `ca-file`, `cert-file`, `key-file`, `no-check-certificate` options #690 (wafuwafu13)
17+
* Bump golang.org/x/text from 0.5.0 to 0.6.0 #684 (dependabot[bot])
18+
* Bump golang.org/x/crypto from 0.4.0 to 0.5.0 #682 (dependabot[bot])
19+
* Bump github.com/shirou/gopsutil/v3 from 3.22.11 to 3.22.12 #679 (dependabot[bot])
20+
* Bump github.com/go-sql-driver/mysql from 1.6.0 to 1.7.0 #671 (dependabot[bot])
21+
22+
323
## 0.42.4 (2023-01-18)
424

525
* check-cert-file: add test #687 (wafuwafu13)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = 0.42.4
1+
VERSION = 0.43.0
22
CURRENT_REVISION = $(shell git rev-parse --short HEAD)
33
ifeq ($(OS),Windows_NT)
44
GOPATH_ROOT:=$(shell cygpath ${GOPATH})

mackerel-check.go

Lines changed: 1 addition & 1 deletion
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.42.4"
63+
const version = "0.43.0"
6464

6565
var gitcommit string
6666

packaging/deb-v2/debian/changelog

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
mackerel-check-plugins (0.43.0-1.v2) stable; urgency=low
2+
3+
* fix generate docs (by yseto)
4+
<https://github.com/mackerelio/go-check-plugins/pull/703>
5+
* Bump actions/checkout from 2 to 3 (by dependabot[bot])
6+
<https://github.com/mackerelio/go-check-plugins/pull/702>
7+
* Bump actions/setup-go from 2 to 3 (by dependabot[bot])
8+
<https://github.com/mackerelio/go-check-plugins/pull/701>
9+
* Bump actions/cache from 2 to 3 (by dependabot[bot])
10+
<https://github.com/mackerelio/go-check-plugins/pull/700>
11+
* Bump actions/upload-artifact from 2 to 3 (by dependabot[bot])
12+
<https://github.com/mackerelio/go-check-plugins/pull/699>
13+
* Bump actions/download-artifact from 2 to 3 (by dependabot[bot])
14+
<https://github.com/mackerelio/go-check-plugins/pull/698>
15+
* Bump github.com/aws/aws-sdk-go from 1.44.157 to 1.44.189 (by dependabot[bot])
16+
<https://github.com/mackerelio/go-check-plugins/pull/697>
17+
* Enables Dependabot version updates for GitHub Actions (by Arthur1)
18+
<https://github.com/mackerelio/go-check-plugins/pull/696>
19+
* Stop build for apt v1 (by Arthur1)
20+
<https://github.com/mackerelio/go-check-plugins/pull/695>
21+
* Bump github.com/fsouza/go-dockerclient from 1.9.0 to 1.9.3 (by dependabot[bot])
22+
<https://github.com/mackerelio/go-check-plugins/pull/694>
23+
* [check-http] add test.sh (by lufia)
24+
<https://github.com/mackerelio/go-check-plugins/pull/692>
25+
* check-ssl-cert: add `ca-file`, `cert-file`, `key-file`, `no-check-certificate` options (by wafuwafu13)
26+
<https://github.com/mackerelio/go-check-plugins/pull/690>
27+
* Bump golang.org/x/text from 0.5.0 to 0.6.0 (by dependabot[bot])
28+
<https://github.com/mackerelio/go-check-plugins/pull/684>
29+
* Bump golang.org/x/crypto from 0.4.0 to 0.5.0 (by dependabot[bot])
30+
<https://github.com/mackerelio/go-check-plugins/pull/682>
31+
* Bump github.com/shirou/gopsutil/v3 from 3.22.11 to 3.22.12 (by dependabot[bot])
32+
<https://github.com/mackerelio/go-check-plugins/pull/679>
33+
* Bump github.com/go-sql-driver/mysql from 1.6.0 to 1.7.0 (by dependabot[bot])
34+
<https://github.com/mackerelio/go-check-plugins/pull/671>
35+
36+
-- mackerel <[email protected]> Wed, 1 Feb 2023 06:05:22 +0000
37+
138
mackerel-check-plugins (0.42.4-1.v2) stable; urgency=low
239

340
* check-cert-file: add test (by wafuwafu13)
File renamed without changes.

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,24 @@ done
3636
%{__targetdir}/*
3737

3838
%changelog
39+
* Wed Feb 1 2023 <[email protected]> - 0.43.0
40+
- fix generate docs (by yseto)
41+
- Bump actions/checkout from 2 to 3 (by dependabot[bot])
42+
- Bump actions/setup-go from 2 to 3 (by dependabot[bot])
43+
- Bump actions/cache from 2 to 3 (by dependabot[bot])
44+
- Bump actions/upload-artifact from 2 to 3 (by dependabot[bot])
45+
- Bump actions/download-artifact from 2 to 3 (by dependabot[bot])
46+
- Bump github.com/aws/aws-sdk-go from 1.44.157 to 1.44.189 (by dependabot[bot])
47+
- Enables Dependabot version updates for GitHub Actions (by Arthur1)
48+
- Stop build for apt v1 (by Arthur1)
49+
- Bump github.com/fsouza/go-dockerclient from 1.9.0 to 1.9.3 (by dependabot[bot])
50+
- [check-http] add test.sh (by lufia)
51+
- check-ssl-cert: add `ca-file`, `cert-file`, `key-file`, `no-check-certificate` options (by wafuwafu13)
52+
- Bump golang.org/x/text from 0.5.0 to 0.6.0 (by dependabot[bot])
53+
- Bump golang.org/x/crypto from 0.4.0 to 0.5.0 (by dependabot[bot])
54+
- Bump github.com/shirou/gopsutil/v3 from 3.22.11 to 3.22.12 (by dependabot[bot])
55+
- Bump github.com/go-sql-driver/mysql from 1.6.0 to 1.7.0 (by dependabot[bot])
56+
3957
* Wed Jan 18 2023 <[email protected]> - 0.42.4
4058
- check-cert-file: add test (by wafuwafu13)
4159
- test: use `T.TempDir` to create temporary test directory (by Juneezee)

packaging/rpm/mackerel-check-plugins.spec

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,24 @@ done
4545
%{__oldtargetdir}/*
4646

4747
%changelog
48+
* Wed Feb 1 2023 <[email protected]> - 0.43.0
49+
- fix generate docs (by yseto)
50+
- Bump actions/checkout from 2 to 3 (by dependabot[bot])
51+
- Bump actions/setup-go from 2 to 3 (by dependabot[bot])
52+
- Bump actions/cache from 2 to 3 (by dependabot[bot])
53+
- Bump actions/upload-artifact from 2 to 3 (by dependabot[bot])
54+
- Bump actions/download-artifact from 2 to 3 (by dependabot[bot])
55+
- Bump github.com/aws/aws-sdk-go from 1.44.157 to 1.44.189 (by dependabot[bot])
56+
- Enables Dependabot version updates for GitHub Actions (by Arthur1)
57+
- Stop build for apt v1 (by Arthur1)
58+
- Bump github.com/fsouza/go-dockerclient from 1.9.0 to 1.9.3 (by dependabot[bot])
59+
- [check-http] add test.sh (by lufia)
60+
- check-ssl-cert: add `ca-file`, `cert-file`, `key-file`, `no-check-certificate` options (by wafuwafu13)
61+
- Bump golang.org/x/text from 0.5.0 to 0.6.0 (by dependabot[bot])
62+
- Bump golang.org/x/crypto from 0.4.0 to 0.5.0 (by dependabot[bot])
63+
- Bump github.com/shirou/gopsutil/v3 from 3.22.11 to 3.22.12 (by dependabot[bot])
64+
- Bump github.com/go-sql-driver/mysql from 1.6.0 to 1.7.0 (by dependabot[bot])
65+
4866
* Wed Jan 18 2023 <[email protected]> - 0.42.4
4967
- check-cert-file: add test (by wafuwafu13)
5068
- test: use `T.TempDir` to create temporary test directory (by Juneezee)

0 commit comments

Comments
 (0)