Skip to content

Commit fb17d43

Browse files
committed
Merge pull request #85 from mackerelio/bump-version-0.5.0
Release version 0.5.0
2 parents 2c8a9eb + 32e2c7a commit fb17d43

File tree

6 files changed

+81
-5
lines changed

6 files changed

+81
-5
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ deploy:
2626
api_key:
2727
secure: vmMQz+IjJ/LUa9SHAlLKyg4raSqkEBIRzqnjS1LK7ZjtcAROo6Pn0lUcC4qMZ96/VvNMdLyGndCOBXsdE2VBCY5goTI7uIW1oxbLM3qOMNQQldG1bOY34bjkiiDU15WLUsKKPEC2RdgwG1aAAsqcUDAeyRABYVBANSn9jylQnBC2b2mQMYUtVA1O9jl3Qg64Cy6MUUirE/SuKp/cnE3AakcQt54pNVsnM54bIyrbGhqThLj7p7uLJEm58oRWR7TTUSgmk/Rbj4aJSC4k5lzN9iL/Fr5AgnpEQQUg3ishE+5yqSW7f/PRqXC6ZI9p6XS7bhS8N178ImzouIsoKWltblsgUhfvE6ONyMpi1+RG+6Lp3HlpLuq0Pz/efEpcaSDg6lXDIvMBC2sA5pbPok6Yx4tJOSv8adWu9t0yGVJezYaqbN/071K9m3cM4YTQK4L39b2FxQ2ZrUhee8HZy5rDO8iqx2vgM+NXATz2L5Tjjzd4aqfIDX8R3PVImBci7se/wmamDUpOrcfSjrI2dzEQGBzBfIFIhCaCQSuEjpZqBKdcOztkn1uev7a0AAUeZ7my+uQNpAMO7/AapM7LLugmkLM06FgrHKWDPQP/T92MPyvmC04nNraetAVijVYLQnlK5+TdEMvkKHuY5afLp5mEzX+7jTSmjyaUNrbANs8bH/8=
2828
file:
29-
- "/home/travis/rpmbuild/RPMS/noarch/mackerel-check-plugins-0.4.0-1.noarch.rpm"
30-
- "/home/travis/gopath/src/github.com/mackerelio/go-check-plugins/packaging/mackerel-check-plugins_0.4.0-1_all.deb"
29+
- "/home/travis/rpmbuild/RPMS/noarch/mackerel-check-plugins-0.5.0-1.noarch.rpm"
30+
- "/home/travis/gopath/src/github.com/mackerelio/go-check-plugins/packaging/mackerel-check-plugins_0.5.0-1_all.deb"
3131
on:
3232
repo: mackerelio/go-check-plugins
3333
all_branches: true

CHANGELOG.md

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

3+
## 0.5.0 (2016-03-02)
4+
5+
* add check-solr #46 (supercaracal)
6+
* add check-jmx-jolokia #68 (y-kuno)
7+
* check-memcached #69 (naokibtn)
8+
* Add scheme option to check-elasticsearch #70 (yano3)
9+
* Check file size #72 (hiroakis)
10+
* Add uptime sub command to check-mysql #73 (kazeburo)
11+
* add check-cert-file #74 (kazeburo)
12+
* [tcp] Add --no-check-certificate #75 (kazeburo)
13+
* Fixed slurp. conn.read returns content with EOF #76 (kazeburo)
14+
* Fix check-tcp IPv6 testcase on OSX(?) #77 (hanazuki)
15+
* check-redis: Report critical if master_link_status is down #79 (hanazuki)
16+
* check-redis: Fixed panic #80 (yoheimuta)
17+
* check-procs: Fixed the counting logic with -p #81 (yoheimuta)
18+
* add check-uptime #82 (Songmu)
19+
* add file-size, jmx-jolokia, memcached, solr, uptime into package config #84 (Songmu)
20+
21+
322
## 0.4.0 (2016-02-04)
423

524
* Fix duplicated help message #58 (hfm)

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,24 @@ Check Plugins for monitoring written in golang.
66

77
Documentation for each plugin is located in its respective sub directory.
88

9+
* [check-cert-file](./check-cert-file/README.md)
910
* [check-elasticsearch](./check-elasticsearch/README.md)
1011
* [check-file-age](./check-file-age/README.md)
1112
* [check-file-size](./check-file-size/README.md)
1213
* [check-http](./check-http/README.md)
14+
* [check-jmx-jolokia](./check-jmx-jolokia/README.md)
1315
* [check-load](./check-load/README.md)
1416
* [check-log](./check-log/README.md)
1517
* [check-mailq](./check-mailq/README.md)
18+
* [check-memcached](./check-memcached/README.md)
1619
* [check-mysql](./check-mysql/README.md)
1720
* [check-ntpoffset](./check-ntpoffset/README.md)
1821
* [check-postgresql](./check-postgresql/README.md)
1922
* [check-procs](./check-procs/README.md)
2023
* [check-redis](./check-redis/README.md)
24+
* [check-solr](./check-solr/README.md)
2125
* [check-tcp](./check-tcp/README.md)
26+
* [check-uptime](./check-uptime/README.md)
2227

2328
Specification
2429
-------------

packaging/deb/debian/changelog

+35
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
mackerel-check-plugins (0.5.0-1) stable; urgency=low
2+
3+
* add check-solr (by supercaracal)
4+
<https://github.com/mackerelio/go-check-plugins/pull/46>
5+
* add check-jmx-jolokia (by y-kuno)
6+
<https://github.com/mackerelio/go-check-plugins/pull/68>
7+
* check-memcached (by naokibtn)
8+
<https://github.com/mackerelio/go-check-plugins/pull/69>
9+
* Add scheme option to check-elasticsearch (by yano3)
10+
<https://github.com/mackerelio/go-check-plugins/pull/70>
11+
* Check file size (by hiroakis)
12+
<https://github.com/mackerelio/go-check-plugins/pull/72>
13+
* Add uptime sub command to check-mysql (by kazeburo)
14+
<https://github.com/mackerelio/go-check-plugins/pull/73>
15+
* add check-cert-file (by kazeburo)
16+
<https://github.com/mackerelio/go-check-plugins/pull/74>
17+
* [tcp] Add --no-check-certificate (by kazeburo)
18+
<https://github.com/mackerelio/go-check-plugins/pull/75>
19+
* Fixed slurp. conn.read returns content with EOF (by kazeburo)
20+
<https://github.com/mackerelio/go-check-plugins/pull/76>
21+
* Fix check-tcp IPv6 testcase on OSX(?) (by hanazuki)
22+
<https://github.com/mackerelio/go-check-plugins/pull/77>
23+
* check-redis: Report critical if master_link_status is down (by hanazuki)
24+
<https://github.com/mackerelio/go-check-plugins/pull/79>
25+
* check-redis: Fixed panic (by yoheimuta)
26+
<https://github.com/mackerelio/go-check-plugins/pull/80>
27+
* check-procs: Fixed the counting logic with -p (by yoheimuta)
28+
<https://github.com/mackerelio/go-check-plugins/pull/81>
29+
* add check-uptime (by Songmu)
30+
<https://github.com/mackerelio/go-check-plugins/pull/82>
31+
* add file-size, jmx-jolokia, memcached, solr, uptime into package config (by Songmu)
32+
<https://github.com/mackerelio/go-check-plugins/pull/84>
33+
34+
-- Songmu <[email protected]> Wed, 02 Mar 2016 15:32:48 +0900
35+
136
mackerel-check-plugins (0.4.0-1) stable; urgency=low
237

338
* Fix duplicated help message (by hfm)

packaging/deb/debian/rules

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ package=mackerel-check-plugins
88
override_dh_auto_install:
99
dh_auto_install
1010
install -d -m 755 debian/tmp/usr/local/bin
11-
for i in elasticsearch file-age http load log mailq ntpoffset postgresql procs redis tcp mysql;do \
11+
for i in elasticsearch file-age file-size http jmx-jolokia load log mailq memcached mysql ntpoffset postgresql procs redis solr tcp uptime;do \
1212
install -m755 debian/check-$$i debian/tmp/usr/local/bin; \
1313
done
1414

packaging/rpm/mackerel-check-plugins.spec

+19-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
%define __targetdir /usr/local/bin
44

55
Name: mackerel-check-plugins
6-
Version: 0.4.0
6+
Version: 0.5.0
77
Release: 1
88
License: Commercial
99
Summary: macekrel.io check plugins
@@ -25,7 +25,7 @@ mackerel.io check plugins
2525

2626
%{__mkdir} -p %{buildroot}%{__targetdir}
2727

28-
for i in elasticsearch file-age http load log mailq ntpoffset postgresql procs redis tcp mysql;do \
28+
for i in elasticsearch file-age file-size http jmx-jolokia load log mailq memcached mysql ntpoffset postgresql procs redis solr tcp uptime;do \
2929
%{__install} -m0755 %{_sourcedir}/build/check-$i %{buildroot}%{__targetdir}/; \
3030
done
3131

@@ -37,6 +37,23 @@ done
3737
%{__targetdir}
3838

3939
%changelog
40+
* Wed Mar 02 2016 <[email protected]> - 0.5.0
41+
- add check-solr (by supercaracal)
42+
- add check-jmx-jolokia (by y-kuno)
43+
- check-memcached (by naokibtn)
44+
- Add scheme option to check-elasticsearch (by yano3)
45+
- Check file size (by hiroakis)
46+
- Add uptime sub command to check-mysql (by kazeburo)
47+
- add check-cert-file (by kazeburo)
48+
- [tcp] Add --no-check-certificate (by kazeburo)
49+
- Fixed slurp. conn.read returns content with EOF (by kazeburo)
50+
- Fix check-tcp IPv6 testcase on OSX(?) (by hanazuki)
51+
- check-redis: Report critical if master_link_status is down (by hanazuki)
52+
- check-redis: Fixed panic (by yoheimuta)
53+
- check-procs: Fixed the counting logic with -p (by yoheimuta)
54+
- add check-uptime (by Songmu)
55+
- add file-size, jmx-jolokia, memcached, solr, uptime into package config (by Songmu)
56+
4057
* Thu Feb 04 2016 <[email protected]> - 0.4.0
4158
- Fix duplicated help message (by hfm)
4259
- add qmail queue check to check-mailq (by tnmt)

0 commit comments

Comments
 (0)