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 8 updates #213

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 18, 2023

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

Package From To
sqlite3 1.6.8 1.6.9
debug 1.8.0 1.9.0
rubocop-minitest 0.33.0 0.34.1
rubocop-sorbet 0.7.5 0.7.6
rdoc 6.6.0 6.6.2
sorbet-static-and-runtime 0.5.11139 0.5.11156
tapioca 0.11.12 0.11.13
ruby-lsp 0.13.0 0.13.2

Updates sqlite3 from 1.6.8 to 1.6.9

Release notes

Sourced from sqlite3's releases.

1.6.9 / 2023-11-26

Dependencies

Added

  • Database.new now accepts a :default_transaction_mode option (defaulting to :deferred), and Database#transaction no longer requires a transaction mode to be specified. This should allow higher-level adapters to more easily choose a transaction mode for a database connection. #426 @​masamitsu-murase

sha256 checksums:

bf664e360101349fce44ef80284f3e3f1995c2a972855317ea26db07b8109e5e  sqlite3-1.6.9-aarch64-linux.gem
d666010cc56146dfc7eefd23aec383b27247fce56a16ae85d936469414138cb2  sqlite3-1.6.9-arm-linux.gem
bed643cefc56db014dc6a20f5a5c8aa1df5a200bc172a9f3ef0a92c596846147  sqlite3-1.6.9-arm64-darwin.gem
c31fc7d4538ee24aa830507c98c3c558854ea702ea014751e6cc2c09675d8a1a  sqlite3-1.6.9-x64-mingw-ucrt.gem
6fc5f58c5c17433367473f596f5be5dfb635e29753aaf00afeddf1b7877b1ef4  sqlite3-1.6.9-x64-mingw32.gem
cd69cc1aa808d54ada8de59fc734d7ba9bf41b0011275f3946a337d5b8e858e5  sqlite3-1.6.9-x86-linux.gem
65c6e4bab10d84369900ee94c1b7babc95e472ae2c2c3c836561cef00c9b7b65  sqlite3-1.6.9-x86_64-darwin.gem
924c2d4d425e964a60bc5177e71ed372f71325425b3ea75971521b1fe184d1a2  sqlite3-1.6.9-x86_64-linux.gem
55a191656316de5bdbec28291ca2f45e8e41f804b3cc592faa318c4f69f93922  sqlite3-1.6.9.gem
Changelog

Sourced from sqlite3's changelog.

1.6.9 / 2023-11-26

Dependencies

Added

  • Database.new now accepts a :default_transaction_mode option (defaulting to :deferred), and Database#transaction no longer requires a transaction mode to be specified. This should allow higher-level adapters to more easily choose a transaction mode for a database connection. #426 @​masamitsu-murase
Commits
  • d4df9fd version bump to v1.6.9
  • ad93a6b Merge pull request #426 from masamitsu-murase/support_default_transaction_mode
  • f140292 doc: update CHANGELOG for default_transaction_mode
  • f8ebfca doc: document Database.new options
  • 109b6b1 Support default transaction mode.
  • 0c59601 Merge pull request #427 from sparklemotion/flavorjones-dep-sqlite-3.44.2
  • 699ac4d dep: update sqlite to v3.44.2
  • 571d231 Merge pull request #428 from sparklemotion/flavorjones-upstream-ruby-head
  • 2239bd9 ci: test edge rubies only in upstream.yml
  • f18d15e Merge pull request #423 from sparklemotion/dependabot/bundler/rdoc-6.6.0
  • Additional commits viewable in compare view

Updates debug from 1.8.0 to 1.9.0

Release notes

Sourced from debug's releases.

v1.9.0

This release fixes many issues reported after v1.8.0, introduce IRB integrated console and more.

What's Changed

New Contributors

Full Changelog: ruby/debug@v1.8.0...v1.9.0

Commits

Updates rubocop-minitest from 0.33.0 to 0.34.1

Release notes

Sourced from rubocop-minitest's releases.

RuboCop Minitest 0.34.1

Bug fixes

  • #281: Fix an error when assigning a value to an object attribute. (@​koic)

RuboCop Minitest 0.34.0 (The RubyConf Taiwan 2023 Edition)

New features

  • #272: Add new Minitest/RedundantMessageArgument cop. (@​koic)
  • #279: Add new Minitest/NonExecutableTestMethod cop. (@​koic)

Bug fixes

  • #275: Make Minitest/AssertMatch aware of assert_operator when running with Ruby 2.7. (@​koic)
  • #271: Fix a false positive for Minitest/EmptyLineBeforeAssertionMethods and assert_raises. (@​fatkodima)

Changes

Changelog

Sourced from rubocop-minitest's changelog.

0.34.1 (2023-12-16)

Bug fixes

  • #281: Fix an error when assigning a value to an object attribute. ([@​koic][])

0.34.0 (2023-12-16)

New features

  • #272: Add new Minitest/RedundantMessageArgument cop. ([@​koic][])
  • #279: Add new Minitest/NonExecutableTestMethod cop. ([@​koic][])

Bug fixes

  • #275: Make Minitest/AssertMatch aware of assert_operator when running with Ruby 2.7. ([@​koic][])
  • #271: Fix a false positive for Minitest/EmptyLineBeforeAssertionMethods and assert_raises. ([@​fatkodima][])

Changes

Commits
  • 56f2263 Cut 0.34.1
  • 3e109b8 Update Changelog
  • 5ba16c7 Merge pull request #282 from koic/fix_an_error_when_using_assigning_a_value_t...
  • b7587e5 [Fix #281] Fix an error when assigning a value to an object attribute
  • 8f8f0e4 Add a missing changelog entry
  • be9d54a Switch back docs version to master
  • 33e2db5 Cut 0.34.0
  • 0b2911f Update Changelog
  • a31118d Merge pull request #280 from koic/add_new_minitest_non_executable_test_method...
  • 6306fd5 [Fix #279] Add new Minitest/NonExecutableTestMethod cop
  • Additional commits viewable in compare view

Updates rubocop-sorbet from 0.7.5 to 0.7.6

Release notes

Sourced from rubocop-sorbet's releases.

v0.7.6

What's Changed

🛠 Other Changes

Full Changelog: Shopify/rubocop-sorbet@v0.7.5...v0.7.6

Commits

Updates rdoc from 6.6.0 to 6.6.2

Release notes

Sourced from rdoc's releases.

v6.6.2

What's Changed

Full Changelog: ruby/rdoc@v6.6.1...v6.6.2

v6.6.1

What's Changed

Full Changelog: ruby/rdoc@v6.6.0...v6.6.1

Commits
  • 895f1af Bump up v6.6.2
  • 61e6ef7 Add coverage task
  • f7dd147 [DOC] nodoc for probably internal methods
  • e4c9034 [DOC] Add missing documents
  • edb2523 Require fileutils before using it
  • 7a8e9a9 Remove unused method RDoc::Encoding.remove_frozen_string_literal
  • 823241e Bump ruby/setup-ruby from 1.161.0 to 1.162.0
  • 66241b8 Bump actions/configure-pages from 3 to 4
  • 86c1982 Bump actions/deploy-pages from 2 to 3
  • 72c6560 Only word-ending colon separates new definition
  • Additional commits viewable in compare view

Updates sorbet-static-and-runtime from 0.5.11139 to 0.5.11156

Release notes

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

sorbet 0.5.11155.20231214155153-fe9e4e606

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11154.20231214100553-6acb246b4

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11153.20231214093634-d151da38b

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11152.20231213141104-965f6fa32

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11151.20231212110236-ea1e77857

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11150.20231208154237-4a47295e5

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11149.20231208112425-aa9837ad9

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11148.20231207102341-a5fbbcffe

... (truncated)

Commits

Updates tapioca from 0.11.12 to 0.11.13

Release notes

Sourced from tapioca's releases.

v0.11.13

What's Changed

✨ Enhancements

🐛 Bug Fixes

🛠 Other Changes

Full Changelog: Shopify/tapioca@v0.11.12...v0.11.13

Commits
  • c7b6c1e Bump version to v0.11.13
  • bea6da1 Merge pull request #1726 from Shopify/andyw8/current-attributes-synthetic-inc...
  • 6467c61 Correct example output
  • 24fbc1e Rename to generated_attribute_methods
  • b526d63 Rename to CurrentAttributesMethods
  • 5fb4c91 Use synthetic include for CurrentAttributes generator
  • dc1f405 Merge pull request #1722 from Shopify/dependabot/bundler/sqlite3-1.6.9
  • 6df7ac3 Update rbi
  • 6a1aec4 Merge pull request #1723 from Shopify/improve-debugger-workaround
  • 1c3187f Update the workaround for debug gem
  • Additional commits viewable in compare view

Updates ruby-lsp from 0.13.0 to 0.13.2

Release notes

Sourced from ruby-lsp's releases.

v0.13.2

What's Changed

✨ Enhancements

🛠 Other Changes

New Contributors

Full Changelog: Shopify/ruby-lsp@v0.13.1...v0.13.2

v0.13.1

What's Changed

✨ Enhancements

🐛 Bug Fixes

🛠 Other Changes

New Contributors

Full Changelog: Shopify/ruby-lsp@v0.13.0...v0.13.1

Commits
  • f570fd9 Bump version to v0.13.2
  • 16b4c7e Remove aliased shapes (#1254)
  • 0ddc05b Merge pull request #1255 from Shopify/dependabot/submodules/test/fixtures/pri...
  • d539e00 Bump test/fixtures/prism from d76f295 to aa8b60c
  • 01dc028 Upgrade to Prism v0.19 (#1253)
  • 90ee251 Merge pull request #1252 from Shopify/ko/actor
  • 4db41f8 Merge pull request #1244 from Shopify/dependabot/bundler/minor-and-patch-58dd...
  • 3507304 Upgrade RBIs
  • a142f7c Upgrade gems
  • 0171268 Execute RBI workflow only for dependabot commits
  • 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 8 updates:

| Package | From | To |
| --- | --- | --- |
| [sqlite3](https://github.com/sparklemotion/sqlite3-ruby) | `1.6.8` | `1.6.9` |
| [debug](https://github.com/ruby/debug) | `1.8.0` | `1.9.0` |
| [rubocop-minitest](https://github.com/rubocop/rubocop-minitest) | `0.33.0` | `0.34.1` |
| [rubocop-sorbet](https://github.com/shopify/rubocop-sorbet) | `0.7.5` | `0.7.6` |
| [rdoc](https://github.com/ruby/rdoc) | `6.6.0` | `6.6.2` |
| [sorbet-static-and-runtime](https://github.com/sorbet/sorbet) | `0.5.11139` | `0.5.11156` |
| [tapioca](https://github.com/Shopify/tapioca) | `0.11.12` | `0.11.13` |
| [ruby-lsp](https://github.com/Shopify/ruby-lsp) | `0.13.0` | `0.13.2` |


Updates `sqlite3` from 1.6.8 to 1.6.9
- [Release notes](https://github.com/sparklemotion/sqlite3-ruby/releases)
- [Changelog](https://github.com/sparklemotion/sqlite3-ruby/blob/master/CHANGELOG.md)
- [Commits](sparklemotion/sqlite3-ruby@v1.6.8...v1.6.9)

Updates `debug` from 1.8.0 to 1.9.0
- [Release notes](https://github.com/ruby/debug/releases)
- [Commits](ruby/debug@v1.8.0...v1.9.0)

Updates `rubocop-minitest` from 0.33.0 to 0.34.1
- [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.33.0...v0.34.1)

Updates `rubocop-sorbet` from 0.7.5 to 0.7.6
- [Release notes](https://github.com/shopify/rubocop-sorbet/releases)
- [Commits](Shopify/rubocop-sorbet@v0.7.5...v0.7.6)

Updates `rdoc` from 6.6.0 to 6.6.2
- [Release notes](https://github.com/ruby/rdoc/releases)
- [Changelog](https://github.com/ruby/rdoc/blob/master/History.rdoc)
- [Commits](ruby/rdoc@v6.6.0...v6.6.2)

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

Updates `tapioca` from 0.11.12 to 0.11.13
- [Release notes](https://github.com/Shopify/tapioca/releases)
- [Commits](Shopify/tapioca@v0.11.12...v0.11.13)

Updates `ruby-lsp` from 0.13.0 to 0.13.2
- [Release notes](https://github.com/Shopify/ruby-lsp/releases)
- [Commits](Shopify/ruby-lsp@v0.13.0...v0.13.2)

---
updated-dependencies:
- dependency-name: sqlite3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: debug
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rubocop-minitest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rubocop-sorbet
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: rdoc
  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: ruby-lsp
  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 December 18, 2023 20:02
@dependabot dependabot bot requested review from andyw8 and st0012 December 18, 2023 20:02
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby labels Dec 18, 2023
@github-actions github-actions bot enabled auto-merge December 18, 2023 20:36
@andyw8 andyw8 force-pushed the dependabot/bundler/minor-and-patch-2be5b2b887 branch from 9b86255 to 62a9c8e Compare December 18, 2023 20:36
@andyw8 andyw8 disabled auto-merge December 18, 2023 20:38
@andyw8
Copy link
Contributor

andyw8 commented Dec 18, 2023

I've disabled automerge since we need to manually fix the platform modifications that Dependabot is making.

Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 25, 2023

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

@dependabot dependabot bot closed this Dec 25, 2023
@dependabot dependabot bot deleted the dependabot/bundler/minor-and-patch-2be5b2b887 branch December 25, 2023 19:24
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.

1 participant