logstash-filter-jdbc_static 1.0.4 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 499ea8c8dab443e84861d0f2ed3e7a955f6d634196a622724586e5e2cb762846
4
- data.tar.gz: 4d6b52b28c87c9139c248c17e9213d8dd029c6738db6b941537562346b4d2cc7
3
+ metadata.gz: 7977c75c7b90410771251f9b63d48b3c68c0dbddff3ae6c44537bac5cd77a282
4
+ data.tar.gz: b7f4e3debad655869b27b58636fa8c3ab44a1a5a6391474ba1d5dae7bbec3f0b
5
5
  SHA512:
6
- metadata.gz: d592a4571337703d34a4798b1269485aa87cb0a676fff677c1719f9a687b2eb831b15b6c4336a693fa5be93b375f40475939b78ad64e01eaa97ef9086bf2d63b
7
- data.tar.gz: 8e195837855e27f790ca4411521d468d903a367069f3ef9324e8c5a19c97a53f97953a91ced8de0dd0f83b9efa9706068bbd9bf8a9fad9b9adc8690c0cbe2f62
6
+ metadata.gz: 7896dda38d86cd012a12f8feab8ce7f81d250e443b756c8109c494f7504deb1ff43fa269080b82de7d0293d54954b4380f9fdbe77c08dc4ef94dd86f0aef37bf
7
+ data.tar.gz: 17f428b6b143674b2dfabdd5fa0490f61713e8527c293a41e205c0f76db6532f14fcc49b0e6fc5d90528a0f1d2f758b74a7895d0d04f03d891780bb7864451a6
data/CHANGELOG.md CHANGED
@@ -1,10 +1,12 @@
1
+ ## 1.0.5
2
+ - Fixed issue where overly restrictive dependency on rufus scheduler was stopping Logstash from upgrading this plugin. [35](https://github.com/logstash-plugins/logstash-filter-jdbc_static/pull/35)
3
+
1
4
  ## 1.0.4
2
5
  - Fixed pipeline reload thread leak by implementing the correct close method to release resources [#34](https://github.com/logstash-plugins/logstash-filter-jdbc_static/pull/34)
3
6
  - Fixed error caused by code removed in latest version of Rufus scheduler by pinning dependency [#34](https://github.com/logstash-plugins/logstash-filter-jdbc_static/pull/34)
4
7
 
5
8
  ## 1.0.3
6
9
  - Fix [jdbc_static filter - #25](https://github.com/logstash-plugins/logstash-filter-jdbc_static/issues/25) When index_columns is not specified, the create table statement has a syntax error.
7
-
8
10
  ## 1.0.2
9
11
  - Fix [jdbc_static filter - #22](https://github.com/logstash-plugins/logstash-filter-jdbc_static/issues/22) Support multiple driver libraries.
10
12
  - Fixes for [jdbc_static filter - #18](https://github.com/logstash-plugins/logstash-filter-jdbc_static/issues/18), [jdbc_static filter - #17](https://github.com/logstash-plugins/logstash-filter-jdbc_static/issues/17), [jdbc_static filter - #12](https://github.com/logstash-plugins/logstash-filter-jdbc_static/issues/12) Use Java classloader to load driver jar. Use system import from file to loader local database. Prevent locking errors when no records returned.
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-filter-jdbc_static'
3
- s.version = '1.0.4'
3
+ s.version = '1.0.5'
4
4
  s.licenses = ['Apache-2.0']
5
5
  s.summary = "This filter executes a SQL query to fetch a SQL query result, store it locally then use a second SQL query to update an event."
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"
@@ -25,7 +25,7 @@ Gem::Specification.new do |s|
25
25
  s.add_runtime_dependency 'sequel'
26
26
  s.add_runtime_dependency 'tzinfo'
27
27
  s.add_runtime_dependency 'tzinfo-data'
28
- s.add_runtime_dependency 'rufus-scheduler', '~> 3.4.0'
28
+ s.add_runtime_dependency 'rufus-scheduler', '< 3.5'
29
29
 
30
30
  s.add_development_dependency 'logstash-devutils'
31
31
  s.add_development_dependency 'timecop'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-filter-jdbc_static
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-06-26 00:00:00.000000000 Z
11
+ date: 2018-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -89,17 +89,17 @@ dependencies:
89
89
  - !ruby/object:Gem::Dependency
90
90
  requirement: !ruby/object:Gem::Requirement
91
91
  requirements:
92
- - - "~>"
92
+ - - "<"
93
93
  - !ruby/object:Gem::Version
94
- version: 3.4.0
94
+ version: '3.5'
95
95
  name: rufus-scheduler
96
96
  prerelease: false
97
97
  type: :runtime
98
98
  version_requirements: !ruby/object:Gem::Requirement
99
99
  requirements:
100
- - - "~>"
100
+ - - "<"
101
101
  - !ruby/object:Gem::Version
102
- version: 3.4.0
102
+ version: '3.5'
103
103
  - !ruby/object:Gem::Dependency
104
104
  requirement: !ruby/object:Gem::Requirement
105
105
  requirements: