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 in /gem with 6 updates #292

Merged
merged 3 commits into from
Nov 1, 2024

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the minor-and-patch group in /gem with 6 updates:

Package From To
json-schema 5.0.0 5.0.1
rbi 0.2.0 0.2.1
rubocop 1.66.1 1.68.0
rubocop-sorbet 0.8.5 0.8.6
sorbet-static-and-runtime 0.5.11589 0.5.11630
tapioca 0.16.2 0.16.3

Updates json-schema from 5.0.0 to 5.0.1

Changelog

Sourced from json-schema's changelog.

v5.0.1 (2024-10-03)

Full Changelog

Fixed bugs:

Commits

Updates rbi from 0.2.0 to 0.2.1

Commits
  • c19de04 Bump version to v0.2.1
  • 80784c2 Merge pull request #368 from Shopify/at-rbs-attr
  • 2d2ff32 Do not rely on return type for attr_writer RBS signatures
  • 174dcc9 Merge pull request #367 from Shopify/at-rbs-printer
  • cd80f10 Add RBS printer
  • 5b097f6 Merge pull request #366 from Shopify/dependabot/bundler/minor-and-patch-cb0c7...
  • f4915d4 Bump the minor-and-patch group with 2 updates
  • 659a65c Merge pull request #365 from Shopify/dependabot/bundler/minor-and-patch-4df51...
  • c794165 Bump the minor-and-patch group with 2 updates
  • 7723f25 Merge pull request #364 from Shopify/dependabot/bundler/minor-and-patch-19ecd...
  • Additional commits viewable in compare view

Updates rubocop from 1.66.1 to 1.68.0

Release notes

Sourced from rubocop's releases.

RuboCop 1.68

New features

Bug fixes

  • #13401: Fix a false negative for Style/RedundantLineContinuation when there is a line continuation at the EOF. (@​koic)
  • #13368: Fix an incorrect autocorrect for Naming/BlockForwarding with Style/ExplicitBlockArgument. (@​koic)
  • #13391: Fix deserialization of unknown encoding offenses. (@​earlopain)
  • #13348: Ensure Style/BlockDelimiters autocorrection does not move other code between the block and comment. (@​dvandersluis)
  • #13382: Fix an error during error handling for custom ruby extractors when the extractor is a class. (@​earlopain)
  • #13309: Fix a false negative for Lint/UselessAssignment cop when there is a useless assignment followed by a block. (@​pCosta99)
  • #13255: Fix false negatives for Style/MapIntoArray when using non-splatted arguments. (@​vlad-pisanov)
  • #13356: Fix a false positive for Layout/SpaceBeforeBrackets when there is a dot before []=. (@​earlopain)
  • #13365: Fix false positives for Lint/SafeNavigationConsistency when using safe navigation on the LHS with operator method on the RHS of &&. (@​koic)
  • #13390: Fix false positives for Style/GuardClause when using a local variable assigned in a conditional expression in a branch. (@​koic)
  • #13337: Fix false positives for Style/RedundantLineContinuation when required line continuations for && is used with an assignment after a line break. (@​koic)
  • #13387: Fix false positives in Style/RedundantParentheses when parentheses are used around method chain with do...end block in keyword argument. (@​koic)
  • #13341: Fix false positives for Lint/SafeNavigationChain when a safe navigation operator is used with a method call as the RHS operand of && for the same receiver. (@​koic)
  • #13324: Fix --disable-uncorrectable to not insert a comment inside a string continuation. (@​dvandersluis)
  • #13364: Fix incorrect autocorrect with Lint/UselessAssignment a multiple assignment or for contains an inner assignment. (@​dvandersluis)
  • #13353: Fix an incorrect autocorrect for Style/BlockDelimiters when EnforcedStyle: semantic is set and used with Layout/SpaceInsideBlockBraces. (@​koic)
  • #13361: Fix false positives for Style/RedundantInterpolationUnfreeze and Style/RedundantFreeze when strings contain interpolated global, instance, and class variables. (@​vlad-pisanov)
  • #13343: Prevent Layout/LineLength from breaking up a method with arguments chained onto a heredoc delimiter. (@​dvandersluis)
  • #13374: Return exit code 0 with --display-only-correctable and --display-only-safe-correctable when no offenses are displayed. (@​dvandersluis)
  • #13193: Fix false positive in Style/MultipleComparison when ComparisonsThreshold exceeds 2. (@​fatkodima,@​vlad-pisanov)
  • #13325: Fix an incorrect autocorrect for Lint/NonAtomicFileOperation when using a postfix unless for file existence checks before creating a file, in cases with Dir.mkdir. ([@​kotaro0522][])
  • #13397: Update PercentLiteralCorrector to be able to write pairs of delimiters without excessive escaping. (@​dvandersluis)
  • #13336: Update Style/SafeNavigation to not autocorrect if the RHS of an and node is an or node. (@​dvandersluis)
  • #13378: When removing parens in Style/TernaryParentheses with a send node condition, ensure its arguments are parenthesized. (@​dvandersluis)

Changes

  • #13347: When running rubocop -V, show the analysis Ruby version of the current directory. (@​earlopain)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.68.0 (2024-10-31)

New features

Bug fixes

  • #13401: Fix a false negative for Style/RedundantLineContinuation when there is a line continuation at the EOF. ([@​koic][])
  • #13368: Fix an incorrect autocorrect for Naming/BlockForwarding with Style/ExplicitBlockArgument. ([@​koic][])
  • #13391: Fix deserialization of unknown encoding offenses. ([@​earlopain][])
  • #13348: Ensure Style/BlockDelimiters autocorrection does not move other code between the block and comment. ([@​dvandersluis][])
  • #13382: Fix an error during error handling for custom ruby extractors when the extractor is a class. ([@​earlopain][])
  • #13309: Fix a false negative for Lint/UselessAssignment cop when there is a useless assignment followed by a block. ([@​pCosta99][])
  • #13255: Fix false negatives for Style/MapIntoArray when using non-splatted arguments. ([@​vlad-pisanov][])
  • #13356: Fix a false positive for Layout/SpaceBeforeBrackets when there is a dot before []=. ([@​earlopain][])
  • #13365: Fix false positives for Lint/SafeNavigationConsistency when using safe navigation on the LHS with operator method on the RHS of &&. ([@​koic][])
  • #13390: Fix false positives for Style/GuardClause when using a local variable assigned in a conditional expression in a branch. ([@​koic][])
  • #13337: Fix false positives for Style/RedundantLineContinuation when required line continuations for && is used with an assignment after a line break. ([@​koic][])
  • #13387: Fix false positives in Style/RedundantParentheses when parentheses are used around method chain with do...end block in keyword argument. ([@​koic][])
  • #13341: Fix false positives for Lint/SafeNavigationChain when a safe navigation operator is used with a method call as the RHS operand of && for the same receiver. ([@​koic][])
  • #13324: Fix --disable-uncorrectable to not insert a comment inside a string continuation. ([@​dvandersluis][])
  • #13364: Fix incorrect autocorrect with Lint/UselessAssignment a multiple assignment or for contains an inner assignment. ([@​dvandersluis][])
  • #13353: Fix an incorrect autocorrect for Style/BlockDelimiters when EnforcedStyle: semantic is set and used with Layout/SpaceInsideBlockBraces. ([@​koic][])
  • #13361: Fix false positives for Style/RedundantInterpolationUnfreeze and Style/RedundantFreeze when strings contain interpolated global, instance, and class variables. ([@​vlad-pisanov][])
  • #13343: Prevent Layout/LineLength from breaking up a method with arguments chained onto a heredoc delimiter. ([@​dvandersluis][])
  • #13374: Return exit code 0 with --display-only-correctable and --display-only-safe-correctable when no offenses are displayed. ([@​dvandersluis][])
  • #13193: Fix false positive in Style/MultipleComparison when ComparisonsThreshold exceeds 2. ([@​fatkodima][],[@​vlad-pisanov][])
  • #13325: Fix an incorrect autocorrect for Lint/NonAtomicFileOperation when using a postfix unless for file existence checks before creating a file, in cases with Dir.mkdir. ([@​kotaro0522][])
  • #13397: Update PercentLiteralCorrector to be able to write pairs of delimiters without excessive escaping. ([@​dvandersluis][])
  • #13336: Update Style/SafeNavigation to not autocorrect if the RHS of an and node is an or node. ([@​dvandersluis][])
  • #13378: When removing parens in Style/TernaryParentheses with a send node condition, ensure its arguments are parenthesized. ([@​dvandersluis][])

Changes

  • #13347: When running rubocop -V, show the analysis Ruby version of the current directory. ([@​earlopain][])

1.67.0 (2024-10-15)

New features

  • #13259: Add new Lint/DuplicateSetElement cop. ([@​koic][])
  • #13223: Add AllowRBSInlineAnnotation config option to Layout/LeadingCommentSpace to support RBS::Inline style annotation comments. ([@​tk0miya][])

... (truncated)

Commits
  • 7d35ef7 Cut 1.68
  • 3033deb Update Changelog
  • 37e9e5f [Fix #12140] Add new Style/CombinableDefined cop.
  • f8aa27f Fix a false negative for Style/RedundantLineContinuation
  • d033a5e Merge pull request #13400 from Earlopain/offense-cop-name-docs
  • faaa349 Fix docs for Offense.cop_name
  • 85f9405 Fix deserialization of unknown encoding offenses
  • d499d80 [Fix #13387] Fix false positives for Style/RedundantParentheses
  • 3e855b0 Merge pull request #13399 from dvandersluis/fix-and-offense-typo
  • 1f58513 Fix typos and offense instead of an offense.
  • Additional commits viewable in compare view

Updates rubocop-sorbet from 0.8.5 to 0.8.6

Commits
  • 8a647e6 Bump version to v0.8.6
  • ba484cc Merge pull request #263 from corsonknowles/main
  • 79fc263 Add Sorbet/Refinement
  • f4ca5d4 Merge pull request #262 from oneearedrabbit/patch-1
  • f557ed6 Rescue ::Bundler::GemfileNotFound if sorbet-statis is not found
  • 2d33fcf Merge pull request #261 from Shopify/dependabot/bundler/minor-and-patch-a3bd0...
  • e0ff1a5 Bump the minor-and-patch group with 2 updates
  • 115d959 Merge pull request #252 from Earlopain/documentation-url
  • 07adee0 Set DocumentationBaseURL and DocumentationExtension
  • f108619 Merge pull request #260 from Shopify/dependabot/bundler/minor-and-patch-fb0e3...
  • Additional commits viewable in compare view

Updates sorbet-static-and-runtime from 0.5.11589 to 0.5.11630

Release notes

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

sorbet 0.5.11629.20241030140713-f63b06430

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11628.20241030140450-02211b88b

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11627.20241030115654-17ef143fd

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11626.20241030115208-02d87551a

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11625.20241029161507-5b817f491

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11624.20241029154851-6dbe2af43

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11623.20241029153451-c7c9aeb59

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11622.20241029150106-670cf8ed2

... (truncated)

Commits

Updates tapioca from 0.16.2 to 0.16.3

Release notes

Sourced from tapioca's releases.

v0.16.3

What's Changed

✨ Enhancements

🐛 Bug Fixes

New Contributors

Full Changelog: Shopify/tapioca@v0.16.2...v0.16.3

Commits
  • 3948457 Bump version to v0.16.3
  • 913a555 Merge pull request #2027 from Shopify/dependabot/bundler/minor-and-patch-5c4f...
  • 67acc90 Merge pull request #2028 from Shopify/dependabot/bundler/bundler-00f0729802
  • f518d0b Merge pull request #2029 from Shopify/fix-broken-test-ruby-31
  • 0c40a84 Skip Ruby 3.1 + Rails main
  • 1614dd8 Fix broken test on Ruby 3.1
  • 6dabfee be tapioca gem
  • 370a740 Bump webrick from 1.8.1 to 1.8.2 in the bundler group
  • 9eb77bf Update RBIs
  • 8585a11 Bump the minor-and-patch group with 4 updates
  • 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 in /gem with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [json-schema](https://github.com/voxpupuli/json-schema) | `5.0.0` | `5.0.1` |
| [rbi](https://github.com/Shopify/rbi) | `0.2.0` | `0.2.1` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.66.1` | `1.68.0` |
| [rubocop-sorbet](https://github.com/shopify/rubocop-sorbet) | `0.8.5` | `0.8.6` |
| [sorbet-static-and-runtime](https://github.com/sorbet/sorbet) | `0.5.11589` | `0.5.11630` |
| [tapioca](https://github.com/Shopify/tapioca) | `0.16.2` | `0.16.3` |


Updates `json-schema` from 5.0.0 to 5.0.1
- [Changelog](https://github.com/voxpupuli/json-schema/blob/master/CHANGELOG.md)
- [Commits](voxpupuli/json-schema@v5.0.0...v5.0.1)

Updates `rbi` from 0.2.0 to 0.2.1
- [Release notes](https://github.com/Shopify/rbi/releases)
- [Commits](Shopify/rbi@v0.2.0...v0.2.1)

Updates `rubocop` from 1.66.1 to 1.68.0
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.66.1...v1.68.0)

Updates `rubocop-sorbet` from 0.8.5 to 0.8.6
- [Release notes](https://github.com/shopify/rubocop-sorbet/releases)
- [Commits](Shopify/rubocop-sorbet@v0.8.5...v0.8.6)

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

Updates `tapioca` from 0.16.2 to 0.16.3
- [Release notes](https://github.com/Shopify/tapioca/releases)
- [Commits](Shopify/tapioca@v0.16.2...v0.16.3)

---
updated-dependencies:
- dependency-name: json-schema
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: rbi
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: rubocop
  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: 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
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner November 1, 2024 03:06
@dependabot dependabot bot requested review from andyw8 and amomchilov November 1, 2024 03:06
@github-actions github-actions bot enabled auto-merge November 1, 2024 03:07
@KaanOzkan KaanOzkan disabled auto-merge November 1, 2024 14:35
@KaanOzkan KaanOzkan merged commit c7491c9 into main Nov 1, 2024
4 checks passed
@KaanOzkan KaanOzkan deleted the dependabot/bundler/gem/minor-and-patch-0d4aa286a9 branch November 1, 2024 15:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant