Skip to content

Commit

Permalink
Update sequel version to >= 5.74.0 (#153)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
edmocosta authored Jan 31, 2024
1 parent 06436fd commit c9f043e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 5.4.7
- 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)

## 5.4.6
- 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)

Expand Down
6 changes: 4 additions & 2 deletions logstash-integration-jdbc.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'logstash-integration-jdbc'
s.version = '5.4.6'
s.version = '5.4.7'
s.licenses = ['Apache License (2.0)']
s.summary = "Integration with JDBC - input and filter plugins"
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"
Expand Down Expand Up @@ -29,7 +29,9 @@ Gem::Specification.new do |s|
# Restrict use of this plugin to versions of Logstash where support for integration plugins is present.
s.add_runtime_dependency "logstash-core", ">= 6.5.0"
s.add_runtime_dependency 'logstash-codec-plain'
s.add_runtime_dependency 'sequel', '>= 5.73.0'
# 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.
s.add_runtime_dependency 'sequel', '>= 5.74.0'
s.add_runtime_dependency 'lru_redux' # lru cache with ttl

s.add_runtime_dependency 'tzinfo'
Expand Down

0 comments on commit c9f043e

Please sign in to comment.