Skip to content
This repository has been archived by the owner on Dec 22, 2023. It is now read-only.

Bump rspec-rails, rails-i18n and rails #1153

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 8, 2023

Bumps rspec-rails, rails-i18n and rails. These dependencies needed to be updated together.
Updates rspec-rails from 5.1.2 to 6.1.0

Changelog

Sourced from rspec-rails's changelog.

6.1.0 / 2023-11-21

Full Changelog

Enhancements:

  • Support for Rails 7.1
  • Minor tweak to generated rails_helper.rb to use Rails.root.join. (@​masato-bkn, Ryo Nakamura, #2640, #2678)
  • Add RSpec::Rails::Configuration.fixture_paths configuration to support the matching change to ActiveRecord::TestFixtures, previous singular form is deprecated and will be removed in Rails 7.2. (Juan Gueçaimburu, #2673)
  • Add send_email matcher to match emails rather than specific jobs. (Andrei Kaleshka, #2670)
  • When using render in view specs, :locals will now be merged into the default implicit template, allowing render locals: {...} style calls. (Jon Rowe, #2686)
  • Add support for Rails.config.action_mailer.preview_paths on Rails 7.1/ (Jon Rowe, #2706)

6.0.4 / 2023-11-21

Full Changelog

Bug Fixes:

  • Fuzzy match have_broadcasted_to so that argument matchers can be used. (Timothy Peraza, #2684)
  • Fix fixture warning during :context hooks on Rails main. (Jon Rowe, #2685)
  • Fix stub_template on Rails main. (Jon Rowe, #2685)
  • Fix variable name in scaffolded view specs when namespaced. (Taketo Takashima, #2694)
  • Prevent take_failed_screenshot producing an additional error through metadata access. (Jon Rowe, #2704)
  • Use ActiveSupport::ExecutionContext::TestHelper on Rails 7+. (Jon Rowe, #2711)
  • Fix leak of templates stubbed with stub_template on Rails 7.1. (Jon Rowe, #2714)

6.0.3 / 2023-05-31

Full Changelog

Bug Fixes:

  • Set ActiveStorage::FixtureSet.file_fixture_path when including file fixture support. (Jason Yates, #2671)
  • Allow broadcast_to matcher to take Symbols. (@​Vagab, #2680)

6.0.2 / 2023-05-04

Full Changelog

Bug Fixes:

  • Fix ActionView::PathSet when render_views is off for Rails 7.1. (Eugene Kenny, Iliana, #2631)

... (truncated)

Commits

Updates rails-i18n from 5.1.3 to 7.0.8

Changelog

Sourced from rails-i18n's changelog.

7.0.8 (2023-08-15)

  • Update following locales:
    • Bengali (bn): Add missing keys (almost_x_years) #1094
    • English (en-US): Normalize and add missing keys (in and round_mode) #1095
    • Korean (ko): Add missing keys (in and round_mode) #1097
    • Norwegian (nb): Fix extra %{count} interpolation in has_one key #1082
    • Portuguese (pt pt-BR): Add missing keys (round_mode) #1100
    • Spanish (es-419 es-AR es-CL es-CO es-CR es-EC es-MX es-NI es-PA es-PE es-US es-VE): Fix typo in word carácter #1090
    • Spanish (es-419 es-AR es-CL es-CO es-CR es-EC es-ES es-MX es-NI es-PA es-PE es-US es-VE): Normalize and add missing keys (in) #1089
    • Ukranian: Use hryvnia symbol as a currency unit #1093

7.0.7 (2023-05-12)

  • Non-numerics counts are considered as other in all pluralizations #1067
  • Update following locales:
    • Afrikaan (af): ZAR currency format #1066
    • English (en-ZA): ZAR currency format #1066
    • German (de, de-DE, de-AT, de-CH): Use abbreviated months in the short time format #1062
    • Japanese (ja): Add in and round_mode keys #1059
    • Korean (ko): Fix typo in equal_to keys #1061
    • Portuguese (pt, pt-BR): add translation for errors.messages.in #1071
    • Scottish Gaelic (gd): Add locale
    • Russian (ru): fix some errors in 'datetime' section, add errors.messages.in and number.format.round_mode keys #1077
    • Spanish (es): add translation for errors.messages.in #1071
    • French (fr, fr-CA, fr-CH, fr-FR): fix typo on 'almost_x_years: one' #1074
    • Indonesian (id): Remove duplicate spaces in id.datetime.distance_in_words.less_than_x_minutes.other #1079
    • Romanian (ro): Correction of Saturday in Romanian #1078
    • Croatian (hr): use lowercase for month and weekday names #1081
  • Add ordinalization for German (de, de-AT, de-CH, de-DE)
  • Remove keys that are present twice from Latvian (lv), Albanian (sq) #1080

7.0.6 (2022-11-08)

  • Add option to choose which modules (locales, pluralization, transliteration, ordinals) are enabled #1019
  • Add following locales:
    • Dzongkha (dz) #1052
    • Sardinian (sc) #1030
    • Swedish (sv-FI): Finland’s native Swedish-speakers #1055
  • Update following locales:
    • Bengali (bn): Fix date and spelling issues #1031
    • Chinese (zh-HK, zh-TW, zh-YUE, zh-CN):
    • English (en, en-CY, en-IE, en-TT, en-US, en-ZA):
      • Add pluralization #1021
      • Add in and round_mode keys #1042
    • French (fr, fr-CA, fr-CH, fr-CA):
      • Change an abreviation for March month in abbr_month_names #1002

... (truncated)

Commits

Updates rails from 5.2.8.1 to 7.0.8

Release notes

Sourced from rails's releases.

7.0.8

Active Support

  • Fix TimeWithZone still using deprecated #to_s when ENV or config to disable it are set.

    Hartley McGuire

  • Fix CacheStore#write_multi when using a distributed Redis cache with a connection pool.

    Fixes #48938.

    Jonathan del Strother

Active Model

  • No changes.

Active Record

  • Fix change_column not setting precision: 6 on datetime columns when using 7.0+ Migrations and SQLite.

    Hartley McGuire

  • Fix unscope is not working in specific case

    Before:

    Post.where(id: 1...3).unscope(where: :id).to_sql # "SELECT `posts`.* FROM `posts` WHERE `posts`.`id` >= 1 AND `posts`.`id` < 3"

    After:

    Post.where(id: 1...3).unscope(where: :id).to_sql # "SELECT `posts`.* FROM `posts`"

    Fixes #48094.

    Kazuya Hatanaka

  • Fix associations to a STI model including a class_name parameter

... (truncated)

Commits
  • fc734f2 Preparing for 7.0.8 release
  • af486be Merge pull request #44370 from mohits/patch-1
  • 72bad1a Upgrade stringio to 3.0.8 to make sure guides CI pass
  • d230670 Force upgrade bundler to invalidate Bundler cache on CI
  • d84000d Require job used in this test file
  • 3c17dab We expect queue adapters to be objects, no classes
  • 4bb599c Upgrade gemfile to invalidate docker cache
  • 39eddbd Merge pull request #49121 from skipkayhil/hm-backport-49090
  • 8db97a7 Fix change_column not setting precision for sqlite
  • ac44103 Merge pull request #47865 from bensheldon/enqueue-error-message
  • 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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [rspec-rails](https://github.com/rspec/rspec-rails), [rails-i18n](https://github.com/svenfuchs/rails-i18n) and [rails](https://github.com/rails/rails). These dependencies needed to be updated together.

Updates `rspec-rails` from 5.1.2 to 6.1.0
- [Release notes](https://github.com/rspec/rspec-rails/releases)
- [Changelog](https://github.com/rspec/rspec-rails/blob/main/Changelog.md)
- [Commits](rspec/rspec-rails@v5.1.2...v6.1.0)

Updates `rails-i18n` from 5.1.3 to 7.0.8
- [Changelog](https://github.com/svenfuchs/rails-i18n/blob/master/CHANGELOG.md)
- [Commits](https://github.com/svenfuchs/rails-i18n/commits/v7.0.8)

Updates `rails` from 5.2.8.1 to 7.0.8
- [Release notes](https://github.com/rails/rails/releases)
- [Commits](rails/rails@v5.2.8.1...v7.0.8)

---
updated-dependencies:
- dependency-name: rspec-rails
  dependency-type: direct:development
  update-type: version-update:semver-major
- dependency-name: rails-i18n
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: rails
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 8, 2023
@owenblacker
Copy link
Contributor

This repo is only temporarily unarchived in order to clean up some Terraform; we will not be updating any dependencies.

@dependabot ignore this dependency

@owenblacker owenblacker closed this Dec 8, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 8, 2023

OK, I won't notify you about any of these dependencies again, unless you re-open this PR.

@dependabot dependabot bot deleted the dependabot/bundler/rspec-rails-and-rails-i18n-and-rails-6.1.0 branch December 8, 2023 17:29
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant