Skip to content

chore(deps-dev): bump eslint from 9.39.4 to 10.4.0 - #45

Closed
dependabot[bot] wants to merge 53 commits into
mainfrom
dependabot/npm_and_yarn/eslint-10.4.0
Closed

chore(deps-dev): bump eslint from 9.39.4 to 10.4.0#45
dependabot[bot] wants to merge 53 commits into
mainfrom
dependabot/npm_and_yarn/eslint-10.4.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 18, 2026

Copy link
Copy Markdown

Bumps eslint from 9.39.4 to 10.4.0.

Release notes

Sourced from eslint's releases.

v10.4.0

Features

  • 1a45ec5 feat: check sequence expressions in for-direction (#20701) (kuldeep kumar)
  • 450040b feat: add includeIgnoreFile() to eslint/config (#20735) (Kirk Waiblinger)

Bug Fixes

  • 544c0c3 fix: escape code path DOT labels in debug output (#20866) (Pixel998)
  • 6799431 fix: update dependency @​eslint/config-helpers to ^0.6.0 (#20850) (renovate[bot])
  • f078fef fix: handle non-array deprecated rule replacements (#20825) (xbinaryx)

Documentation

  • 7e52a71 docs: add mention of @eslint-react/eslint-plugin (#20869) (Pavel)
  • db3468b docs: tweak wording around ambiguous CJS-vs-ESM config (#20865) (Kirk Waiblinger)
  • 9084664 docs: Update README (GitHub Actions Bot)
  • 9cc7387 docs: Update README (GitHub Actions Bot)
  • 3d7b548 docs: Update README (GitHub Actions Bot)
  • 191ec3c docs: Update README (GitHub Actions Bot)

Chores

  • 6616856 chore: upgrade knip to v6 (#20875) (Pixel998)
  • d13b084 ci: ensure auto-created PRs run CI (#20860) (lumir)
  • e71c7af ci: bump pnpm/action-setup from 6.0.5 to 6.0.7 (#20862) (dependabot[bot])
  • d84393d test: add unit tests for SuppressionsService.applySuppressions() (#20863) (kuldeep kumar)
  • 24db8cb test: add tests for SuppressionsService.save() (#20802) (kuldeep kumar)
  • 2ef0549 chore: update ecosystem plugins (#20857) (github-actions[bot])
  • a429791 ci: remove eslint-webpack-plugin types integration test (#20668) (Milos Djermanovic)
  • 9e37386 chore: replace recast with range approach in code-sample-minimizer (#20682) (Copilot)
  • 0dd1f9f test: disable warning for vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER (#20845) (Francesco Trotta)
  • 9da3c7b refactor: remove deprecated meta.language and migrate meta.dialects (#20716) (Pixel998)
  • 2099ed1 refactor: add meta.defaultOptions to more rules, enable linting (#20800) (xbinaryx)
  • f1dfbc9 chore: update ecosystem plugins (#20836) (github-actions[bot])
  • c759413 ci: bump pnpm/action-setup from 6.0.3 to 6.0.5 (#20843) (dependabot[bot])
  • 5b817d6 test: add unit tests for lib/shared/ast-utils (#20838) (kuldeep kumar)
  • 1c13ae3 test: add unit tests for lib/shared/severity (#20835) (kuldeep kumar)

v10.3.0

Features

  • 379571a feat: add suggestions for no-unused-private-class-members (#20773) (sethamus)

Bug Fixes

  • b6ae5cf fix: handle unavailable require cache (#20812) (Simon Podlipsky)
  • 6fb3685 fix: rule suggestions cause continuation in class body (#20787) (Milos Djermanovic)

Documentation

  • 32cc7ab docs: fix typos in docs and comments (#20809) (Tanuj Kanti)
  • 7f47937 docs: Update README (GitHub Actions Bot)

Chores

  • d32235e ci: use pnpm in eslint-flat-config-utils type integration test (#20826) (Francesco Trotta)
  • 3ffb14e chore: clean up typos in comments and JSDoc (#20821) (Pixel998)

... (truncated)

Commits

albegosu and others added 30 commits May 2, 2026 09:39
refactor(app): unify RAG app into single Nuxt project and rood Docker…
refactor(sdk): add ai sdk and workflows sdk with deep changes
Added a banner image and various badges to README.
Updated the banner image syntax in the README.
Co-authored-by: Cursor <cursoragent@cursor.com>
- nuxt.config.ts: add 17 runtimeConfig entries for steps 3-6 (EMBEDDING_*, CHUNK_*, SEARCH_*, RAG_*)
- embedding.ts: per-entry TTL cache, configurable retry/batch size from settings service
- chunking.ts: wire CHUNK_STRATEGY (sentence-aware/fixed/with-overlap), export getChunkConfig()
- search.service.ts: read SEARCH_TOP_K, SEARCH_THRESHOLD, SEARCH_HYBRID, SEARCH_RERANK at runtime
- agent.service.ts: wire RAG_TEMPERATURE, RAG_CITATIONS, RAG_MAX_CONTEXT, RAG_RESPONSE_LANG, RAG_SYSTEM_PROMPT
- upload.post.ts: read MAX_DOC_SIZE_MB and ALLOWED_FORMATS from settings service
- prisma: add Setting model + migration for DB-backed runtime overrides
- settings.service.ts: in-memory 60s TTL cache, priority DB > .env > default
- api/admin/settings: GET + POST endpoints protected by ADMIN_API_KEY
- pages/settings.vue: runtime settings UI with auth gate and tabs per category
- BottomNav: add settings link, reduce px-5->px-3 for 5-item layout
- i18n: add settings.* keys to en/es locales
- wizard step5: fix SEARCH_THRESHOLD defaultValue 0.7->0.2 to match runtime default

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
feat(runtime): DB-backed RAG settings and admin UI
fix(docs): hero canvas and ScrollTrigger on mobile
chore(workflows): remove and fix workflows
albegosu added 16 commits May 12, 2026 21:25
…AX_STEPS

- RAG_SYSTEM_PROMPT now appends to the per-mode base prompt instead of
  replacing it, so tool-call instructions are never lost when a user sets
  a custom prompt (issue: custom prompt silently disabled tool calling).
- Expose AGENT_MAX_STEPS (default 5, clamp 1..20) as a runtime setting
  surfaced in the 'rag' tab of the admin settings wizard.
Trace labelled 'top-${topK * 3}' but the retriever uses
max(topK * overFetch, topK + 5). Expose overFetch in the config endpoint
and compute the real fetchLimit in the component.
Single kbHit pill conflated two distinct facts: 'tool was invoked' vs
'answer actually used retrieved context'. Now show 'searched' / 'no
search' when the agent decides to call the tool, and a separate 'cited'
pill only when the response contains [n] references.
Previously the user message was persisted before agentStreamText ran.
If the LLM setup failed (bad key, Ollama unreachable, etc.) the request
threw 502 but the user turn was already in the DB with no assistant
reply, leaving an orphaned message.

Now we only persist after stream setup succeeds. Memory commands keep
the old fast path since they don't make remote calls.
The LRU embedding cache has a 1h TTL and was never invalidated. A
re-ingest within that window could reuse a stale vector for a chunk
whose content matched a previous version (or that hashed the same after
a chunking-strategy tweak). Drop matching keys at the start of each
ingest run and from the pnpm reingest script.
Header now shows 'chat --mode=auto|search|direct --stream' so learners
can see at a glance which agent behaviour is active. Together with the
existing per-message 'searched' / 'cited' pills, this closes the gap
between selected mode and observed behaviour.
- Add intro 'What is RAG?' section with the 3 stages and a glossary
- Drop sections about deleted features: learning quest, eval harness,
  Monaco editor, /api/admin/queries
- Document the auth + admin + setup wizard surfaces that replaced them
- Fix project-structure tree to match current repo
- Replace broken 'Further reading' links to deleted docs/ files
- agents-plans/hypar-auth-and-multiuser-phases.md -> docs/rfcs/2026-auth-phases.md
- agents-plans/i-want-to-plan-virtual-blum.md -> docs/decisions/monorepo-unification.md
- delete the 3 remaining placeholder/session-artifact files
- pages/admin/users.vue: accept banned: boolean | null in toggleBan
- pages/index.vue: widen rawParts to allow text payload on text parts
- server/api/admin/settings.get.ts: guard step.configFields with ??[]
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 18, 2026
albegosu and others added 5 commits May 18, 2026 15:07
Bumps [eslint](https://github.com/eslint/eslint) from 9.39.4 to 10.4.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.4...v10.4.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-version: 10.4.0
  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/eslint-10.4.0 branch from 54fb98b to ac19e15 Compare May 18, 2026 13:48
@albegosu albegosu closed this May 19, 2026
@albegosu
albegosu deleted the dependabot/npm_and_yarn/eslint-10.4.0 branch May 19, 2026 12:32
@dependabot @github

dependabot Bot commented on behalf of github May 19, 2026

Copy link
Copy Markdown
Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

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.

1 participant