ehmatthes / heroku-buildpack-python

A demonstration version of the official Heroku buildpack for Python apps, showing how Django deployment can be further simplified.
https://ehmatthes.com/blog/simplified_heroku/
MIT License
16 stars 2 forks source link

Bump rubocop from 1.22.1 to 1.27.0 #53

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps rubocop from 1.22.1 to 1.27.0.

Release notes

Sourced from rubocop's releases.

RuboCop 1.27

New features

Bug fixes

  • #10464: Fix an incorrect autocorrect for Lint/IncompatibleIoSelectWithFiberScheduler when using IO.select with read (or write) argument and using return value. (@​koic)
  • #10506: Fix an error for Style/RaiseArgs when raise with new method without receiver. (@​koic)
  • #10479: Fix a false positive for Lint/ShadowingOuterLocalVariable conditional statement and block variable. (@​ydah)
  • #10189: Fix --display-style-guide so it works together with --format offenses. (@​jonas054)
  • #10465: Fix false positive for Naming/BlockForwarding when the block argument is assigned. (@​dvandersluis)
  • #10491: Improve the handling of comments in Lint/EmptyConditionalBody, Lint/EmptyInPattern and Lint/EmptyWhen when AllowComments is set to true. (@​Darhazer)
  • #10504: Fix a false positive for Lint/UnusedMethodArgument when using raise NotImplementedError with optional arguments. (@​koic)
  • #10494: Fix a false positive for Style/HashSyntax when return with one line if condition follows (without parentheses). (@​koic)
  • #10311: Fix false negative inside do..end for Layout/RedundantLineBreak. (@​jonas054)
  • #10468: Fix a false positive for Style/FileWrite when a splat argument is passed to f.write. (@​koic)
  • #10474: Fix a false positive for Style/DoubleNegation with EnforcedStyle: allowed_in_returns when inside returned conditional clauses. (@​ydah)
  • #10388: Fix an incorrectly adds a disable statement for Layout/SpaceInsideArrayLiteralBrackets with --disable-uncorrectable. (@​ydah)
  • #10489: Fix a false positive for Lint/LambdaWithoutLiteralBlock when using lambda with a symbol proc. (@​koic)

Changes

  • #10191: Add MaxChainLength option to Style/SafeNavigation and the option is 2 by default. (@​ydah)

RuboCop 1.26.1

Bug fixes

  • #10375: Fix error for auto-correction of unless/else nested inside each other. (@​jonas054)
  • #10457: Make Style/SelectByRegexp aware of ENV const. (@​koic)
  • #10462: Fix an incorrect autocorrect for Lint/SymbolConversion when using a quoted symbol key with hash rocket. (@​koic)
  • #10456: Fix a false positive for Layout/MultilineMethodCallIndentation when using EnforcedStyle: indented with indented assignment method. (@​koic)
  • #10459: Fix a false positive for Layout/LineLength when long URIs in yardoc comments to have titles. (@​ydah)
  • #10447: Fix an error for Style/SoleNestedConditional raises exception when inspecting if ... end if .... (@​ydah)

RuboCop 1.26

New features

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.27.0 (2022-04-08)

New features

  • #10500: Add new Lint/RefinementImportMethods cop. ([@​koic][])
  • #10438: Add new Style/RedundantInitialize cop to check for unnecessary initialize methods. ([@​dvandersluis][])

Bug fixes

  • #10464: Fix an incorrect autocorrect for Lint/IncompatibleIoSelectWithFiberScheduler when using IO.select with read (or write) argument and using return value. ([@​koic][])
  • #10506: Fix an error for Style/RaiseArgs when raise with new method without receiver. ([@​koic][])
  • #10479: Fix a false positive for Lint/ShadowingOuterLocalVariable conditional statement and block variable. ([@​ydah][])
  • #10189: Fix --display-style-guide so it works together with --format offenses. ([@​jonas054][])
  • #10465: Fix false positive for Naming/BlockForwarding when the block argument is assigned. ([@​dvandersluis][])
  • #10491: Improve the handling of comments in Lint/EmptyConditionalBody, Lint/EmptyInPattern and Lint/EmptyWhen when AllowComments is set to true. ([@​Darhazer][])
  • #10504: Fix a false positive for Lint/UnusedMethodArgument when using raise NotImplementedError with optional arguments. ([@​koic][])
  • #10494: Fix a false positive for Style/HashSyntax when return with one line if condition follows (without parentheses). ([@​koic][])
  • #10311: Fix false negative inside do..end for Layout/RedundantLineBreak. ([@​jonas054][])
  • #10468: Fix a false positive for Style/FileWrite when a splat argument is passed to f.write. ([@​koic][])
  • #10474: Fix a false positive for Style/DoubleNegation with EnforcedStyle: allowed_in_returns when inside returned conditional clauses. ([@​ydah][])
  • #10388: Fix an incorrectly adds a disable statement for Layout/SpaceInsideArrayLiteralBrackets with --disable-uncorrectable. ([@​ydah][])
  • #10489: Fix a false positive for Lint/LambdaWithoutLiteralBlock when using lambda with a symbol proc. ([@​koic][])

Changes

  • #10191: Add MaxChainLength option to Style/SafeNavigation and the option is 2 by default. ([@​ydah][])

1.26.1 (2022-03-22)

Bug fixes

  • #10375: Fix error for auto-correction of unless/else nested inside each other. ([@​jonas054][])
  • #10457: Make Style/SelectByRegexp aware of ENV const. ([@​koic][])
  • #10462: Fix an incorrect autocorrect for Lint/SymbolConversion when using a quoted symbol key with hash rocket. ([@​koic][])
  • #10456: Fix a false positive for Layout/MultilineMethodCallIndentation when using EnforcedStyle: indented with indented assignment method. ([@​koic][])
  • #10459: Fix a false positive for Layout/LineLength when long URIs in yardoc comments to have titles. ([@​ydah][])
  • #10447: Fix an error for Style/SoleNestedConditional raises exception when inspecting if ... end if .... ([@​ydah][])

1.26.0 (2022-03-09)

New features

Bug fixes

  • #10406: Fix a false positive for Lint/InheritException when inheriting a standard lib exception class that is not a subclass of StandardError. ([@​koic][])
  • #10421: Make Style/DefWithParentheses aware of endless method definition. ([@​koic][])
  • #10401: Fix a false positive for Style/HashSyntax when local variable hash key and hash value are the same. ([@​koic][])

... (truncated)

Commits
  • 72bb04e Cut 1.27.0
  • 4eab5cf Update Changelog
  • cf956fd [Fix #10191] Add MaxChainLength option to Style/SafeNavigation (#10508)
  • e95b933 [Fix #10506] Fix an error for Style/RaiseArgs
  • 253297e [Fix #10504] Fix a false positive for Lint/UnusedMethodArgument
  • 7e148bf Add new Lint/RefinementImportMethods cop
  • b857cab Resolve realpath of the home directory
  • 2c436e4 [Fix #10189] Support --display-style-guide with -f offenses
  • 5c2eb28 [Fix #10388] Fix an incorrectly adds a disable statement for `Layout/SpaceIns...
  • 6ff094b [Fix #10489] Fix a false positive for Lint/LambdaWithoutLiteralBlock
  • Additional commits viewable in compare view


Dependabot compatibility score

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 ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 2 years ago

Superseded by #57.