Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Sep 8, 2025

This PR contains the following updates:

Package Update Change
nunnatsa/ginkgolinter minor 0.19.1 -> 0.21.2

Release Notes

nunnatsa/ginkgolinter (nunnatsa/ginkgolinter)

v0.21.2

Compare Source

What's Changed

Full Changelog: nunnatsa/ginkgolinter@v0.21.0...v0.21.2

v0.21.1

Compare Source

v0.21.0

Compare Source

What's Changed

Added new linter rule.

Bump golang to 1.24

New Linter Rule

Force NotTo() [STYLE] (#​208)

This rule enforces using the NotTo() or ShouldNot() assertion methods instead of To(Not())
or Should(Not()).

This rule is disabled by default. Use the --force-tonot command line flag to enable it.

CLI Changes

Added the new --force-tonot=true command line parameter, to enable the "Force NotTo()" rule.

New Contributors

Full Changelog: nunnatsa/ginkgolinter@v0.20.0...v0.21.0

v0.20.0

Compare Source

What's Changed

Added new linter rule.

New Linter Rule

Force assertion descriptions [STYLE] (#​200)

Note: This rule does not support auto-fix.

Correct Usage of the Succeed() and the HaveOccurred() matchers [STYLE]

This rule enforces that all assertions include an optional description message to improve test readability and debugging.

It("should test something", func() {
    Expect("hello").To(Equal("hello")) // This will trigger a warning
    Eventually(func() bool { return true }).Should(BeTrue()) // This will trigger a warning
})

Should be:

It("should test something", func() {
    Expect("hello").To(Equal("hello"), "greeting should match")
    Eventually(func() bool { return true }).Should(BeTrue(), "condition should eventually be true")
})

This rule is disabled by default. Use the --force-assertion-description command line flag to enable it.

Note: This rule does not support auto-fix.

CLI Changes

Added the new --force-assertion-description=true command line parameter, to enable the "Force assertion descriptions" rule.

New Contributors

Full Changelog: nunnatsa/ginkgolinter@v0.19.1...v0.20.0


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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner September 8, 2025 14:42
@renovate renovate bot force-pushed the renovate/nunnatsa-ginkgolinter-0.x branch from cce5983 to 2f5ee74 Compare September 14, 2025 13:40
@renovate renovate bot changed the title chore(deps): update dependency nunnatsa/ginkgolinter to v0.20.0 chore(deps): update dependency nunnatsa/ginkgolinter to v0.21.0 Sep 14, 2025
@renovate renovate bot changed the title chore(deps): update dependency nunnatsa/ginkgolinter to v0.21.0 chore(deps): update dependency nunnatsa/ginkgolinter to v0.21.2 Oct 8, 2025
@renovate renovate bot force-pushed the renovate/nunnatsa-ginkgolinter-0.x branch from 2f5ee74 to 2567fef Compare October 8, 2025 20:24
@renovate renovate bot force-pushed the renovate/nunnatsa-ginkgolinter-0.x branch from 2567fef to 2d68d2d Compare October 21, 2025 10:13
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.

1 participant