Skip to content

Bump the minor-and-patch group with 4 updates #235

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

Merged
merged 1 commit into from
Jan 22, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 22, 2024

Bumps the minor-and-patch group with 4 updates: rubocop-minitest, sorbet-static-and-runtime, tapioca and rails.

Updates rubocop-minitest from 0.34.4 to 0.34.5

Release notes

Sourced from rubocop-minitest's releases.

RuboCop Minitest 0.34.5

Bug fixes

  • #299: Fix an error for Style/UselessAssertion when passing a single argument to methods to accept two arguments. (@​earlopain)

Changes

  • #298: Extend Minitest/AssertKindOf to also correct assert(object.is_a?(Class)). (@​amomchilov)
Changelog

Sourced from rubocop-minitest's changelog.

0.34.5 (2024-01-20)

Bug fixes

  • #299: Fix an error for Style/UselessAssertion when passing a single argument to methods to accept two arguments. ([@​earlopain][])

Changes

  • #298: Extend Minitest/AssertKindOf to also correct assert(object.is_a?(Class)). ([@​amomchilov][])
Commits
  • d097efa Cut 0.34.5
  • 3cac9e3 Update Changelog
  • 0ccd6f9 Merge pull request #299 from Earlopain/fix-error-for-style-useless-assertion
  • 9257270 Fix an error for Style/UselessAssertion when passing a single argument to m...
  • 4218ced Merge pull request #298 from amomchilov/AssertKindOf-is_a
  • 8627375 AssertKindOf: also replace is_a?
  • 3fa043a Switch back docs version to master
  • See full diff in compare view

Updates sorbet-static-and-runtime from 0.5.11193 to 0.5.11214

Release notes

Sourced from sorbet-static-and-runtime's releases.

sorbet 0.5.11213.20240119122914-ac1e9620f

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11213', :group => :development
gem 'sorbet-runtime', '0.5.11213'

sorbet 0.5.11212.20240118144312-6440c6956

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11212', :group => :development
gem 'sorbet-runtime', '0.5.11212'

sorbet 0.5.11211.20240118144233-e57959a04

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11211', :group => :development
gem 'sorbet-runtime', '0.5.11211'

sorbet 0.5.11210.20240118144215-1d71d864a

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11210', :group => :development
gem 'sorbet-runtime', '0.5.11210'

sorbet 0.5.11209.20240118141219-6c818f93a

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11209', :group => :development
gem 'sorbet-runtime', '0.5.11209'

sorbet 0.5.11208.20240118121215-9770dabd0

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11208', :group => :development
gem 'sorbet-runtime', '0.5.11208'

sorbet 0.5.11207.20240118120849-12f337e12

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11207', :group => :development
gem 'sorbet-runtime', '0.5.11207'

sorbet 0.5.11205.20240117155259-af601a916

... (truncated)

Commits

Updates tapioca from 0.11.16 to 0.11.17

Release notes

Sourced from tapioca's releases.

v0.11.17

What's Changed

🐛 Bug Fixes

Full Changelog: Shopify/tapioca@v0.11.16...v0.11.17

Commits
  • cdb674e Bump version to v0.11.17
  • 7b845d7 Merge pull request #1762 from Shopify/ko/fix_graphql_type_for
  • 0b458c9 Check if prepare argument is a symbol or string
  • 2c25e6a Merge pull request #1760 from Shopify/uk-improve-pipeline-testing
  • 0127bc3 Move a few gem cli specs to gem pipeline specs
  • 5ee3aec Add ability to define multiple mock gems in gem pipeline spec
  • 9d243f5 Merge pull request #1758 from Shopify/ba-identity-cache-multi
  • fcfd251 Update IdentityCache compiler to generate correct multi methods
  • aeffcdb Merge pull request #1756 from Shopify/emily/skip-alias-in-namespace
  • 9cc3977 Skip compiling constants with alias in namespace
  • See full diff in compare view

Updates rails from 7.1.2 to 7.1.3

Release notes

Sourced from rails's releases.

7.1.3

Active Support

  • Handle nil backtrace_locations in ActiveSupport::SyntaxErrorProxy.

    Eugene Kenny

  • Fix ActiveSupport::JSON.encode to prevent duplicate keys.

    If the same key exist in both String and Symbol form it could lead to the same key being emitted twice.

    Manish Sharma

  • Fix ActiveSupport::Cache::Store#read_multi when using a cache namespace and local cache strategy.

    Mark Oleson

  • Fix Time.now/DateTime.now/Date.today to return results in a system timezone after #travel_to.

    There is a bug in the current implementation of #travel_to: it remembers a timezone of its argument, and all stubbed methods start returning results in that remembered timezone. However, the expected behaviour is to return results in a system timezone.

    Aleksei Chernenkov

  • Fix :unless_exist option for MemoryStore#write (et al) when using a cache namespace.

    S. Brent Faulkner

  • Fix ActiveSupport::Deprecation to handle blaming generated code.

    Jean Boussier, fatkodima

Active Model

  • No changes.

Active Record

  • Fix Migrations with versions older than 7.1 validating options given to add_reference.

... (truncated)

Commits
  • 36c1591 Preparing for 7.1.3 release
  • a84622f Sync changelog
  • 1f505f0 Merge pull request #50771 from rails/backport-preview-nplus1
  • d8a8dd9 Merge pull request #50758 from rails/fix-video-preview-nplus1
  • a0eef52 Merge pull request #50767 from rporrasluc/fix-db-runtime-calculation
  • 8a0767d Fix test setup to raise SyntaxError on Ruby 2.7
  • 894f933 Merge pull request #50764 from eugeneius/syntax_error_proxy_nil_backtrace_loc...
  • b02f6c9 Merge pull request #48957 from cmaruz/48326
  • c1e8b36 Merge pull request #50466 from skipkayhil/hm-fix-to-symbol-raising-nomethoderror
  • 16cd025 Add CHANGELOG entry for ee70ff4
  • 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 minor-and-patch group with 4 updates: [rubocop-minitest](https://github.com/rubocop/rubocop-minitest), [sorbet-static-and-runtime](https://github.com/sorbet/sorbet), [tapioca](https://github.com/Shopify/tapioca) and [rails](https://github.com/rails/rails).


Updates `rubocop-minitest` from 0.34.4 to 0.34.5
- [Release notes](https://github.com/rubocop/rubocop-minitest/releases)
- [Changelog](https://github.com/rubocop/rubocop-minitest/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-minitest@v0.34.4...v0.34.5)

Updates `sorbet-static-and-runtime` from 0.5.11193 to 0.5.11214
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

Updates `tapioca` from 0.11.16 to 0.11.17
- [Release notes](https://github.com/Shopify/tapioca/releases)
- [Commits](Shopify/tapioca@v0.11.16...v0.11.17)

Updates `rails` from 7.1.2 to 7.1.3
- [Release notes](https://github.com/rails/rails/releases)
- [Commits](rails/rails@v7.1.2...v7.1.3)

---
updated-dependencies:
- dependency-name: rubocop-minitest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: sorbet-static-and-runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: tapioca
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: rails
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner January 22, 2024 19:57
@dependabot dependabot bot requested a review from andyw8 January 22, 2024 19:57
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 22, 2024
@dependabot dependabot bot requested a review from vinistock January 22, 2024 19:57
@dependabot dependabot bot added the ruby label Jan 22, 2024
@github-actions github-actions bot enabled auto-merge January 22, 2024 19:57
@github-actions github-actions bot merged commit 1741554 into main Jan 22, 2024
@github-actions github-actions bot deleted the dependabot/bundler/minor-and-patch-d42b0e829e branch January 22, 2024 20:01
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants