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-dependencies group across 1 directory with 6 updates #843

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 1, 2025

Bumps the ruby-dependencies group with 6 updates in the /ruby directory:

Package From To
rubocop-performance 1.23.0 1.24.0
rubocop-rails 2.28.0 2.30.2
rubocop-rspec 3.3.0 3.5.0
rspec-rails 7.1.0 7.1.1
mechanize 2.12.2 2.14.0
rubyzip 2.3.2 2.4.1

Updates rubocop-performance from 1.23.0 to 1.24.0

Release notes

Sourced from rubocop-performance's releases.

RuboCop Performance 1.24.0

New features

  • #490: Pluginfy RuboCop Performance. (@​koic)
  • #462: Add new Performance/ZipWithoutBlock cop that checks patterns like .map { |id| [id] } or .map { [_1] } and can replace them with .zip. (@​corsonknowles)

Bug fixes

RuboCop Performance 1.23.1

Bug fixes

  • #478: Fix Performance/RedundantStringChars cop error in case of implicit receiver. (@​viralpraxis)
  • #480: Fix Performance/Squeeze cop error on frozen AST string node value. (@​viralpraxis)
Changelog

Sourced from rubocop-performance's changelog.

1.24.0 (2025-02-16)

New features

  • #490: Pluginfy RuboCop Performance. ([@​koic][])
  • #462: Add new Performance/ZipWithoutBlock cop that checks patterns like .map { |id| [id] } or .map { [_1] } and can replace them with .zip. ([@​corsonknowles][])

Bug fixes

  • #484: Fix Performance/CaseWhenSplat cop error on when node without body. ([@​viralpraxis][])

1.23.1 (2025-01-04)

Bug fixes

  • #478: Fix Performance/RedundantStringChars cop error in case of implicit receiver. ([@​viralpraxis][])
  • #480: Fix Performance/Squeeze cop error on frozen AST string node value. ([@​viralpraxis][])
Commits
  • 24a3a4e Cut 1.24.0
  • 20c07a2 Update Changelog
  • f6e7da0 Merge pull request #490 from koic/pluginfy_with_lint_roller
  • b83339d Pluginfy RuboCop Performance
  • ab7ef16 Suppress redundant configuration logging for rubocop-performace
  • 2c00726 Avoid unnecessary send
  • 074bd2a Explicit default Performance/Sum cop config for the spec
  • 349ae04 Suppress RuboCop's offenses
  • 2d36cac Merge pull request #462 from corsonknowles/add_performance_use_zip_to_wrap_ar...
  • 063b56d Merge pull request #489 from dvandersluis/use-node-groups
  • Additional commits viewable in compare view

Updates rubocop-rails from 2.28.0 to 2.30.2

Release notes

Sourced from rubocop-rails's releases.

RuboCop Rails 2.30.2

Bug fixes

  • #1447: Fix false positive for Rails/LexicallyScopedActionFilter when action methods are delegated. (@​vlad-pisanov)
  • #1446: Fix false positives for Rails/Delegate when module_function is used. (@​ydakuka)
  • #1427: Fix an error for Rails/UniqBeforePluck when pluck and unique are on different lines. (@​earlopain)

RuboCop Rails 2.30.1

Bug fixes

  • #1442: Fix an incorrect behavior when using AllCops: TargetRailsVersion. (@​koic)
  • #1444: Fix an incorrect behavior when using AllCops: MigratedSchemaVersion. (@​koic)

RuboCop Rails 2.30.0

New features

Bug fixes

  • #1071: Fix Rails/FilePath cop to correctly handle File.join with variables and ignore leading and multiple slashes in string literal arguments for Rails.root.join and File.join. (@​ydakuka)
  • #912: Enhance Rails/Delegate by adding delegation detection for self.class, constants, class variables, global variables, and instance variables. (@​ydakuka)

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)

RuboCop Rails 2.29.0

New features

... (truncated)

Changelog

Sourced from rubocop-rails's changelog.

2.30.2 (2025-02-24)

Bug fixes

  • #1447: Fix false positive for Rails/LexicallyScopedActionFilter when action methods are delegated. ([@​vlad-pisanov][])
  • #1446: Fix false positives for Rails/Delegate when module_function is used. ([@​ydakuka][])
  • #1427: Fix an error for Rails/UniqBeforePluck when pluck and unique are on different lines. ([@​earlopain][])

2.30.1 (2025-02-17)

Bug fixes

  • #1442: Fix an incorrect behavior when using AllCops: TargetRailsVersion. ([@​koic][])
  • #1444: Fix an incorrect behavior when using AllCops: MigratedSchemaVersion. ([@​koic][])

2.30.0 (2025-02-16)

New features

Bug fixes

  • #1071: Fix Rails/FilePath cop to correctly handle File.join with variables and ignore leading and multiple slashes in string literal arguments for Rails.root.join and File.join. ([@​ydakuka][])
  • #912: Enhance Rails/Delegate by adding delegation detection for self.class, constants, class variables, global variables, and instance variables. ([@​ydakuka][])

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][])

2.29.0 (2025-01-18)

New features

Bug fixes

  • #1409: Fix an error for Rails/ReversibleMigration when calling drop_table without any arguments. ([@​earlopain][])
  • #1397: Fix an incorrect autocorrect for Rails/TimeZone when Time.new has a string argument. ([@​mterada1228][])
  • #1406: Fix autocorrection for Rails/IndexBy and Rails/IndexWith when map { ... }.to_h is enclosed in another block. ([@​franzliedke][], [@​eugeneius][])
  • #1404: Update Rails/IndexBy and Rails/IndexWith to support numbered block parameters. ([@​eugeneius][])

... (truncated)

Commits
  • e023cdd Cut 2.30.2
  • 1ad2fe5 Update Changelog
  • 04529cf Merge pull request #1450 from vlad-pisanov/vp_fix_lexically_scoped_action_fil...
  • ec8e18e Merge pull request #1428 from Earlopain/uniq-pluck-multiple-lines
  • eca3732 Fix incorrect comment placement for add_dependency
  • 1980681 [Fix #1427] Fix an error for Rails/UniqBeforePluck with multi-line expression
  • 7b92670 [Fix #1447] Fix false positive for Rails/LexicallyScopedActionFilter when a...
  • 159045f Enable InternalAffairs/CopEnabled cop
  • 12b45a5 Merge pull request #1448 from ydakuka/1446/fix-incorrect-autocorrect-for-rail...
  • 204e667 [Fix rubocop#1446] Fix false positives for Rails/Delegate when `module_func...
  • Additional commits viewable in compare view

Updates rubocop-rspec from 3.3.0 to 3.5.0

Release notes

Sourced from rubocop-rspec's releases.

RuboCop RSpec v3.5.0

  • Don't let RSpec/PredicateMatcher replace respond_to? with two arguments with the RSpec respond_to matcher. (@​bquorning)
  • Fix RSpec/PredicateMatcher support for eql and equal matchers. (@​bquorning)
  • Pluginfy RuboCop RSpec. (@​koic)

RuboCop RSpec v3.4.0

  • Fix RSpec/SortMetadata cop to limit sorting to trailing metadata arguments. (@​cbliard)
  • Replace RSpec/StringAsInstanceDoubleConstant with RSpec/VerifiedDoubleReference configured to only support constant class references. (@​corsonknowles)
  • Fix RSpec/EmptyExampleGroup cop false positive when a simple conditional is used inside an iterator. (@​lovro-bikic)
Changelog

Sourced from rubocop-rspec's changelog.

3.5.0 (2025-02-16)

  • Don't let RSpec/PredicateMatcher replace respond_to? with two arguments with the RSpec respond_to matcher. ([@​bquorning])
  • Fix RSpec/PredicateMatcher support for eql and equal matchers. ([@​bquorning])
  • Pluginfy RuboCop RSpec. ([@​koic])

3.4.0 (2025-01-20)

  • Fix RSpec/SortMetadata cop to limit sorting to trailing metadata arguments. ([@​cbliard])
  • Replace RSpec/StringAsInstanceDoubleConstant with RSpec/VerifiedDoubleReference configured to only support constant class references. ([@​corsonknowles])
  • Fix RSpec/EmptyExampleGroup cop false positive when a simple conditional is used inside an iterator. ([@​lovro-bikic])
Commits
  • 4b14015 Merge pull request #2043 from rubocop/release
  • 6dafd48 Release v3.5.0
  • 664e15f Enable pending cops
  • dac4256 Merge pull request #2025 from rubocop/use-node-groups
  • 876b415 Use node groups in node patterns to replace unions of types
  • 17640ad Merge pull request #2042 from koic/pluginfy_with_lint_roller
  • 5f09fdf Pluginfy RuboCop RSpec
  • d29fd64 Merge pull request #2039 from rubocop/fewer-inline-disabled-cops
  • 2edbf15 Loosen Metrics/MethodLength to 15
  • c8b14c1 Remove unnecessary RuboCop disables
  • Additional commits viewable in compare view

Updates rspec-rails from 7.1.0 to 7.1.1

Changelog

Sourced from rspec-rails's changelog.

7.1.1 / 2025-02-06

Full Changelog

Bug Fixes:

  • Check wether rspec-mocks has been loaded before enabling signature verification for have_enqueued_job et al (Jon Rowe, rspec/rspec-rails#2823)
Commits
  • 93b2d24 Reference issues for Github
  • 28ad978 v7.1.1
  • 7f63fa9 Merge pull request #2823 from rspec/ensure-mocks-config-available
  • 3b099ce Simplify instructions for gems installations from git repository (#2828)
  • 62a04e5 Merge pull request #2829 from rspec/fix-verify-mailer-preview
  • 33f6492 Merge pull request #2826 from rspec/switch-to-monorepo
  • db114bb Switch to ruby 3.4 from rc
  • 6f1599d Merge pull request #2825 from rspec/ruby-3.4-v2
  • fece159 Merge pull request #2824 from rspec/fix-build
  • 9d5e281 Merge pull request #2812 from rspec/expand-permitted-rails-versions
  • Additional commits viewable in compare view

Updates mechanize from 2.12.2 to 2.14.0

Release notes

Sourced from mechanize's releases.

2.14.0 / 2025-01-05

  • Mechanize exposes a write_timeout attribute, which is set on the connection if it's supported (e.g., Net::HTTP::Persistent.write_timeout). (#586) @​maurycy

2.13.0 / 2025-01-02

New Contributors

Full Changelog: sparklemotion/mechanize@v2.12.2...v2.13.0

Changelog

Sourced from mechanize's changelog.

2.14.0 / 2025-01-05

  • Mechanize exposes a write_timeout attribute, which is set on the connection if it's supported (e.g., Net::HTTP::Persistent.write_timeout). (#586) @​maurycy

2.13.0 / 2025-01-02

Commits
  • e589e81 version bump to v2.14.0
  • 5c99be6 Merge pull request #663 from sparklemotion/flavorjones-write-timeout
  • 805451f test: additional coverage for read_timeout= and write_timeout=
  • 588eee9 doc: update CHANGELOG
  • 22b9dd4 Support Net::HTTP::Persistent.write_timeout
  • 0b23841 ci: add ruby-head to the matrix
  • bbbed46 version bump to v2.13.0
  • e564d56 Merge pull request #662 from sparklemotion/flavorjones-ruby-34-warnings
  • be2de52 quash Ruby 3.4 URI::Parser warnings
  • e9bc524 Merge pull request #661 from simpl1g/fix-frozen-string-warning-for-3-4
  • Additional commits viewable in compare view

Updates rubyzip from 2.3.2 to 2.4.1

Changelog

Sourced from rubyzip's changelog.

2.4.1 (2025-01-05)

This is a re-release of version 2.4 with a full version number string. We need to move to version 2.4.1 due to the canonical version number 2.4 now being taken in Rubygems.

Tooling:

  • Opt-in for MFA requirement explicitly on 2.4 branch.

2.4 (2025-01-04) - Yanked

Yanked due to incorrect version number format (2.4 vs 2.4.0).

  • Ensure compatibility with --enable-frozen-string-literal.
  • Ensure File.open_buffer doesn't rewrite unchanged data. This is a backport of the fix on the 3.x branch.
  • Enable use of the version 3 calling style (mainly named parameters) wherever possible, while retaining version 2.x compatibility.
  • Add (switchable) warning messages to methods that are changed or removed in version 3.x.

Tooling:

  • Switch to using GitHub Actions (from Travis).
  • Update Rubocop versions and configuration.
  • Update actions with latest rubies.
Commits
  • 6c4b7a9 Move to version 2.4.1 due to clash with 2.4.
  • 3b4c2bf Opt-in for MFA requirement explicitly on 2.4
  • e3eb624 Make sure version number is 2.4.0.
  • c09352b Bump version and Changelog for release.
  • 71bb069 Update actions with latest rubies.
  • bb06f99 Update actions dependencies.
  • 3d95a82 Update earliest Ruby version for MacOS builds in CI.
  • 56954b0 Suppress "literal string will be frozen in the future" warning
  • 6ff40f7 Fix setting and restoring RUBYZIP_V3_API_WARN in tests.
  • e05dc9b Improve version 3 API messages.
  • 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-dependencies group with 6 updates in the /ruby directory:

| Package | From | To |
| --- | --- | --- |
| [rubocop-performance](https://github.com/rubocop/rubocop-performance) | `1.23.0` | `1.24.0` |
| [rubocop-rails](https://github.com/rubocop/rubocop-rails) | `2.28.0` | `2.30.2` |
| [rubocop-rspec](https://github.com/rubocop/rubocop-rspec) | `3.3.0` | `3.5.0` |
| [rspec-rails](https://github.com/rspec/rspec-rails) | `7.1.0` | `7.1.1` |
| [mechanize](https://github.com/sparklemotion/mechanize) | `2.12.2` | `2.14.0` |
| [rubyzip](https://github.com/rubyzip/rubyzip) | `2.3.2` | `2.4.1` |



Updates `rubocop-performance` from 1.23.0 to 1.24.0
- [Release notes](https://github.com/rubocop/rubocop-performance/releases)
- [Changelog](https://github.com/rubocop/rubocop-performance/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-performance@v1.23.0...v1.24.0)

Updates `rubocop-rails` from 2.28.0 to 2.30.2
- [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.28.0...v2.30.2)

Updates `rubocop-rspec` from 3.3.0 to 3.5.0
- [Release notes](https://github.com/rubocop/rubocop-rspec/releases)
- [Changelog](https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-rspec@v3.3.0...v3.5.0)

Updates `rspec-rails` from 7.1.0 to 7.1.1
- [Changelog](https://github.com/rspec/rspec-rails/blob/main/Changelog.md)
- [Commits](rspec/rspec-rails@v7.1.0...v7.1.1)

Updates `mechanize` from 2.12.2 to 2.14.0
- [Release notes](https://github.com/sparklemotion/mechanize/releases)
- [Changelog](https://github.com/sparklemotion/mechanize/blob/main/CHANGELOG.md)
- [Commits](sparklemotion/mechanize@v2.12.2...v2.14.0)

Updates `rubyzip` from 2.3.2 to 2.4.1
- [Release notes](https://github.com/rubyzip/rubyzip/releases)
- [Changelog](https://github.com/rubyzip/rubyzip/blob/master/Changelog.md)
- [Commits](rubyzip/rubyzip@v2.3.2...v2.4.1)

---
updated-dependencies:
- dependency-name: rubocop-performance
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby-dependencies
- dependency-name: rubocop-rails
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby-dependencies
- dependency-name: rubocop-rspec
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby-dependencies
- dependency-name: rspec-rails
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ruby-dependencies
- dependency-name: mechanize
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ruby-dependencies
- dependency-name: rubyzip
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ruby-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Related to ruby or rails labels Mar 1, 2025
Copy link

vercel bot commented Mar 1, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

2 Skipped Deployments
Name Status Preview Updated (UTC)
company-ranking-idls ⬜️ Ignored (Inspect) Visit Preview Mar 1, 2025 11:51am
company-ranking-test-aabf ⬜️ Ignored (Inspect) Visit Preview Mar 1, 2025 11:51am

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 ruby Related to ruby or rails
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants