Skip to content

Commit 9dd7000

Browse files
authored
Pin sequel to < 5.72.0 due to ruby/bigdecimal#169 (#141)
Sequel 5.72.0 explicitly depends on the bigdecimal gem, causing JRuby to attempt to use the gem, install native extensions and fail. Pinning to < 5.72.0 until ruby/bigdecimal#169 is solved. Also related: jeremyevans/sequel#2076
1 parent c06e319 commit 9dd7000

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-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.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+
14
## 5.4.4
25
- Fix: adaptations for JRuby 9.4 [#125](https://github.com/logstash-plugins/logstash-integration-jdbc/pull/125)
36

logstash-integration-jdbc.gemspec

Lines changed: 2 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.4'
3+
s.version = '5.4.5'
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,7 @@ 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'
32+
s.add_runtime_dependency 'sequel', '< 5.72.0' # until https://github.com/ruby/bigdecimal/issues/169 is fixed
3333
s.add_runtime_dependency 'lru_redux' # lru cache with ttl
3434

3535
s.add_runtime_dependency 'tzinfo'

0 commit comments

Comments
 (0)