Skip to content

Commit f5ff69b

Browse files
dependabot[bot]kaylareopellearielvalentin
authored
chore: update rubocop requirement from ~> 1.84.0 to ~> 1.85.0 in the production-dependencies group (#2043)
* chore: update rubocop requirement from ~> 1.84.0 to ~> 1.85.0 Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version. Updates `rubocop` to 1.85.0 - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop@v1.84.0...v1.85.0) --- updated-dependencies: - dependency-name: rubocop dependency-version: 1.85.0 dependency-type: direct:production dependency-group: production-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * chore: Lint for new Rubocop Disable: Style/OneClassPerFile Enable: * Style/FileOpen * Style/RedundantStructKeywordInit * Style/ReduceToHash * chore: bump rubocop to 1.85.0 * chore: revert changes to File.open * chore: Use IO + read instead of File.open --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kayla Reopelle <kreopelle@newrelic.com> Co-authored-by: Kayla Reopelle <87386821+kaylareopelle@users.noreply.github.com> Co-authored-by: Ariel Valentin <arielvalentin@users.noreply.github.com>
1 parent 9f14cc0 commit f5ff69b

77 files changed

Lines changed: 95 additions & 93 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.instrumentation_generator/templates/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ group :test do
1515
gem 'opentelemetry-sdk', '~> 1.0'
1616
gem 'opentelemetry-test-helpers', '~> 0.3'
1717
gem 'rake', '>= 13'
18-
gem 'rubocop', '~> 1.84.0'
18+
gem 'rubocop', '~> 1.85.0'
1919
gem 'rubocop-performance', '~> 1.26.0'
2020
gem 'simplecov', '~> 0.22.0'
2121
gem 'webmock', '~> 3.24'

.rubocop.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ Style/ModuleFunction:
5151
Style/MultilineIfModifier:
5252
Exclude:
5353
- "**/test/**/*"
54+
Style/OneClassPerFile:
55+
Enabled: false
5456
Style/RedundantRegexpEscape:
5557
Enabled: false
5658
Style/StringLiterals:

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ gem 'opentelemetry-registry', '~> 0.1'
1717
gem 'opentelemetry-sdk', '~> 1.1'
1818

1919
gem 'rake', '>= 13'
20-
gem 'rubocop', '~> 1.84.0'
20+
gem 'rubocop', '~> 1.85.0'
2121
gem 'rubocop-performance', '~> 1.26.0'

helpers/mysql/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ group :test do
1313
gem 'rspec-mocks', '~> 3.13.7'
1414
gem 'opentelemetry-test-helpers', '~> 0.3'
1515
gem 'rake', '>= 13'
16-
gem 'rubocop', '~> 1.84.0'
16+
gem 'rubocop', '~> 1.85.0'
1717
gem 'rubocop-performance', '~> 1.26.0'
1818
gem 'simplecov', '~> 0.22.0'
1919
gem 'yard', '~> 0.9'

helpers/sql-obfuscation/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ group :test do
1212
gem 'minitest', '~> 5.0'
1313
gem 'opentelemetry-test-helpers', '~> 0.3'
1414
gem 'rake', '>= 13'
15-
gem 'rubocop', '~> 1.84.0'
15+
gem 'rubocop', '~> 1.85.0'
1616
gem 'rubocop-performance', '~> 1.26.0'
1717
gem 'simplecov', '~> 0.22.0'
1818
gem 'yard', '~> 0.9'

helpers/sql-processor/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ group :test do
1313
gem 'opentelemetry-sdk', '~> 1.5'
1414
gem 'opentelemetry-test-helpers', '~> 0.3'
1515
gem 'rake', '>= 13'
16-
gem 'rubocop', '~> 1.84.0'
16+
gem 'rubocop', '~> 1.85.0'
1717
gem 'rubocop-performance', '~> 1.26.0'
1818
gem 'simplecov', '~> 0.22.0'
1919
gem 'yard', '~> 0.9'

helpers/sql/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ group :test do
1313
gem 'minitest', '~> 5.0'
1414
gem 'opentelemetry-test-helpers', '~> 0.3'
1515
gem 'rake', '>= 13'
16-
gem 'rubocop', '~> 1.84.0'
16+
gem 'rubocop', '~> 1.85.0'
1717
gem 'rubocop-performance', '~> 1.26.0'
1818
gem 'simplecov', '~> 0.22.0'
1919
gem 'yard', '~> 0.9'

instrumentation/action_mailer/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ group :test do
1414
gem 'opentelemetry-sdk', '~> 1.1'
1515
gem 'opentelemetry-test-helpers', '~> 0.3'
1616
gem 'rake', '>= 13'
17-
gem 'rubocop', '~> 1.84.0'
17+
gem 'rubocop', '~> 1.85.0'
1818
gem 'rubocop-performance', '~> 1.26.0'
1919
gem 'simplecov', '~> 0.22.0'
2020
gem 'webmock', '~> 3.24'

instrumentation/action_pack/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ group :test do
1414
gem 'opentelemetry-sdk', '~> 1.1'
1515
gem 'opentelemetry-test-helpers', '~> 0.3'
1616
gem 'rake', '>= 13'
17-
gem 'rubocop', '~> 1.84.0'
17+
gem 'rubocop', '~> 1.85.0'
1818
gem 'rubocop-performance', '~> 1.26.0'
1919
gem 'simplecov', '~> 0.22.0'
2020
gem 'webmock', '~> 3.24'

instrumentation/action_view/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ group :test do
1414
gem 'opentelemetry-sdk', '~> 1.1'
1515
gem 'opentelemetry-test-helpers', '~> 0.3'
1616
gem 'rake', '>= 13'
17-
gem 'rubocop', '~> 1.84.0'
17+
gem 'rubocop', '~> 1.85.0'
1818
gem 'rubocop-performance', '~> 1.26.0'
1919
gem 'simplecov', '~> 0.22.0'
2020
gem 'webmock', '~> 3.24'

0 commit comments

Comments
 (0)