logstash-integration-jdbc 5.4.4 → 5.4.5
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 +3 -0
- data/logstash-integration-jdbc.gemspec +2 -2
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8d90a719c8d965230d4a27d17aedabc24d0c853a3c4f192d1e447335ce69411d
|
|
4
|
+
data.tar.gz: 6b5027909850ccdf8bbe8873fdf284dde3acc4131da70367c88aad305f265012
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2225fadcdb6537e67119a502b1d78061dbb4d9cb7a45a899cb921ae6e77fe5f5059ff7742697399bb904fcb362b2a04fbd5818758312064ad3d0a9ad7368263d
|
|
7
|
+
data.tar.gz: a9d45af9511c5f415b1014784defdec0a2f862870dcf46907697d734ea8dbfecf465c2af3cd302d8ddef7b88ed97ce97f5ee0cc74a79689c460566c0b1ab7bab
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 5.4.5
|
|
2
|
+
- Pin sequel to < 5.72.0 due to ruby/bigdecimal#169 [#141](https://github.com/logstash-plugins/logstash-integration-jdbc/pull/141)
|
|
3
|
+
|
|
1
4
|
## 5.4.4
|
|
2
5
|
- Fix: adaptations for JRuby 9.4 [#125](https://github.com/logstash-plugins/logstash-integration-jdbc/pull/125)
|
|
3
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-integration-jdbc'
|
|
3
|
-
s.version = '5.4.
|
|
3
|
+
s.version = '5.4.5'
|
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
|
5
5
|
s.summary = "Integration with JDBC - input and filter plugins"
|
|
6
6
|
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
|
|
@@ -29,7 +29,7 @@ Gem::Specification.new do |s|
|
|
|
29
29
|
# Restrict use of this plugin to versions of Logstash where support for integration plugins is present.
|
|
30
30
|
s.add_runtime_dependency "logstash-core", ">= 6.5.0"
|
|
31
31
|
s.add_runtime_dependency 'logstash-codec-plain'
|
|
32
|
-
s.add_runtime_dependency 'sequel'
|
|
32
|
+
s.add_runtime_dependency 'sequel', '< 5.72.0' # until https://github.com/ruby/bigdecimal/issues/169 is fixed
|
|
33
33
|
s.add_runtime_dependency 'lru_redux' # lru cache with ttl
|
|
34
34
|
|
|
35
35
|
s.add_runtime_dependency 'tzinfo'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-integration-jdbc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.4.
|
|
4
|
+
version: 5.4.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-09-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -75,17 +75,17 @@ dependencies:
|
|
|
75
75
|
- !ruby/object:Gem::Dependency
|
|
76
76
|
requirement: !ruby/object:Gem::Requirement
|
|
77
77
|
requirements:
|
|
78
|
-
- - "
|
|
78
|
+
- - "<"
|
|
79
79
|
- !ruby/object:Gem::Version
|
|
80
|
-
version:
|
|
80
|
+
version: 5.72.0
|
|
81
81
|
name: sequel
|
|
82
82
|
prerelease: false
|
|
83
83
|
type: :runtime
|
|
84
84
|
version_requirements: !ruby/object:Gem::Requirement
|
|
85
85
|
requirements:
|
|
86
|
-
- - "
|
|
86
|
+
- - "<"
|
|
87
87
|
- !ruby/object:Gem::Version
|
|
88
|
-
version:
|
|
88
|
+
version: 5.72.0
|
|
89
89
|
- !ruby/object:Gem::Dependency
|
|
90
90
|
requirement: !ruby/object:Gem::Requirement
|
|
91
91
|
requirements:
|