Skip to content

Commit e89645c

Browse files
pimpinclaude
andcommitted
Add version constraint to logger dependency
Use pessimistic version constraint (~> 1.6) to ensure build reproducibility and prevent accidentally pulling in future versions with potential breaking changes. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 3cb6774 commit e89645c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

couchbase-orm.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Gem::Specification.new do |gem|
2323
gem.add_runtime_dependency 'couchbase', '>= 3.4.2'
2424
gem.add_runtime_dependency 'radix', '~> 2.2' # converting numbers to and from any base
2525
gem.add_runtime_dependency 'json-schema', '>= 3' # validating JSON against a schema
26-
gem.add_runtime_dependency 'logger' # Required from Ruby 3.5.0+
26+
gem.add_runtime_dependency 'logger', '~> 1.6' # Required from Ruby 3.5.0+
2727

2828
gem.add_development_dependency 'rake', '~> 12.2'
2929
gem.add_development_dependency 'rspec', '~> 3.7'

0 commit comments

Comments
 (0)