Skip to content

Bump the ruby-dependencies group with 6 updates #1590

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
May 15, 2025

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the ruby-dependencies group with 6 updates:

Package From To
heroku_hatchet 8.0.4 8.0.5
rspec-core 3.13.0 3.13.3
rspec-expectations 3.13.1 3.13.4
json 2.7.2 2.11.3
ci-queue 0.59.0 0.65.0
redis 5.3.0 5.4.0

Updates heroku_hatchet from 8.0.4 to 8.0.5

Changelog

Sourced from heroku_hatchet's changelog.

8.0.5

Commits

Updates rspec-core from 3.13.0 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)

3.13.1 / 2024-09-02

Full Changelog

Bug fixes:

  • Sort ids to run as the original order to fix --bisect. (Maki Kawahara, #3093)
Commits

Updates rspec-expectations from 3.13.1 to 3.13.4

Changelog

Sourced from rspec-expectations's changelog.

Development

Full Changelog

Enhancements:

  • Improve the IO emulation in the output capture matchers (output(...).to_stdout et al) by adding as_tty and as_not_tty to change the tty? flags. (Sergio Gil Pérez de la Manga, #1459)

3.13.3 / 2024-09-07

Full Changelog

Bug Fixes:

  • Fix passing a regular expression to the include matcher without a count constraint. (Jon Rowe, #1485)

3.13.2 / 2024-08-20

Bug Fixes:

  • When using null object doubles, prevent typos triggering dynamic matchers. (Eric Mueller, #1455)
  • Use RSpec.warning for an expectation warning rather than Kernel.warn. (Jon Rowe, #1472)
  • Prevent mismatched use of block and value matchers in compound expectations. (Phil Pirozhkov, #1476)
  • Raise an error when passing no arguments to the include matcher. (Eric Mueller, #1479)
Commits

Updates json from 2.7.2 to 2.11.3

Release notes

Sourced from json's releases.

v2.11.1

What's Changed

  • Add back JSON.restore, JSON.unparse, JSON.fast_unparse and JSON.pretty_unparse. These were deprecated 16 years ago, but never emited warnings, only undocumented, so are still used by a few gems.

Full Changelog: ruby/json@v2.11.0...v2.11.1

v2.11.0

What's Changed

  • Optimize Integer generation to be ~1.8x faster.
  • Optimize Float generation to be ~10x faster.
  • Fix JSON.load proc argument to substitute the parsed object with the return value. This better match Marshal.load behavior.
  • Deprecate JSON.fast_generate (it's not any faster, so pointless).
  • Deprecate JSON.load_default_options.
  • Deprecate JSON.unsafe_load_default_options.
  • Deprecate JSON.dump_default_options.
  • Deprecate Kernel#j
  • Deprecate Kernel#jj
  • Remove outdated JSON.iconv.
  • Remove Class#json_creatable? monkey patch.
  • Remove deprecated JSON.restore method.
  • Remove deprecated JSON.unparse method.
  • Remove deprecated JSON.fast_unparse method.
  • Remove deprecated JSON.pretty_unparse method.
  • Remove deprecated JSON::UnparserError constant.
  • Remove outdated JSON::MissingUnicodeSupport constant.

Full Changelog: ruby/json@v2.10.2...v2.11.0

v2.10.2

What's Changed

  • Fix a potential crash in the C extension parser.
  • Raise a ParserError on all incomplete unicode escape sequence. This was the behavior until 2.10.0 unadvertently changed it.
  • Ensure document snippets that are included in parser errors don't include truncated multibyte characters.
  • Ensure parser error snippets are valid UTF-8.
  • Fix JSON::GeneratorError#detailed_message on Ruby < 3.2

Full Changelog: ruby/json@v2.10.1...v2.10.2

v2.10.1

What's Changed

Full Changelog: ruby/json@v2.10.0...v2.10.1

... (truncated)

Changelog

Sourced from json's changelog.

2025-04-25 (2.11.3)

  • Fix a regression in JSON.pretty_generate that could cause indentation to be off once some #to_json has been called.

2025-04-24 (2.11.2)

  • Add back JSON::PRETTY_STATE_PROTOTYPE. This constant was private API but is used by popular gems like multi_json. It now emits a deprecation warning.

2025-04-24 (2.11.1)

  • Add back JSON.restore, JSON.unparse, JSON.fast_unparse and JSON.pretty_unparse. These were deprecated 16 years ago, but never emited warnings, only undocumented, so are still used by a few gems.

2025-04-24 (2.11.0)

  • Optimize Integer generation to be ~1.8x faster.
  • Optimize Float generation to be ~10x faster.
  • Fix JSON.load proc argument to substitute the parsed object with the return value. This better match Marshal.load behavior.
  • Deprecate JSON.fast_generate (it's not any faster, so pointless).
  • Deprecate JSON.load_default_options.
  • Deprecate JSON.unsafe_load_default_options.
  • Deprecate JSON.dump_default_options.
  • Deprecate Kernel#j
  • Deprecate Kernel#jj
  • Remove outdated JSON.iconv.
  • Remove Class#json_creatable? monkey patch.
  • Remove deprecated JSON.restore method.
  • Remove deprecated JSON.unparse method.
  • Remove deprecated JSON.fast_unparse method.
  • Remove deprecated JSON.pretty_unparse method.
  • Remove deprecated JSON::UnparserError constant.
  • Remove outdated JSON::MissingUnicodeSupport constant.

2025-03-12 (2.10.2)

  • Fix a potential crash in the C extension parser.
  • Raise a ParserError on all incomplete unicode escape sequence. This was the behavior until 2.10.0 unadvertently changed it.
  • Ensure document snippets that are included in parser errors don't include truncated multibyte characters.
  • Ensure parser error snippets are valid UTF-8.
  • Fix JSON::GeneratorError#detailed_message on Ruby < 3.2

2025-02-10 (2.10.1)

  • Fix a compatibility issue with MultiJson.dump(obj, pretty: true): no implicit conversion of false into Proc (TypeError).

2025-02-10 (2.10.0)

... (truncated)

Commits
  • 3e025f7 Release 2.11.3
  • d316f93 Merge pull request #791 from byroot/fix-pretty-generate
  • 2ffa4ea Stop caching the generator state pointer
  • c985e8c Release 2.11.2
  • c8ae2c5 Merge pull request #789 from byroot/deprecated-pretty-prototype
  • 123121b Bring back JSON::PRETTY_STATE_PROTOTYPE with a deprecation
  • 84443e8 Release 2.11.1
  • fa3b55c Merge pull request #787 from byroot/deprecate-aliases
  • 0dee9bd Bring back the numerous deprecated alias
  • a6949f8 Release 2.11.0
  • Additional commits viewable in compare view

Updates ci-queue from 0.59.0 to 0.65.0

Commits
  • 0e30352 Bump version
  • ef514cb Merge pull request #319 from Shopify/cbruckmayer/export-junitxml-failure-file
  • 07515fa Export JunitXML failure file
  • ef974ad Merge pull request #321 from Shopify/zm/import-flaky-tests
  • 0975ff2 Merge pull request #320 from skipkayhil/hm-dump-to-file-2
  • b0356b3 Specify flaky tests in junit.xml format
  • 80050a3 Use block so Files are closed after writing
  • c4eaa52 Reapply "Dump JSON directly to file instead of buffering"
  • 479d530 Merge pull request #318 from Shopify/cbruckmayer/fix-ci
  • e71d516 Run CI on pull requests
  • Additional commits viewable in compare view

Updates redis from 5.3.0 to 5.4.0

Changelog

Sourced from redis's changelog.

5.4.0

  • Fix blmpop method to actually use BLMPOP, it was mistakenly issuing LMPOP commands.
  • xadd now accepts a minid: argument.
  • zrank and zrevrank now accepts with_score: argument.
  • Redis#call now accept a block, allowing to use Redis instances where RedisClient is expected.
Commits
  • 082d198 Release 5.4.0
  • 00f7a9f Merge pull request #1310 from redis/fix-blmpop
  • b2a2ddf Fix Redis#blmpop to actually send BLMPOP
  • 2a4544c Merge pull request #1309 from willbryant/xadd_minid
  • 4eb23d7 Support the MINID option for XADD
  • 55725a2 Fix rubocop on newer rubies
  • b6fd17b Merge pull request #1307 from ozennou/patch-1
  • d1ddf7c Update CI configuration
  • 3669beb Merge pull request #1300 from Hugo-Hache/hh/zrevrank-withscore
  • fb70908 Add :with_score option to zrank and zrevrank
  • 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:

| Package | From | To |
| --- | --- | --- |
| [heroku_hatchet](https://github.com/heroku/hatchet) | `8.0.4` | `8.0.5` |
| [rspec-core](https://github.com/rspec/rspec-core) | `3.13.0` | `3.13.3` |
| [rspec-expectations](https://github.com/rspec/rspec-expectations) | `3.13.1` | `3.13.4` |
| [json](https://github.com/ruby/json) | `2.7.2` | `2.11.3` |
| [ci-queue](https://github.com/Shopify/ci-queue) | `0.59.0` | `0.65.0` |
| [redis](https://github.com/redis/redis-rb) | `5.3.0` | `5.4.0` |


Updates `heroku_hatchet` from 8.0.4 to 8.0.5
- [Changelog](https://github.com/heroku/hatchet/blob/main/CHANGELOG.md)
- [Commits](heroku/hatchet@v8.0.4...v8.0.5)

Updates `rspec-core` from 3.13.0 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-expectations` from 3.13.1 to 3.13.4
- [Release notes](https://github.com/rspec/rspec-expectations/releases)
- [Changelog](https://github.com/rspec/rspec-expectations/blob/main/Changelog.md)
- [Commits](https://github.com/rspec/rspec-expectations/commits)

Updates `json` from 2.7.2 to 2.11.3
- [Release notes](https://github.com/ruby/json/releases)
- [Changelog](https://github.com/ruby/json/blob/master/CHANGES.md)
- [Commits](ruby/json@v2.7.2...v2.11.3)

Updates `ci-queue` from 0.59.0 to 0.65.0
- [Release notes](https://github.com/Shopify/ci-queue/releases)
- [Commits](Shopify/ci-queue@v0.59.0...v0.65.0)

Updates `redis` from 5.3.0 to 5.4.0
- [Changelog](https://github.com/redis/redis-rb/blob/master/CHANGELOG.md)
- [Commits](redis/redis-rb@v5.3.0...v5.4.0)

---
updated-dependencies:
- dependency-name: heroku_hatchet
  dependency-version: 8.0.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ruby-dependencies
- dependency-name: rspec-core
  dependency-version: 3.13.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ruby-dependencies
- dependency-name: rspec-expectations
  dependency-version: 3.13.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ruby-dependencies
- dependency-name: json
  dependency-version: 2.11.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby-dependencies
- dependency-name: ci-queue
  dependency-version: 0.65.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby-dependencies
- dependency-name: redis
  dependency-version: 5.4.0
  dependency-type: direct:development
  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 Pull requests that update Ruby code skip changelog labels May 1, 2025
@dependabot dependabot bot requested a review from schneems as a code owner May 1, 2025 23:54
@schneems schneems enabled auto-merge (squash) May 15, 2025 21:13
@schneems schneems merged commit ea5df15 into main May 15, 2025
7 checks passed
@schneems schneems deleted the dependabot/bundler/ruby-dependencies-3e0f0a4cd4 branch May 15, 2025 21:13
@heroku-linguist heroku-linguist bot mentioned this pull request May 19, 2025
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 Pull requests that update Ruby code skip changelog
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant