Update dependency rspec-rails to v7 #55

Merged
bustikiller merged 1 commits from renovate/rspec-rails-7.x into main 2024-10-21 09:33:59 +00:00
Owner

This PR contains the following updates:

Package Update Change
rspec-rails (changelog) major '~> 6.1.0' -> '~> 7.0.0'

Release Notes

rspec/rspec-rails (rspec-rails)

v7.0.1

Compare Source

Full Changelog

Bug Fixes:

  • Remove mutation of Rails constant in favour of public api. (Petrik de Heus, #​2789)
  • Cleanup Rails scaffold for unsupported versions. (Matt Jankowski, #​2790)
  • Remove deprecated scaffold that was unintentionally included in 7.0.0
    (Jon Rowe, #​2791)

v7.0.0

Compare Source

Full Changelog

Enhancements:

  • Change default driver for system specs on Rails 7.2 to match its default.
    (Steve Polito, #​2746)
  • Verify ActiveJob arguments by comparing to the method signature. (Oli Peate, #​2745)
  • Add suggestion to rails_helper.rb to skip when not in test mode. (Glauco Custódio, #​2751)
  • Add at_priority qualifier to have_enqueued_job set of matchers. (mbajur, #​2759)
  • Add spec directories to rails stats on Rails main / 8.0.0. (Petrik de Heus, #​2781)

v6.1.5

Compare Source

Full Changelog

Bug Fixes:

  • Restore old order of requiring support files. (Franz Liedke, #​2785)
  • Prevent running rake spec:statsetup on Rails main / 8.0.0. (Petrik de Heus, #​2781)

v6.1.4

Compare Source

Full Changelog

Bug Fixes:

  • Prevent have_http_status matcher raising an error when encountering a raw Rack::MockResponse.
    (Christophe Bliard, #​2771)
  • Move Rails version conditional from index scaffold generated file to template. (Matt Jankowski, #​2777)

v6.1.3

Compare Source

Full Changelog

Bug Fixes:

  • Reset ActiveSupport::CurrentAttributes between examples. (Javier Julio, #​2752)
  • Fix a broken link in generated mailer previews. (Chiara Núñez, #​2764)
  • Fix have_status_code behaviour with deprecated status names by delegating
    to Rack::Utils.status_code/1 to set the expected status code. (Darren Boyd, #​2765)

v6.1.2

Compare Source

Full Changelog

Bug Fixes:

  • Fix generated mailer paths to match Rails convention. (Patrício dos Santos, #​2735)
  • Fix class in template for generator specs. (Nicolas Buduroi, #​2744)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [rspec-rails](https://github.com/rspec/rspec-rails) ([changelog](https://github.com/rspec/rspec-rails/blob/v7.0.1/Changelog.md)) | major | `'~> 6.1.0'` -> `'~> 7.0.0'` | --- ### Release Notes <details> <summary>rspec/rspec-rails (rspec-rails)</summary> ### [`v7.0.1`](https://github.com/rspec/rspec-rails/blob/HEAD/Changelog.md#701--2024-09-03) [Compare Source](https://github.com/rspec/rspec-rails/compare/v7.0.0...v7.0.1) [Full Changelog](https://github.com/rspec/rspec-rails/compare/v7.0.0...v7.0.1) Bug Fixes: - Remove mutation of Rails constant in favour of public api. (Petrik de Heus, [#&#8203;2789](https://github.com/rspec/rspec-rails/issues/2789)) - Cleanup Rails scaffold for unsupported versions. (Matt Jankowski, [#&#8203;2790](https://github.com/rspec/rspec-rails/issues/2790)) - Remove deprecated scaffold that was unintentionally included in 7.0.0 (Jon Rowe, [#&#8203;2791](https://github.com/rspec/rspec-rails/issues/2791)) ### [`v7.0.0`](https://github.com/rspec/rspec-rails/blob/HEAD/Changelog.md#700--2024-09-02) [Compare Source](https://github.com/rspec/rspec-rails/compare/v6.1.5...v7.0.0) [Full Changelog](https://github.com/rspec/rspec-rails/compare/v6.1.5...v7.0.0) Enhancements: - Change default driver for system specs on Rails 7.2 to match its default. (Steve Polito, [#&#8203;2746](https://github.com/rspec/rspec-rails/issues/2746)) - Verify ActiveJob arguments by comparing to the method signature. (Oli Peate, [#&#8203;2745](https://github.com/rspec/rspec-rails/issues/2745)) - Add suggestion to rails_helper.rb to skip when not in test mode. (Glauco Custódio, [#&#8203;2751](https://github.com/rspec/rspec-rails/issues/2751)) - Add `at_priority` qualifier to `have_enqueued_job` set of matchers. (mbajur, [#&#8203;2759](https://github.com/rspec/rspec-rails/issues/2759)) - Add spec directories to `rails stats` on Rails main / 8.0.0. (Petrik de Heus, [#&#8203;2781](https://github.com/rspec/rspec-rails/issues/2781)) ### [`v6.1.5`](https://github.com/rspec/rspec-rails/blob/HEAD/Changelog.md#615--2024-09-02) [Compare Source](https://github.com/rspec/rspec-rails/compare/v6.1.4...v6.1.5) [Full Changelog](https://github.com/rspec/rspec-rails/compare/v6.1.4...v6.1.5) Bug Fixes: - Restore old order of requiring support files. (Franz Liedke, [#&#8203;2785](https://github.com/rspec/rspec-rails/issues/2785)) - Prevent running `rake spec:statsetup` on Rails main / 8.0.0. (Petrik de Heus, [#&#8203;2781](https://github.com/rspec/rspec-rails/issues/2781)) ### [`v6.1.4`](https://github.com/rspec/rspec-rails/blob/HEAD/Changelog.md#614--2024-08-15) [Compare Source](https://github.com/rspec/rspec-rails/compare/v6.1.3...v6.1.4) [Full Changelog](https://github.com/rspec/rspec-rails/compare/v6.1.3...v6.1.4) Bug Fixes: - Prevent `have_http_status` matcher raising an error when encountering a raw `Rack::MockResponse`. (Christophe Bliard, [#&#8203;2771](https://github.com/rspec/rspec-rails/issues/2771)) - Move Rails version conditional from index scaffold generated file to template. (Matt Jankowski, [#&#8203;2777](https://github.com/rspec/rspec-rails/issues/2777)) ### [`v6.1.3`](https://github.com/rspec/rspec-rails/blob/HEAD/Changelog.md#613--2024-06-19) [Compare Source](https://github.com/rspec/rspec-rails/compare/v6.1.2...v6.1.3) [Full Changelog](https://github.com/rspec/rspec-rails/compare/v6.1.2...v6.1.3) Bug Fixes: - Reset `ActiveSupport::CurrentAttributes` between examples. (Javier Julio, [#&#8203;2752](https://github.com/rspec/rspec-rails/issues/2752)) - Fix a broken link in generated mailer previews. (Chiara Núñez, [#&#8203;2764](https://github.com/rspec/rspec-rails/issues/2764)) - Fix `have_status_code` behaviour with deprecated status names by delegating to `Rack::Utils.status_code/1` to set the expected status code. (Darren Boyd, [#&#8203;2765](https://github.com/rspec/rspec-rails/issues/2765)) ### [`v6.1.2`](https://github.com/rspec/rspec-rails/blob/HEAD/Changelog.md#612--2024-03-19) [Compare Source](https://github.com/rspec/rspec-rails/compare/v6.1.1...v6.1.2) [Full Changelog](https://github.com/rspec/rspec-rails/compare/v6.1.1...v6.1.2) Bug Fixes: - Fix generated mailer paths to match Rails convention. (Patrício dos Santos, [#&#8203;2735](https://github.com/rspec/rspec-rails/issues/2735)) - Fix class in template for generator specs. (Nicolas Buduroi, [#&#8203;2744](https://github.com/rspec/rspec-rails/issues/2744)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC42MS4xIiwidXBkYXRlZEluVmVyIjoiMzguNjcuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
bustikiller added 1 commit 2024-09-02 17:03:12 +00:00
Update dependency rspec-rails to v7
All checks were successful
Run unit tests / unit_tests (pull_request) Successful in 1m51s
Build docker image / build-static-assets (pull_request) Successful in 17m4s
261354fa22
bustikiller force-pushed renovate/rspec-rails-7.x from 261354fa22 to 96d403d975 2024-09-07 15:09:28 +00:00 Compare
bustikiller force-pushed renovate/rspec-rails-7.x from 96d403d975 to 5a0e67f9c6 2024-09-20 22:21:36 +00:00 Compare
bustikiller force-pushed renovate/rspec-rails-7.x from 5a0e67f9c6 to e62f1e1de8 2024-09-21 22:09:25 +00:00 Compare
bustikiller force-pushed renovate/rspec-rails-7.x from e62f1e1de8 to 4f1d4588af 2024-09-22 22:08:44 +00:00 Compare
bustikiller force-pushed renovate/rspec-rails-7.x from 4f1d4588af to 1eca1c853c 2024-10-07 22:05:59 +00:00 Compare
bustikiller force-pushed renovate/rspec-rails-7.x from 1eca1c853c to b30232cebf 2024-10-09 22:07:47 +00:00 Compare
bustikiller force-pushed renovate/rspec-rails-7.x from b30232cebf to 0bc516abf8 2024-10-16 22:05:33 +00:00 Compare
bustikiller force-pushed renovate/rspec-rails-7.x from 0bc516abf8 to 5838b72204 2024-10-17 22:39:27 +00:00 Compare
bustikiller force-pushed renovate/rspec-rails-7.x from 5838b72204 to cc11875a6a 2024-10-19 22:10:38 +00:00 Compare
bustikiller force-pushed renovate/rspec-rails-7.x from cc11875a6a to 94a232ebb4 2024-10-20 22:10:22 +00:00 Compare
bustikiller merged commit 51b16e225a into main 2024-10-21 09:33:59 +00:00
Sign in to join this conversation.
No Reviewers
No Label
No Milestone
No project
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: bustikiller/wedding-planner#55
No description provided.