Skip to content

Commit

Permalink
Pin sequel to < 5.72.0 due to ruby/bigdecimal#169
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jsvd authored Sep 4, 2023
1 parent c06e319 commit 5a6209a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logstash-integration-jdbc.gemspec
Original file line number Diff line number Diff line change
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'
s.add_runtime_dependency 'sequel', '< 5.72.0' # until https://github.com/ruby/bigdecimal/issues/169 is fixed
s.add_runtime_dependency 'lru_redux' # lru cache with ttl

s.add_runtime_dependency 'tzinfo'
Expand Down

0 comments on commit 5a6209a

Please sign in to comment.