Skip to content

build(deps-dev): Bump eslint from 9.39.5 to 10.8.1 in /frontend - #4

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/frontend/eslint-10.8.1
Closed

build(deps-dev): Bump eslint from 9.39.5 to 10.8.1 in /frontend#4
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/frontend/eslint-10.8.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 12, 2026

Copy link
Copy Markdown
Contributor

Bumps eslint from 9.39.5 to 10.8.1.

Release notes

Sourced from eslint's releases.

v10.8.1

Bug Fixes

  • 18eb0a7 fix: prevent ASI hazard in no-unused-labels autofix (#21173) (dongkyu lee)
  • 151ba3f fix: false positives in getter-return and accessor-pairs (#21163) (Grit)
  • 6898df9 fix: ignore meta-property names in id-denylist (#21166) (Pixel)
  • 4d7db66 fix: ignore meta-property names in id-match (#21167) (Pixel)
  • 677214e fix: handle ASI hazards in no-unused-vars removeVar suggestion (#20935) (kuldeep kumar)

Documentation

  • 7d0cbf8 docs: Update README (GitHub Actions Bot)
  • 0a05812 docs: add missing backticks to no-duplicate-imports.js (#21183) (Lee Daeun)
  • 678c90b docs: Update README (GitHub Actions Bot)
  • 8a10424 docs: Update README (GitHub Actions Bot)
  • 69bb948 docs: Update README (GitHub Actions Bot)

Chores

  • 0a14800 chore: update github/codeql-action action to v4.37.4 (#21196) (renovate[bot])
  • 05adcb1 test: fix failing ecosystem test for eslint-plugin-unicorn (#21191) (Lazizbek Ergashev)
  • 5611035 test: add error locations info to no-void (#21185) (Lee Daeun)
  • ee47333 ci: bump github/codeql-action from 4 to 4.37.3 (#21176) (dependabot[bot])
  • f131c03 chore: improve ecosystem test failure reporting (#20937) (crimsonjay0)
  • 1f6edde chore: update ecosystem plugins (#21182) (ESLint Bot)
  • d3266fb chore: unpin webpack dependency (#21172) (Francesco Trotta)
  • 65a6519 chore: add allowScripts field to package.json (#21092) (GiHoon Noh)
  • 22e5256 ci: add triage:no label to Dependabot PRs (#21141) (lumir)
  • 55c9038 ci: bump actions/labeler from 6 to 7 (#21159) (dependabot[bot])
  • 7280e78 chore: update dependency prettier to v3.9.6 (#21162) (renovate[bot])
  • eddbad6 test: fix failing ecosystem test for eslint-plugin-unicorn (#21156) (Francesco Trotta)
  • 60a178d chore: update ecosystem plugins (#21150) (ESLint Bot)
  • f9f61dc test: add error locations to no-unreachable (#21151) (JIYEON)
  • d086293 test: add error locations to no-undef (#21147) (JIYEON)
  • cc01b67 test: add error locations to no-useless-catch (#21144) (devoil)
  • 688e75e chore: add missing backticks in JSDoc (#21143) (Bo Hyun Kim)
  • 7c1e175 test: add error locations to require-await (#21145) (Grit)
  • 588a26d test: add error locations to no-extra-label (#21139) (dongkyu lee)
  • 059aa89 test: add error locations to no-useless-concat (#21140) (dongkyu lee)
  • 5a452a8 test: add error locations to no-const-assign (#21138) (dongkyu lee)

v10.8.0

Features

  • 2fee9bb feat: export ConfigObject from eslint/config (#21082) (sethamus)

Bug Fixes

  • 6b8d2f7 fix: escape reserved characters in rule id in html formatter (#21129) (Francesco Trotta)
  • 9091071 fix: prevent no-unreachable-loop crash when all loop types are ignored (#21116) (Pixel)
  • e23fafe fix: prefer-object-spread add semicolon when adding parenthesis (#21081) (synthex-byte)
  • 20b5ad0 fix: quadratic-time regex in prefer-template (#21096) (Milos Djermanovic)
  • 8b6f6c0 fix: apply ignore configs to computed methods in class-methods-use-this (#21094) (Pixel)
  • b2c608c fix: NewExpression with parenthesized callee in preserve-caught-error (#21083) (Francesco Trotta)

... (truncated)

Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 12, 2026
Bumps [eslint](https://github.com/eslint/eslint) from 9.39.5 to 10.8.1.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.5...v10.8.1)

---
updated-dependencies:
- dependency-name: eslint
  dependency-version: 10.8.1
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/frontend/eslint-10.8.1 branch from b7cdcad to 0ecbd2d Compare August 12, 2026 02:03
alicoding added a commit that referenced this pull request Aug 12, 2026
/#7) (#30)

Bundled together, not sequential: react-hooks 5.2.0 only peer-supports
eslint up to ^9.0.0, so eslint 10 required react-hooks 7.1.1 in the
same migration (confirmed via npm view peerDependencies before
starting, per Dependabot #4/#7 both being red).

react-hooks 6.x/7.x folded the React Compiler's lint rules into
`recommended`, surfacing real new violations, triaged rule-by-rule:
- preserve-caught-error (new eslint 10 core rule): two e2e fixture
  throws now attach `cause` to the original error.
- no-useless-assignment (new eslint 10 core rule): a genuinely dead
  initializer in SchemaIntake's detect().
- react-hooks/immutability: QuickPanel's refreshFrecency/openMain
  moved above the effects that reference them (order-only, same
  runtime closures).
- react-hooks/refs, react-hooks/purity: two legitimate false
  positives (a headless-hook ref-spread idiom in Tabs.tsx, an
  intentional Date.now() read in a relative-time badge) documented
  with disable-line comments.
- react-hooks/set-state-in-effect: tuned off project-wide in
  eslint.config.js -- flags an established, deliberate 15-instance
  reset-state-on-id-change idiom across the codebase; rewriting all
  15 call sites is real behavioral refactor work well beyond this
  bump's scope, so this follows .golangci.yml's own "tune when
  defaults fight house style" precedent instead of scattering 15
  disable-line comments or silently regressing behavior.

Also bumped @eslint/js to match eslint 10's flat-config recommended
preset. typescript-eslint (8.66+) and eslint-plugin-react-refresh
(0.5.3) already peer-support eslint 10, so neither needed a bump.

Full local suite green: eslint, tsc, boundaries, vitest (227/227),
frontend build, go vet, go build (desktop+server), file-loc-limit,
rules-frontmatter, root-file-naming.


Claude-Session: https://claude.ai/code/session_01FYwojT8GdUbYSoggbvEFft

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
@dependabot @github

dependabot Bot commented on behalf of github Aug 12, 2026

Copy link
Copy Markdown
Contributor Author

Looks like eslint is up-to-date now, so this is no longer needed.

@dependabot dependabot Bot closed this Aug 12, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/frontend/eslint-10.8.1 branch August 12, 2026 20:11
alicoding added a commit that referenced this pull request Aug 13, 2026
/#7)

Bundled together, not sequential: react-hooks 5.2.0 only peer-supports
eslint up to ^9.0.0, so eslint 10 required react-hooks 7.1.1 in the
same migration (confirmed via npm view peerDependencies before
starting, per Dependabot #4/#7 both being red).

react-hooks 6.x/7.x folded the React Compiler's lint rules into
`recommended`, surfacing real new violations, triaged rule-by-rule:
- preserve-caught-error (new eslint 10 core rule): two e2e fixture
  throws now attach `cause` to the original error.
- no-useless-assignment (new eslint 10 core rule): a genuinely dead
  initializer in SchemaIntake's detect().
- react-hooks/immutability: QuickPanel's refreshFrecency/openMain
  moved above the effects that reference them (order-only, same
  runtime closures).
- react-hooks/refs, react-hooks/purity: two legitimate false
  positives (a headless-hook ref-spread idiom in Tabs.tsx, an
  intentional Date.now() read in a relative-time badge) documented
  with disable-line comments.
- react-hooks/set-state-in-effect: tuned off project-wide in
  eslint.config.js -- flags an established, deliberate 15-instance
  reset-state-on-id-change idiom across the codebase; rewriting all
  15 call sites is real behavioral refactor work well beyond this
  bump's scope, so this follows .golangci.yml's own "tune when
  defaults fight house style" precedent instead of scattering 15
  disable-line comments or silently regressing behavior.

Also bumped @eslint/js to match eslint 10's flat-config recommended
preset. typescript-eslint (8.66+) and eslint-plugin-react-refresh
(0.5.3) already peer-support eslint 10, so neither needed a bump.

Full local suite green: eslint, tsc, boundaries, vitest (227/227),
frontend build, go vet, go build (desktop+server), file-loc-limit,
rules-frontmatter, root-file-naming.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01FYwojT8GdUbYSoggbvEFft
alicoding added a commit that referenced this pull request Aug 15, 2026
…ent registry semantics

Three independent, verified changes (goal-scoped work, tasks #1/#4/#6):

- task build/package/build:server now echo their real output path on
  success, and task run's darwin/linux/windows tasks gained a missing
  deps: on build:native -- previously `task run` assumed a binary
  already existed and would fail on a fresh clone, despite its name and
  summary implying it's a standalone build+launch command (run:server
  already had this right; desktop run: didn't).

- internal/adapters/execution.New now takes a full DSN (databaseURL)
  instead of hardcoding "sqlite:"+dbPath internally. DBOS itself already
  accepts Postgres/CockroachDB DSNs; the scheme choice moves to the
  caller (main.go), which now reads MILL_EXECUTION_DATABASE_URL as an
  override, falling back to the existing MILL_EXECUTION_DB_PATH/default
  sqlite path unchanged. A regulated deployment needing an externally
  managed audit database gets there via config, not an adapter rewrite.

- The three ADR-0006/ADR-0015 self-registration registries
  (RegisterNodeType, RegisterTrigger, RegisterAuthStrategy) have two
  different duplicate-key behaviors (panic vs silent overwrite),
  undocumented until now. Recorded on all three functions plus a
  SPEC.md cross-reference -- not a decision, just making a real,
  previously-invisible inconsistency visible.

Verified: go vet, golangci-lint (0 issues), go test ./internal/...
-race -cover (all pass), go build for both desktop and
CGO_ENABLED=0-equivalent server tags, check-loc.sh,
check-rules-frontmatter.sh. Frontend checks skipped -- zero frontend
files touched, matching lefthook.yml's own glob scoping. Taskfile
run: fix verified via `task --dry` (confirms build:native now runs
before launch) plus one live task package run earlier in the session;
full live task run execution was blocked by resource contention with
an unrelated, pre-existing `task dev` session on this machine and
deliberately not forced.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01FYwojT8GdUbYSoggbvEFft
alicoding added a commit that referenced this pull request Aug 15, 2026
Was 12 direct package-function call sites in package main (Set/Get/
Delete), no interface, no injection -- unlike settings.Store, which is
already a real port every ConfigureService/CompositionService/
TriggerService consumer depends on rather than the concrete KVStore
type. Confirmed by the architecture research this session: this was the
one genuine adapter-shape gap among the three adapters checked
(settings.Store already worked as advertised; execution's DSN
parameterization, task #4, needed a one-line fix instead of this).

credential.Store mirrors settings.Store's exact shape (small interface,
a New() constructor callers depend on instead of the concrete type) --
the one difference is go-keyring itself is package-function-based with
no existing struct to satisfy the interface structurally, so a small
keyringStore{} adapter type exists solely to give those functions a
method set.

ConfigureService gained a `credentials credential.Store` field,
threaded through NewConfigureService's third parameter from main.go
(credential.New()). All 12 production call sites across
configureservice_requestauth.go, configureservice_requesttest.go, and
configureservice_builtin.go now go through c.credentials instead of the
package directly, closing the actual gap: package main's tests
(1000+ lines, wired into CI/Lefthook by task #5 this same session) were
previously the only thing exercising this code path indirectly through
keyring.MockInit() -- now the seam itself is real and independently
testable.

Verified: go vet, golangci-lint (0 issues), ls_lint, go test .
./internal/... -race -cover (root package unchanged at 57.2% coverage,
credential adapter now 100%), go build for both desktop and server
tags. All 14 test call sites across three _test.go files updated to
pass credential.New() -- still exercises the real keyring, backed by
the same keyring.MockInit() TestMain already covered the whole package
main test binary with, so no test behavior changed, only how the
dependency reaches the code under test.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01FYwojT8GdUbYSoggbvEFft
alicoding added a commit that referenced this pull request Aug 15, 2026
/#7) (#30)

Bundled together, not sequential: react-hooks 5.2.0 only peer-supports
eslint up to ^9.0.0, so eslint 10 required react-hooks 7.1.1 in the
same migration (confirmed via npm view peerDependencies before
starting, per Dependabot #4/#7 both being red).

react-hooks 6.x/7.x folded the React Compiler's lint rules into
`recommended`, surfacing real new violations, triaged rule-by-rule:
- preserve-caught-error (new eslint 10 core rule): two e2e fixture
  throws now attach `cause` to the original error.
- no-useless-assignment (new eslint 10 core rule): a genuinely dead
  initializer in SchemaIntake's detect().
- react-hooks/immutability: QuickPanel's refreshFrecency/openMain
  moved above the effects that reference them (order-only, same
  runtime closures).
- react-hooks/refs, react-hooks/purity: two legitimate false
  positives (a headless-hook ref-spread idiom in Tabs.tsx, an
  intentional Date.now() read in a relative-time badge) documented
  with disable-line comments.
- react-hooks/set-state-in-effect: tuned off project-wide in
  eslint.config.js -- flags an established, deliberate 15-instance
  reset-state-on-id-change idiom across the codebase; rewriting all
  15 call sites is real behavioral refactor work well beyond this
  bump's scope, so this follows .golangci.yml's own "tune when
  defaults fight house style" precedent instead of scattering 15
  disable-line comments or silently regressing behavior.

Also bumped @eslint/js to match eslint 10's flat-config recommended
preset. typescript-eslint (8.66+) and eslint-plugin-react-refresh
(0.5.3) already peer-support eslint 10, so neither needed a bump.

Full local suite green: eslint, tsc, boundaries, vitest (227/227),
frontend build, go vet, go build (desktop+server), file-loc-limit,
rules-frontmatter, root-file-naming.


Claude-Session: https://claude.ai/code/session_01FYwojT8GdUbYSoggbvEFft

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants