Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin version of securerandom that work with Ruby 2.7 #494

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ and releases in PushmiPullyu adheres to [Semantic Versioning](https://semver.org

## [Unreleased]

### Fixed
- pin version of securerandom that work with Ruby 2.7

## [2.1.5] 2024-11-27

### Fixed
Expand Down
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ PATH
redis (>= 3.3, < 6.0)
rest-client (>= 1.8, < 3.0)
rollbar (>= 2.18, < 4.0)
securerandom (~> 0.3.2)
uuid (~> 2.3.9)

GEM
Expand Down Expand Up @@ -196,6 +197,7 @@ GEM
addressable (>= 2.3.5)
faraday (>= 0.17.3, < 3)
scanf (1.0.0)
securerandom (0.3.2)
sparql (3.2.6)
builder (~> 3.2, >= 3.2.4)
ebnf (~> 2.3, >= 2.3.5)
Expand Down
1 change: 1 addition & 0 deletions pushmi_pullyu.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Gem::Specification.new do |spec|
spec.add_dependency 'redis', '>= 3.3', '< 6.0'
spec.add_dependency 'rest-client', '>= 1.8', '< 3.0'
spec.add_dependency 'rollbar', '>= 2.18', '< 4.0'
spec.add_dependency 'securerandom', '~> 0.3.2'
spec.add_dependency 'uuid', '~> 2.3.9'

spec.metadata = {
Expand Down
Loading