zabbixapi 4.1.1 → 4.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -0
- data/lib/zabbixapi/client.rb +1 -1
- data/lib/zabbixapi/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4d40b3de910c34c57086f5cb96a4d849327b66eff0ed3c90013f81f911efffd5
|
|
4
|
+
data.tar.gz: 95ca03dc07172fb5d474992477e57847bf94925129316009b186bfc9ec44ecc6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4c877eb09fce12d6dc5b4698f647a5c082d42ecf6a2a2ea08057c40cde7c37613eed77477e26a1ca88b08786485e69fecb61994f153e94adb69a7fd295823caf
|
|
7
|
+
data.tar.gz: b62ee57503a824904dda48b594ddb119a6977320dd0f46b549c251ccb6a97debb211a5ccd0d5c5457507b6d30fd54076bf516edd5423dedd0856ca3e3145eeb6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
#CHANGELOG
|
|
2
|
+
|
|
3
|
+
## 4.1.2
|
|
4
|
+
[PR #99](https://github.com/express42/zabbixapi/pull/99) Patch addressing log error function not found
|
|
5
|
+
|
|
6
|
+
## 4.1.1
|
|
7
|
+
|
|
8
|
+
[PR #97](https://github.com/express42/zabbixapi/pull/97) Bumped version
|
|
9
|
+
|
|
10
|
+
[PR #98](https://github.com/express42/zabbixapi/pull/98) Removed strict zabbix versioning error
|
|
11
|
+
|
|
1
12
|
## 4.1.0
|
|
2
13
|
|
|
3
14
|
[PR #82](https://github.com/express42/zabbixapi/pull/82) Add logout method (Thanks @baurmatt)
|
data/lib/zabbixapi/client.rb
CHANGED
|
@@ -53,7 +53,7 @@ class ZabbixApi
|
|
|
53
53
|
@proxy_user, @proxy_pass = @proxy_uri.userinfo.split(/:/) if @proxy_uri.userinfo
|
|
54
54
|
end
|
|
55
55
|
unless api_version =~ %r{^4.[0|2]\.\d+$}
|
|
56
|
-
|
|
56
|
+
puts "[WARN] Zabbix API version: #{api_version} is not supported by this version of zabbixapi"
|
|
57
57
|
end
|
|
58
58
|
|
|
59
59
|
@auth_hash = auth
|
data/lib/zabbixapi/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zabbixapi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.1.
|
|
4
|
+
version: 4.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vasiliev D.V.
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2019-
|
|
12
|
+
date: 2019-10-25 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: http
|