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

Bump the minor-and-patch group with 6 updates #534

Merged
merged 2 commits into from
Apr 2, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2024

Bumps the minor-and-patch group with 6 updates:

Package From To
debug 1.9.1 1.9.2
rubocop-sorbet 0.7.8 0.8.0
tapioca 0.13.0 0.13.1
minitest 5.22.2 5.22.3
prism 0.19.0 0.24.0
sorbet-static-and-runtime 0.5.11287 0.5.11319

Updates debug from 1.9.1 to 1.9.2

Release notes

Sourced from debug's releases.

v1.9.2

What's Changed

New Contributors

Full Changelog: ruby/debug@v1.9.1...v1.9.2

Commits
  • 0b77e82 v1.9.2
  • 6407c98 Format tables
  • a655f10 Mention IRB as the console in readme
  • ffbdb30 Use rb_iseqw_to_iseq to get iseq pointer
  • 75326e2 Fix name of rb_iseq_t struct
  • 6e9a127 Add Launchable in CI
  • 3564601 Fix flakey test "test_reponse_returns_correct_threads_info"
  • 98dad00 Separate setup and execution steps in CI
  • 68f7753 Add Session#deactivate_irb_integration
  • 935f903 Make irb_console toggleable with config update
  • Additional commits viewable in compare view

Updates rubocop-sorbet from 0.7.8 to 0.8.0

Release notes

Sourced from rubocop-sorbet's releases.

v0.8.0

What's Changed

[!NOTE] This version drops the runtime dependency that Sorbet/SignatureBuildOrder had on unparser, so if you had that dependency in your Gemfile for only this reason, you should be able to drop it now.

🛠 Other Changes

Full Changelog: Shopify/rubocop-sorbet@v0.7.8...v0.8.0

Commits
  • fde440d Bump version to v0.8.0
  • e4181c5 Merge pull request #189 from Shopify/order-more-signature-builders
  • e9be4a9 Consolidate dev deps into Gemfile
  • 4e1c3fc Refactor SignatureBuildOrder
  • 67efc28 Add final, bind, & implementation to SignatureBuildOrder
  • 233cf9a Extract SignatureBuildOrder Order config
  • 6b87977 Remove trailing spaces in default config
  • See full diff in compare view

Updates tapioca from 0.13.0 to 0.13.1

Release notes

Sourced from tapioca's releases.

v0.13.1

What's Changed

🐛 Bug Fixes

New Contributors

Full Changelog: Shopify/tapioca@v0.13.0...v0.13.1

Commits
  • 6f515e0 Bump version to v0.13.1
  • a497082 Merge pull request #1843 from Shopify/at-fix-active-record-relations-compiler
  • cc008be Merge pull request #1840 from Shopify/emily/fix-protobuf-compiler
  • 62d4eca Write test for protobuf dsl with gem version before 3.26
  • 5fda757 Fix ActiveRecordRelations compiler spec for Rails 7.0
  • b5d08d9 Do not call has_presence? on Protobuf::FieldDescriptor unless method exists
  • 05359bf Merge pull request #1846 from Shopify/centralize_ruby_version
  • 22a8190 Complete the .ruby-version standardization
  • fff1131 Merge pull request #1838 from Shopify/dependabot/bundler/rdoc-6.6.3.1
  • d0a0622 Fix ActiveRecordRelations compiler
  • Additional commits viewable in compare view

Updates minitest from 5.22.2 to 5.22.3

Changelog

Sourced from minitest's changelog.

=== 5.22.3 / 2024-03-13

  • 1 minor enhancement:

    • MASSIVE improvement of minitest's pride plugin output: Frequencies doubled! Sine waves shifted!! Comments improved!!! Colors rotated!!!! (havenwood)
  • 3 bug fixes:

    • Improved wording on Minitest::Test#parallelize_me! to clarify it goes INSIDE your test class/describe.
    • Minor changes to tests to pass when tests ran with extra flags (eg -p).
    • Support Ruby 3.4's new error message format. (mame)
Commits
  • d0a993f Branching minitest to version 5.22.3
  • 112cdff - Minor changes to tests to pass when tests ran with extra flags (eg -p).
  • 9d2fc6c + MASSIVE improvement of minitest's pride plugin output: Frequencies doubled!...
  • 1ead76c - Improved wording on Minitest::Test#parallelize_me! to clarify it goes INSID...
  • 93597e5 - Support Ruby 3.4's new error message format. (mame)
  • See full diff in compare view

Updates prism from 0.19.0 to 0.24.0

Release notes

Sourced from prism's releases.

v0.24.0

Added

  • More support for Prism::Translation::Ripper is added.
  • Support multiple versions for Prism::Translation::Parser.
  • Improved memory usage in the FFI backend.
  • Very large speed and memory improvements for creating the Ruby AST.

Changed

  • Fix location for empty symbol in hash key.
  • Fix parsing a rescue modifier on the value of an assignment when the LHS is a method call with arguments and no parentheses.

v0.23.0

Added

  • More support for Prism::RipperCompat is added.
  • A significantly faster offset cache for Prism::Translation::Parser is added for files with multibyte characters.
  • Prism::Translation::RubyParser is added.
  • Prism::ConstantPathTarget#full_name is added.
  • version: "3.4.0" is added as an option that is an alias for version: "latest".
  • Four new APIs are added to Prism::Location:
    • Prism::Location#start_code_units_offset
    • Prism::Location#end_code_units_offset
    • Prism::Location#start_code_units_column
    • Prism::Location#end_code_units_column
  • Invalid multibyte characters are now validated within strings, lists, and heredocs.

Changed

  • When defining def !@, the name_loc was previously only pointing to !, but now includes the @. The name is the same.
  • Prism::RipperCompat has been moved to Prism::Translation::Ripper.
  • Many of the error messages that prism produces have been changed to match the error messages that CRuby produces.

v0.22.0

Added

  • More support for Prism::RipperCompat is added.
  • Support for Ruby 2.7 has been added, and the minimum Ruby requirement has been lowered to 2.7.

Changed

  • The error for an invalid source encoding has a new :argument level to indicate it raises an argument error.
  • BeginNode nodes that are used when a class, singleton class, module, method definition, or block have an inline rescue/ensure/else now have their opening locations set to the beginning of the respective keyword.
  • Improved error messages for invalid characters.
  • Prism.parse_file and similar APIs will raise more appropriate errors when the file does not exist or cannot be mapped.
  • Correctly handle the recover parameter for Prism::Translation::Parser.

v0.21.0

Added

... (truncated)

Changelog

Sourced from prism's changelog.

[0.24.0] - 2024-02-15

Added

  • More support for Prism::Translation::Ripper is added.
  • Support multiple versions for Prism::Translation::Parser.
  • Improved memory usage in the FFI backend.
  • Very large speed and memory improvements for creating the Ruby AST.

Changed

  • Fix location for empty symbol in hash key.
  • Fix parsing a rescue modifier on the value of an assignment when the LHS is a method call with arguments and no parentheses.

[0.23.0] - 2024-02-14

Added

  • More support for Prism::RipperCompat is added.
  • A significantly faster offset cache for Prism::Translation::Parser is added for files with multibyte characters.
  • Prism::Translation::RubyParser is added.
  • Prism::ConstantPathTarget#full_name is added.
  • version: "3.4.0" is added as an option that is an alias for version: "latest".
  • Four new APIs are added to Prism::Location:
    • Prism::Location#start_code_units_offset
    • Prism::Location#end_code_units_offset
    • Prism::Location#start_code_units_column
    • Prism::Location#end_code_units_column
  • Invalid multibyte characters are now validated within strings, lists, and heredocs.

Changed

  • When defining def !@, the name_loc was previously only pointing to !, but now includes the @. The name is the same.
  • Prism::RipperCompat has been moved to Prism::Translation::Ripper.
  • Many of the error messages that prism produces have been changed to match the error messages that CRuby produces.

[0.22.0] - 2024-02-07

Added

  • More support for Prism::RipperCompat is added.
  • Support for Ruby 2.7 has been added, and the minimum Ruby requirement has been lowered to 2.7.

Changed

  • The error for an invalid source encoding has a new :argument level to indicate it raises an argument error.
  • BeginNode nodes that are used when a class, singleton class, module, method definition, or block have an inline rescue/ensure/else now have their opening locations set to the beginning of the respective keyword.
  • Improved error messages for invalid characters.
  • Prism.parse_file and similar APIs will raise more appropriate errors when the file does not exist or cannot be mapped.
  • Correctly handle the recover parameter for Prism::Translation::Parser.

... (truncated)

Commits
  • 20b0602 Merge pull request #2431 from ruby/new-version
  • 3c727a4 Bump to v0.24.0
  • 64b0381 Merge pull request #2428 from ruby/speed
  • 8e3aad9 Fix up invalid syntax
  • f03cceb Merge pull request #2422 from maxprokopiev/fix-empty-symbols
  • 0e0a50c Merge pull request #2423 from noahgibbs/ripper_compat_equiv_testing
  • cf821ee Merge pull request #2426 from eregon/faster-ffi
  • 184fcdf Merge pull request #2419 from koic/support_multi_versioning_for_prism_transla...
  • de203dc Speed up creating Ruby AST
  • 9002b3c Avoid extra String copies in the FFI backend
  • Additional commits viewable in compare view

Updates sorbet-static-and-runtime from 0.5.11287 to 0.5.11319

Release notes

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

sorbet 0.5.11318.20240328160456-a3f5df505

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11317.20240328144455-3a170f7b2

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11316.20240327175628-afd0fd2f0

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11315.20240327175533-dd1e5710b

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11314.20240327174609-176146026

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11313.20240327124806-deb2363e4

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11312.20240327110619-b87279c97

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11311.20240326153500-c0331cec0

... (truncated)

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

Bumps the minor-and-patch group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [debug](https://github.com/ruby/debug) | `1.9.1` | `1.9.2` |
| [rubocop-sorbet](https://github.com/shopify/rubocop-sorbet) | `0.7.8` | `0.8.0` |
| [tapioca](https://github.com/Shopify/tapioca) | `0.13.0` | `0.13.1` |
| [minitest](https://github.com/minitest/minitest) | `5.22.2` | `5.22.3` |
| [prism](https://github.com/ruby/prism) | `0.19.0` | `0.24.0` |
| [sorbet-static-and-runtime](https://github.com/sorbet/sorbet) | `0.5.11287` | `0.5.11319` |


Updates `debug` from 1.9.1 to 1.9.2
- [Release notes](https://github.com/ruby/debug/releases)
- [Commits](ruby/debug@v1.9.1...v1.9.2)

Updates `rubocop-sorbet` from 0.7.8 to 0.8.0
- [Release notes](https://github.com/shopify/rubocop-sorbet/releases)
- [Commits](Shopify/rubocop-sorbet@v0.7.8...v0.8.0)

Updates `tapioca` from 0.13.0 to 0.13.1
- [Release notes](https://github.com/Shopify/tapioca/releases)
- [Commits](Shopify/tapioca@v0.13.0...v0.13.1)

Updates `minitest` from 5.22.2 to 5.22.3
- [Changelog](https://github.com/minitest/minitest/blob/master/History.rdoc)
- [Commits](minitest/minitest@v5.22.2...v5.22.3)

Updates `prism` from 0.19.0 to 0.24.0
- [Release notes](https://github.com/ruby/prism/releases)
- [Changelog](https://github.com/ruby/prism/blob/main/CHANGELOG.md)
- [Commits](ruby/prism@v0.19.0...v0.24.0)

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

---
updated-dependencies:
- dependency-name: debug
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: rubocop-sorbet
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: tapioca
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: minitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: prism
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner April 1, 2024 21:50
@dependabot dependabot bot requested review from andyw8 and vinistock April 1, 2024 21:50
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 1, 2024
@github-actions github-actions bot enabled auto-merge April 1, 2024 21:50
@andyw8 andyw8 mentioned this pull request Apr 2, 2024
@andyw8
Copy link
Contributor

andyw8 commented Apr 2, 2024

1 failure, likely due to changes in Prism:

test_index_rescue_parser_error                                  FAIL (0.01s)
        --- expected
        +++ actual
        @@ -1,5 +1,5 @@
         "Error while parsing foo.rb:
         - expected a `)` to close the parameters (at 1:8)
        -- cannot parse the expression (at 1:8)
        +- unexpected end of file, assuming it is closing the parent top level context (at 2:0)
         - expected an `end` to close the `def` statement (at 1:8)
         "
        /home/runner/work/spoom/spoom/test/spoom/deadcode/index_definitions_test.rb:21:in `test_index_rescue_parser_error'

@github-actions github-actions bot merged commit 7b28af2 into main Apr 2, 2024
8 of 9 checks passed
@github-actions github-actions bot deleted the dependabot/bundler/minor-and-patch-1965e8af44 branch April 2, 2024 20:25
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant