Shopify / tapioca

The swiss army knife of RBI generation
MIT License
701 stars 115 forks source link

Bump the minor-and-patch group across 1 directory with 8 updates #1943

Closed dependabot[bot] closed 1 week ago

dependabot[bot] commented 2 weeks ago

Bumps the minor-and-patch group with 8 updates in the / directory:

Package From To
minitest 5.23.1 5.24.1
minitest-reporters 1.6.1 1.7.1
frozen_record 0.27.1 0.27.2
google-protobuf 4.27.1 4.27.2
graphql 2.3.5 2.3.7
sidekiq 7.2.4 7.3.0
sorbet-static-and-runtime 0.5.11435 0.5.11463
yard-sorbet 0.8.1 0.9.0

Updates minitest from 5.23.1 to 5.24.1

Changelog

Sourced from minitest's changelog.

=== 5.24.1 / 2024-06-29

  • 1 bug fix:

    • Fix the error message when an extension is invalid value. (y-yagi)

=== 5.24.0 / 2024-06-18

  • 2 minor enhancements:

    • Added Minitest.register_plugin.
    • Extended plugin system to work with modules/classes for opt-out plugins.
  • 1 bug fix:

    • Removed anacronism, but allow load_plugins to exit gracefully if --disable=gems.
Commits
  • 15c7418 Branching minitest to version 5.24.1
  • 8dc42bf - Fix the error message when an extension is invalid value. (y-yagi)
  • 0719fdb prepped for release
  • 2c5f1b7 + Added Minitest.register_plugin.
  • 0a1289f Remove more anacronisms. Allow tests to pass w/o rubygems loaded.
  • 8712996 - Removed anacronism, but allow load_plugins to exit gracefully if --disable=...
  • 09fe9a0 Fix one failing tests when string literals are frozen.
  • 08280ac Moved some methods around to follow actual call structure a bit better.
  • See full diff in compare view


Updates minitest-reporters from 1.6.1 to 1.7.1

Changelog

Sourced from minitest-reporters's changelog.

1.7.1

  • Fixed logic of new suppress_inline_failure_output. This option was doing the opposite of what it intended to do. #354

1.7.0

  • Minor documentation improvements #343
  • Fixed homepage link in gemspec #333 contributed by andyw8
  • Added Ruby 3.2 to the CI matrix #335 contributed by petergoldstein
  • Updated JUnitReporter to output a failure screenshot path when included in the minitest result #346 contributed by matteeyah
  • Fixed backwards fraction in ProgressReporter default format #348 contributed by notEthan
  • Added option suppress_inline_failure_output to SpecReporter to provide an explicit switch, separate from print_failure_summary, for suppressing inline failure messages. Until this change, the print_failure_summary would do both: print a failure/error summary after all tests run and suppress the inline failure messages. With this change print_failure_summary will just add a summary at the end of a test run, and it will no longer suppress the inline failure messages. #352 contributed by rthbound
Commits
  • 265ff4b Prep for 1.7.1 release
  • a4cc508 Merge pull request #354 from minitest-reporters/fix-suppress_inline_failure_o...
  • 52c5ca0 Add CHANGELOG notes for #354
  • 70ea3c7 Fix logic of new suppress_inline_failure_output option
  • 9f909d0 Prep for 1.7.0 release
  • 2f7ac47 Update CHANGELOG.md
  • 6508c29 Merge pull request #352 from rthbound/suppress_inline_failure_output
  • dd109b2 Update Minitest::Reporters::SpecReporter annotations with addition of suppres...
  • d9dd6c5 Remove excess pasta from CHANGELOG.md
  • 4bb2b14 * Added option suppress_inline_failure_output to SpecReporter
  • Additional commits viewable in compare view


Updates frozen_record from 0.27.1 to 0.27.2

Changelog

Sourced from frozen_record's changelog.

v0.27.2

  • Fix a Ruby warning that was emitted when frozen_record is loaded.
Commits


Updates google-protobuf from 4.27.1 to 4.27.2

Commits


Updates graphql from 2.3.5 to 2.3.7

Changelog

Sourced from graphql's changelog.

2.3.7 (27 Jun 2024)

Bug fixes

  • Properly merge field directives and resolver directives #5001

2.3.6 (25 Jun 2024)

New features

  • Analysis classes are now in GraphQL::Analysis (GraphQL::Analysis::AST still works, too) #4996
  • Resolvers and Mutations accept directive ... configurations #4995

Bug fixes

  • AsyncDataloader: Copy Fiber-local variables into Async tasks #4994
  • Dataloader: properly batch fetch calls with loads: arguments that call Dataloader sources during .authorized? #4997
Commits
  • 772c807 2.3.7
  • d4b7aa5 Merge pull request #5001 from rmosolgo/merge-resolver-directives
  • b91a678 Merge field directives and resolver directives
  • 339cc9c 2.3.6
  • b9eba34 Merge pull request #4997 from rmosolgo/fix-arg-loads-authorize-dataloader
  • 2f90251 Merge pull request #4996 from rmosolgo/no-ast-module
  • 75ddd52 Fix dataloader with argument loading and auth
  • 1e509d1 Update references in lib and spec
  • c812117 Move Analysis::AST -> Analysis, keep AST as alias
  • d2b5dd0 Merge pull request #4995 from rmosolgo/resolver-directives
  • Additional commits viewable in compare view


Updates sidekiq from 7.2.4 to 7.3.0

Changelog

Sourced from sidekiq's changelog.

7.3.0

  • NEW FEATURE Add Sidekiq::IterableJob, iteration support for long-running jobs. [#6286, fatkodima] Iterable jobs are interruptible and can restart quickly if running during a deploy. You must ensure that each_iteration doesn't take more than Sidekiq's -t timeout (default: 25 seconds). Iterable jobs must not implement perform.
class ProcessArrayJob
  include Sidekiq::IterableJob
  def build_enumerator(*args, **kwargs)
    array_enumerator(args, **kwargs)
  end
  def each_iteration(arg)
    puts arg
  end
end
ProcessArrayJob.perform_async(1, 2, 3)

See the Iteration wiki page and the RDoc in Sidekiq::IterableJob. This feature should be considered BETA until the next minor release.

  • SECURITY The Web UI no longer allows extensions to use <script>. Adjust CSP to disallow inline scripts within the Web UI. Please see examples/webui-ext for how to register Web UI extensions and use dynamic CSS and JS. This will make Sidekiq immune to XSS attacks. #6270
  • Add config option, :skip_default_job_logging to disable Sidekiq's default start/finish job logging. #6200
  • Allow Sidekiq::Limiter.redis to use Redis Cluster #6288
  • Retain CurrentAttributeѕ after inline execution #6307
  • Ignore non-existent CurrentAttributes attributes when restoring #6341
  • Raise default Redis {read,write,connect} timeouts from 1 to 3 seconds to minimize ReadTimeoutErrors #6162
  • Add logger as a dependency since it will become bundled in Ruby 3.5 #6320
  • Ignore unsupported locales in the Web UI #6313
Commits
  • 602d046 require securerandom for base64
  • dbb68ee thursday now
  • 8532f2e latest
  • fcffc8e Fix flaky test breakages
  • 944cb34 initialize AJ in helper so all tests can use AJ, use zero DB because garnet d...
  • a9cab7d fix bottom nav bar overlap on large screen devices
  • 4e150c3 updates
  • adaf1f5 remove throttling stub, change Sidekiq::Job#stopping? to Sidekiq::Job#interru...
  • cdc7644 no reason not to prefer unlink
  • 9ebabc3 forgot to save first
  • Additional commits viewable in compare view


Updates sorbet-static-and-runtime from 0.5.11435 to 0.5.11463

Release notes

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

sorbet 0.5.11462.20240628135446-3a0136255

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11461.20240628125452-46a8b7135

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11460.20240627194056-3e8bc9937

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11459.20240627160151-6060ee327

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11458.20240627155915-1e9138121

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11457.20240627143459-79337a0f2

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11456.20240627141515-fd0720c7e

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11455.20240627133118-fba098552

... (truncated)

Commits


Updates yard-sorbet from 0.8.1 to 0.9.0

Release notes

Sourced from yard-sorbet's releases.

yard-sorbet v0.9.0

What's Changed

Bug Fixes

  • Fix syntax of order-dependent lists

Changes

  • #311 Increase minimum required ruby version to 3.1

New Contributors

Full Changelog: https://github.com/dduugg/yard-sorbet/compare/v0.8.1...v0.9.0

Changelog

Sourced from yard-sorbet's changelog.

0.9.0 (2024-06-30)

Bug Fixes

  • Fix syntax of order-dependent lists

Changes

  • #311 Increase minimum required ruby version to 3.1
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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions