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

Bump rubocop from 1.64.0 to 1.66.1 #473

Merged
merged 2 commits into from
Oct 7, 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 @@ -14,6 +14,9 @@ and releases in PushmiPullyu adheres to [Semantic Versioning](https://semver.org
### Fixed
- Use `File.open` with a block for simple exception handling and ensuring files are closed [#475](https://github.com/ualbertalib/pushmi_pullyu/issues/475)

### Chores
- Use add_dependency instead of add_runtime_dependency. [PR#473](https://github.com/ualbertalib/pushmi_pullyu/pull/473)

## [2.1.3]
- Refresh authentication token after it expires [#311](https://github.com/ualbertalib/pushmi_pullyu/issues/311)

Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ group :development, :test do
gem 'pry-byebug', '~> 3.6'
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.13'
gem 'rubocop', '~> 1.64'
gem 'rubocop', '~> 1.66'
gem 'rubocop-rspec', '~> 3.1'
gem 'timecop', '~> 0.9'
gem 'vcr', '~> 5.0'
Expand Down
9 changes: 4 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -174,15 +174,14 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.0)
rubocop (1.64.0)
rubocop (1.66.1)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.31.1, < 2.0)
regexp_parser (>= 2.4, < 3.0)
rubocop-ast (>= 1.32.2, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.32.3)
Expand Down Expand Up @@ -241,7 +240,7 @@ DEPENDENCIES
pushmi_pullyu!
rake (~> 13.0)
rspec (~> 3.13)
rubocop (~> 1.64)
rubocop (~> 1.66)
rubocop-rspec (~> 3.1)
timecop (~> 0.9)
vcr (~> 5.0)
Expand Down
24 changes: 12 additions & 12 deletions pushmi_pullyu.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = '>= 2.7'

spec.add_runtime_dependency 'activesupport', '>= 5', '< 8'
spec.add_runtime_dependency 'bagit', '~> 0.4'
spec.add_runtime_dependency 'connection_pool', '~> 2.2'
spec.add_runtime_dependency 'daemons', '~> 1.2', '>= 1.2.4'
spec.add_runtime_dependency 'minitar', '>= 0.7', '< 2.0'
spec.add_runtime_dependency 'openstack', '~> 3.3', '>= 3.3.10'
spec.add_runtime_dependency 'rdf', '>= 1.99', '< 4.0'
spec.add_runtime_dependency 'rdf-n3', '>= 1.99', '< 4.0'
spec.add_runtime_dependency 'redis', '>= 3.3', '< 6.0'
spec.add_runtime_dependency 'rest-client', '>= 1.8', '< 3.0'
spec.add_runtime_dependency 'rollbar', '>= 2.18', '< 4.0'
spec.add_runtime_dependency 'uuid', '~> 2.3.9'
spec.add_dependency 'activesupport', '>= 5', '< 8'
spec.add_dependency 'bagit', '~> 0.4'
spec.add_dependency 'connection_pool', '~> 2.2'
spec.add_dependency 'daemons', '~> 1.2', '>= 1.2.4'
spec.add_dependency 'minitar', '>= 0.7', '< 2.0'
spec.add_dependency 'openstack', '~> 3.3', '>= 3.3.10'
spec.add_dependency 'rdf', '>= 1.99', '< 4.0'
spec.add_dependency 'rdf-n3', '>= 1.99', '< 4.0'
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 'uuid', '~> 2.3.9'

spec.metadata = {
'rubygems_mfa_required' => 'true'
Expand Down
Loading