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 prod-dependencies group across 1 directory with 17 updates #10820

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 20, 2024

Bumps the prod-dependencies group with 16 updates in the /updater directory:

Package From To
http 5.1.1 5.2.0
opentelemetry-instrumentation-excon 0.22.0 0.22.4
opentelemetry-instrumentation-http 0.23.2 0.23.4
opentelemetry-instrumentation-net_http 0.22.4 0.22.7
sentry-opentelemetry 5.16.1 5.21.0
aws-sdk-codecommit 1.63.0 1.79.0
aws-sdk-ecr 1.68.0 1.88.0
docker_registry2 1.18.0 1.18.2
excon 0.109.0 0.112.0
faraday 2.7.11 2.12.0
faraday-retry 2.2.0 2.2.1
json 2.6.3 2.7.2
nokogiri 1.16.5 1.16.7
sorbet-runtime 0.5.11577 0.5.11609
stackprof 0.2.25 0.2.26
parseconfig 1.0.8 1.1.2

Updates http from 5.1.1 to 5.2.0

Changelog

Sourced from http's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Unreleased

Removed

  • BREAKING Drop Ruby 2.x support
Commits
  • bb754c7 Release v5.2.0
  • de1e319 ci: Cleanup and update workflow
  • 02e66b0 ci: Add Ruby 3.3 to the test matrix
  • 81d281e SECURITY.md: use private vulnerability reporting feature (#772)
  • 03370c6 Fix changelog uri in gemspec
  • f7e16c8 Add support for the PURGE HTTP method. (#757)
  • 8b802bf Do more conservative URL normalization (#758)
  • 65276d7 Prevent CRLF injection due to broken URL normalizer (#765)
  • 3b7133c fix: close sockets on initialize timeout (#762)
  • 4060ccd not_found requires two arguments (#761)
  • Additional commits viewable in compare view

Updates opentelemetry-instrumentation-excon from 0.22.0 to 0.22.4

Release notes

Sourced from opentelemetry-instrumentation-excon's releases.

opentelemetry-instrumentation-excon 0.22.4

v0.22.4 / 2024-07-23

  • DOCS: Add cspell to CI

opentelemetry-instrumentation-excon 0.22.3

v0.22.3 / 2024-06-18

  • FIXED: Relax otel common gem constraints
  • FIXED: Add http.url to Excon instrumentation
Changelog

Sourced from opentelemetry-instrumentation-excon's changelog.

v0.22.4 / 2024-07-23

  • DOCS: Add cspell to CI

v0.22.3 / 2024-06-18

  • FIXED: Relax otel common gem constraints
  • FIXED: Add http.url to Excon instrumentation

v0.22.2 / 2024-05-09

  • FIXED: Untrace entire request

v0.22.1 / 2024-04-30

  • FIXED: Bundler conflict warnings
Commits

Updates opentelemetry-instrumentation-http from 0.23.2 to 0.23.4

Release notes

Sourced from opentelemetry-instrumentation-http's releases.

opentelemetry-instrumentation-http 0.23.4

v0.23.4 / 2024-07-23

  • DOCS: Add cspell to CI
Changelog

Sourced from opentelemetry-instrumentation-http's changelog.

v0.23.4 / 2024-07-23

  • DOCS: Add cspell to CI

v0.23.3 / 2024-04-30

  • FIXED: Bundler conflict warnings
Commits

Updates opentelemetry-instrumentation-net_http from 0.22.4 to 0.22.7

Release notes

Sourced from opentelemetry-instrumentation-net_http's releases.

opentelemetry-instrumentation-net_http 0.22.7

v0.22.7 / 2024-07-23

  • DOCS: Add cspell to CI

opentelemetry-instrumentation-net_http 0.22.6

v0.22.6 / 2024-06-18

  • FIXED: Relax otel common gem constraints
Changelog

Sourced from opentelemetry-instrumentation-net_http's changelog.

v0.22.7 / 2024-07-23

  • DOCS: Add cspell to CI

v0.22.6 / 2024-06-18

  • FIXED: Relax otel common gem constraints

v0.22.5 / 2024-05-09

  • FIXED: Untrace entire request
Commits

Updates sentry-opentelemetry from 5.16.1 to 5.21.0

Release notes

Sourced from sentry-opentelemetry's releases.

5.21.0

Features

  • Experimental support for multi-threaded profiling using Vernier (#2372)

    You can have much better profiles if you're using multi-threaded servers like Puma now by leveraging Vernier. To use it, first add vernier to your Gemfile and make sure it is loaded before sentry-ruby.

    # Gemfile
    gem 'vernier'
    gem 'sentry-ruby'

    Then, set a profiles_sample_rate and the new profiler_class configuration in your sentry initializer to use the new profiler.

    # config/initializers/sentry.rb
    Sentry.init do |config|
    ...
    config.profiles_sample_rate = 1.0
    config.profiler_class = Sentry::Vernier::Profiler
    end

Internal

  • Profile items have bigger size limit now (#2421)
  • Consistent string freezing (#2422)

5.20.1

Bug Fixes

  • Skip rubocop.yml in spec.files (#2420)

5.20.0

  • Add support for $SENTRY_DEBUG and $SENTRY_SPOTLIGHT (#2374)
  • Support human readable intervals in sidekiq-cron (#2387)
  • Set default app dirs pattern (#2390)
  • Add new strip_backtrace_load_path boolean config (default true) to enable disabling load path stripping (#2409)

Bug Fixes

  • Fix error events missing a DSC when there's an active span (#2408)
  • Verifies presence of client before adding a breadcrumb (#2394)
  • Fix Net:HTTP integration for non-ASCII URI's (#2417)
  • Prevent Hub from having nil scope and client (#2402)

... (truncated)

Changelog

Sourced from sentry-opentelemetry's changelog.

5.21.0

Features

  • Experimental support for multi-threaded profiling using Vernier (#2372)

    You can have much better profiles if you're using multi-threaded servers like Puma now by leveraging Vernier. To use it, first add vernier to your Gemfile and make sure it is loaded before sentry-ruby.

    # Gemfile
    gem 'vernier'
    gem 'sentry-ruby'

    Then, set a profiles_sample_rate and the new profiler_class configuration in your sentry initializer to use the new profiler.

    # config/initializers/sentry.rb
    Sentry.init do |config|
    ...
    config.profiles_sample_rate = 1.0
    config.profiler_class = Sentry::Vernier::Profiler
    end

Internal

  • Profile items have bigger size limit now (#2421)
  • Consistent string freezing (#2422)

5.20.1

Bug Fixes

  • Skip rubocop.yml in spec.files (#2420)

5.20.0

  • Add support for $SENTRY_DEBUG and $SENTRY_SPOTLIGHT (#2374)
  • Support human readable intervals in sidekiq-cron (#2387)
  • Set default app dirs pattern (#2390)
  • Add new strip_backtrace_load_path boolean config (default true) to enable disabling load path stripping (#2409)

Bug Fixes

  • Fix error events missing a DSC when there's an active span (#2408)
  • Verifies presence of client before adding a breadcrumb (#2394)

... (truncated)

Commits

Updates sentry-ruby from 5.16.1 to 5.21.0

Changelog

Sourced from sentry-ruby's changelog.

5.21.0

Features

  • Experimental support for multi-threaded profiling using Vernier (#2372)

    You can have much better profiles if you're using multi-threaded servers like Puma now by leveraging Vernier. To use it, first add vernier to your Gemfile and make sure it is loaded before sentry-ruby.

    # Gemfile
    gem 'vernier'
    gem 'sentry-ruby'

    Then, set a profiles_sample_rate and the new profiler_class configuration in your sentry initializer to use the new profiler.

    # config/initializers/sentry.rb
    Sentry.init do |config|
    ...
    config.profiles_sample_rate = 1.0
    config.profiler_class = Sentry::Vernier::Profiler
    end

Internal

  • Profile items have bigger size limit now (#2421)
  • Consistent string freezing (#2422)

5.20.1

Bug Fixes

  • Skip rubocop.yml in spec.files (#2420)

5.20.0

  • Add support for $SENTRY_DEBUG and $SENTRY_SPOTLIGHT (#2374)
  • Support human readable intervals in sidekiq-cron (#2387)
  • Set default app dirs pattern (#2390)
  • Add new strip_backtrace_load_path boolean config (default true) to enable disabling load path stripping (#2409)

Bug Fixes

  • Fix error events missing a DSC when there's an active span (#2408)
  • Verifies presence of client before adding a breadcrumb (#2394)

... (truncated)

Commits
  • d56c2bb release: 5.21.0
  • 5b1b558 Consistent string freezing (#2422)
  • 8dc3d2d Experimental support for multi-threaded profiling using Vernier (#2372)
  • a070e08 Generalize size limits based on envelope item type (#2421)
  • 84bf2cf release: 5.20.1
  • d96e8e1 Ignore rubocop file in spec files (#2420)
  • 34ba320 release: 5.20.0
  • af8fcdd Prevent Hub from having nil scope and client (#2402)
  • 152eb5e fix: Unable to use sentry when URI contains non-ascii symbols on Net::HTTP tr...
  • 0c875e4 Skip concurrent threaded test on jruby (#2415)
  • Additional commits viewable in compare view

Updates aws-sdk-codecommit from 1.63.0 to 1.79.0

Changelog

Sourced from aws-sdk-codecommit's changelog.

1.79.0 (2024-10-18)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

1.78.0 (2024-09-24)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

1.77.0 (2024-09-23)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

1.76.0 (2024-09-20)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

1.75.0 (2024-09-11)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

1.74.0 (2024-09-10)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

1.73.0 (2024-09-03)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

1.72.0 (2024-07-25)

  • Feature - CreateRepository API now throws OperationNotAllowedException when the account has been restricted from creating a repository.

1.71.0 (2024-07-02)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

1.70.0 (2024-06-28)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

... (truncated)

Commits

Updates aws-sdk-ecr from 1.68.0 to 1.88.0

Changelog

Sourced from aws-sdk-ecr's changelog.

1.88.0 (2024-10-18)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

1.87.0 (2024-09-24)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

1.86.0 (2024-09-23)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

1.85.0 (2024-09-20)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

1.84.0 (2024-09-17)

  • Feature - The DescribeImageScanning API now includes fixAvailable, exploitAvailable, and fixedInVersion fields to provide more detailed information about the availability of fixes, exploits, and fixed versions for identified image vulnerabilities.

1.83.0 (2024-09-11)

  • Feature - Added KMS_DSSE to EncryptionType

1.82.0 (2024-09-10)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

1.81.0 (2024-09-03)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

1.80.0 (2024-08-05)

  • Feature - Released two new APIs along with documentation updates. The GetAccountSetting API is used to view the current basic scan type version setting for your registry, while the PutAccountSetting API is used to update the basic scan type version for your registry.

1.79.0 (2024-07-25)

  • Feature - API and documentation updates for Amazon ECR, adding support for creating, updating, describing and deleting ECR Repository Creation Template.

... (truncated)

Commits

Updates docker_registry2 from 1.18.0 to 1.18.2

Commits

Updates excon from 0.109.0 to 0.112.0

Changelog

Sourced from excon's changelog.

0.111.0 2024-07-08

  • update bundled certs

0.111.0 2024-07-08

  • lint fixes
  • fixes related to rackup for testing
  • update bundled certs

0.110.0 2024-03-12

  • update bundled default certificates
Commits
  • 0e06fb9 v0.112.0
  • 5723cad update bundled certs
  • 5d0fad8 v0.111.0
  • c142e97 update bundled certs
  • 41e1b34 fix tests to use Rackup::Handler instead of Rack::Handler
  • d109e36 tweak redirecting rackup to use .env to access content_length
  • 7f8c949 relocate require to lib/excon from connection
  • 8d8edd0 more progress on lints
  • 2fc0bd8 progress on rubocop/lints in lib/excon
  • 1970dee v0.109.0
  • Additional commits viewable in compare view

Updates faraday from 2.7.11 to 2.12.0

Release notes

Sourced from faraday's releases.

v2.12.0

What's Changed

New features ✨

Fixes 🐞

Misc/Docs 📄

New Contributors

Full Changelog: lostisland/faraday@v2.11.0...v2.12.0

v2.11.0

What's Changed

This release adds support for the ciphers SSL option (currently supported by the net_http adapter in v3.3+), as well as taking advantage of the support of chained certificates introduced in the net_http adapter in v3.2. Also, it adds a new ParallelManager#execute interface that improves on the existing one and makes it easier for adapters to support parallel requests. This is currently used by the async-http adapter.

New features ✨

Misc/Docs 📄

New Contributors

Full Changelog: lostisland/faraday@v2.10.1...v2.11.0

v2.10.1

What's Changed

Full Changelog: lostisland/faraday@v2.10.0...v2.10.1

v2.10.0

What's Changed

This release introduces support for middleware-level default_options 🎉 You can read more about it in the docs.

... (truncated)

Commits

Updates faraday-retry from 2.2.0 to 2.2.1

Release notes

Sourced from faraday-retry's releases.

v2.2.1

What's Changed

New Contributors

Full Changelog: lostisland/faraday-retry@v2.2.0...v2.2.1

Changelog

Sourced from faraday-retry's changelog.

v2.2.1 (2024-04-15)

Commits
  • 7506f91 v2.2.1
  • 1a7ae96 CHANGELOG.md: Add unreleased code [ci skip]
  • 8056d24 Bump actions/checkout from 3 to 4
  • 2b3fba5 CI: Tell dependabot to update GH Actions
  • ce15807 Check for Faraday::UploadIO while rewinding
  • f1929d9 Add instructions on how to inherit the default exceptions to the README
  • 0b769c4 Add missing default exceptions
  • 1be9551 Add Ruby 3.3 to CI matrix
  • 6b1419f Update docs reference to RaiseError middleware (#32)
  • 41b7ea2 Document "methods" type as symbols [ci skip] (#30)
  • See full diff in compare view

Updates json from 2.6.3 to 2.7.2

Release notes

Sourced from json's releases.

v2.7.2

What's Changed

New Contributors

Full Changelog: ruby/json@v2.7.1...v2.7.2

v2.7.1

What's Changed

Improved

Fixed

Misc

New Contributors

Full Changelog: ruby/json@v2.7.0...v2.7.1

v2.7.0

What's Changed

Improved

Added

... (truncated)

Changelog

Sourced from json's changelog.

2024-04-04 (2.7.2)

  • Use rb_sym2str instead of SYM2ID #561
  • Fix memory leak when exception is raised during JSON generation #574
  • Remove references to "19" methods in JRuby #576
  • Make OpenStruct support as optional by @​hsbt in #565
  • Autoload JSON::GenericObject to avoid require ostruct warning in Ruby 3.4 #577
  • Warn to install ostruct if json couldn't load it by @​hsbt #578

2023-12-05 (2.7.1)

  • JSON.dump: handle unenclosed hashes regression #554
  • Overload kwargs in JSON.dump #556
  • [DOC] RDoc for additions #557
  • Fix JSON.dump overload combination #558

2023-12-01 (2.7.0)

  • Add a strict option to Generator #519
  • escape_slash option was renamed as script_safe and now also escape U+2028 and U+2029. escape_slash is now an alias of script_safe #525
  • Remove unnecessary initialization of create_id in JSON.parse() #454
  • Improvements to Hash#to_json in pure implementation generator #203
  • Use ruby_xfree to free buffers #518
  • Fix "unexpected token" offset for Infinity #507
  • Avoid using deprecated BigDecimal.new on JRuby #546
  • Removed code for Ruby 1.8 #540
  • Rename JSON::ParseError to JSON:ParserError #530
  • Call super in included hook #486
  • JRuby requires a minimum of Java 8 #516
  • Always indent even if empty #517
Commits
  • 036944a Bump up 2.7.2
  • 5a1659d Merge pull request #578 from flori/warn-bundled-gems
  • fff2859 Warn to install ostruct if json couldn't load it
  • cdbcbd0 Merge pull request #577 from tompng/autoload_generic_object
  • 84b7517 Merge pull request #576 from headius/no_19_jruby_methods
  • b507f9e Autoload GenericObject to avoid require ostruct warning in Ruby 3.4
  • a480682 Remove references to "19" methods in JRuby
  • 35d435e Merge pull request #575 from flori/refine-ci
  • 817d7b0 Exclude 2.3-2.5 on macos-14 iamge
  • df33e8e Added JRuby 9.4
  • Additional commits viewable in compare view

Updates nokogiri from 1.16.5 to 1.16.7

Release notes

Sourced from nokogiri's releases.

v1.16.7 / 2024-07-27

Dependencies

  • [CRuby] Vendored libxml2 is updated to v2.12.9, which the upstream release notes state is a security release to address CVE-2024-40896. Nokogiri's maintainers believe this vulnerability does not affect users of Nokogiri, but we advise upgrading at your earliest convenience anyway.

sha256 checksums:

78778d35f165b59513be31c0fe232c63a82cf97626ffba695b5f822e5da1d74b  nokogiri-1.16.7-aarch64-linux.gem
c84cdb9e3aa44c35bbb981b20175838c4b2066c26c5cb118f31f177168a42fc3  nokogiri-1.16.7-arm-linux.gem
276dcea1b988a5b22b5acc1ba901d24b8e908c40b71dccd5d54a2ae279480dad  nokogiri-1.16.7-arm64-darwin.gem
044c45ca46abc2b6135a85ab39a546ff2f0434d43142bc59b83e5b1068876a42  nokogiri-1.16.7-java.gem
01ed785392f9cbdfd45e0e5ef6ad6d2c80a6128672589448f18952168bd68e56  nokogiri-1.16.7-x64-mingw-ucrt.gem
d8fd5c675743b85354c9098117bfa9e703c7cacab8c33e5190104ea8218ad1ec  nokogiri-1.16.7-x64-mingw32.gem
dddbf1c1ef99ce9fab98302b14f8bacb703e6f16e89b99f05ecee8a1fca23664  nokogiri-1.16.7-x86-linux.gem
b6517d995b024739cbb81251a26866d40e1ccb151936b5bb0977e7487f4e617c  nokogiri-1.16.7-x86-mingw32.gem
630732b80fc572690eab50c73a1f18988f3ac401ed0b67ca9956ba2b1e2c3faa  nokogiri-1.16.7-x86_64-darwin.gem
9e1e428641d5942af877c60b418c71163560e9feb4a5c4015f3230a8b86a40f6  nokogiri-1.16.7-x86_64-linux.gem
f819cbfdfb0a7b19c9c52c6f2ca63df0e58a6125f4f139707b586b9511d7fe95  nokogiri-1.16.7.gem

v1.16.6 / 2024-06-13

Dependencies

  • [CRuby] Vendored libxml2 is updated to v2.12.8, which the release notes state is a bugfix release.

sha256 checksums:

7f4c37ee2dd9c97fdfb6278cf3d9dd2078651f241eed320e26902135dbf78183  nokogiri-1.16.6-aarch64-linux.gem
73d7a7ca569308f181a234269e6607c9acb26ecc93ccbb05998d24a9546c0a94  nokogiri-1.16.6-arm-linux.gem
43e8a783697c65413408a4923b5c2ed6bea6632cfdab4da220446b601733fa4b  nokogiri-1.16.6-arm64-darwin.gem
...

Description has been truncated

Bumps the prod-dependencies group with 16 updates in the /updater directory:

| Package | From | To |
| --- | --- | --- |
| [http](https://github.com/httprb/http) | `5.1.1` | `5.2.0` |
| [opentelemetry-instrumentation-excon](https://github.com/open-telemetry/opentelemetry-ruby-contrib) | `0.22.0` | `0.22.4` |
| [opentelemetry-instrumentation-http](https://github.com/open-telemetry/opentelemetry-ruby-contrib) | `0.23.2` | `0.23.4` |
| [opentelemetry-instrumentation-net_http](https://github.com/open-telemetry/opentelemetry-ruby-contrib) | `0.22.4` | `0.22.7` |
| [sentry-opentelemetry](https://github.com/getsentry/sentry-ruby) | `5.16.1` | `5.21.0` |
| [aws-sdk-codecommit](https://github.com/aws/aws-sdk-ruby) | `1.63.0` | `1.79.0` |
| [aws-sdk-ecr](https://github.com/aws/aws-sdk-ruby) | `1.68.0` | `1.88.0` |
| [docker_registry2](https://github.com/deitch/docker_registry2) | `1.18.0` | `1.18.2` |
| [excon](https://github.com/excon/excon) | `0.109.0` | `0.112.0` |
| [faraday](https://github.com/lostisland/faraday) | `2.7.11` | `2.12.0` |
| [faraday-retry](https://github.com/lostisland/faraday-retry) | `2.2.0` | `2.2.1` |
| [json](https://github.com/flori/json) | `2.6.3` | `2.7.2` |
| [nokogiri](https://github.com/sparklemotion/nokogiri) | `1.16.5` | `1.16.7` |
| [sorbet-runtime](https://github.com/sorbet/sorbet) | `0.5.11577` | `0.5.11609` |
| [stackprof](https://github.com/tmm1/stackprof) | `0.2.25` | `0.2.26` |
| [parseconfig](https://github.com/datafolklabs/ruby-parseconfig) | `1.0.8` | `1.1.2` |



Updates `http` from 5.1.1 to 5.2.0
- [Changelog](https://github.com/httprb/http/blob/main/CHANGELOG.md)
- [Commits](httprb/http@v5.1.1...v5.2.0)

Updates `opentelemetry-instrumentation-excon` from 0.22.0 to 0.22.4
- [Release notes](https://github.com/open-telemetry/opentelemetry-ruby-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-ruby-contrib/blob/main/instrumentation/excon/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-ruby-contrib@opentelemetry-instrumentation-excon/v0.22.0...opentelemetry-instrumentation-excon/v0.22.4)

Updates `opentelemetry-instrumentation-http` from 0.23.2 to 0.23.4
- [Release notes](https://github.com/open-telemetry/opentelemetry-ruby-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-ruby-contrib/blob/main/instrumentation/http/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-ruby-contrib@opentelemetry-instrumentation-http/v0.23.2...opentelemetry-instrumentation-http/v0.23.4)

Updates `opentelemetry-instrumentation-net_http` from 0.22.4 to 0.22.7
- [Release notes](https://github.com/open-telemetry/opentelemetry-ruby-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-ruby-contrib/blob/main/instrumentation/net_http/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-ruby-contrib@opentelemetry-instrumentation-net_http/v0.22.4...opentelemetry-instrumentation-net_http/v0.22.7)

Updates `sentry-opentelemetry` from 5.16.1 to 5.21.0
- [Release notes](https://github.com/getsentry/sentry-ruby/releases)
- [Changelog](https://github.com/getsentry/sentry-ruby/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-ruby@5.16.1...5.21.0)

Updates `sentry-ruby` from 5.16.1 to 5.21.0
- [Release notes](https://github.com/getsentry/sentry-ruby/releases)
- [Changelog](https://github.com/getsentry/sentry-ruby/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-ruby@5.16.1...5.21.0)

Updates `aws-sdk-codecommit` from 1.63.0 to 1.79.0
- [Release notes](https://github.com/aws/aws-sdk-ruby/releases)
- [Changelog](https://github.com/aws/aws-sdk-ruby/blob/version-3/gems/aws-sdk-codecommit/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-ruby/commits)

Updates `aws-sdk-ecr` from 1.68.0 to 1.88.0
- [Release notes](https://github.com/aws/aws-sdk-ruby/releases)
- [Changelog](https://github.com/aws/aws-sdk-ruby/blob/version-3/gems/aws-sdk-ecr/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-ruby/commits)

Updates `docker_registry2` from 1.18.0 to 1.18.2
- [Changelog](https://github.com/deitch/docker_registry2/blob/master/CHANGELOG.md)
- [Commits](deitch/docker_registry2@v1.18.0...v1.18.2)

Updates `excon` from 0.109.0 to 0.112.0
- [Changelog](https://github.com/excon/excon/blob/master/changelog.txt)
- [Commits](excon/excon@v0.109.0...v0.112.0)

Updates `faraday` from 2.7.11 to 2.12.0
- [Release notes](https://github.com/lostisland/faraday/releases)
- [Changelog](https://github.com/lostisland/faraday/blob/main/CHANGELOG.md)
- [Commits](lostisland/faraday@v2.7.11...v2.12.0)

Updates `faraday-retry` from 2.2.0 to 2.2.1
- [Release notes](https://github.com/lostisland/faraday-retry/releases)
- [Changelog](https://github.com/lostisland/faraday-retry/blob/main/CHANGELOG.md)
- [Commits](lostisland/faraday-retry@v2.2.0...v2.2.1)

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

Updates `nokogiri` from 1.16.5 to 1.16.7
- [Release notes](https://github.com/sparklemotion/nokogiri/releases)
- [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)
- [Commits](sparklemotion/nokogiri@v1.16.5...v1.16.7)

Updates `sorbet-runtime` from 0.5.11577 to 0.5.11609
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

Updates `stackprof` from 0.2.25 to 0.2.26
- [Changelog](https://github.com/tmm1/stackprof/blob/master/CHANGELOG.md)
- [Commits](tmm1/stackprof@v0.2.25...v0.2.26)

Updates `parseconfig` from 1.0.8 to 1.1.2
- [Changelog](https://github.com/datafolklabs/ruby-parseconfig/blob/master/Changelog)
- [Commits](https://github.com/datafolklabs/ruby-parseconfig/commits)

---
updated-dependencies:
- dependency-name: http
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: opentelemetry-instrumentation-excon
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: opentelemetry-instrumentation-http
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: opentelemetry-instrumentation-net_http
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: sentry-opentelemetry
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: sentry-ruby
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: aws-sdk-codecommit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: aws-sdk-ecr
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: docker_registry2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: excon
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: faraday
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: faraday-retry
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: json
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: nokogiri
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: sorbet-runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: stackprof
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: parseconfig
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner October 20, 2024 16:25
@dependabot dependabot bot added dependencies ruby Dependabot pull requests that update Ruby code labels Oct 20, 2024
@github-actions github-actions bot added the L: git:submodules Git submodules label Oct 20, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 24, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Oct 24, 2024
@dependabot dependabot bot deleted the dependabot/bundler/updater/prod-dependencies-f4fe5ef18b branch October 24, 2024 18:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies L: git:submodules Git submodules ruby Dependabot pull requests that update Ruby code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants