Skip to content

[Docs Site] Bump the non-major group across 1 directory with 33 updates - #32313

Merged
mvvmm merged 1 commit into
productionfrom
dependabot/npm_and_yarn/non-major-8faa547372
Jul 28, 2026
Merged

[Docs Site] Bump the non-major group across 1 directory with 33 updates#32313
mvvmm merged 1 commit into
productionfrom
dependabot/npm_and_yarn/non-major-8faa547372

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 24, 2026

Copy link
Copy Markdown
Contributor

Bumps the non-major group with 33 updates in the / directory:

Package From To
@astrojs/rss 4.0.18 4.0.19
@base-ui/react 1.5.0 1.6.0
@cloudflare/vitest-pool-workers 0.16.15 0.18.8
@floating-ui/react 0.27.19 0.27.20
@fontsource-variable/inter 5.2.8 5.3.0
@fontsource-variable/jetbrains-mono 5.2.8 5.3.0
@iconify-json/simple-icons 1.2.86 1.2.91
@iconify-json/vscode-icons 1.2.56 1.2.67
@iconify/utils 3.1.3 3.1.4
@types/hast 3.0.4 3.0.5
@typescript-eslint/parser 8.61.1 8.65.0
algoliasearch 5.54.1 5.56.0
astro-skills 0.1.0 0.1.1
cidr-tools 12.0.3 12.1.2
globals 17.6.0 17.7.0
happy-dom 20.10.3 20.11.1
lint-staged 17.0.7 17.2.0
marked 18.0.5 18.0.7
mermaid 11.15.0 11.16.0
nanostores 1.3.0 1.4.1
@cloudflare/nimbus-docs 0.6.1 0.7.1
parse-duration 2.1.6 2.1.8
prettier 3.8.4 3.9.6
prettier-plugin-tailwindcss 0.8.0 0.8.1
pretty-bytes 7.1.0 7.1.1
react-icons 5.6.0 5.7.0
sharp 0.35.1 0.35.3
svgo 4.0.1 4.0.2
tsx 4.22.4 4.23.1
typescript-eslint 8.61.1 8.65.0
valibot 1.4.1 1.4.2
vitest 4.1.9 4.1.10
wrangler 4.107.0 4.114.0

Updates @astrojs/rss from 4.0.18 to 4.0.19

Release notes

Sourced from @​astrojs/rss's releases.

@​astrojs/rss@​4.0.19

Patch Changes

  • #17209 fbcfa03 Thanks @​matthewp! - Hardens RSS feed generation by escaping the source and enclosure item fields. These fields are now serialized as structured XML values, ensuring that special characters in values like source.title and enclosure.type are always treated as text rather than markup, consistent with how other feed fields are handled.
Changelog

Sourced from @​astrojs/rss's changelog.

4.0.19

Patch Changes

  • #17209 fbcfa03 Thanks @​matthewp! - Hardens RSS feed generation by escaping the source and enclosure item fields. These fields are now serialized as structured XML values, ensuring that special characters in values like source.title and enclosure.type are always treated as text rather than markup, consistent with how other feed fields are handled.
Commits

Updates @base-ui/react from 1.5.0 to 1.6.0

Release notes

Sourced from @​base-ui/react's releases.

v1.6.0

General changes

Accordion

Alert Dialog

Autocomplete

Avatar

Checkbox

Checkbox Group

Collapsible

Combobox

... (truncated)

Changelog

Sourced from @​base-ui/react's changelog.

v1.6.0

Jun 18, 2026

General changes

Accordion

Alert Dialog

Autocomplete

Avatar

Checkbox

Checkbox Group

Collapsible

Combobox

... (truncated)

Commits
  • b34551d [code-infra] Fix package publishing (#5074)
  • 615b0e8 [release] v1.6.0 (#5064)
  • 8b7ca5d [test] Restore slider listener spies (#5072)
  • 2502524 [combobox][autocomplete] Document open requirement for the inline prop (#...
  • 4c33d74 [slider] Fix touchend listener accumulation leak (#5070)
  • d169cd5 [combobox] Fix autofill and selected state edge cases (#4972)
  • 2d8b8f6 [avatar] Fix image status edge cases (#4835)
  • ee3c13a [select] Skip disabled items in typeahead and fix multiple-mode serialization...
  • b167c85 [drawer] Commit swipe on primary-button release (#5057)
  • e972d74 [combobox] Avoid re-rendering every item on each keystroke (#4964)
  • Additional commits viewable in compare view

Updates @cloudflare/vitest-pool-workers from 0.16.15 to 0.18.8

Release notes

Sourced from @​cloudflare/vitest-pool-workers's releases.

@​cloudflare/vitest-pool-workers@​0.18.8

Patch Changes

@​cloudflare/vitest-pool-workers@​0.18.7

Patch Changes

  • #14713 de34449 Thanks @​allocsys! - Fix a non-ASCII path failure during the Miniflare WebSocket handshake: the MF-Vitest-Worker-Data header embedded the raw process.cwd() value, which threw a Latin-1/ASCII header encoding error when the workspace path contained non-ASCII characters (e.g. CJK characters) on Windows. The value is now percent-encoded on write and decoded on read, matching the fix applied to the module fallback redirect response.

  • #14713 de34449 Thanks @​allocsys! - Fix a runtime start-up failure ("No such module "cloudflare:test-internal"") when the project workspace path contains non-ASCII characters (e.g. CJK characters) on Windows. The module fallback service's redirect response set the target file path directly as an HTTP Location header value, but headers are restricted to the Latin-1/ASCII byte range, so any non-ASCII byte in the path caused header construction to throw. Such paths are now percent-encoded (and tagged with a sentinel prefix) before being used as a header value, and decoded again only for the values we encoded, so the round-trip is unambiguous and a workspace path containing a literal % is left untouched instead of being mis-decoded.

  • #14739 5eac99e Thanks @​Ankcorn! - Support testing Streaming Tail Workers in Vitest Pool Workers.

  • #14763 538e867 Thanks @​gianghungtien! - Treat webSocketMessage(), webSocketClose() and webSocketError() as optional Durable Object handlers

    The pool wraps each Durable Object class and installs a prototype method for every default handler before user code is loaded, so workerd always sees a handler and always dispatches. When the wrapped class didn't actually define one, the wrapper threw <ClassName> exported by <path> does not define a `webSocketClose()` method, even though deployed Workers silently ignore these events for classes that omit them. A hibernatable Durable Object defining only webSocketMessage() would log an uncaught TypeError on every close.

    These three handlers now no-op when absent, matching deployed behaviour. alarm() is unchanged and still reports a missing handler, since workerd rejects setAlarm() up front on a class without one.

  • Updated dependencies [42af66d, a0a091b, f03b108, deae171, 0df3d43, d83a476, 4e92e32, d1d6945, 4815711, a0c8bb1, a50f73a, 2b390d7, c82d96b, 34430b3, f75ae5d]:

    • miniflare@4.20260721.0
    • wrangler@4.113.0

@​cloudflare/vitest-pool-workers@​0.18.6

Patch Changes

@​cloudflare/vitest-pool-workers@​0.18.5

Patch Changes

@​cloudflare/vitest-pool-workers@​0.18.4

Patch Changes

... (truncated)

Changelog

Sourced from @​cloudflare/vitest-pool-workers's changelog.

0.18.8

Patch Changes

0.18.7

Patch Changes

  • #14713 de34449 Thanks @​allocsys! - Fix a non-ASCII path failure during the Miniflare WebSocket handshake: the MF-Vitest-Worker-Data header embedded the raw process.cwd() value, which threw a Latin-1/ASCII header encoding error when the workspace path contained non-ASCII characters (e.g. CJK characters) on Windows. The value is now percent-encoded on write and decoded on read, matching the fix applied to the module fallback redirect response.

  • #14713 de34449 Thanks @​allocsys! - Fix a runtime start-up failure ("No such module "cloudflare:test-internal"") when the project workspace path contains non-ASCII characters (e.g. CJK characters) on Windows. The module fallback service's redirect response set the target file path directly as an HTTP Location header value, but headers are restricted to the Latin-1/ASCII byte range, so any non-ASCII byte in the path caused header construction to throw. Such paths are now percent-encoded (and tagged with a sentinel prefix) before being used as a header value, and decoded again only for the values we encoded, so the round-trip is unambiguous and a workspace path containing a literal % is left untouched instead of being mis-decoded.

  • #14739 5eac99e Thanks @​Ankcorn! - Support testing Streaming Tail Workers in Vitest Pool Workers.

  • #14763 538e867 Thanks @​gianghungtien! - Treat webSocketMessage(), webSocketClose() and webSocketError() as optional Durable Object handlers

    The pool wraps each Durable Object class and installs a prototype method for every default handler before user code is loaded, so workerd always sees a handler and always dispatches. When the wrapped class didn't actually define one, the wrapper threw <ClassName> exported by <path> does not define a `webSocketClose()` method, even though deployed Workers silently ignore these events for classes that omit them. A hibernatable Durable Object defining only webSocketMessage() would log an uncaught TypeError on every close.

    These three handlers now no-op when absent, matching deployed behaviour. alarm() is unchanged and still reports a missing handler, since workerd rejects setAlarm() up front on a class without one.

  • Updated dependencies [42af66d, a0a091b, f03b108, deae171, 0df3d43, d83a476, 4e92e32, d1d6945, 4815711, a0c8bb1, a50f73a, 2b390d7, c82d96b, 34430b3, f75ae5d]:

    • miniflare@4.20260721.0
    • wrangler@4.113.0

0.18.6

Patch Changes

0.18.5

Patch Changes

... (truncated)

Commits
  • 16b3d5a Version Packages (#14799)
  • 7b3fea6 fix(vitest-pool-workers): tolerate dispose rejections in pool worker stop() (...
  • 88f42e7 Version Packages (#14740)
  • 0df3d43 [wrangler] Extract remote bindings into a package (#14720)
  • 538e867 [vitest-pool-workers] Treat webSocket* as optional Durable Object handlers ...
  • de34449 [vitest-pool-workers] Fix module fallback failure on non-ASCII workspace path...
  • 5eac99e [vitest-pool-workers] Support streaming tails to the main worker (#14739)
  • 82918ad Version Packages (#14699)
  • 4e62bba fix(vitest-pool-workers): avoid hanging on broken DO logs (#14678)
  • b449bb0 Version Packages (#14644)
  • Additional commits viewable in compare view

Updates @floating-ui/react from 0.27.19 to 0.27.20

Release notes

Sourced from @​floating-ui/react's releases.

@​floating-ui/react@​0.27.20

Patch Changes

  • fix: remove redundant passive options from scroll listeners
  • fix: support explicit undefined for optional properties with exactOptionalPropertyTypes
  • Update dependencies: @floating-ui/react-dom@2.1.9, @floating-ui/utils@0.2.12
Changelog

Sourced from @​floating-ui/react's changelog.

0.27.20

Patch Changes

  • fix: remove redundant passive options from scroll listeners
  • fix: support explicit undefined for optional properties with exactOptionalPropertyTypes
  • Update dependencies: @floating-ui/react-dom@2.1.9, @floating-ui/utils@0.2.12
Commits
  • 12d9473 chore: version packages (#3480)
  • 9887c96 fix(types): restore bivariant parameters for optional callbacks
  • 73c1f76 fix(types): support exactOptionalPropertyTypes (#3456)
  • 8999976 chore: upgrade vulnerable direct dependencies (#3484)
  • fa63ca6 chore: remove unnecessary passive flag from scroll events (#3470)
  • fabb80b breaking(vue): drop vue-demi and require Vue >=3.3.0 (#3452)
  • See full diff in compare view

Updates @fontsource-variable/inter from 5.2.8 to 5.3.0

Commits

Updates @fontsource-variable/jetbrains-mono from 5.2.8 to 5.3.0

Commits

Updates @iconify-json/simple-icons from 1.2.86 to 1.2.91

Commits

Updates @iconify-json/vscode-icons from 1.2.56 to 1.2.67

Commits

Updates @iconify/utils from 3.1.3 to 3.1.4

Commits

Updates @types/hast from 3.0.4 to 3.0.5

Commits

Updates @typescript-eslint/parser from 8.61.1 to 8.65.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.65.0

8.65.0 (2026-07-20)

🚀 Features

  • add warning when TS 7 is detected (#12529)
  • eslint-plugin: [no-restricted-imports] deprecate extension rule (#12527, #19562, #11889)
  • eslint-plugin: [no-shadow] specialized error on enum declaration and member shadowing (#12578)
  • parser: add onUnsupportedTypeScriptVersion option to error on unsupported TypeScript versions (#12465)
  • typescript-estree: throw for invalid import defer syntax (#12552)

🩹 Fixes

  • eslint-plugin: [prefer-string-starts-ends-with] handle escaped $ ending regex literals (#12515)
  • eslint-plugin: [unbound-method] report unbound methods accessed via member expression on union types (#12448)
  • eslint-plugin: [no-unnecessary-parameter-property-assignment] don't flag computed assignments with a variable key (#12568)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.64.0

8.64.0 (2026-07-13)

🚀 Features

  • support parsing import defer (#12513)
  • eslint-plugin: [no-loop-func] support using / await using declarations and deprecate the rule (#12500)
  • typescript-estree: throw for invalid definite assignment in class properties (#12543)

🩹 Fixes

  • eslint-plugin: [require-array-sort-compare] handle constrained arrays (#12512)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

... (truncated)

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.65.0 (2026-07-20)

🚀 Features

  • add warning when TS 7 is detected (#12529)
  • parser: add onUnsupportedTypeScriptVersion option to error on unsupported TypeScript versions (#12465)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

8.64.0 (2026-07-13)

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

8.63.0 (2026-07-06)

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

8.62.1 (2026-06-29)

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

8.62.0 (2026-06-22)

🚀 Features

  • remove redundant package.json "files" (#12444)

❤️ Thank You

... (truncated)

Commits
  • 63ba81b chore(release): publish 8.65.0
  • eaf4576 feat: add warning when TS 7 is detected (#12529)
  • d8f1044 feat(parser): add onUnsupportedTypeScriptVersion option to error on unsupport...
  • 0d06406 chore: add attw validation to repo (#12437)
  • c2386e4 chore(deps): update dependency prettier to v3.9.5 (#12486)
  • 414d9ab chore(release): publish 8.64.0
  • 290cf6c chore(release): publish 8.63.0
  • 3ea32f4 chore(release): publish 8.62.1
  • 54e2857 chore(release): publish 8.62.0
  • 81e4c26 feat: remove redundant package.json "files" (#12444)
  • See full diff in compare view

Updates algoliasearch from 5.54.1 to 5.56.0

Release notes

Sourced from algoliasearch's releases.

5.56.0

New version released!

What's Changed

Full Changelog: algolia/algoliasearch-client-javascript@5.55.2...5.56.0

Browse the Algolia documentation

5.55.2

New version released!

What's Changed

@dependabot
dependabot Bot requested a review from a team as a code owner July 24, 2026 18:34
@dependabot
dependabot Bot requested a review from a team as a code owner July 24, 2026 18:34
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 24, 2026
@cloudflare-docs-bot

cloudflare-docs-bot Bot commented Jul 24, 2026

Copy link
Copy Markdown
Contributor

Dependabot review

Package Impact Recommendation
@astrojs/rss 4.0.18 → 4.0.19 🟡 Low ✅ Merge
@base-ui/react 1.5.0 → 1.6.0 🟠 Medium ⚠️ Verify
@cloudflare/vitest-pool-workers 0.16.15 → 0.18.8 🟠 Medium ⚠️ Verify
@floating-ui/react 0.27.19 → 0.27.20 🟢 Very Low ✅ Merge
@fontsource-variable/inter 5.2.8 → 5.3.0 🟡 Low ✅ Merge
@fontsource-variable/jetbrains-mono 5.2.8 → 5.3.0 🟡 Low ✅ Merge
@iconify-json/simple-icons 1.2.86 → 1.2.91 🟡 Low ✅ Merge
@iconify-json/vscode-icons 1.2.56 → 1.2.67 🟡 Low ✅ Merge
@iconify/utils 3.1.3 → 3.1.4 🟢 Very Low ✅ Merge
@types/hast 3.0.4 → 3.0.5 🟡 Low ✅ Merge
@typescript-eslint/parser 8.61.1 → 8.65.0 🟡 Low ✅ Merge
algoliasearch 5.54.1 → 5.56.0 🟢 Very Low ✅ Merge
astro-skills 0.1.0 → 0.1.1 🟡 Low ✅ Merge
cidr-tools 12.0.3 → 12.1.2 🟡 Low ✅ Merge
globals 17.6.0 → 17.7.0 🟡 Low ✅ Merge
happy-dom 20.10.3 → 20.11.1 🟡 Low ✅ Merge
lint-staged 17.0.7 → 17.2.0 🟡 Low ✅ Merge
marked 18.0.5 → 18.0.7 🟠 Medium ⚠️ Verify
mermaid 11.15.0 → 11.16.0 🟠 Medium ⚠️ Verify
nanostores 1.3.0 → 1.4.1 🟢 Very Low ✅ Merge
@cloudflare/nimbus-docs 0.6.1 → 0.7.1 🔴 High ⚠️ Verify
parse-duration 2.1.6 → 2.1.8 🟢 Very Low ✅ Merge
prettier 3.8.4 → 3.9.6 🟡 Low ✅ Merge
prettier-plugin-tailwindcss 0.8.0 → 0.8.1 🟡 Low ✅ Merge
pretty-bytes 7.1.0 → 7.1.1 🟡 Low ✅ Merge
react-icons 5.6.0 → 5.7.0 🟢 Very Low ✅ Merge
sharp 0.35.1 → 0.35.3 🟡 Low ✅ Merge
svgo 4.0.1 → 4.0.2 🟡 Low ✅ Merge
tsx 4.22.4 → 4.23.1 🟡 Low ✅ Merge
typescript-eslint 8.61.1 → 8.65.0 🟡 Low ✅ Merge
valibot 1.4.1 → 1.4.2 🟡 Low ✅ Merge
vitest 4.1.9 → 4.1.10 🟡 Low ✅ Merge
wrangler 4.107.0 → 4.114.0 🟠 Medium ⚠️ Verify

Overall: ✅ Merge + spot-check

Most of the 33 bumps are patch/minor updates to direct devDependencies with limited visitor impact. The exceptions that warrant extra care are @cloudflare/nimbus-docs (0.6.1 → 0.7.1), the framework behind the docs layouts, components, plugins, and client scripts; @base-ui/react (Select/Combobox behavior fixes) used on the AI models page; marked and mermaid, which are used broadly for rendered content and diagrams; wrangler, whose experimental_getWranglerCommands output drives WranglerCommand blocks; and @cloudflare/vitest-pool-workers (0.16 → 0.18), which may affect test-runner behavior. The Prettier 3.9.6 bump already produced formatting changes included in the PR. The rest are unused direct deps, icon/font/data-only updates, or tooling-only changes.

Package details

@astrojs/rss: 4.0.18 → 4.0.19

Type: bug fix
Dependency type: direct

What changed

  • Escapes source and enclosure item fields in RSS feed generation by serializing them as structured XML values.

Usage in this repo
src/pages/[...changelog].xml.ts generates changelog RSS feeds.

Impact: 🟡 Low — Change only hardens XML escaping; it should not break normal feeds and requires no code changes.


@base-ui/react: 1.5.0 → 1.6.0

Type: bug fix
Dependency type: direct

What changed

  • Bug fixes and behavior changes for Select, Combobox, Accordion, Checkbox, and focus/keyboard handling.

Usage in this repo
src/components/models/SortSelect.tsx (Select) and src/components/models/FilterDropdown.tsx (Combobox).

Impact: 🟠 Medium — Select and Combobox behavior changes could affect the interactive filters on the AI models page.


@cloudflare/vitest-pool-workers: 0.16.15 → 0.18.8

Type: dependency bump
Dependency type: direct

What changed

  • 0.x minor/patch bump with optional Durable Object webSocket* handlers, fixes for non-ASCII paths/worker disposal, update to wrangler@4.114.0/miniflare@4.20260722.0.

Usage in this repo
vitest.config.ts via cloudflareTest() and package.json test scripts.

Impact: 🟠 Medium — A two-minor-version jump in the test pool can change test execution or require config tweaks; run the test suite before merging.


@floating-ui/react: 0.27.19 → 0.27.20

Type: dependency bump
Dependency type: direct

What changed

  • Type-only fix for exactOptionalPropertyTypes and dependency updates; no runtime API changes.

Usage in this repo
Not imported directly in repo sources.

Impact: 🟢 Very Low — Unused directly and only type-level changes; any consumption is transitive through other UI packages.


@fontsource-variable/inter: 5.2.8 → 5.3.0

Type: dependency bump
Dependency type: direct

What changed

  • Font file update for Inter Variable.

Usage in this repo
src/layouts/BaseLayout.astro imports the font.

Impact: 🟡 Low — Minor font update; could subtly change typography but unlikely to break anything.


@fontsource-variable/jetbrains-mono: 5.2.8 → 5.3.0

Type: dependency bump
Dependency type: direct

What changed

  • Font file update for JetBrains Mono Variable.

Usage in this repo
src/layouts/BaseLayout.astro imports the font.

Impact: 🟡 Low — Minor font update for code blocks; low chance of breakage.


@iconify-json/simple-icons: 1.2.86 → 1.2.91

Type: dependency bump
Dependency type: direct

What changed

  • Icon set data update (new icons and possible renames).

Usage in this repo
Consumed through astro-icon and referenced in config/content icon mappings.

Impact: 🟡 Low — Renamed/removed icons could break specific icon references, but most usage is standard and resilient.


@iconify-json/vscode-icons: 1.2.56 → 1.2.67

Type: dependency bump
Dependency type: direct

What changed

  • Icon set data update (new icons and possible renames).

Usage in this repo
astro.config.ts maps file types like go/c-sharp to vscode-icons; used by code blocks.

Impact: 🟡 Low — Icon renames could affect language icon rendering in code blocks, but impact is limited.


@iconify/utils: 3.1.3 → 3.1.4

Type: dependency bump
Dependency type: direct

What changed

  • Patch release of iconify utilities.

Usage in this repo
Not imported directly; transitive utility for astro-icon/icon handling.

Impact: 🟢 Very Low — No direct usage and only patch-level utility changes.


@types/hast: 3.0.4 → 3.0.5

Type: dependency bump
Dependency type: direct

What changed

  • Type definitions update for hast (HTML abstract syntax tree).

Usage in this repo
Used by src/plugins/satteri/types.ts and other hast-based plugins.

Impact: 🟡 Low — Type-only update; the PR already includes a small type-cast adjustment in satteri/types.ts.


@typescript-eslint/parser: 8.61.1 → 8.65.0

Type: feature
Dependency type: direct

What changed

  • Adds TS 7 detection warning, parser option for unsupported TS versions, and import defer syntax handling.

Usage in this repo
Used via typescript-eslint in eslint.config.js.

Impact: 🟡 Low — Repo uses TypeScript 5.9.3, so the TS-version changes are irrelevant; new lint behavior is unlikely to break existing code.


algoliasearch: 5.54.1 → 5.56.0

Type: feature
Dependency type: direct

What changed

  • Adds WithHTTPInfo methods, restores recommend fallbackParameters, fixes browseSynonyms pagination and replace_all_objects empty-objects warning.

Usage in this repo
Not imported directly in repo sources; may be present for transitive DocSearch use.

Impact: 🟢 Very Low — No direct callsites; breaking Recommend param changes do not affect this repo.


astro-skills: 0.1.0 → 0.1.1

Type: dependency bump
Dependency type: direct

What changed

  • Patch release for astro-skills.

Usage in this repo
Related to bin/fetch-skills.ts skills integration.

Impact: 🟡 Low — Used only in the skills fetch/build path; patch release unlikely to affect normal builds.


cidr-tools: 12.0.3 → 12.1.2

Type: dependency bump
Dependency type: direct

What changed

  • Minor/patch release of cidr-tools.

Usage in this repo
src/components/react/SubtractIPCalculator.tsx (parseCidr/excludeCidr).

Impact: 🟡 Low — Only one calculator component uses it; output may shift slightly but is unlikely to break.


globals: 17.6.0 → 17.7.0

Type: dependency bump
Dependency type: direct

What changed

  • Global identifiers list update.

Usage in this repo
eslint.config.js (globals.node).

Impact: 🟡 Low — Only affects ESLint global definitions; no content impact.


happy-dom: 20.10.3 → 20.11.1

Type: dependency bump
Dependency type: direct

What changed

  • Patch release of happy-dom DOM implementation.

Usage in this repo
vitest.config.ts environment for Node tests.

Impact: 🟡 Low — Only used in tests; could change DOM behavior in tests but not production output.


lint-staged: 17.0.7 → 17.2.0

Type: dependency bump
Dependency type: direct

What changed

  • Minor release of lint-staged pre-commit tooling.

Usage in this repo
.husky/pre-commit and package.json lint-staged configuration.

Impact: 🟡 Low — Git hook tooling only; no site output impact.


marked: 18.0.5 → 18.0.7

Type: bug fix
Dependency type: direct

What changed

  • Patch release of the markdown parser (bug fixes).

Usage in this repo
Widely used for inline markdown: src/util/changelog.ts, src/pages/[...changelog].xml.ts, src/components/cf/Details.astro, Glossary.astro, Markdown.astro, WranglerCommand.astro, etc.

Impact: 🟠 Medium — Used in many content-rendering paths; any parser output change can affect rendered HTML across the site.


mermaid: 11.15.0 → 11.16.0

Type: dependency bump
Dependency type: direct

What changed

  • Minor release of Mermaid diagram renderer.

Usage in this repo
src/plugins/satteri/mermaid.ts, src/scripts/mermaid.client.ts, and many MDX docs with ```mermaid fences.

Impact: 🟠 Medium — Diagram rendering is visitor-facing; changes in theme or syntax could break existing diagrams.


nanostores: 1.3.0 → 1.4.1

Type: dependency bump
Dependency type: direct

What changed

  • Minor release of nanostores state library.

Usage in this repo
Not imported directly; consumed transitively through @nanostores/react.

Impact: 🟢 Very Low — No direct imports in the repo; transitive consumption only.


@cloudflare/nimbus-docs: 0.6.1 → 0.7.1

Type: dependency bump
Dependency type: direct

What changed

  • Minor release of the docs site framework used for layouts, components, markdown transforms, and client scripts.

Usage in this repo
Extensive: layouts (BaseLayout.astro, DocsLayout.astro), components (Header, PageHead, Code.astro, Dialog.astro, TOC, diagrams), plugins (satteri heading-slugs, autolink, markdown transforms), client scripts, sidebar logic, and rendered-toc utility.

Impact: 🔴 High — This is the core framework package for the docs site; a 0.x minor bump can affect rendered output, components, and build behavior.


parse-duration: 2.1.6 → 2.1.8

Type: dependency bump
Dependency type: direct

What changed

  • Patch release of parse-duration.

Usage in this repo
Not imported directly (Stream.astro uses an inline parser); listed as direct dependency only.

Impact: 🟢 Very Low — No direct usage in the repo.


prettier: 3.8.4 → 3.9.6

Type: dependency bump
Dependency type: direct

What changed

  • Minor release of Prettier; formatting changes from the new version are already applied in this PR.

Usage in this repo
Formatting scripts, .prettierrc.mjs, and src/components/cf/TypeScriptExample.astro (runtime formatting).

Impact: 🟡 Low — The PR already includes the formatting diff from 3.9.6; only future formatting is affected.


prettier-plugin-tailwindcss: 0.8.0 → 0.8.1

Type: dependency bump
Dependency type: direct

What changed

  • Patch release of the Tailwind Prettier plugin.

Usage in this repo
.prettierrc.mjs plugin list.

Impact: 🟡 Low — Build-time formatting only; no site behavior impact.


pretty-bytes: 7.1.0 → 7.1.1

Type: dependency bump
Dependency type: direct

What changed

  • Patch release of pretty-bytes.

Usage in this repo
src/components/cf/WARPRelease.astro and its client script.

Impact: 🟡 Low — Only affects byte formatting in the WARP release component.


react-icons: 5.6.0 → 5.7.0

Type: dependency bump
Dependency type: direct

What changed

  • Icon set update.

Usage in this repo
Not imported directly in repo sources.

Impact: 🟢 Very Low — Unused direct dependency; no impact.


sharp: 0.35.1 → 0.35.3

Type: dependency bump
Dependency type: direct

What changed

  • Patch release of sharp image processor.

Usage in this repo
Astro image service entrypoint in astro.config.ts; native binary dependency allowed in pnpm-workspace.yaml.

Impact: 🟡 Low — Only affects image optimization output at build time; patch unlikely to break.


svgo: 4.0.1 → 4.0.2

Type: dependency bump
Dependency type: direct

What changed

  • Patch release of SVGO SVG optimizer.

Usage in this repo
scripts/optimize-svgs.ts.

Impact: 🟡 Low — Only used in the SVG optimization script; no runtime site impact.


tsx: 4.22.4 → 4.23.1

Type: dependency bump
Dependency type: direct

What changed

  • Patch release of tsx TS execution engine.

Usage in this repo
bin/fetch-skills.ts shebang and package.json prebuild/predev scripts.

Impact: 🟡 Low — Build-time script runner only.


typescript-eslint: 8.61.1 → 8.65.0

Type: feature
Dependency type: direct

What changed

  • Minor release with new rules, parser updates, and deprecations (mirrors @typescript-eslint/parser 8.65.0).

Usage in this repo
eslint.config.js (pluginTypeScript.configs.recommended).

Impact: 🟡 Low — Could introduce new lint warnings but will not affect site output.


valibot: 1.4.1 → 1.4.2

Type: dependency bump
Dependency type: direct

What changed

  • Patch release of valibot schema validation library.

Usage in this repo
.flue/lib schema files (code-review-results.ts, style-guide-results.ts, dependabot-review.ts, spam-filter.ts, etc.).

Impact: 🟡 Low — Used for schema validation in the Flue agent workflows; patch should be safe.


vitest: 4.1.9 → 4.1.10

Type: dependency bump
Dependency type: direct

What changed

  • Patch release of Vitest.

Usage in this repo
vitest.config.ts and package.json test scripts.

Impact: 🟡 Low — Patch release; run the test suite to confirm.


wrangler: 4.107.0 → 4.114.0

Type: dependency bump
Dependency type: direct

What changed

  • Minor release of wrangler CLI and API; command registry may include new/changed commands and flags.

Usage in this repo
package.json typegen:worker/flue scripts and src/components/cf/WranglerCommand.astro (experimental_getWranglerCommands).

Impact: 🟠 Medium — WranglerCommand.astro renders command metadata from wrangler, so command/flag changes can affect published docs content.


@github-actions

github-actions Bot commented Jul 24, 2026

Copy link
Copy Markdown
Contributor

This pull request requires reviews from CODEOWNERS as it changes files that match the following patterns:

Pattern Owners
*.ts @cloudflare/content-engineering, @kodster28
package.json @cloudflare/content-engineering
* @cloudflare/product-owners
/src/components/ @cloudflare/content-engineering, @kodster28
*.astro @cloudflare/content-engineering, @kodster28

@mvvmm
mvvmm requested a review from kodster28 as a code owner July 24, 2026 19:34
@mvvmm
mvvmm force-pushed the dependabot/npm_and_yarn/non-major-8faa547372 branch from fc2a389 to 0bfc129 Compare July 28, 2026 15:15
@github-actions

Copy link
Copy Markdown
Contributor

@mvvmm
mvvmm merged commit 552b48f into production Jul 28, 2026
20 checks passed
@mvvmm
mvvmm deleted the dependabot/npm_and_yarn/non-major-8faa547372 branch July 28, 2026 15: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 size/xl

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants