Skip to content

build(deps): bump the minor-and-patch group with 18 updates - #348

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-c7aaf711c5
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-c7aaf711c5

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 7, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor-and-patch group with 18 updates:

Package From To
@cloudflare/workers-types 4.20260521.1 4.20260702.1
fast-xml-parser 5.10.1 5.11.1
prettier 3.8.3 3.9.6
turbo 2.9.14 2.10.12
@ai-sdk/openai 3.0.74 3.0.107
ai 6.0.208 6.0.276
isbot 5.1.40 5.2.2
react 19.2.6 19.2.8
@types/react 19.2.15 19.2.18
react-dom 19.2.6 19.2.8
@types/react-dom 19.2.3 19.2.7
react-router 7.18.2 7.18.3
@cloudflare/vite-plugin 1.54.3 1.54.4
@react-router/dev 7.18.2 7.18.3
@tailwindcss/vite 4.3.0 4.3.3
tailwindcss 4.3.0 4.3.3
vite 8.0.16 8.2.2
wrangler 4.128.0 4.129.0

Updates @cloudflare/workers-types from 4.20260521.1 to 4.20260702.1

Commits

Updates fast-xml-parser from 5.10.1 to 5.11.1

Release notes

Sourced from fast-xml-parser's releases.

v5.11.1

What's Changed

New Contributors

Full Changelog: NaturalIntelligence/fast-xml-parser@v5.11.0...v5.11.1

v5.11.0

What's Changed

New Contributors

Full Changelog: NaturalIntelligence/fast-xml-parser@v5.10.1...v5.11.0

Changelog

Sourced from fast-xml-parser's changelog.

Note: If you find missing information about particular minor version, that version must have been changed without any functional change in this library.

Note: Due to some last quick changes on v4, detail of v4.5.3 & v4.5.4 are not updated here. v4.5.4x is the last tag of v4 in github repository. I'm extremely sorry for the confusion

5.11.1 / 2026-08-27

  • fix: validator; Replace regex with a single-pass scanner for attribute tokens, eliminating quadratic behavior on long whitespace runs.

5.11.0 / 2026-08-16

  • feat: support for endIndex in node metadata (#850) [By Pavel Dranichnikov]
  • fix: don't crash on a closing tag with no matching opening tag (#861) [By Haïm Dimer]
  • fix: DOCTYPE to read SYSTEM/PUBLIC
  • deps: strnum v2.4.2

5.10.1 / 2026-07-17

  • fix: multiple DOCTYPE declarations.
  • deps: @nodable/entities for treeshaking

5.10.0 / 2026-07-11

  • upgrade:
    • xml-naming v0.3.0: cache support
    • PEM v1.6.2: sibling bug fix
    • is-unsafe v2.0.0: tree shaking

*5.9.3 / 2026-06-19

  • update strnum

*5.9.2 / 2026-06-17

  • dummy release to test changes in github action

*5.9.1 / 2026-06-17

  • dummy release to test release from github action

*5.9.0 / 2026-06-15

  • update strnum to 2.3.0
    • you can set hex, binary, enotation, infinity, unicode
  • validate unsafe HTML or XML data in doctype entities unsing 'is-unsafe' library. User can override rules by overriding EntityDecoder.

*5.8.0 / 2026-05-12

  • integrate xml-naming to validate DOCTYPE entity name and notation name (using qname becaue of backward compatibility)
    • This will consider xml-version as well. '1.0' is default
  • update strnum to 2.3.0
    • You can set octal and binary parsing which is bydeault off
  • update fast-xml-builder to 1.2.0
    • can sanitize tag names if found invalid
    • fix format output

5.7.3 / 2006-05-05

  • fix: alwaysCreateTextNode should create text node when attributes are present for self closing node

... (truncated)

Commits

Updates prettier from 3.8.3 to 3.9.6

Release notes

Sourced from prettier's releases.

3.9.6

What's Changed

🔗 Changelog

3.9.5

🔗 Changelog

3.9.4

  • Angular: Format @content(name) -> @content (name) to align with other block syntax (#19499 by @​fisker)

🔗 Changelog

3.9.3

🔗 Changelog

3.9.1

🔗 Changelog

3.9.0

diff

🔗 Prettier 3.9: Major parser upgrades and Formatting improvements

3.8.5

🔗 Changelog

3.8.4

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.9.6

diff

TypeScript: Preserve quotes for methods named new (#19621 by @​kovsu)

// Input
interface Container {
  "new"(id: string): number;
}
// Prettier 3.9.5
interface Container {
new(id: string): number;
}
// Prettier 3.9.6
interface Container {
"new"(id: string): number;
}

TypeScript: Support import defer (#19624, #19675 by @​fisker)

// Input
import defer * as foo from "foo";
// Prettier 3.9.5
import * as foo from "foo";
// Prettier 3.9.6
import defer * as foo from "foo";

JavaScript: Added a new official plugin @prettier/plugin-yuku (#19628, #19629 by @​fisker)

@prettier/plugin-yuku is powered by Yuku (A high-performance JavaScript/TypeScript compiler toolchain written in Zig).

This plugin includes two new parsers: yuku (JavaScript syntax) and yuku-ts (TypeScript syntax).

To use this plugin:

  1. Install the plugin:

    yarn add --dev prettier @prettier/plugin-yuku

... (truncated)

Commits

Updates turbo from 2.9.14 to 2.10.12

Release notes

Sourced from turbo's releases.

Turborepo v2.10.12

What's Changed

Changelog

... (truncated)

Commits

Updates @ai-sdk/openai from 3.0.74 to 3.0.107

Changelog

Sourced from @​ai-sdk/openai's changelog.

3.0.107

Patch Changes

  • 8844beb: fix(openai): flatten mid-stream Responses error events
  • cf1ba03: fix(openai): preserve complete Responses API raw usage objects

3.0.106

Patch Changes

  • 85ba0b0: Preserve explicit prompt cache breakpoints on scalar Responses tool results.

3.0.105

Patch Changes

  • Updated dependencies [cc23556]
    • @​ai-sdk/provider-utils@​4.0.50

3.0.104

Patch Changes

  • 426c9b3: Normalize non-object replayed Chat Completions tool arguments to empty objects.
  • 34d045d: Fix Responses history serialization for regular functions named tool_search.

3.0.103

Patch Changes

  • 9a521b9: Split OpenAI and Azure OpenAI embedding requests by a conservative UTF-8 byte budget derived from their aggregate token limit, in addition to input count limits.
  • Updated dependencies [9a521b9]
    • @​ai-sdk/provider-utils@​4.0.49

3.0.102

Patch Changes

  • 087d7e2: Signal schema-invalid known Responses stream events and preserve the error finish reason.

3.0.101

Patch Changes

  • 313a441: Prevent negative text output token counts when providers report reasoning tokens. Perplexity reasoning tokens are now treated as separate from completion tokens.
  • Updated dependencies [5642849]
    • @​ai-sdk/provider-utils@​4.0.48

3.0.100

... (truncated)

Commits
  • f3b5f53 Version Packages (#20183)
  • cf1ba03 Backport: fix: preserve complete OpenAI Responses raw usage objects (#20193)
  • 8844beb fix(openai): flatten mid-stream Responses error events (#20179)
  • a807c01 Version Packages (#20032)
  • 85ba0b0 [v6.0] fix: preserve prompt cache breakpoints on scalar OpenAI Responses tool...
  • f8367cd Version Packages (#19864)
  • d34b406 Version Packages (#19775)
  • 34d045d [v6.0] fix: replay regular functions named tool_search correctly in OpenAI Re...
  • 426c9b3 [v6.0] fix: prevent strict Chat Completions backends from rejecting malformed...
  • a7dbe1f Version Packages (#19752)
  • Additional commits viewable in compare view

Updates ai from 6.0.208 to 6.0.276

Release notes

Sourced from ai's releases.

ai@6.0.276

Patch Changes

  • 760ac87: fix(ai): preserve provider metadata from empty smooth stream deltas
  • 5e43974: fix(ai): skip smoothStream delays while the document is hidden
  • Updated dependencies [13507cb]
  • Updated dependencies [7782fec]
  • Updated dependencies [978e084]
  • Updated dependencies [d0c255c]
    • @​ai-sdk/gateway@​3.0.188
Changelog

Sourced from ai's changelog.

6.0.276

Patch Changes

  • 760ac87: fix(ai): preserve provider metadata from empty smooth stream deltas
  • 5e43974: fix(ai): skip smoothStream delays while the document is hidden
  • Updated dependencies [13507cb]
  • Updated dependencies [7782fec]
  • Updated dependencies [978e084]
  • Updated dependencies [d0c255c]
    • @​ai-sdk/gateway@​3.0.188

6.0.275

Patch Changes

  • Updated dependencies [57d88f5]
    • @​ai-sdk/gateway@​3.0.187

6.0.274

Patch Changes

  • 0b790f3: fix(ai): preserve approval descriptors in UI message streams

6.0.273

Patch Changes

  • 6e632b8: Expose parsed structured output in streamText end callbacks.
  • Updated dependencies [5ab6f63]
    • @​ai-sdk/gateway@​3.0.186

6.0.272

Patch Changes

  • e822a1d: Reject generateText responses that do not satisfy a required or specifically selected tool choice, and expose the normalized response content on ToolChoiceViolationError for opt-in recovery.
  • 8c51a25: fix(ai): allow tool approval secrets in ToolLoopAgent settings and prepareCall
  • Updated dependencies [cc23556]
  • Updated dependencies [823cc03]
  • Updated dependencies [3f96cf8]
    • @​ai-sdk/provider-utils@​4.0.50
    • @​ai-sdk/gateway@​3.0.185

6.0.271

Patch Changes

  • 9310140: Validate persisted typed tool calls against current input and output schemas.

... (truncated)

Commits
  • f3b5f53 Version Packages (#20183)
  • 5e43974 [v6.0] fix: prevent smoothStream from stalling streams in background tabs (#2...
  • 760ac87 [v6.0] fix: preserve provider metadata from empty smoothStream deltas without...
  • b28b731 Version Packages (#20145)
  • c4da2a1 Version Packages (#20130)
  • 0b790f3 [v6.0] fix: tool approval descriptor loss during UI message stream processing...
  • a807c01 Version Packages (#20032)
  • 6e632b8 [v6.0] fix: include parsed structured output in streamText end callbacks (#19...
  • f8367cd Version Packages (#19864)
  • 8c51a25 [v6.0] fix: ToolLoopAgent types reject supported tool approval secrets (#19942)
  • Additional commits viewable in compare view

Updates isbot from 5.1.40 to 5.2.2

Changelog

Sourced from isbot's changelog.

5.2.2

  • Pattern update: reduce size

5.2.1

  • Pattern updates

5.2.0

  • Rename all imports but keep backwards compatibility with the old names. The new names are more consistent with common Javascript naming conventions. No breaking changes.
  • Pattern updates

New Names Map

Old Name New Name
isbot isBot
isbotNaive isBotNaive
createIsbot createIsBot
createIsbotFromList createIsBotFromList
isbotMatch findBotMatch
isbotMatches findBotMatches
isbotPattern findBotPattern
isbotPatterns findBotPatterns

All old names are still available for backwards compatibility, but can be deprecated in future major versions.

5.1.44

  • Pattern updates
  • Maintenance: remove defunct services from crawlers list

5.1.43

  • Pattern updates

5.1.42

  • Pattern updates

5.1.41

  • [FIX] Browser entry: was missing from package output
  • Pattern updates
Commits

Updates react from 19.2.6 to 19.2.8

Release notes

Sourced from react's releases.

19.2.8 (July 21st, 2026)

React Server Components

19.2.7 (June 1st, 2026)

React Server Components

Changelog

Sourced from react's changelog.

19.2.7 (June 1, 2026)

React Server Components

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for react since your current version.


Updates @types/react from 19.2.15 to 19.2.18

Commits

Updates react-dom from 19.2.6 to 19.2.8

Release notes

Sourced from react-dom's releases.

19.2.8 (July 21st, 2026)

React Server Components

19.2.7 (June 1st, 2026)

React Server Components

Changelog

Sourced from react-dom's changelog.

19.2.7 (June 1, 2026)

React Server Components

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for react-dom since your current version.


Updates @types/react-dom from 19.2.3 to 19.2.7

Commits

Updates react-router from 7.18.2 to 7.18.3

Release notes

Sourced from react-router's releases.

v7.18.3

See the changelog for release notes: https://github.com/remix-run/react-router/blob/v7/CHANGELOG.md#v7183

Changelog

Sourced from react-router's changelog.

v7.18.3

Patch Changes

  • Improve route matching performance for long paths (#15423)
  • Improve validation of action request origins (#15420)
  • Add additional URL validation on client side navigations/redirects (#15446)
Commits

Updates @cloudflare/vite-plugin from 1.54.3 to 1.54.4

Release notes

Sourced from @​cloudflare/vite-plugin's releases.

@​cloudflare/vite-plugin@​1.54.4

Patch Changes

Changelog

Sourced from @​cloudflare/vite-plugin's changelog.

1.54.4

Patch Changes

Commits

Updates @react-router/dev from 7.18.2 to 7.18.3

Release notes

Sourced from @​react-router/dev's releases.

v7.18.3

See the changelog for release notes: https://github.com/remix-run/react-router/blob/v7/CHANGELOG.md#v7183

Changelog

Sourced from @​react-router/dev's changelog.

v7.18.3

Patch Changes

Commits

Updates @tailwindcss/vite from 4.3.0 to 4.3.3

Release notes

Sourced from @​tailwindcss/vite's releases.

v4.3.3

Fixed

  • Support --watch --poll[=ms] in @tailwindcss/cli when filesystem events are unreliable or unavailable (#20297)
  • Canonicalization: match arbitrary hex colors against theme colors case-insensitively (e.g. bg-[#fff] and bg-[#FFF]bg-white) (#20298)
  • Prevent Preflight from overriding Firefox's native iframe:focus-visible outline styles (#20292)
  • Ensure theme('colors.foo') in JS plugins resolves correctly when both --color-foo and --color-foo-bar exist (#20299)
  • Ensure fractional opacity modifiers work with named shadow sizes like shadow-sm/12.5, text-shadow-sm/12.5, drop-shadow-sm/12.5, and inset-shadow-sm/12.5 (#20302)
  • Parse selectors like [data-foo]div as two selectors instead of one (#20303)
  • Ensure @tailwindcss/postcss rebuilds when a preprocessor like Sass changes the input CSS without changing the input file on disk (#20310)
  • Ensure CSS nesting is handled even when Lightning CSS isn't run, such as in @tailwindcss/browser and Tailwind Play (#20124)
  • Prevent achromatic theme colors from shifting hue when mixed in polar color spaces like oklch (#20314)
  • Ensure --spacing(0) is optimized...

    Description has been truncated

Bumps the minor-and-patch group with 18 updates:

| Package | From | To |
| --- | --- | --- |
| [@cloudflare/workers-types](https://github.com/cloudflare/workerd) | `4.20260521.1` | `4.20260702.1` |
| [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) | `5.10.1` | `5.11.1` |
| [prettier](https://github.com/prettier/prettier) | `3.8.3` | `3.9.6` |
| [turbo](https://github.com/vercel/turborepo) | `2.9.14` | `2.10.12` |
| [@ai-sdk/openai](https://github.com/vercel/ai/tree/HEAD/packages/openai) | `3.0.74` | `3.0.107` |
| [ai](https://github.com/vercel/ai/tree/HEAD/packages/ai) | `6.0.208` | `6.0.276` |
| [isbot](https://github.com/omrilotan/isbot) | `5.1.40` | `5.2.2` |
| [react](https://github.com/react/react/tree/HEAD/packages/react) | `19.2.6` | `19.2.8` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.15` | `19.2.18` |
| [react-dom](https://github.com/react/react/tree/HEAD/packages/react-dom) | `19.2.6` | `19.2.8` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.2.3` | `19.2.7` |
| [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) | `7.18.2` | `7.18.3` |
| [@cloudflare/vite-plugin](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vite-plugin-cloudflare) | `1.54.3` | `1.54.4` |
| [@react-router/dev](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dev) | `7.18.2` | `7.18.3` |
| [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.3.0` | `4.3.3` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.3.0` | `4.3.3` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.16` | `8.2.2` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.128.0` | `4.129.0` |


Updates `@cloudflare/workers-types` from 4.20260521.1 to 4.20260702.1
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
- [Commits](https://github.com/cloudflare/workerd/commits)

Updates `fast-xml-parser` from 5.10.1 to 5.11.1
- [Release notes](https://github.com/NaturalIntelligence/fast-xml-parser/releases)
- [Changelog](https://github.com/NaturalIntelligence/fast-xml-parser/blob/master/CHANGELOG.md)
- [Commits](NaturalIntelligence/fast-xml-parser@v5.10.1...v5.11.1)

Updates `prettier` from 3.8.3 to 3.9.6
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.8.3...3.9.6)

Updates `turbo` from 2.9.14 to 2.10.12
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.9.14...v2.10.12)

Updates `@ai-sdk/openai` from 3.0.74 to 3.0.107
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/@ai-sdk/openai@3.0.107/packages/openai/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/commits/@ai-sdk/openai@3.0.107/packages/openai)

Updates `ai` from 6.0.208 to 6.0.276
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/ai@6.0.276/packages/ai/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/commits/ai@6.0.276/packages/ai)

Updates `isbot` from 5.1.40 to 5.2.2
- [Changelog](https://github.com/omrilotan/isbot/blob/main/CHANGELOG.md)
- [Commits](omrilotan/isbot@v5.1.40...v5.2.2)

Updates `react` from 19.2.6 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react)

Updates `@types/react` from 19.2.15 to 19.2.18
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `react-dom` from 19.2.6 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react-dom)

Updates `@types/react-dom` from 19.2.3 to 19.2.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `react-router` from 7.18.2 to 7.18.3
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/react-router@7.18.3/packages/react-router/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router@7.18.3/packages/react-router)

Updates `@cloudflare/vite-plugin` from 1.54.3 to 1.54.4
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Changelog](https://github.com/cloudflare/workers-sdk/blob/main/packages/vite-plugin-cloudflare/CHANGELOG.md)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/@cloudflare/vite-plugin@1.54.4/packages/vite-plugin-cloudflare)

Updates `@react-router/dev` from 7.18.2 to 7.18.3
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/@react-router/dev@7.18.3/packages/react-router-dev/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/@react-router/dev@7.18.3/packages/react-router-dev)

Updates `@tailwindcss/vite` from 4.3.0 to 4.3.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.3/packages/@tailwindcss-vite)

Updates `@types/react` from 19.2.15 to 19.2.18
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `@types/react-dom` from 19.2.3 to 19.2.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `tailwindcss` from 4.3.0 to 4.3.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.3/packages/tailwindcss)

Updates `vite` from 8.0.16 to 8.2.2
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.2.2/packages/vite)

Updates `wrangler` from 4.128.0 to 4.129.0
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.129.0/packages/wrangler)

---
updated-dependencies:
- dependency-name: "@cloudflare/workers-types"
  dependency-version: 4.20260702.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: fast-xml-parser
  dependency-version: 5.11.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: prettier
  dependency-version: 3.9.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: turbo
  dependency-version: 2.10.12
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@ai-sdk/openai"
  dependency-version: 3.0.107
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: ai
  dependency-version: 6.0.276
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: isbot
  dependency-version: 5.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/react"
  dependency-version: 19.2.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-dom
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-router
  dependency-version: 7.18.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@cloudflare/vite-plugin"
  dependency-version: 1.54.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@react-router/dev"
  dependency-version: 7.18.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@tailwindcss/vite"
  dependency-version: 4.3.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/react"
  dependency-version: 19.2.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: tailwindcss
  dependency-version: 4.3.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: vite
  dependency-version: 8.2.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: wrangler
  dependency-version: 4.129.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

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 Sep 7, 2026
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