Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 8, 2025

Bumps the minor-and-patch-dependencies group with 57 updates in the / directory:

Package From To
@effect/cli 0.66.4 0.69.2
@effect/platform-node 0.88.6 0.96.1
effect 3.16.11 3.17.13
release-please 17.1.1 17.1.2
@hookform/resolvers 5.1.1 5.2.1
@radix-ui/react-accordion 1.2.11 1.2.12
@radix-ui/react-alert-dialog 1.1.14 1.1.15
@radix-ui/react-checkbox 1.3.2 1.3.3
@radix-ui/react-collapsible 1.1.11 1.1.12
@radix-ui/react-context-menu 2.2.15 2.2.16
@radix-ui/react-dialog 1.1.14 1.1.15
@radix-ui/react-dropdown-menu 2.1.15 2.1.16
@radix-ui/react-hover-card 1.1.14 1.1.15
@radix-ui/react-menubar 1.1.15 1.1.16
@radix-ui/react-navigation-menu 1.2.13 1.2.14
@radix-ui/react-popover 1.1.14 1.1.15
@radix-ui/react-radio-group 1.3.7 1.3.8
@radix-ui/react-scroll-area 1.2.9 1.2.10
@radix-ui/react-select 2.2.5 2.2.6
@radix-ui/react-slider 1.3.5 1.3.6
@radix-ui/react-switch 1.2.5 1.2.6
@radix-ui/react-tabs 1.1.12 1.1.13
@radix-ui/react-toast 1.2.14 1.2.15
@radix-ui/react-toggle 1.1.9 1.1.10
@radix-ui/react-toggle-group 1.1.10 1.1.11
@radix-ui/react-tooltip 1.2.7 1.2.8
@tabler/icons-react 3.34.0 3.34.1
@tailwindcss/postcss 4.1.11 4.1.13
better-auth 1.2.12 1.3.8
geist 1.4.2 1.5.1
lucide-react 0.525.0 0.542.0
next 15.3.4 15.5.2
react 19.1.0 19.1.1
@types/react 19.1.8 19.1.12
react-day-picker 9.7.0 9.9.0
react-dom 19.1.0 19.1.1
@types/react-dom 19.1.6 19.1.9
react-hook-form 7.59.0 7.62.0
react-is 19.1.0 19.1.1
react-resizable-panels 3.0.3 3.0.5
sonner 2.0.5 2.0.7
tailwindcss 4.1.11 4.1.13
tw-animate-css 1.3.4 1.3.8
use-debounce 10.0.5 10.0.6
zustand 5.0.6 5.0.8
@next/bundle-analyzer 15.3.4 15.5.2
@opennextjs/cloudflare 1.3.1 1.8.0
@libsql/client 0.15.9 0.15.14
@biomejs/biome 2.0.6 2.2.3
@cloudflare/workers-types 4.20250702.0 4.20250906.0
alchemy 0.43.0 0.65.0
concurrently 9.2.0 9.2.1
drizzle-orm 0.44.2 0.44.5
drizzle-zod 0.7.1 0.8.3
tsx 4.20.3 4.20.5
wait-on 8.0.3 8.0.4
wrangler 4.22.0 4.34.0

Updates @effect/cli from 0.66.4 to 0.69.2

Release notes

Sourced from @​effect/cli's releases.

@​effect/cli@​0.69.2

Patch Changes

@​effect/cli@​0.69.1

Patch Changes

  • #5400 0e296f5 Thanks @​kitlangton! - cli: multiSelect supports per-choice default selection via selected: true; single select honors one default
    • Add selected?: boolean to Prompt.SelectChoice
    • Seed initial selection in Prompt.multiSelect from choices marked selected: true
    • Allow Prompt.select to honor a single selected: true choice and throw an error if multiple defaults are provided
    • Add tests covering both behaviors
Changelog

Sourced from @​effect/cli's changelog.

0.69.2

Patch Changes

0.69.1

Patch Changes

  • #5400 0e296f5 Thanks @​kitlangton! - cli: multiSelect supports per-choice default selection via selected: true; single select honors one default
    • Add selected?: boolean to Prompt.SelectChoice
    • Seed initial selection in Prompt.multiSelect from choices marked selected: true
    • Allow Prompt.select to honor a single selected: true choice and throw an error if multiple defaults are provided
    • Add tests covering both behaviors

0.69.0

Patch Changes

  • Updated dependencies [7813640]:
    • @​effect/platform@​0.90.0

0.68.0

Patch Changes

0.67.1

Patch Changes

0.67.0

Patch Changes

... (truncated)

Commits

Updates @effect/platform-node from 0.88.6 to 0.96.1

Release notes

Sourced from @​effect/platform-node's releases.

@​effect/platform-node@​0.96.1

Patch Changes

  • #5368 3b26094 Thanks @​gcanti! - ## Annotation Behavior

    When you call .annotations on a schema, any identifier annotations that were previously set will now be removed. Identifiers are now always tied to the schema's ast reference (this was the intended behavior).

    Example

    import { JSONSchema, Schema } from "effect"
    const schema = Schema.URL
    console.log(JSON.stringify(JSONSchema.make(schema), null, 2))
    /*
    {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$defs": {
    "URL": {
    "type": "string",
    "description": "a string to be decoded into a URL"
    }
    },
    "$ref": "#/$defs/URL"
    }
    */
    const annotated = Schema.URL.annotations({ description: "description" })
    console.log(JSON.stringify(JSONSchema.make(annotated), null, 2))
    /*
    {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "string",
    "description": "description"
    }
    */

    OpenAPI 3.1 Compatibility

    OpenAPI 3.1 does not allow nullable: true. Instead, the schema will now correctly use { "type": "null" } inside a union.

    Example

    import { JSONSchema, Schema } from "effect"

... (truncated)

Changelog

Sourced from @​effect/platform-node's changelog.

0.96.1

Patch Changes

  • #5368 3b26094 Thanks @​gcanti! - ## Annotation Behavior

    When you call .annotations on a schema, any identifier annotations that were previously set will now be removed. Identifiers are now always tied to the schema's ast reference (this was the intended behavior).

    Example

    import { JSONSchema, Schema } from "effect"
    const schema = Schema.URL
    console.log(JSON.stringify(JSONSchema.make(schema), null, 2))
    /*
    {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$defs": {
    "URL": {
    "type": "string",
    "description": "a string to be decoded into a URL"
    }
    },
    "$ref": "#/$defs/URL"
    }
    */
    const annotated = Schema.URL.annotations({ description: "description" })
    console.log(JSON.stringify(JSONSchema.make(annotated), null, 2))
    /*
    {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "string",
    "description": "description"
    }
    */

    OpenAPI 3.1 Compatibility

    OpenAPI 3.1 does not allow nullable: true. Instead, the schema will now correctly use { "type": "null" } inside a union.

    Example

    import { JSONSchema, Schema } from "effect"

... (truncated)

Commits

Updates effect from 3.16.11 to 3.17.13

Release notes

Sourced from effect's releases.

effect@3.17.13

Patch Changes

effect@3.17.12

Patch Changes

effect@3.17.11

Patch Changes

effect@3.17.10

Patch Changes

  • #5368 3b26094 Thanks @​gcanti! - ## Annotation Behavior

    When you call .annotations on a schema, any identifier annotations that were previously set will now be removed. Identifiers are now always tied to the schema's ast reference (this was the intended behavior).

    Example

    import { JSONSchema, Schema } from "effect"
    const schema = Schema.URL
    console.log(JSON.stringify(JSONSchema.make(schema), null, 2))
    /*
    {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$defs": {
    "URL": {
    "type": "string",
    "description": "a string to be decoded into a URL"
    }
    },
    "$ref": "#/$defs/URL"
    }
    */
    const annotated = Schema.URL.annotations({ description: "description" })
    console.log(JSON.stringify(JSONSchema.make(annotated), null, 2))
    /*
    {

... (truncated)

Changelog

Sourced from effect's changelog.

3.17.13

Patch Changes

3.17.12

Patch Changes

3.17.11

Patch Changes

3.17.10

Patch Changes

  • #5368 3b26094 Thanks @​gcanti! - ## Annotation Behavior

    When you call .annotations on a schema, any identifier annotations that were previously set will now be removed. Identifiers are now always tied to the schema's ast reference (this was the intended behavior).

    Example

    import { JSONSchema, Schema } from "effect"
    const schema = Schema.URL
    console.log(JSON.stringify(JSONSchema.make(schema), null, 2))
    /*
    {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$defs": {
    "URL": {
    "type": "string",
    "description": "a string to be decoded into a URL"
    }
    },
    "$ref": "#/$defs/URL"
    }
    */
    const annotated = Schema.URL.annotations({ description: "description" })

... (truncated)

Commits

Updates release-please from 17.1.1 to 17.1.2

Release notes

Sourced from release-please's releases.

v17.1.2

17.1.2 (2025-08-19)

Bug Fixes

Changelog

Sourced from release-please's changelog.

17.1.2 (2025-08-19)

Bug Fixes

Commits

Updates @hookform/resolvers from 5.1.1 to 5.2.1

Release notes

Sourced from @​hookform/resolvers's releases.

v5.2.1

5.2.1 (2025-07-29)

Bug Fixes

v5.2.0

5.2.0 (2025-07-25)

Features

  • ajv: add ajv-formats for ajvResolver (#797) (f040039)
Commits

Updates @radix-ui/react-accordion from 1.2.11 to 1.2.12

Commits

Updates @radix-ui/react-alert-dialog from 1.1.14 to 1.1.15

Commits

Updates @radix-ui/react-checkbox from 1.3.2 to 1.3.3

Commits

Updates @radix-ui/react-collapsible from 1.1.11 to 1.1.12

Commits

Updates @radix-ui/react-context-menu from 2.2.15 to 2.2.16

Commits

Updates @radix-ui/react-dialog from 1.1.14 to 1.1.15

Commits

Updates @radix-ui/react-dropdown-menu from 2.1.15 to 2.1.16

Commits

Updates @radix-ui/react-hover-card from 1.1.14 to 1.1.15

Commits

Updates @radix-ui/react-menubar from 1.1.15 to 1.1.16

Commits

Updates @radix-ui/react-navigation-menu from 1.2.13 to 1.2.14

Commits

Updates @radix-ui/react-popover from 1.1.14 to 1.1.15

Commits

Updates @radix-ui/react-radio-group from 1.3.7 to 1.3.8

Commits

Updates @radix-ui/react-scroll-area from 1.2.9 to 1.2.10

Commits

Updates @radix-ui/react-select from 2.2.5 to 2.2.6

Commits

Updates @radix-ui/react-slider from 1.3.5 to 1.3.6

Commits

Updates @radix-ui/react-switch from 1.2.5 to 1.2.6

Commits

Updates @radix-ui/react-tabs from 1.1.12 to 1.1.13

Commits

Updates @radix-ui/react-toast from 1.2.14 to 1.2.15

Commits

Updates @radix-ui/react-toggle from 1.1.9 to 1.1.10

Commits

Updates @radix-ui/react-toggle-group from 1.1.10 to 1.1.11

Commits

Updates @radix-ui/react-tooltip from 1.2.7 to 1.2.8

Commits

Updates @tabler/icons-react from 3.34.0 to 3.34.1

Release notes

Sourced from @​tabler/icons-react's releases.

Release 3.34.1

Improvements

  • Allow support for React 19 for React Native package
  • Add subpath imports to React Native package
  • Fix build script python errors
  • Improve icons loading in Vite development mode

1 new icon:

  • outline/brand-dropbox

Fixed icons: outline/language-off, outline/language

Commits

Updates @tailwindcss/postcss from 4.1.11 to 4.1.13

Release notes

Sourced from @​tailwindcss/postcss's releases.

v4.1.13

Changed

  • Drop warning from browser build (#18731)
  • Drop exact duplicate declarations when emitting CSS (#18809)

Fixed

  • Don't transition visibility when using transition (#18795)
  • Discard matched variants with unknown named values (#18799)
  • Discard matched variants with non-string values (#18799)
  • Show suggestions for known matchVariant values (#18798)
  • Replace deprecated clip with clip-path in sr-only (#18769)
  • Hide internal fields from completions in matchUtilities (#18820)
  • Ignore .vercel folders by default (can be overridden by @source … rules) (#18855)
  • Consider variants starting with @- to be invalid (e.g. @-2xl:flex) (#18869)
  • Do not allow custom variants to start or end with a - or _ (#18867, #18872)
  • Upgrade: Migrate aria theme keys to @custom-variant (#18815)
  • Upgrade: Migrate data theme keys to @custom-variant (#18816)
  • Upgrade: Migrate supports theme keys to @custom-variant (#18817)

v4.1.12

Fixed

  • Don't consider the global important state in @apply (#18404)
  • Add missing suggestions for flex-<number> utilities (#18642)
  • Fix trailing ) from interfering with extraction in Clojure keywords (#18345)
  • Detect classes inside Elixir charlist, word list, and string sigils (#18432)
  • Track source locations through @plugin and @config (#18345)
  • Allow boolean values of process.env.DEBUG in @tailwindcss/node (#18485)
  • Ignore consecutive semicolons in the CSS parser (#18532)
  • Center the dropdown icon added to an input with a paired datalist by default (#18511)
  • Extract candidates in Slang templates (#18565)
  • Improve error messages when encountering invalid functional utility names (#18568)
  • Discard CSS AST objects with false or undefined properties (#18571)
  • Allow users to disable URL rebasing in @tailwindcss/postcss via transformAssetUrls: false (#18321)
  • Fix false-positive migrations in addEventListener and JavaScript variable names (#18718)
  • Fix Standalone CLI showing default Bun help when run via symlink on Windows (#18723)
  • Read from --border-color-* theme keys in divide-* utilities for backwards compatibility (#18704)
  • Don't scan .hdr and .exr files for classes by default (#18734)
Changelog

Sourced from @​tailwindcss/postcss's changelog.

[4.1.13] - 2025-09-03

Changed

  • Drop warning from browser build (#18731)
  • Drop exact duplicate declarations when emitting CSS (#18809)

Fixed

  • Don't transition visibility when using transition (#18795)
  • Discard matched variants with unknown named values (#18799)
  • Discard matched variants with non-string values (#18799)
  • Show suggestions for known matchVariant values (#18798)
  • Replace deprecated clip with clip-path in sr-only (#18769)
  • Hide internal fields from completions in matchUtilities (#18820)
  • Ignore .vercel folders by default (can be overridden by @source … rules) (#18855)
  • Consider variants starting with @- to be invalid (e.g. @-2xl:flex) (#18869)
  • Do not allow custom variants to start or end with a - or _ (#18867, #18872)
  • Upgrade: Migrate aria theme keys to @custom-variant (#18815)
  • Upgrade: Migrate data theme keys to @custom-variant (#18816)
  • Upgrade: Migrate supports theme keys to @custom-variant (#18817)

[4.1.12] - 2025-08-13

Fixed

  • Don't consider the global important state in @apply (#18404)
  • Add missing suggestions for flex-<number> utilities (#18642)
  • Fix trailing ) from interfering with extraction in Clojure keywords (#18345)
  • Detect classes inside Elixir charlist, word list, and string sigils (#18432)
  • Track source locations through @plugin and @config (#18345)
  • Allow boolean values of process.env.DEBUG in @tailwindcss/node (#18485)
  • Ignore consecutive semicolons in the CSS parser (#18532)
  • Center the dropdown icon added to an input with a paired datalist by default (#18511)
  • Extract candidates in Slang templates (#18565)
  • Improve error messages when encountering invalid functional utility names (#18568)
  • Discard CSS AST objects with false or undefined properties (#18571)
  • Allow users to disable URL rebasing in @tailwindcss/postcss via transformAssetUrls: false (#18321)
  • Fix false-positive migrations in addEventListener and JavaScript variable names (#18718)
  • Fix Standalone CLI showing default Bun help when run via symlink on Windows (#18723)
  • Read from --border-color-* theme keys in divide-* utilities for backwards compatibility (#18704)
  • Don't scan .hdr and .exr files for classes by default (#18734)
Commits

Updates better-auth from 1.2.12 to 1.3.8

Release notes

Sourced from better-auth's releases.

better-auth@1.3.4

Patch Changes

  • Added listMembers API with pagination, sorting, and filtering.
  • Added membersLimit param to getFullOrganization.
  • Improved client inference for additional fields in organization schemas.
  • Fixed date handling by casting DB values to Date objects before using date methods.
  • Fixed Notion OAuth to extract user info correctly.
  • Ensured session is set in context when reading from cookie cach
Changelog

Sourced from better-auth's changelog.

better-auth

1.3.4

Patch Changes

  • 2bd2fa9: Added support for listing organization members with pagination, sorting, and filtering, and improved client inference for additional organization fields. Also fixed date handling in rate limits and tokens, improved Notion OAuth user extraction, and ensured session is always set in context.

    Organization

    • Added listMembers API with pagination, sorting, and filtering.
    • Added membersLimit param to getFullOrganization.
    • Improved client inference for additional fields in organization schemas.
    • Bug Fixes
    • Fixed date handling by casting DB values to Date objects before using date methods.
    • Fixed Notion OAuth to extract user info correctly.
    • Ensured session is set in context when reading from cookie cach
Commits
  • e173778 chore: release v1.3.8
  • 1cabe4a Merge remote-tracking branch 'upstream' into v1.3.8-staging
  • f937c85 feat(mcp): add protected-resource metadata endpoint (#4394)
  • d4bbb32 Merge branch 'canary' into v1.3.8-staging
  • efdb4ce chore: enable noFloatingPromises lint rule (#3842)
  • 8d80bcf chore: release v1.3.8-beta.11
  • 4b402d1 fix: strict social provider type (#4395)
  • 6c00bf2 feat(admin): /admin/update-user role as array (#4371)
  • b20080f chore: bump better-call (#4377)
  • 77042b4 fix: add missing defaultValue on core schema (#4374)
  • Additional commits viewable in compare view

Updates geist from 1.4.2 to 1.5.1

Release notes

Sourced from geist's releases.

1.5.1

No release notes provided.

1.5.0

Changelog

This release brings major updates to the Geist font family:

Added Italic styles to the both families Geist and Geist Mono.

Geist Italic Geist Mono Italic

Included box drawing and progress bar characters for better terminal and UI rendering

Geist Box Drawing Characters

Other enhancement and issues fixed

#52, #111, #119, #130, #136, #153, #155, #157, #162

Please test and share feedback—especially around the new Italics and terminal characters!

1.5.0-alpha

Changelog

This alpha release brings major updates to the Geist font family:

⚠️ This is an alpha release because Mono Italics are not yet included. Final 1.5 release will follow once they're ready.

Added Italic styles to the non-mono fonts

Geist Italic

Included box drawing and progress bar characters for better terminal and UI rendering

Geist Box Drawing Characters

Other enhancement and issues fixed

#111, #119, #130, #136, #153, #155, #157, #162

Please test and share feedback—especially around the new Italics and terminal characters!

Commits

Updates lucide-react from 0.525.0 to 0.542.0

Release notes

Sourced from lucide-react's releases.

Version 0.542.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.541.0...0.542.0

Version 0.541.0

What's Changed

…ctory with 58 updates

Bumps the minor-and-patch-dependencies group with 57 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@effect/cli](https://github.com/Effect-TS/effect/tree/HEAD/packages/cli) | `0.66.4` | `0.69.2` |
| [@effect/platform-node](https://github.com/Effect-TS/effect/tree/HEAD/packages/platform-node) | `0.88.6` | `0.96.1` |
| [effect](https://github.com/Effect-TS/effect/tree/HEAD/packages/effect) | `3.16.11` | `3.17.13` |
| [release-please](https://github.com/googleapis/release-please) | `17.1.1` | `17.1.2` |
| [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.1` |
| [@radix-ui/react-accordion](https://github.com/radix-ui/primitives) | `1.2.11` | `1.2.12` |
| [@radix-ui/react-alert-dialog](https://github.com/radix-ui/primitives) | `1.1.14` | `1.1.15` |
| [@radix-ui/react-checkbox](https://github.com/radix-ui/primitives) | `1.3.2` | `1.3.3` |
| [@radix-ui/react-collapsible](https://github.com/radix-ui/primitives) | `1.1.11` | `1.1.12` |
| [@radix-ui/react-context-menu](https://github.com/radix-ui/primitives) | `2.2.15` | `2.2.16` |
| [@radix-ui/react-dialog](https://github.com/radix-ui/primitives) | `1.1.14` | `1.1.15` |
| [@radix-ui/react-dropdown-menu](https://github.com/radix-ui/primitives) | `2.1.15` | `2.1.16` |
| [@radix-ui/react-hover-card](https://github.com/radix-ui/primitives) | `1.1.14` | `1.1.15` |
| [@radix-ui/react-menubar](https://github.com/radix-ui/primitives) | `1.1.15` | `1.1.16` |
| [@radix-ui/react-navigation-menu](https://github.com/radix-ui/primitives) | `1.2.13` | `1.2.14` |
| [@radix-ui/react-popover](https://github.com/radix-ui/primitives) | `1.1.14` | `1.1.15` |
| [@radix-ui/react-radio-group](https://github.com/radix-ui/primitives) | `1.3.7` | `1.3.8` |
| [@radix-ui/react-scroll-area](https://github.com/radix-ui/primitives) | `1.2.9` | `1.2.10` |
| [@radix-ui/react-select](https://github.com/radix-ui/primitives) | `2.2.5` | `2.2.6` |
| [@radix-ui/react-slider](https://github.com/radix-ui/primitives) | `1.3.5` | `1.3.6` |
| [@radix-ui/react-switch](https://github.com/radix-ui/primitives) | `1.2.5` | `1.2.6` |
| [@radix-ui/react-tabs](https://github.com/radix-ui/primitives) | `1.1.12` | `1.1.13` |
| [@radix-ui/react-toast](https://github.com/radix-ui/primitives) | `1.2.14` | `1.2.15` |
| [@radix-ui/react-toggle](https://github.com/radix-ui/primitives) | `1.1.9` | `1.1.10` |
| [@radix-ui/react-toggle-group](https://github.com/radix-ui/primitives) | `1.1.10` | `1.1.11` |
| [@radix-ui/react-tooltip](https://github.com/radix-ui/primitives) | `1.2.7` | `1.2.8` |
| [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) | `3.34.0` | `3.34.1` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.1.11` | `4.1.13` |
| [better-auth](https://github.com/better-auth/better-auth/tree/HEAD/packages/better-auth) | `1.2.12` | `1.3.8` |
| [geist](https://github.com/vercel/geist-font/tree/HEAD/packages/next) | `1.4.2` | `1.5.1` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.525.0` | `0.542.0` |
| [next](https://github.com/vercel/next.js) | `15.3.4` | `15.5.2` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.1.0` | `19.1.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.1.12` |
| [react-day-picker](https://github.com/gpbl/react-day-picker) | `9.7.0` | `9.9.0` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.1.1` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.1.9` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.59.0` | `7.62.0` |
| [react-is](https://github.com/facebook/react/tree/HEAD/packages/react-is) | `19.1.0` | `19.1.1` |
| [react-resizable-panels](https://github.com/bvaughn/react-resizable-panels) | `3.0.3` | `3.0.5` |
| [sonner](https://github.com/emilkowalski/sonner) | `2.0.5` | `2.0.7` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.1.11` | `4.1.13` |
| [tw-animate-css](https://github.com/Wombosvideo/tw-animate-css) | `1.3.4` | `1.3.8` |
| [use-debounce](https://github.com/xnimorz/use-debounce) | `10.0.5` | `10.0.6` |
| [zustand](https://github.com/pmndrs/zustand) | `5.0.6` | `5.0.8` |
| [@next/bundle-analyzer](https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer) | `15.3.4` | `15.5.2` |
| [@opennextjs/cloudflare](https://github.com/opennextjs/opennextjs-cloudflare/tree/HEAD/packages/cloudflare) | `1.3.1` | `1.8.0` |
| [@libsql/client](https://github.com/libsql/libsql-client-ts/tree/HEAD/packages/libsql-client) | `0.15.9` | `0.15.14` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.0.6` | `2.2.3` |
| [@cloudflare/workers-types](https://github.com/cloudflare/workerd) | `4.20250702.0` | `4.20250906.0` |
| [alchemy](https://github.com/sam-goodwin/alchemy/tree/HEAD/alchemy) | `0.43.0` | `0.65.0` |
| [concurrently](https://github.com/open-cli-tools/concurrently) | `9.2.0` | `9.2.1` |
| [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) | `0.44.2` | `0.44.5` |
| [drizzle-zod](https://github.com/drizzle-team/drizzle-orm) | `0.7.1` | `0.8.3` |
| [tsx](https://github.com/privatenumber/tsx) | `4.20.3` | `4.20.5` |
| [wait-on](https://github.com/jeffbski/wait-on) | `8.0.3` | `8.0.4` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.22.0` | `4.34.0` |



Updates `@effect/cli` from 0.66.4 to 0.69.2
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/cli@0.69.2/packages/cli)

Updates `@effect/platform-node` from 0.88.6 to 0.96.1
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/platform-node/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/platform-node@0.96.1/packages/platform-node)

Updates `effect` from 3.16.11 to 3.17.13
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/effect/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/effect@3.17.13/packages/effect)

Updates `release-please` from 17.1.1 to 17.1.2
- [Release notes](https://github.com/googleapis/release-please/releases)
- [Changelog](https://github.com/googleapis/release-please/blob/main/CHANGELOG.md)
- [Commits](googleapis/release-please@v17.1.1...v17.1.2)

Updates `@hookform/resolvers` from 5.1.1 to 5.2.1
- [Release notes](https://github.com/react-hook-form/resolvers/releases)
- [Commits](react-hook-form/resolvers@v5.1.1...v5.2.1)

Updates `@radix-ui/react-accordion` from 1.2.11 to 1.2.12
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-alert-dialog` from 1.1.14 to 1.1.15
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-checkbox` from 1.3.2 to 1.3.3
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-collapsible` from 1.1.11 to 1.1.12
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-context-menu` from 2.2.15 to 2.2.16
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-dialog` from 1.1.14 to 1.1.15
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-dropdown-menu` from 2.1.15 to 2.1.16
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-hover-card` from 1.1.14 to 1.1.15
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-menubar` from 1.1.15 to 1.1.16
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-navigation-menu` from 1.2.13 to 1.2.14
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-popover` from 1.1.14 to 1.1.15
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-radio-group` from 1.3.7 to 1.3.8
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-scroll-area` from 1.2.9 to 1.2.10
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-select` from 2.2.5 to 2.2.6
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-slider` from 1.3.5 to 1.3.6
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-switch` from 1.2.5 to 1.2.6
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-tabs` from 1.1.12 to 1.1.13
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-toast` from 1.2.14 to 1.2.15
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-toggle` from 1.1.9 to 1.1.10
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-toggle-group` from 1.1.10 to 1.1.11
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-tooltip` from 1.2.7 to 1.2.8
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@tabler/icons-react` from 3.34.0 to 3.34.1
- [Release notes](https://github.com/tabler/tabler-icons/releases)
- [Commits](https://github.com/tabler/tabler-icons/commits/v3.34.1/packages/icons-react)

Updates `@tailwindcss/postcss` from 4.1.11 to 4.1.13
- [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.1.13/packages/@tailwindcss-postcss)

Updates `better-auth` from 1.2.12 to 1.3.8
- [Release notes](https://github.com/better-auth/better-auth/releases)
- [Changelog](https://github.com/better-auth/better-auth/blob/canary/packages/better-auth/CHANGELOG.md)
- [Commits](https://github.com/better-auth/better-auth/commits/v1.3.8/packages/better-auth)

Updates `geist` from 1.4.2 to 1.5.1
- [Release notes](https://github.com/vercel/geist-font/releases)
- [Commits](https://github.com/vercel/geist-font/commits/1.5.1/packages/next)

Updates `lucide-react` from 0.525.0 to 0.542.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/0.542.0/packages/lucide-react)

Updates `next` from 15.3.4 to 15.5.2
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v15.3.4...v15.5.2)

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

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

Updates `react-day-picker` from 9.7.0 to 9.9.0
- [Release notes](https://github.com/gpbl/react-day-picker/releases)
- [Changelog](https://github.com/gpbl/react-day-picker/blob/main/CHANGELOG.md)
- [Commits](gpbl/react-day-picker@v9.7.0...v9.9.0)

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

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

Updates `react-hook-form` from 7.59.0 to 7.62.0
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.59.0...v7.62.0)

Updates `react-is` from 19.1.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react-is)

Updates `react-resizable-panels` from 3.0.3 to 3.0.5
- [Release notes](https://github.com/bvaughn/react-resizable-panels/releases)
- [Commits](bvaughn/react-resizable-panels@3.0.3...3.0.5)

Updates `sonner` from 2.0.5 to 2.0.7
- [Release notes](https://github.com/emilkowalski/sonner/releases)
- [Commits](emilkowalski/sonner@v2.0.5...v2.0.7)

Updates `tailwindcss` from 4.1.11 to 4.1.13
- [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.1.13/packages/tailwindcss)

Updates `tw-animate-css` from 1.3.4 to 1.3.8
- [Release notes](https://github.com/Wombosvideo/tw-animate-css/releases)
- [Commits](Wombosvideo/tw-animate-css@v1.3.4...v1.3.8)

Updates `use-debounce` from 10.0.5 to 10.0.6
- [Release notes](https://github.com/xnimorz/use-debounce/releases)
- [Changelog](https://github.com/xnimorz/use-debounce/blob/master/CHANGELOG.md)
- [Commits](xnimorz/use-debounce@10.0.5...10.0.6)

Updates `zustand` from 5.0.6 to 5.0.8
- [Release notes](https://github.com/pmndrs/zustand/releases)
- [Commits](pmndrs/zustand@v5.0.6...v5.0.8)

Updates `@next/bundle-analyzer` from 15.3.4 to 15.5.2
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.5.2/packages/next-bundle-analyzer)

Updates `@opennextjs/cloudflare` from 1.3.1 to 1.8.0
- [Release notes](https://github.com/opennextjs/opennextjs-cloudflare/releases)
- [Changelog](https://github.com/opennextjs/opennextjs-cloudflare/blob/main/packages/cloudflare/CHANGELOG.md)
- [Commits](https://github.com/opennextjs/opennextjs-cloudflare/commits/@opennextjs/cloudflare@1.8.0/packages/cloudflare)

Updates `@libsql/client` from 0.15.9 to 0.15.14
- [Release notes](https://github.com/libsql/libsql-client-ts/releases)
- [Changelog](https://github.com/tursodatabase/libsql-client-ts/blob/main/CHANGELOG.md)
- [Commits](https://github.com/libsql/libsql-client-ts/commits/v0.15.14/packages/libsql-client)

Updates `@biomejs/biome` from 2.0.6 to 2.2.3
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.2.3/packages/@biomejs/biome)

Updates `@cloudflare/workers-types` from 4.20250702.0 to 4.20250906.0
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/Dockerfile.release)
- [Commits](https://github.com/cloudflare/workerd/commits)

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

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

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

Updates `alchemy` from 0.43.0 to 0.65.0
- [Release notes](https://github.com/sam-goodwin/alchemy/releases)
- [Changelog](https://github.com/sam-goodwin/alchemy/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sam-goodwin/alchemy/commits/v0.65.0/alchemy)

Updates `concurrently` from 9.2.0 to 9.2.1
- [Release notes](https://github.com/open-cli-tools/concurrently/releases)
- [Commits](open-cli-tools/concurrently@v9.2.0...v9.2.1)

Updates `drizzle-orm` from 0.44.2 to 0.44.5
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](drizzle-team/drizzle-orm@0.44.2...0.44.5)

Updates `drizzle-zod` from 0.7.1 to 0.8.3
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](https://github.com/drizzle-team/drizzle-orm/commits)

Updates `tsx` from 4.20.3 to 4.20.5
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.20.3...v4.20.5)

Updates `wait-on` from 8.0.3 to 8.0.4
- [Release notes](https://github.com/jeffbski/wait-on/releases)
- [Commits](jeffbski/wait-on@v8.0.3...v8.0.4)

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

---
updated-dependencies:
- dependency-name: "@effect/cli"
  dependency-version: 0.69.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@effect/platform-node"
  dependency-version: 0.96.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
- dependency-name: effect
  dependency-version: 3.17.13
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
- dependency-name: release-please
  dependency-version: 17.1.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@hookform/resolvers"
  dependency-version: 5.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-accordion"
  dependency-version: 1.2.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-alert-dialog"
  dependency-version: 1.1.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-checkbox"
  dependency-version: 1.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-collapsible"
  dependency-version: 1.1.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-context-menu"
  dependency-version: 2.2.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-dialog"
  dependency-version: 1.1.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-dropdown-menu"
  dependency-version: 2.1.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-hover-card"
  dependency-version: 1.1.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-menubar"
  dependency-version: 1.1.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-navigation-menu"
  dependency-version: 1.2.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-popover"
  dependency-version: 1.1.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-radio-group"
  dependency-version: 1.3.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-scroll-area"
  dependency-version: 1.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-select"
  dependency-version: 2.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-slider"
  dependency-version: 1.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-switch"
  dependency-version: 1.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-tabs"
  dependency-version: 1.1.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-toast"
  dependency-version: 1.2.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-toggle"
  dependency-version: 1.1.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-toggle-group"
  dependency-version: 1.1.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@radix-ui/react-tooltip"
  dependency-version: 1.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@tabler/icons-react"
  dependency-version: 3.34.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.1.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: better-auth
  dependency-version: 1.3.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
- dependency-name: geist
  dependency-version: 1.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
- dependency-name: lucide-react
  dependency-version: 0.542.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
- dependency-name: next
  dependency-version: 15.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
- dependency-name: react
  dependency-version: 19.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@types/react"
  dependency-version: 19.1.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: react-day-picker
  dependency-version: 9.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
- dependency-name: react-dom
  dependency-version: 19.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@types/react-dom"
  dependency-version: 19.1.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: react-hook-form
  dependency-version: 7.62.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
- dependency-name: react-is
  dependency-version: 19.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: react-resizable-panels
  dependency-version: 3.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: sonner
  dependency-version: 2.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: tailwindcss
  dependency-version: 4.1.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: tw-animate-css
  dependency-version: 1.3.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: use-debounce
  dependency-version: 10.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: zustand
  dependency-version: 5.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@next/bundle-analyzer"
  dependency-version: 15.5.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@opennextjs/cloudflare"
  dependency-version: 1.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@libsql/client"
  dependency-version: 0.15.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@biomejs/biome"
  dependency-version: 2.2.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@cloudflare/workers-types"
  dependency-version: 4.20250906.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@types/node"
  dependency-version: 18.19.124
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@types/react-dom"
  dependency-version: 19.1.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@types/react"
  dependency-version: 19.1.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: alchemy
  dependency-version: 0.65.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
- dependency-name: concurrently
  dependency-version: 9.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: drizzle-orm
  dependency-version: 0.44.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: drizzle-zod
  dependency-version: 0.8.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
- dependency-name: tsx
  dependency-version: 4.20.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: wait-on
  dependency-version: 8.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: wrangler
  dependency-version: 4.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
...

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 8, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

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