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 the ruby-minor-patch group with 5 updates #3344

Merged
merged 1 commit into from
Jan 27, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 27, 2025

Bumps the ruby-minor-patch group with 5 updates:

Package From To
sentry-ruby 5.22.1 5.22.2
sentry-rails 5.22.1 5.22.2
rubocop 1.70.0 1.71.0
rubocop-rails 2.29.0 2.29.1
launchy 3.0.1 3.1.0

Updates sentry-ruby from 5.22.1 to 5.22.2

Changelog

Sourced from sentry-ruby's changelog.

5.22.2

Features

  • Improve the accuracy of duration calculations in cron jobs monitoring (#2471)
  • Use attempt_threshold to skip reporting on first N attempts (#2503)
  • Support code.namespace for Ruby 3.4+ stacktraces (#2506)

Bug fixes

  • Default to internal_error error type for OpenTelemetry spans #2473
  • Improve before_send and before_send_transaction's return value handling (#2504)
  • Fix a crash when calling Sentry.get_main_hub in a trap context (#2510)
  • Use URI::RFC2396_PARSER.escape explicitly to remove warning logs to stderr (#2509)

Internal

  • Test Ruby 3.4 in CI (#2506)
  • Upgrade actions workflows versions (#2506)
  • Stop relying on fugit (#2519)
Commits

Updates sentry-rails from 5.22.1 to 5.22.2

Changelog

Sourced from sentry-rails's changelog.

5.22.2

Features

  • Improve the accuracy of duration calculations in cron jobs monitoring (#2471)
  • Use attempt_threshold to skip reporting on first N attempts (#2503)
  • Support code.namespace for Ruby 3.4+ stacktraces (#2506)

Bug fixes

  • Default to internal_error error type for OpenTelemetry spans #2473
  • Improve before_send and before_send_transaction's return value handling (#2504)
  • Fix a crash when calling Sentry.get_main_hub in a trap context (#2510)
  • Use URI::RFC2396_PARSER.escape explicitly to remove warning logs to stderr (#2509)

Internal

  • Test Ruby 3.4 in CI (#2506)
  • Upgrade actions workflows versions (#2506)
  • Stop relying on fugit (#2519)
Commits

Updates rubocop from 1.70.0 to 1.71.0

Release notes

Sourced from rubocop's releases.

RuboCop 1.71

New features

Bug fixes

  • #13684: Fix a false positive for Style/FrozenStringLiteralComment when using the frozen string literal magic comment in Active Admin's arb files. (@​koic)
  • #13372: Add rubocop_cache to the path given by --cache-root when pruning cache. (@​capncavedan)
  • #13257: Fix department disable/enable comments enabling the cop for the whole file even if that file is excluded by the cop. (@​earlopain)
  • #13704: Fix false positives for Lint/OutOfRangeRegexpRef when matching with match using safe navigation. (@​koic)
  • #13720: Fix false positives for Style/BlockDelimiters when using brace blocks as conditions under EnforcedStyle: semantic. (@​koic)
  • #13688: Fix false negative on Style/RedundantLineContinuation when the continuation is preceded by an interpolated string. (@​dvandersluis)
  • #13677: Fix false negative on Style/RedundantLineContinuation when the continuation is followed by a percent array. (@​dvandersluis)
  • #13692: Fix false positive in Style/RedundantLineContinuation when the ruby code ends with a commented continuation. (@​dvandersluis)
  • #13675: Fix invalid autocorrect for Style/ArrayFirstLast when calling .[] or &.[] with 0 or -1. (@​dvandersluis)
  • #13685: Fix syntax error introduced by Lint/SafeNavigationChain when adding safe navigation to an operator call inside a hash. (@​dvandersluis)
  • #13725: Fix an incorrect autocorrect for Style/IfUnlessModifier when using omitted hash values in an assignment. (@​elliottt)
  • #13667: Maintain precedence in autocorrect for Style/SoleNestedConditional. (@​tejasbubane)
  • #13679: Fix false positive for Style/RedundantLineContinuation when calling methods with fully qualified constants. (@​earlopain)
  • #13728: Fix a RuboCop error on provided glob pattern which matches directory. ([@​viralpraxis][])
  • #13693: Fix Style/ConditionalAssignment cop error on unless without else and assign_inside_condition enforced style. ([@​viralpraxis][])
  • #13669: Fix Style/FrozenStringLiteralComment cop error on unnormalized magic comment and never enforced style. ([@​viralpraxis][])
  • #13696: Update Metrics/CollectionLiteralLength to only register for [] when called on Set. (@​dvandersluis)

Changes

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.71.0 (2025-01-22)

New features

Bug fixes

  • #13684: Fix a false positive for Style/FrozenStringLiteralComment when using the frozen string literal magic comment in Active Admin's arb files. ([@​koic][])
  • #13372: Add rubocop_cache to the path given by --cache-root when pruning cache. ([@​capncavedan][])
  • #13257: Fix department disable/enable comments enabling the cop for the whole file even if that file is excluded by the cop. ([@​earlopain][])
  • #13704: Fix false positives for Lint/OutOfRangeRegexpRef when matching with match using safe navigation. ([@​koic][])
  • #13720: Fix false positives for Style/BlockDelimiters when using brace blocks as conditions under EnforcedStyle: semantic. ([@​koic][])
  • #13688: Fix false negative on Style/RedundantLineContinuation when the continuation is preceded by an interpolated string. ([@​dvandersluis][])
  • #13677: Fix false negative on Style/RedundantLineContinuation when the continuation is followed by a percent array. ([@​dvandersluis][])
  • #13692: Fix false positive in Style/RedundantLineContinuation when the ruby code ends with a commented continuation. ([@​dvandersluis][])
  • #13675: Fix invalid autocorrect for Style/ArrayFirstLast when calling .[] or &.[] with 0 or -1. ([@​dvandersluis][])
  • #13685: Fix syntax error introduced by Lint/SafeNavigationChain when adding safe navigation to an operator call inside a hash. ([@​dvandersluis][])
  • #13725: Fix an incorrect autocorrect for Style/IfUnlessModifier when using omitted hash values in an assignment. ([@​elliottt][])
  • #13667: Maintain precedence in autocorrect for Style/SoleNestedConditional. ([@​tejasbubane][])
  • #13679: Fix false positive for Style/RedundantLineContinuation when calling methods with fully qualified constants. ([@​earlopain][])
  • #13728: Fix a RuboCop error on provided glob pattern which matches directory. ([@​viralpraxis][])
  • #13693: Fix Style/ConditionalAssignment cop error on unless without else and assign_inside_condition enforced style. ([@​viralpraxis][])
  • #13669: Fix Style/FrozenStringLiteralComment cop error on unnormalized magic comment and never enforced style. ([@​viralpraxis][])
  • #13696: Update Metrics/CollectionLiteralLength to only register for [] when called on Set. ([@​dvandersluis][])

Changes

Commits
  • 6b13abb Cut 1.71
  • c923a84 Update Changelog
  • 83958cb Rename c_send to csend for consistency
  • 1f25c2c Add new InternalAffairs/OnSendWithoutOnCSend cop
  • 95f45cc [Fix #13323] Add new Lint/ArrayLiteralInRegexp cop
  • 30c4e20 Update Lint/LiteralInInterpolation to not handle array literals inside a re...
  • 7edf6d7 [Doc] Move rubocop-i18n from puppetlabs to rubocop org
  • c746991 Merge pull request #13737 from dvandersluis/fix-jruby-ci
  • b3c8061 Fix jruby CI error
  • 617fd40 Merge pull request #13734 from dvandersluis/fix-expect-offense
  • Additional commits viewable in compare view

Updates rubocop-rails from 2.29.0 to 2.29.1

Release notes

Sourced from rubocop-rails's releases.

RuboCop Rails 2.29.1

Bug fixes

  • #1423: Fix an error for Rails/StrongParametersExpect when using permit with no arguments. (@​koic)
  • #1417: Fix an incorrect autocorrect for Rails/StrongParametersExpect when using a leading dot multiline call to require with permit. (@​koic)
  • #1356: Enhance Rails/DuplicateAssociation to handle alias. (@​ydakuka)
  • #1389: Handle TypeError caused by passing array literals as arguments to File methods in Rails/FilePath cop. (@​ydakuka)
  • #1389: Handle TypeError caused by passing array literals as arguments to File methods in Rails/RootPathnameMethods cop. (@​ydakuka)
  • #1228: Enhance Rails/SaveBang to properly handle instance variables. (@​ydakuka)
Changelog

Sourced from rubocop-rails's changelog.

2.29.1 (2025-01-25)

Bug fixes

  • #1423: Fix an error for Rails/StrongParametersExpect when using permit with no arguments. ([@​koic][])
  • #1417: Fix an incorrect autocorrect for Rails/StrongParametersExpect when using a leading dot multiline call to require with permit. ([@​koic][])
  • #1356: Enhance Rails/DuplicateAssociation to handle alias. ([@​ydakuka][])
  • #1389: Handle TypeError caused by passing array literals as arguments to File methods in Rails/FilePath cop. ([@​ydakuka][])
  • #1389: Handle TypeError caused by passing array literals as arguments to File methods in Rails/RootPathnameMethods cop. ([@​ydakuka][])
  • #1228: Enhance Rails/SaveBang to properly handle instance variables. ([@​ydakuka][])
Commits
  • a54b408 Cut 2.29.1
  • 18f5484 Update Changelog
  • c0f086f Apply bundle exec rubocop --regenerate-todo
  • d1443ca Merge pull request #1419 from ydakuka/fix/enhance-rails-duplicate-association...
  • 10829d3 [Fix rubocop#1356] Enhance Rails/DuplicateAssociation to handle alias
  • 7024ab5 Merge pull request #1415 from ydakuka/fix/typeerror_in_the_file_path_cop
  • 3677f7b [Fix rubocop#1389] Handle TypeError caused by an array in Rails/FilePath cop
  • 158cd38 Merge pull request #1424 from koic/fix_an_error_for_rails_strong_parameters_e...
  • ce69ef7 Merge pull request #1416 from ydakuka/fix/typeerror_in_the_root_pathname_meth...
  • e48fec2 [Fix #1423] Fix an error for Rails/StrongParametersExpect
  • Additional commits viewable in compare view

Updates launchy from 3.0.1 to 3.1.0

Changelog

Sourced from launchy's changelog.

Version 3.1.0 - 2025-01-23

  • Fix the argv array when passing to ChildProcess on windows - copiousfreetime/launchy#159
  • Update the ruby test matrix for 3.4
  • Update the ruby test matrix to drop 3.0
Commits
  • 27e3196 Release 3.1.0
  • 5c4034f Merge pull request #162 from copiousfreetime/release/3.1.0
  • a6f8063 prep release 3.1.0
  • 5c542d3 Merge pull request #160 from copiousfreetime/bugfix/windows-argv-list
  • 4b2d358 Fix the generation of argv for ChildProcess
  • 8691074 Merge pull request #161 from copiousfreetime/maintenance/update-test-matrix
  • 8a74d04 using 3.2.5 on macos since there is an abort error on 3.2.6
  • 4dfeb31 bundle lock --add-checksums
  • 47a6d11 nromalize platforms
  • 4cd98ea downrev zeitwerk as we need a version that works with ruby 3.1.6
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the ruby-minor-patch group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [sentry-ruby](https://github.com/getsentry/sentry-ruby) | `5.22.1` | `5.22.2` |
| [sentry-rails](https://github.com/getsentry/sentry-ruby) | `5.22.1` | `5.22.2` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.70.0` | `1.71.0` |
| [rubocop-rails](https://github.com/rubocop/rubocop-rails) | `2.29.0` | `2.29.1` |
| [launchy](https://github.com/copiousfreetime/launchy) | `3.0.1` | `3.1.0` |


Updates `sentry-ruby` from 5.22.1 to 5.22.2
- [Release notes](https://github.com/getsentry/sentry-ruby/releases)
- [Changelog](https://github.com/getsentry/sentry-ruby/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-ruby@5.22.1...5.22.2)

Updates `sentry-rails` from 5.22.1 to 5.22.2
- [Release notes](https://github.com/getsentry/sentry-ruby/releases)
- [Changelog](https://github.com/getsentry/sentry-ruby/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-ruby@5.22.1...5.22.2)

Updates `rubocop` from 1.70.0 to 1.71.0
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.70.0...v1.71.0)

Updates `rubocop-rails` from 2.29.0 to 2.29.1
- [Release notes](https://github.com/rubocop/rubocop-rails/releases)
- [Changelog](https://github.com/rubocop/rubocop-rails/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-rails@v2.29.0...v2.29.1)

Updates `launchy` from 3.0.1 to 3.1.0
- [Changelog](https://github.com/copiousfreetime/launchy/blob/main/HISTORY.md)
- [Commits](copiousfreetime/launchy@v3.0.1...v3.1.0)

---
updated-dependencies:
- dependency-name: sentry-ruby
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ruby-minor-patch
- dependency-name: sentry-rails
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ruby-minor-patch
- dependency-name: rubocop
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby-minor-patch
- dependency-name: rubocop-rails
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ruby-minor-patch
- dependency-name: launchy
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby-minor-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 27, 2025
@dependabot dependabot bot requested a review from xmunoz January 27, 2025 20:52
@xmunoz xmunoz merged commit ee87017 into main Jan 27, 2025
3 checks passed
@dependabot dependabot bot deleted the dependabot/bundler/ruby-minor-patch-96246ae645 branch January 27, 2025 22:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant