Skip to content

Commit

Permalink
Updated sequel version to >= 5.73.0
Browse files Browse the repository at this point in the history
  • Loading branch information
edmocosta committed Oct 3, 2023
1 parent 9dd7000 commit 7e6af2a
Show file tree
Hide file tree
Showing 2 changed files with 5 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.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. [#142](https://github.com/logstash-plugins/logstash-integration-jdbc/pull/142)

## 5.4.5
- Pin sequel to < 5.72.0 due to ruby/bigdecimal#169 [#141](https://github.com/logstash-plugins/logstash-integration-jdbc/pull/141)

Expand Down
4 changes: 2 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.5'
s.version = '5.4.6'
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,7 @@ 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.72.0' # until https://github.com/ruby/bigdecimal/issues/169 is fixed
s.add_runtime_dependency 'sequel', '>= 5.73.0'
s.add_runtime_dependency 'lru_redux' # lru cache with ttl

s.add_runtime_dependency 'tzinfo'
Expand Down

0 comments on commit 7e6af2a

Please sign in to comment.