Skip to content

chore(deps-dev): bump eslint-plugin-unicorn from 66.0.0 to 69.0.0 - #1075

Merged
krishagel merged 3 commits into
devfrom
dependabot/npm_and_yarn/dev/eslint-plugin-unicorn-69.0.0
Jul 10, 2026
Merged

chore(deps-dev): bump eslint-plugin-unicorn from 66.0.0 to 69.0.0#1075
krishagel merged 3 commits into
devfrom
dependabot/npm_and_yarn/dev/eslint-plugin-unicorn-69.0.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 29, 2026

Copy link
Copy Markdown
Contributor

Bumps eslint-plugin-unicorn from 66.0.0 to 69.0.0.

Release notes

Sourced from eslint-plugin-unicorn's releases.

v69.0.0

New rules

Improvements

  • comment-content: Don't mutate commented-out multi-line code (#3413) bef80c86
  • consistent-boolean-name: Add ignore option and plural prefixes (#3423) 7cc1d9ec
  • consistent-boolean-name: Don't crash on Svelte {#each} bindings (#3417) effc0e1a
  • consistent-conditional-object-spread: Treat undefined/null fallback as an empty branch (#3401) 38eebbd5
  • custom-error-definition: Allow no-substitution template literal for name (#3383) 594e0500
  • custom-error-definition: Don't require options parameter when forwarded to super() inline (#3377) e9314675
  • name-replacements: Exclude Vite type declaration (#3375) 396c2ed9
  • no-computed-property-existence-check: Allow dynamic access to a known boolean value (#3420) add50ffb
  • no-incorrect-template-string-interpolation: Ignore braces inside block comments (#3429) 2676b5d5
  • no-nonstandard-builtin-properties: Allow stack on Error instances (#3416) b4a3527f
  • no-return-array-push: Allow void operator to opt out (#3384) 046dc752
  • no-return-array-push: Don't report custom push methods that don't return arrays (#3427) ed1b57e1
  • no-top-level-side-effects: Allow type-only exports (#3421) c896024e
  • no-unnecessary-boolean-comparison: Fix false positive for destructured parameters and yield expressions (#3392) 26f37f8a
  • no-unnecessary-global-this: Don't report existence checks (#3426) 668ec361
  • no-unreadable-object-destructuring: Allow computed keys when a rest element is present (#3400) 3d3b6542
  • no-unsafe-string-replacement: Ignore non-string receivers (#3442) 05c7c25a
  • no-unused-array-method-return: Restrict values() reporting to arrays (#3434) 9e129728
  • no-useless-boolean-cast: Keep Boolean() around possibly-undefined values (#3397) d35e5388
  • no-useless-concat: Skip concats that form a ${…} placeholder (#3428) a39fe666
  • no-useless-else: Autofix else bodies containing JSX (#3419) 3c17b694
  • no-useless-iterator-to-array: Improve fixes (#3432) 3bc8c69d
  • prefer-at: Only check positive string index access with checkAllIndexAccess (#3415) 68d0d25f
  • prefer-code-point: Don't suggest the swap when the result feeds arithmetic (#3430) 9083ae74
  • prefer-continue: Don't report when the if body exits the loop (#3414) 2187122f
  • prefer-minimal-ternary: Add checkVaryingCallee option (#3381) c397f871

sindresorhus/eslint-plugin-unicorn@v68.0.0...v69.0.0

v68.0.0

... (truncated)

Commits

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

Bumps [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) from 66.0.0 to 69.0.0.
- [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases)
- [Commits](sindresorhus/eslint-plugin-unicorn@v66.0.0...v69.0.0)

---
updated-dependencies:
- dependency-name: eslint-plugin-unicorn
  dependency-version: 69.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 29, 2026
@chatgpt-codex-connector

Copy link
Copy Markdown

Codex usage limits have been reached for code reviews. Please check with the admins of this repo to increase the limits by adding credits.
Credits must be used to enable repository wide code reviews.

@krishagel krishagel added the pr-fix-stuck pr-fix routine gave up — human attention needed label Jun 30, 2026 — with Claude

Copy link
Copy Markdown
Member

🤖 pr-fix routine — stuck: bun.lock out of sync

Root cause: All three failing checks (Test, Lint, and Type Check, Validate CDK Infrastructure, claude-review) fail at the same step:

error: lockfile had changes, but lockfile is frozen
note: try re-running without --frozen-lockfile and commit the updated lockfile

Dependabot bumped eslint-plugin-unicorn from 66.0.069.0.0 in package.json, but the bun.lock lockfile was not regenerated. The CI uses bun install --frozen-lockfile which rejects any package.json↔lockfile mismatch.

Why the routine can't fix it: registry.npmjs.org is blocked in the cloud routine's egress policy (Host not in allowlist), so bun install cannot resolve packages and regenerate the lockfile.

How to fix (takes ~30 seconds):

git fetch origin dependabot/npm_and_yarn/dev/eslint-plugin-unicorn-69.0.0
git checkout dependabot/npm_and_yarn/dev/eslint-plugin-unicorn-69.0.0
bun install
git add bun.lock
git commit -m "chore: update bun.lock for eslint-plugin-unicorn 69.0.0"
git push

Systemic note: This same lockfile-sync issue is blocking every open Dependabot PR in this repo. The previous fire documented the same problem on #1073 and also noted #1080, #1079, #1078, #1077, #1076, #1074, #1072 are affected. Running bun install + committing bun.lock on each branch will unblock them all.

A durable fix would be a GitHub Actions workflow that auto-commits the lockfile on Dependabot PRs (or switches CI from --frozen-lockfile to --no-frozen-lockfile on the dependabot/** branch pattern).

The routine will not pick this PR up again until someone removes the pr-fix-stuck label.


Generated by the pr-fix routine


Generated by Claude Code

… new finding

Dependabot does not update bun lockfiles, so CI fails at
`bun install --frozen-lockfile`; regenerated with bun 1.2.23 (also
merged current dev).

unicorn 69 vs 66 produces exactly one new warning across the repo
(verified by rule-histogram diff against a dev-merged unicorn-66
baseline): prefer-number-properties on lib/safety/types.ts:305.
Switched the global parseFloat to Number.parseFloat (identical
semantics), keeping the repo's warning count at the 350 baseline.

lint 0 errors, tsc clean, test:ci exit 0.

Claude-Session: https://claude.ai/code/session_01ThqAujR2cXPzrF1XUNjByA
@krishagel
krishagel merged commit 5c477a2 into dev Jul 10, 2026
6 checks passed
@krishagel
krishagel deleted the dependabot/npm_and_yarn/dev/eslint-plugin-unicorn-69.0.0 branch July 10, 2026 14:37
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 javascript Pull requests that update javascript code pr-fix-stuck pr-fix routine gave up — human attention needed

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant