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

Update dependency rubocop-minitest to v0.35.1 - autoclosed #448

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 26, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
rubocop-minitest (source, changelog) '0.22.1' -> '0.35.1' age adoption passing confidence

Release Notes

rubocop/rubocop-minitest (rubocop-minitest)

v0.35.1

Compare Source

New features
  • #​307: Make AssertOffense support assert_no_corrections. ([@​koic][])
Bug fixes
  • #​311: Suppress deprecation warning for Minitst/MultipleAssertions. ([@​koic][])

v0.35.0

Compare Source

New features
Bug fixes
  • #​300: Fix an error for Minitest/AssertEmptyLiteral when only passing an empty literal. ([@​earlopain][])
Changes
  • #​303: Require RuboCop 1.61 to use AutoCorrect: Contextual. ([@​koic][])
  • #​304: Require RuboCop AST >= 1.31.1 to support Prism as a Ruby Parser. ([@​koic][])

v0.34.5

Compare Source

Bug fixes
  • #​299: Fix an error for Style/UselessAssertion when passing a single argument to methods to accept two arguments. ([@​earlopain][])
Changes
  • #​298: Extend Minitest/AssertKindOf to also correct assert(object.is_a?(Class)). ([@​amomchilov][])

v0.34.4

Compare Source

Bug fixes
  • #​292: Ensure all kinds of assignments are correctly handled when counting assertions. ([@​G-Rath][])

v0.34.3

Compare Source

Bug fixes
  • #​287: Don't error on empty blocks when linting assert_raises. ([@​G-Rath][])
  • #​289: Don't count assertions twice when their return value is being assigned. ([@​G-Rath][])

v0.34.2

Compare Source

Bug fixes
  • #​283: Fix an error for Minitest/MultipleAssertions when using || assigning a value to a variable. ([@​koic][])

v0.34.1

Compare Source

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

v0.34.0

Compare Source

New features
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

v0.33.0

Compare Source

New features
  • #​266: Make Minitest/AssertEqual aware of assert_operator. ([@​koic][])
  • #​268: Make Minitest/AssertMatch aware of assert_operator. ([@​koic][])
  • #​267: Make Minitest/RefuteEqual aware of assert_operator and refute_operator. ([@​koic][])
  • #​269: Make Minitest/RefuteMatch aware of refute_operator and assert_operator. ([@​koic][])
Changes
  • #​265: Make Minitest/RefuteEqual aware of refute(expected == actual). ([@​koic][])

v0.32.2

Compare Source

Bug fixes
  • #​263: Fix an error for Minitest/AssertOperator and Minitest/RefuteOperator when using unary operation argument. ([@​koic][])
Changes
  • #​264: Make Minitest/AssertOperator and Minitest/RefuteOperator allow index access with []. ([@​flavorjones][])

v0.32.1

Compare Source

Bug fixes
  • #​261: Fix an error for Minitest/AssertOperator and Minitest/RefuteOperator when using variable argument. ([@​koic][])

v0.32.0

Compare Source

New features
  • #​255: Add new Minitest/AssertOperator and Minitest/RefuteOperator cops. ([@​koic][])
Bug fixes
  • #​259: Fix autocorrection for Minitest/LiteralAsActualArgument, Minitest/AssertPathExists, and Minitest/RefutePathExists cops to preserve the presence or absence of argument parentheses. ([@​koic][])

v0.31.1

Compare Source

Bug fixes
  • #​256: Fix a false positive for Minitest/RefuteEqual when assert(!expected == actual). ([@​koic][])

v0.31.0

Compare Source

New features
Changes

v0.30.0

Compare Source

New features
  • #​248: Make Minitest/AssertInstanceOf and Minitest/RefuteInstanceOf aware of assert_equal(Class, object.class) and refute_equal(Class, object.class). ([@​koic][])
  • #​244: Make Minitest/GlobalExpectations aware of must_pattern_match and wont_pattern_match matchers. ([@​koic][])
  • #​216: Add new Minitest/NoTestCases cop. ([@​tejasbubane][])
Bug fixes
  • #​247: Prevent breaking change for assertion message in test. ([@​koic][])

v0.29.0

Compare Source

New features

v0.28.0

Compare Source

New features
Changes

v0.27.0

Compare Source

New features
Bug fixes
  • #​237: Fix a false positive for Minitest/UselessAssertion when using command execution. ([@​fatkodima][])
Changes
  • #​234: Mark Minitest/AssertTruthy as unsafe. ([@​koic][])
  • #​233: Mark Minitest/RefuteFalse as unsafe. ([@​koic][])
  • #​231: Change what is considered a test case by rubocop-minitest (public method without arguments with test_ name prefix). ([@​fatkodima][])

v0.26.1

Compare Source

Bug fixes
  • #​225: Fix an error for Minitest/TestFileName when using empty file. ([@​koic][])
  • #​223: Fix a false positive for Minitest/MultipleAssertions when using assertion method with block. ([@​fatkodima][])

v0.26.0

Compare Source

New features
Bug fixes
  • #​210: Fix a false positive for Minitest/EmptyLineBeforeAssertionMethodsTest when using assertion method with block arg before other assertion method. ([@​koic][])
Changes
  • #​209: Mark Minitest/AssertTruthy as unsafe autocorrection. ([@​koic][])
  • #​204: Raise severity of Minitest/AssertRaisesWithRegexpArgument, Minitest/AssertWithExpectedArgument, Minitest/GlobalExpectations, Minitest/SkipEnsure, and Minitest/UnreachableAssertion cops to warning. ([@​koic][])

v0.25.1

Compare Source

Changes
  • #​206: Make Minitest/AssertWithExpectedArgument aware of message variable. ([@​koic][])

v0.25.0

Compare Source

New features

v0.24.0

Compare Source

New features

v0.23.2

Compare Source

Bug fixes
  • #​189: Fix a false positive for Minitest/EmptyLineBeforeAssertionMethods when using an assertion method as the first line within a test block. ([@​ryanquanz][])

v0.23.1

Compare Source

Bug fixes
  • #​189: Fix a false positive for Minitest/EmptyLineBeforeAssertionMethods when using rescue before assertion method. ([@​koic][])
  • #​187: Fix an error for Minitest/EmptyLineBeforeAssertionMethods when using method call with block. ([@​koic][])
  • #​190: Fix an incorrect autocorrect for Minitest/EmptyLineBeforeAssertionMethods when using method call with source code comment before assertion method. ([@​koic][])
  • #​189: Fix a false negative for Minitest/EmptyLineBeforeAssertionMethods when using non assertion method statement before assertion method used in a block. ([@​koic][])
  • #​189: Fix a false negative for Minitest/EmptyLineBeforeAssertionMethods when using assertion method used in block before assertion method. ([@​koic][])

v0.23.0

Compare Source

New features
  • #​157: Add new Minitest/EmptyLineBeforeAssertionMethods cop. ([@​koic][])

v0.22.2

Compare Source

Bug fixes
  • #​185: Fix an incorrect autocorrect for Minitest/RefuteMatch when refute with match and RHS is a regexp literal. ([@​koic][])

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate
Copy link
Contributor Author

renovate bot commented Jun 26, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Gemfile.lock
Fetching gem metadata from https://rubygems.org/.......
Resolving dependencies...

Could not find compatible versions

Because rubocop-minitest >= 0.35.0 depends on rubocop >= 1.61, < 2.0
  and Gemfile depends on rubocop = 1.36.0,
  rubocop-minitest >= 0.35.0 cannot be used.
So, because Gemfile depends on rubocop-minitest = 0.35.0,
  version solving has failed.

@0crat
Copy link

0crat commented Jun 26, 2023

@renovate/z[bot] this pull request is too small, just 2 lines changed (less than 10), there will be no formal code review, see §53 and §28; in the future, try to make sure your pull requests are not too small; @yegor256/z please review this and merge or reject

@renovate renovate bot force-pushed the renovate/rubocop-minitest-0.x branch from e710df7 to 46b4751 Compare September 3, 2023 07:27
@renovate renovate bot changed the title Update dependency rubocop-minitest to v0.31.0 Update dependency rubocop-minitest to v0.31.1 Sep 3, 2023
@renovate renovate bot force-pushed the renovate/rubocop-minitest-0.x branch from 46b4751 to 3c963e2 Compare September 23, 2023 02:10
@renovate renovate bot changed the title Update dependency rubocop-minitest to v0.31.1 Update dependency rubocop-minitest to v0.32.0 Sep 23, 2023
@renovate renovate bot force-pushed the renovate/rubocop-minitest-0.x branch from 3c963e2 to 04a242f Compare September 24, 2023 13:06
@renovate renovate bot changed the title Update dependency rubocop-minitest to v0.32.0 Update dependency rubocop-minitest to v0.32.1 Sep 24, 2023
@renovate renovate bot force-pushed the renovate/rubocop-minitest-0.x branch from 04a242f to bd586dc Compare September 27, 2023 04:03
@renovate renovate bot changed the title Update dependency rubocop-minitest to v0.32.1 Update dependency rubocop-minitest to v0.32.2 Sep 27, 2023
@renovate renovate bot force-pushed the renovate/rubocop-minitest-0.x branch from bd586dc to 4835be0 Compare October 21, 2023 07:56
@renovate renovate bot changed the title Update dependency rubocop-minitest to v0.32.2 Update dependency rubocop-minitest to v0.33.0 Oct 21, 2023
@renovate renovate bot force-pushed the renovate/rubocop-minitest-0.x branch from 4835be0 to ee4c270 Compare December 16, 2023 04:07
@renovate renovate bot changed the title Update dependency rubocop-minitest to v0.33.0 Update dependency rubocop-minitest to v0.34.0 Dec 16, 2023
@renovate renovate bot force-pushed the renovate/rubocop-minitest-0.x branch from ee4c270 to 77f97b2 Compare December 16, 2023 07:03
@renovate renovate bot changed the title Update dependency rubocop-minitest to v0.34.0 Update dependency rubocop-minitest to v0.34.1 Dec 16, 2023
@renovate renovate bot force-pushed the renovate/rubocop-minitest-0.x branch from 77f97b2 to 4c09500 Compare December 25, 2023 02:03
@renovate renovate bot changed the title Update dependency rubocop-minitest to v0.34.1 Update dependency rubocop-minitest to v0.34.2 Dec 25, 2023
@renovate renovate bot force-pushed the renovate/rubocop-minitest-0.x branch from 4c09500 to 027ea6a Compare January 1, 2024 10:00
@renovate renovate bot changed the title Update dependency rubocop-minitest to v0.34.2 Update dependency rubocop-minitest to v0.34.3 Jan 1, 2024
@renovate renovate bot force-pushed the renovate/rubocop-minitest-0.x branch from 027ea6a to 1831745 Compare January 9, 2024 08:29
@renovate renovate bot changed the title Update dependency rubocop-minitest to v0.34.3 Update dependency rubocop-minitest to v0.34.4 Jan 9, 2024
@renovate renovate bot force-pushed the renovate/rubocop-minitest-0.x branch from 1831745 to da9692a Compare January 20, 2024 10:45
@renovate renovate bot changed the title Update dependency rubocop-minitest to v0.34.4 Update dependency rubocop-minitest to v0.34.5 Jan 20, 2024
@renovate renovate bot force-pushed the renovate/rubocop-minitest-0.x branch from da9692a to 583c79e Compare March 10, 2024 09:48
@renovate renovate bot changed the title Update dependency rubocop-minitest to v0.34.5 Update dependency rubocop-minitest to v0.35.0 Mar 10, 2024
@renovate renovate bot force-pushed the renovate/rubocop-minitest-0.x branch from 583c79e to f9f499c Compare July 10, 2024 23:22
@renovate renovate bot changed the title Update dependency rubocop-minitest to v0.35.0 Update dependency rubocop-minitest to v0.35.1 Jul 10, 2024
Copy link
Contributor Author

renovate bot commented Jul 10, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Gemfile.lock
Fetching gem metadata from https://rubygems.org/.......
Resolving dependencies...

Could not find compatible versions

Because rubocop-minitest >= 0.35.0 depends on rubocop >= 1.61, < 2.0
  and Gemfile depends on rubocop = 1.36.0,
  rubocop-minitest >= 0.35.0 cannot be used.
So, because Gemfile depends on rubocop-minitest = 0.35.1,
  version solving has failed.

@renovate renovate bot changed the title Update dependency rubocop-minitest to v0.35.1 Update dependency rubocop-minitest to v0.35.1 - autoclosed Jul 15, 2024
@renovate renovate bot closed this Jul 15, 2024
@renovate renovate bot deleted the renovate/rubocop-minitest-0.x branch July 15, 2024 05:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant