Skip to content

Commit c9f043e

Browse files
authored
Update sequel version to >= 5.74.0 (#153)
This commit pinned sequel version to >= 5.74.0 as it fixes the generic jdbc adapter to properly handle disconnection errors, and avoid stale connections in the pool.
1 parent 06436fd commit c9f043e

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 5.4.7
2+
- Update sequel version to >= 5.74.0. It fixes the generic jdbc adapter to properly handle disconnect errors [#153](https://github.com/logstash-plugins/logstash-integration-jdbc/pull/153)
3+
14
## 5.4.6
25
- Update sequel version to >= 5.73.0. The ibmdb and jdbc/db2 adapters were fixed to properly handle disconnect errors, removing the related connection from the pool [#144](https://github.com/logstash-plugins/logstash-integration-jdbc/pull/144)
36

logstash-integration-jdbc.gemspec

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = 'logstash-integration-jdbc'
3-
s.version = '5.4.6'
3+
s.version = '5.4.7'
44
s.licenses = ['Apache License (2.0)']
55
s.summary = "Integration with JDBC - input and filter plugins"
66
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,9 @@ Gem::Specification.new do |s|
2929
# Restrict use of this plugin to versions of Logstash where support for integration plugins is present.
3030
s.add_runtime_dependency "logstash-core", ">= 6.5.0"
3131
s.add_runtime_dependency 'logstash-codec-plain'
32-
s.add_runtime_dependency 'sequel', '>= 5.73.0'
32+
# Pinned sequel version to >= 5.74.0 as it fixes the generic jdbc adapter to properly
33+
# handle disconnection errors, and avoid stale connections in the pool.
34+
s.add_runtime_dependency 'sequel', '>= 5.74.0'
3335
s.add_runtime_dependency 'lru_redux' # lru cache with ttl
3436

3537
s.add_runtime_dependency 'tzinfo'

0 commit comments

Comments
 (0)