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

build(deps): Bump the rspec group across 1 directory with 5 updates #2500

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 6, 2025

Bumps the rspec group with 3 updates in the / directory: rspec-rails, rails and rubocop.

Updates rspec-rails from 6.1.5 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)

7.1.0 / 2024-11-09

Full Changelog

Enhancements:

  • Improve implicit description for ActionCable matchers have_broadcasted_to / have_broadcast. (Simon Fish, rspec/rspec-rails#2795)
  • Comment out infer_spec_type_from_file_location! in newly generated rails_helper.rb files. (Jon Rowe, rspec/rspec-rails#2804)
  • Allow turning off active job / mailer argument validation. (Oli Peate, rspec/rspec-rails#2808)

7.0.2 / 2024-11-09

Full Changelog

Bug Fixes:

7.0.1 / 2024-09-03

Full Changelog

Bug Fixes:

7.0.0 / 2024-09-02

Full Changelog

Enhancements:

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 rails from 6.1.7.10 to 8.0.1

Release notes

Sourced from rails's releases.

8.0.1

Active Support

  • Fix a bug in ERB::Util.tokenize that causes incorrect tokenization when ERB tags are preceeded by multibyte characters.

    Martin Emde

  • Restore the ability to decorate methods generated by class_attribute.

    It always has been complicated to use Module#prepend or an alias method chain to decorate methods defined by class_attribute, but became even harder in 8.0.

    This capability is now supported for both reader and writer methods.

    Jean Boussier

Active Model

  • No changes.

Active Record

  • Fix removing foreign keys with :restrict action for MySQ

    fatkodima

  • Fix a race condition in ActiveRecord::Base#method_missing when lazily defining attributes.

    If multiple thread were concurrently triggering attribute definition on the same model, it could result in a NoMethodError being raised.

    Jean Boussier

  • Fix MySQL default functions getting dropped when changing a column's nullability.

    Bastian Bartmann

  • Fix add_unique_constraint/add_check_constraint/add_foreign_key to be revertible when given invalid options.

    fatkodima

  • Fix asynchronous destroying of polymorphic belongs_to associations.

    fatkodima

  • Fix insert_all to not update existing records.

    fatkodima

... (truncated)

Commits
  • cf6ff17 Preparing for 8.0.1 release
  • 0bba3c2 Merge pull request #53936 from jsharpify/jsharpify/prism-parsing
  • 8521b99 [RF-DOCS] Update Rails Testing Guide [ci skip] (#53872)
  • dbe61a7 Merge pull request #53907 from p8/guides/fix-canonical
  • f8d559d [RF-DOCS] Asset Pipeline Documentation (Propshaft) [ci-skip] (#53875)
  • 2ae1d69 [RF-DOCS] Solid Cache updates in Caching with Rails: An Overview [ci-skip] (...
  • 85bde83 Merge pull request #53926 from Ridhwana/Ridhwana/solid-queue
  • c167cbe Merge pull request #53941 from byroot/rack-server-protocol
  • 656e209 Merge pull request #53940 from mjankowski/rdoc-link-to-add-check-constraint
  • b9608a6 Merge pull request #53937 from fatkodima/mysql-fix-remove-foreign-key-restrict
  • Additional commits viewable in compare view

Updates rubocop from 1.64.1 to 1.71.2

Release notes

Sourced from rubocop's releases.

RuboCop 1.71.2

Bug fixes

  • #13782: Fix an error Layout/ElseAlignment when else is part of a numblock. (@​earlopain)
  • #13395: Fix a false positive for Lint/UselessAssignment when assigning in branch and block. (@​pCosta99)
  • #13783: Fix a false positive for Lint/Void when each numblock with conditional expressions that has multiple statements. (@​earlopain)
  • #13787: Fix incorrect autocorrect for Style/ExplicitBlockArgument when using arguments of zsuper in method definition. (@​koic)
  • #13785: Fix Style/EachWithObject cop error in case of single block argument. (@​viralpraxis)
  • #13781: Fix a false positive for Lint/UnmodifiedReduceAccumulator when omitting the accumulator in a nested numblock. (@​earlopain)

RuboCop 1.71.1

Bug fixes

  • #10081: Add the missing include RuboCop::RSpec::ExpectOffense in rubocop/rspec/support.rb. (@​d4rky-pl)
  • #13765: Fix a false negative for Lint/AmbiguousBlockAssociation with numblocks. (@​earlopain)
  • #13759: Fix a false negative for Lint/ConstantDefinitionInBlock with numblocks. (@​earlopain)
  • #13741: Register an offense for Naming/BlockForwarding and Style/ArgumentsForwarding with Ruby >= 3.4 when the block argument is referenced inside a block. This was previously disabled because of a bug in Ruby 3.3.0. (@​earlopain)
  • #13777: Fix a false negative for Layout/EmptyLineBetweenDefs with DefLikeMacros and numblocks. (@​earlopain)
  • #13769: Fix a false negative for Style/RedundantParentheses with numblocks. (@​earlopain)
  • #13780: Fix a false positive Style/AccessModifierDeclarations when using access modifier in a numblock. (@​earlopain)
  • #13775: Fix a false positive for Lint/AssignmentInCondition when assigning in numblocks. (@​earlopain)
  • #13773: Fix false positives for Layout/RedundantLineBreak when using numbered block parameter. (@​koic)
  • #13761: Fix a false positive for Style/SuperArguments when calling super in a numblock. (@​earlopain)
  • #13768: Fix a false positive for Lint/UnreachableCode with instance_eval numblock. (@​earlopain)
  • #13750: Fix false positives for Style/RedundantSelfAssignment when assigning to attribute of self. (@​koic)
  • #13739: Fix false positive for Style/HashExcept and Style/HashSlice when checking for inclusion with a range. (@​dvandersluis)
  • #13751: Fix false positive in Layout/ExtraSpacing with ForceEqualSignAlignment: true for endless methods. (@​dvandersluis)
  • #13767: Fix Style/IdenticalConditionalBranches autocorrect when condition is inside assignment. (@​dvandersluis)
  • #13764: Fix a false negative for Layout/SingleLineBlockChain with numblocks. (@​earlopain)
  • #13771: Fix wrong autocorrect for Style/SoleNestedConditional when using numblocks. (@​earlopain)

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)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.71.2 (2025-02-04)

Bug fixes

  • #13782: Fix an error Layout/ElseAlignment when else is part of a numblock. ([@​earlopain][])
  • #13395: Fix a false positive for Lint/UselessAssignment when assigning in branch and block. ([@​pCosta99][])
  • #13783: Fix a false positive for Lint/Void when each numblock with conditional expressions that has multiple statements. ([@​earlopain][])
  • #13787: Fix incorrect autocorrect for Style/ExplicitBlockArgument when using arguments of zsuper in method definition. ([@​koic][])
  • #13785: Fix Style/EachWithObject cop error in case of single block argument. ([@​viralpraxis][])
  • #13781: Fix a false positive for Lint/UnmodifiedReduceAccumulator when omitting the accumulator in a nested numblock. ([@​earlopain][])

1.71.1 (2025-01-31)

Bug fixes

  • #10081: Add the missing include RuboCop::RSpec::ExpectOffense in rubocop/rspec/support.rb. ([@​d4rky-pl][])
  • #13765: Fix a false negative for Lint/AmbiguousBlockAssociation with numblocks. ([@​earlopain][])
  • #13759: Fix a false negative for Lint/ConstantDefinitionInBlock with numblocks. ([@​earlopain][])
  • #13741: Register an offense for Naming/BlockForwarding and Style/ArgumentsForwarding with Ruby >= 3.4 when the block argument is referenced inside a block. This was previously disabled because of a bug in Ruby 3.3.0. ([@​earlopain][])
  • #13777: Fix a false negative for Layout/EmptyLineBetweenDefs with DefLikeMacros and numblocks. ([@​earlopain][])
  • #13769: Fix a false negative for Style/RedundantParentheses with numblocks. ([@​earlopain][])
  • #13780: Fix a false positive Style/AccessModifierDeclarations when using access modifier in a numblock. ([@​earlopain][])
  • #13775: Fix a false positive for Lint/AssignmentInCondition when assigning in numblocks. ([@​earlopain][])
  • #13773: Fix false positives for Layout/RedundantLineBreak when using numbered block parameter. ([@​koic][])
  • #13761: Fix a false positive for Style/SuperArguments when calling super in a numblock. ([@​earlopain][])
  • #13768: Fix a false positive for Lint/UnreachableCode with instance_eval numblock. ([@​earlopain][])
  • #13750: Fix false positives for Style/RedundantSelfAssignment when assigning to attribute of self. ([@​koic][])
  • #13739: Fix false positive for Style/HashExcept and Style/HashSlice when checking for inclusion with a range. ([@​dvandersluis][])
  • #13751: Fix false positive in Layout/ExtraSpacing with ForceEqualSignAlignment: true for endless methods. ([@​dvandersluis][])
  • #13767: Fix Style/IdenticalConditionalBranches autocorrect when condition is inside assignment. ([@​dvandersluis][])
  • #13764: Fix a false negative for Layout/SingleLineBlockChain with numblocks. ([@​earlopain][])
  • #13771: Fix wrong autocorrect for Style/SoleNestedConditional when using numblocks. ([@​earlopain][])

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

... (truncated)

Commits
  • 2cd0ca2 Cut 1.71.2
  • b205529 Update Changelog
  • da31e5a Merge pull request #13785 from viralpraxis/fix-style-each-with-object-cop-err...
  • b3e86f6 Fix Style/EachWithObject cop error in case if single block argument
  • 7e0ffa0 [Fix #13787] Fix incorrect autocorrect for Style/ExplicitBlockArgument
  • 910795c Merge pull request #13409 from pCosta99/issue/13395
  • 0d8d9ed Merge pull request #13784 from koic/stablize_help_command_line_option_test
  • 8c1dc79 Stabilize help command line option test
  • 933c879 Merge pull request #13783 from Earlopain/lint-void-numblock
  • 8a48e61 Merge pull request #13782 from Earlopain/else-alignment-numblock
  • Additional commits viewable in compare view

Updates rspec-core from 3.13.1 to 3.13.3

Changelog

Sourced from rspec-core's changelog.

Development

Full Changelog

Enhancements:

  • Add config option (RSpec::Core::Configuration#force_line_number_for_spec_rerun) to allways print a line number rather than an example id when the line number is ambiguous. (Baden Ashford, #3085)

3.13.2 / 2024-10-18

Full Changelog

Bug fixes:

  • RSpec::Configuration#requires will reflect files already required, whilst requiring them. (Jon Rowe, #3117)
Commits

Updates rspec-support from 3.13.1 to 3.13.2

Changelog

Sourced from rspec-support's changelog.

3.13.2 / 2024-12-02

Full Changelog

Bug Fixes:

  • Prevent recursive calls to stubbed methods during stub invocation. (James Dabbs, rspec/rspec#116)
Commits

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

@dependabot dependabot bot added dependencies ruby Pull requests that update Ruby code labels Feb 6, 2025
@dependabot dependabot bot requested a review from toshimaru February 6, 2025 18:38
Bumps the rspec group with 3 updates in the / directory: [rspec-rails](https://github.com/rspec/rspec-rails), [rails](https://github.com/rails/rails) and [rubocop](https://github.com/rubocop/rubocop).


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

Updates `rails` from 6.1.7.10 to 8.0.1
- [Release notes](https://github.com/rails/rails/releases)
- [Commits](rails/rails@v6.1.7.10...v8.0.1)

Updates `rubocop` from 1.64.1 to 1.71.2
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.64.1...v1.71.2)

Updates `rspec-core` from 3.13.1 to 3.13.3
- [Release notes](https://github.com/rspec/rspec-core/releases)
- [Changelog](https://github.com/rspec/rspec-core/blob/main/Changelog.md)
- [Commits](https://github.com/rspec/rspec-core/commits)

Updates `rspec-support` from 3.13.1 to 3.13.2
- [Changelog](https://github.com/rspec/rspec/blob/rspec-support-v3.13.2/rspec-support/Changelog.md)
- [Commits](rspec/rspec@rspec-support-v3.13.1...rspec-support-v3.13.2)

---
updated-dependencies:
- dependency-name: rspec-rails
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: rspec
- dependency-name: rails
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rspec
- dependency-name: rubocop
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: rspec
- dependency-name: rspec-core
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rspec
- dependency-name: rspec-support
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rspec
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/bundler/rspec-ee4b42cb31 branch from 343bee2 to e2364db Compare February 10, 2025 19:34
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 11, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Feb 11, 2025
@dependabot dependabot bot deleted the dependabot/bundler/rspec-ee4b42cb31 branch February 11, 2025 09:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies ruby Pull requests that update Ruby code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants