Skip to content

chore(deps): bump the production-dependencies group across 1 directory with 13 updates#35

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-d7d7039ad0
Open

chore(deps): bump the production-dependencies group across 1 directory with 13 updates#35
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-d7d7039ad0

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the production-dependencies group with 13 updates in the / directory:

Package From To
@better-auth/stripe 1.4.18 1.6.9
@tanstack/db 0.5.25 0.6.5
@tanstack/electric-db-collection 0.2.31 0.3.3
@tanstack/react-db 0.1.69 0.1.83
better-auth 1.4.18 1.6.9
better-sqlite3 12.6.2 12.9.0
drizzle-orm 0.45.1 0.45.2
lucide-react 0.563.0 1.14.0
os-locale 6.0.2 8.0.0
posthog-js 1.339.1 1.372.5
react 19.2.4 19.2.5
react-dom 19.2.4 19.2.5
uuid 13.0.1 14.0.0

Updates @better-auth/stripe from 1.4.18 to 1.6.9

Release notes

Sourced from @​better-auth/stripe's releases.

v1.6.9

better-auth

Bug Fixes

  • Fixed instrumentation resolution in the adapter factory so edge and browser environments correctly use the pure variant (#9340)

For detailed changes, see CHANGELOG

Contributors

Thanks to everyone who contributed to this release:

@​erquhart

Full changelog: v1.6.8...v1.6.9

v1.6.8

better-auth

Bug Fixes

  • Fixed mapProfileToUser fallback for OAuth providers that may omit email from their profile response (#9331)
  • Fixed support for passing id through beforeCreateTeam and beforeCreateInvitation hooks (#9253)

For detailed changes, see CHANGELOG

@better-auth/oauth-provider

Bug Fixes

  • Fixed authorization flows that do not include a state parameter (#9328)

For detailed changes, see CHANGELOG

@better-auth/passkey

Bug Fixes

  • Fixed incompatibility with TypeScript's exactOptionalPropertyTypes compiler option (#9270)

For detailed changes, see CHANGELOG

Contributors

Thanks to everyone who contributed to this release:

@​baptisteArno, @​gustavovalverde, @​ping-maxwell

Full changelog: v1.6.7...v1.6.8

... (truncated)

Changelog

Sourced from @​better-auth/stripe's changelog.

1.6.9

Patch Changes

  • Updated dependencies [815ecf6]:
    • @​better-auth/core@​1.6.9
    • better-auth@1.6.9

1.6.8

Patch Changes

1.6.7

Patch Changes

1.6.6

Patch Changes

1.6.5

Patch Changes

1.6.4

Patch Changes

1.6.3

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​better-auth/stripe since your current version.


Updates @tanstack/db from 0.5.25 to 0.6.5

Release notes

Sourced from @​tanstack/db's releases.

@​tanstack/db@​0.6.5

Patch Changes

  • fix: pass child where clauses to loadSubset in includes (#1471)

    Pure-child WHERE clauses on includes subqueries (e.g., .where(({ item }) => eq(item.status, 'active'))) are now passed through to the child collection's loadSubset/queryFn, enabling server-side filtering. Previously only the correlation filter reached the sync layer; additional child filters were applied client-side only.

  • fix: lazy load includes child collections in on-demand sync mode (#1471)

    Includes child collections now use the same lazy loading mechanism as regular joins. When a query uses includes with a correlation WHERE clause (e.g., .where(({ item }) => eq(item.rootId, r.id))), only matching child rows are loaded on-demand via requestSnapshot({ where: inArray(field, keys) }) instead of loading all data upfront. This ensures the sync layer's queryFn receives the correlation filter in loadSubsetOptions, enabling efficient server-side filtering.

@​tanstack/db@​0.6.4

Patch Changes

  • Add includes (hierarchical data) documentation to all framework SKILL.md files and fix inaccurate toArray scalar select constraint in db-core/live-queries skill. (#1361)

@​tanstack/db@​0.6.3

Patch Changes

  • Fix nested toArray() includes not propagating changes at depth 3+. When a query used nested includes like toArray(runs) → toArray(texts) → concat(toArray(textDeltas)), changes to the deepest level (e.g., inserting a textDelta) were silently lost because flushIncludesState only drained one level of nested buffers. Also throw a clear error when toArray() or concat(toArray()) is used inside expressions like coalesce(), instead of silently producing incorrect results. (#1457)

  • fix: orderBy + limit queries crash when no index exists (#1437)

    When auto-indexing is disabled (the default), queries with orderBy and limit where the limit exceeds the available data would crash with "Ordered snapshot was requested but no index was found". The on-demand loader now correctly skips cursor-based loading when no index is available.

@​tanstack/db@​0.6.2

Patch Changes

  • Deduplicate and filter null join keys in lazy join subset queries. Previously, when multiple rows referenced the same foreign key or had null foreign keys, the full unfiltered array was passed to inArray(), producing bloated ANY() SQL params with repeated IDs and NULLs. (#1448)

  • fix: default getKey on live query collections fails when used as a source in chained collections (#1432)

    The default WeakMap-based getKey breaks when enriched change values (with virtual props like $synced, $origin, $key) are passed through chained live query collections. The enriched objects are new references not found in the WeakMap, causing all items to resolve to key undefined and collapse into a single item. Falls back to item.$key when the WeakMap lookup misses.

@​tanstack/db@​0.6.1

Patch Changes

  • Update all SKILL.md files to v0.6.0 with new documentation for persistence, virtual properties, queryOnce, createEffect, includes, indexing, and sync metadata. Add tanstack-intent keyword to all packages with skills. (#1421)
Changelog

Sourced from @​tanstack/db's changelog.

0.6.5

Patch Changes

  • fix: pass child where clauses to loadSubset in includes (#1471)

    Pure-child WHERE clauses on includes subqueries (e.g., .where(({ item }) => eq(item.status, 'active'))) are now passed through to the child collection's loadSubset/queryFn, enabling server-side filtering. Previously only the correlation filter reached the sync layer; additional child filters were applied client-side only.

  • fix: lazy load includes child collections in on-demand sync mode (#1471)

    Includes child collections now use the same lazy loading mechanism as regular joins. When a query uses includes with a correlation WHERE clause (e.g., .where(({ item }) => eq(item.rootId, r.id))), only matching child rows are loaded on-demand via requestSnapshot({ where: inArray(field, keys) }) instead of loading all data upfront. This ensures the sync layer's queryFn receives the correlation filter in loadSubsetOptions, enabling efficient server-side filtering.

0.6.4

Patch Changes

  • Add includes (hierarchical data) documentation to all framework SKILL.md files and fix inaccurate toArray scalar select constraint in db-core/live-queries skill. (#1361)

0.6.3

Patch Changes

  • Fix nested toArray() includes not propagating changes at depth 3+. When a query used nested includes like toArray(runs) → toArray(texts) → concat(toArray(textDeltas)), changes to the deepest level (e.g., inserting a textDelta) were silently lost because flushIncludesState only drained one level of nested buffers. Also throw a clear error when toArray() or concat(toArray()) is used inside expressions like coalesce(), instead of silently producing incorrect results. (#1457)

  • fix: orderBy + limit queries crash when no index exists (#1437)

    When auto-indexing is disabled (the default), queries with orderBy and limit where the limit exceeds the available data would crash with "Ordered snapshot was requested but no index was found". The on-demand loader now correctly skips cursor-based loading when no index is available.

0.6.2

Patch Changes

  • Deduplicate and filter null join keys in lazy join subset queries. Previously, when multiple rows referenced the same foreign key or had null foreign keys, the full unfiltered array was passed to inArray(), producing bloated ANY() SQL params with repeated IDs and NULLs. (#1448)

  • fix: default getKey on live query collections fails when used as a source in chained collections (#1432)

    The default WeakMap-based getKey breaks when enriched change values (with virtual props like $synced, $origin, $key) are passed through chained live query collections. The enriched objects are new references not found in the WeakMap, causing all items to resolve to key undefined and collapse into a single item. Falls back to item.$key when the WeakMap lookup misses.

0.6.1

Patch Changes

  • Update all SKILL.md files to v0.6.0 with new documentation for persistence, virtual properties, queryOnce, createEffect, includes, indexing, and sync metadata. Add tanstack-intent keyword to all packages with skills. (#1421)

0.6.0

Minor Changes

  • Make indexing explicit with two index types for different use cases (#1353)

... (truncated)

Commits
  • 29cf7ce ci: Version Packages (#1475)
  • 232f228 fix: lazy load includes child collections in on-demand sync mode (#1471)
  • 7ea2020 ci: Version Packages (#1462)
  • 1e69dd6 Docs for includes (#1361)
  • c336aae ci: Version Packages (#1459)
  • e29aab3 fix(db): propagate changes through nested toArray includes at depth 3+ (#1457)
  • f4a9bd2 fix: skip on-demand loading when no index exists for orderBy + limit queries ...
  • e8e029e ci: Version Packages (#1433)
  • 3fe689a fix: deduplicate and filter null join keys in lazy join subset queries (#1448)
  • c314c36 fix: default getKey on live query collections fails on enriched objects (#1432)
  • Additional commits viewable in compare view

Updates @tanstack/electric-db-collection from 0.2.31 to 0.3.3

Release notes

Sourced from @​tanstack/electric-db-collection's releases.

@​tanstack/electric-db-collection@​0.3.3

Patch Changes

@​tanstack/electric-db-collection@​0.3.2

Patch Changes

@​tanstack/electric-db-collection@​0.3.1

Patch Changes

@​tanstack/electric-db-collection@​0.3.0

Minor Changes

  • feat: add DNF/active_conditions support for arbitrary boolean WHERE clauses (#1270)

    electric-sql/electric#3791/ delimiter with empty segments for non-participating positions. Shapes with subquery dependencies send active_conditions headers and use DNF evaluation for row visibility. Simple shapes without subqueries retain existing empty-tag-set deletion behavior.

Patch Changes

@​tanstack/electric-db-collection@​0.2.43

Patch Changes

Changelog

Sourced from @​tanstack/electric-db-collection's changelog.

0.3.3

Patch Changes

0.3.2

Patch Changes

0.3.1

Patch Changes

0.3.0

Minor Changes

  • feat: add DNF/active_conditions support for arbitrary boolean WHERE clauses (#1270)

    electric-sql/electric#3791/ delimiter with empty segments for non-participating positions. Shapes with subquery dependencies send active_conditions headers and use DNF evaluation for row visibility. Simple shapes without subqueries retain existing empty-tag-set deletion behavior.

Patch Changes

0.2.43

Patch Changes

0.2.42

Patch Changes

  • fix(persistence): harden persisted startup, truncate metadata semantics, and resume identity matching (#1380)
    • Restore persisted wrapper markReady fallback behavior so startup failures do not leave collections stuck in loading state
    • Replace load cancellation reference identity tracking with deterministic load keys for loadSubset / unloadSubset
    • Document intentional truncate behavior where collection-scoped metadata writes are preserved across truncate transactions
    • Tighten SQLite applied_tx migration handling to only ignore duplicate-column add errors

... (truncated)

Commits

Updates @tanstack/react-db from 0.1.69 to 0.1.83

Release notes

Sourced from @​tanstack/react-db's releases.

@​tanstack/react-db@​0.1.83

Patch Changes

@​tanstack/react-db@​0.1.82

Patch Changes

  • Add includes (hierarchical data) documentation to all framework SKILL.md files and fix inaccurate toArray scalar select constraint in db-core/live-queries skill. (#1361)

  • Updated dependencies [1e69dd6]:

    • @​tanstack/db@​0.6.4

@​tanstack/react-db@​0.1.81

Patch Changes

@​tanstack/react-db@​0.1.80

Patch Changes

  • Fix stale status mismatch in useLiveSuspenseQuery causing infinite suspense fallback. (#1427)

  • Updated dependencies [3fe689a, c314c36]:

    • @​tanstack/db@​0.6.2

@​tanstack/react-db@​0.1.79

Patch Changes

  • Update all SKILL.md files to v0.6.0 with new documentation for persistence, virtual properties, queryOnce, createEffect, includes, indexing, and sync metadata. Add tanstack-intent keyword to all packages with skills. (#1421)

  • Updated dependencies [8b7fb1a]:

    • @​tanstack/db@​0.6.1
Changelog

Sourced from @​tanstack/react-db's changelog.

0.1.83

Patch Changes

0.1.82

Patch Changes

  • Add includes (hierarchical data) documentation to all framework SKILL.md files and fix inaccurate toArray scalar select constraint in db-core/live-queries skill. (#1361)

  • Updated dependencies [1e69dd6]:

    • @​tanstack/db@​0.6.4

0.1.81

Patch Changes

0.1.80

Patch Changes

  • Fix stale status mismatch in useLiveSuspenseQuery causing infinite suspense fallback. (#1427)

  • Updated dependencies [3fe689a, c314c36]:

    • @​tanstack/db@​0.6.2

0.1.79

Patch Changes

  • Update all SKILL.md files to v0.6.0 with new documentation for persistence, virtual properties, queryOnce, createEffect, includes, indexing, and sync metadata. Add tanstack-intent keyword to all packages with skills. (#1421)

  • Updated dependencies [8b7fb1a]:

    • @​tanstack/db@​0.6.1

0.1.78

Patch Changes

... (truncated)

Commits

Updates better-auth from 1.4.18 to 1.6.9

Release notes

Sourced from better-auth's releases.

v1.6.9

better-auth

Bug Fixes

  • Fixed instrumentation resolution in the adapter factory so edge and browser environments correctly use the pure variant (#9340)

For detailed changes, see CHANGELOG

Contributors

Thanks to everyone who contributed to this release:

@​erquhart

Full changelog: v1.6.8...v1.6.9

v1.6.8

better-auth

Bug Fixes

  • Fixed mapProfileToUser fallback for OAuth providers that may omit email from their profile response (#9331)
  • Fixed support for passing id through beforeCreateTeam and beforeCreateInvitation hooks (#9253)

For detailed changes, see CHANGELOG

@better-auth/oauth-provider

Bug Fixes

  • Fixed authorization flows that do not include a state parameter (#9328)

For detailed changes, see CHANGELOG

@better-auth/passkey

Bug Fixes

  • Fixed incompatibility with TypeScript's exactOptionalPropertyTypes compiler option (#9270)

For detailed changes, see CHANGELOG

Contributors

Thanks to everyone who contributed to this release:

@​baptisteArno, @​gustavovalverde, @​ping-maxwell

Full changelog: v1.6.7...v1.6.8

... (truncated)

Changelog

Sourced from better-auth's changelog.

1.6.9

Patch Changes

  • Updated dependencies [815ecf6]:
    • @​better-auth/core@​1.6.9
    • @​better-auth/drizzle-adapter@​1.6.9
    • @​better-auth/kysely-adapter@​1.6.9
    • @​better-auth/memory-adapter@​1.6.9
    • @​better-auth/mongo-adapter@​1.6.9
    • @​better-auth/prisma-adapter@​1.6.9
    • @​better-auth/telemetry@​1.6.9

1.6.8

Patch Changes

  • #9253 856ab24 Thanks @​baptisteArno! - fix(organization): allow passing id through beforeCreateTeam and beforeCreateInvitation

    Mirrors #4765 for teams and invitations: adapter.createTeam and adapter.createInvitation now pass forceAllowId: true, so ids returned from the respective hooks survive the DB insert.

  • #9331 9aa8e63 Thanks @​gustavovalverde! - fix(oauth): support mapProfileToUser fallback for providers that may omit email

    Social sign-in with OAuth providers that may return no email address (Discord phone-only accounts, Apple subsequent sign-ins, GitHub private emails, Facebook, LinkedIn, and Microsoft Entra ID managed users) can now be unblocked by synthesizing an email inside mapProfileToUser. Rejection logger messages now point at this workaround and at the new "Handling Providers Without Email" docs section.

    Provider profile types now reflect where email can be null or absent:

    • DiscordProfile.email is string | null and optional (absent when the email scope is not granted)
    • AppleProfile.email is optional
    • GithubProfile.email is string | null
    • FacebookProfile.email is optional
    • FacebookProfile.email_verified is optional (Meta's Graph API does not include this field)
    • LinkedInProfile.email is optional
    • LinkedInProfile.email_verified is optional
    • MicrosoftEntraIDProfile.email is optional

    TypeScript consumers who previously dereferenced profile.email directly inside mapProfileToUser will see a compile error that matches the runtime reality; use a nullish-coalescing fallback (profile.email ?? ...) or null-check the field.

    Sign-in still rejects with error=email_not_found (social callback) or error=email_is_missing (Generic OAuth plugin) when neither the provider nor mapProfileToUser produces an email. First-class support for users without an email, keyed on (providerId, accountId) per OpenID Connect Core §5.7, is tracked in #9124.

  • Updated dependencies [9aa8e63]:

    • @​better-auth/core@​1.6.8
    • @​better-auth/drizzle-adapter@​1.6.8
    • @​better-auth/kysely-adapter@​1.6.8
    • @​better-auth/memory-adapter@​1.6.8
    • @​better-auth/mongo-adapter@​1.6.8
    • @​better-auth/prisma-adapter@​1.6.8
    • @​better-auth/telemetry@​1.6.8

1.6.7

... (truncated)

Commits
  • f484269 chore: release v1.6.9 (#9341)
  • fef7dd6 chore: update readme (#9330)
  • b289ac6 chore: release v1.6.8 (#9316)
  • 9aa8e63 fix(oauth): support mapProfileToUser fallback for providers that may omit e...
  • 856ab24 fix(organization): allow passing id through beforeCreateTeam and `beforeCre...
  • f8076d1 chore: release v1.6.7 (#9289)
  • 4f373ee feat(social-providers): accept array of Client IDs for ID token audience (#9292)
  • e1b1cfc fix(oauth2): guard against undefined body when parsing state (#9293)
  • d053a45 fix(phone-number): call callbackOnVerification when updatePhoneNumber is enab...
  • 307196a fix(api): preserve response headers when APIError is thrown (#9211)
  • Additional commits viewable in compare view
Maintainer changes

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


Updates better-sqlite3 from 12.6.2 to 12.9.0

Release notes

Sourced from better-sqlite3's releases.

v12.9.0

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.8.0...v12.9.0

v12.8.0

What's Changed

New Contributors

Why SQLite v3.51.3 instead of v3.52.0

From the SQLite team:

Some important issues have been found with version 3.52.0. In order to give us time to deal with those issues, we plan to withdraw the 3.52.0 release. In its place, we will put up a new 3.51.3 patch release that includes a fix for the recently discovered WAL-reset bug as well as other patches. This will happen probably within about the next twelve hours.

Hence, if you were planning to upgrade to 3.52.0 tomorrow (Friday, 2026-03-14), perhaps it would be better to wait a day or so for 3.51.3.

At some point we will do version 3.52.1 which will hopefully resolve the issues that have arisen with the 3.52.0 release.

Full Changelog: WiseLibs/better-sqlite3@v12.7.1...v12.8.0

v12.7.1

Also not a viable release

The V8 API change was more bonkers than expected. See v12.8.0.

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.7.0...v12.7.1

v12.7.0

CAUTION: NOT A VIABLE RELEASE

Two (!!) reasons:

  1. Electron v41 bit us and removed functions we were using, so a bunch of prebuilds are missing
  2. From the SQLite team:

    Some important issues have been found with version 3.52.0. In order to give us time to deal with those issues, we plan to withdraw the 3.52.0 release. In its place, we will put up a new 3.51.3 patch release that includes a fix for the recently discovered WAL-reset bug as well as other patches. This will happen probably within about the next twelve hours.

What's Changed

... (truncated)

Commits

Updates drizzle-orm from 0.45.1 to 0.45.2

Release notes

Sourced from drizzle-orm's releases.

0.45.2

  • Fixed sql.identifier(), sql.as() escaping issues. Previously all the values passed to this functions were not properly escaped causing a possible SQL Injection (CWE-89) vulnerability

Thanks to @​EthanKim88, @​0x90sh and @​wgoodall01 for reaching out to us with a reproduction and suggested fix

Commits

Updates lucide-react from 0.563.0 to 1.14.0

Release notes

Sourced from lucide-react's releases.

Version 1.14.0

What's Changed

Full Changelog: lucide-icons/lucide@1.13.0...1.14.0

Version 1.13.0

What's Changed

Full Changelog: lucide-icons/lucide@1.12.0...1.13.0

Version 1.12.0...

Description has been truncated

…y with 13 updates

Bumps the production-dependencies group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@better-auth/stripe](https://github.com/better-auth/better-auth/tree/HEAD/packages/stripe) | `1.4.18` | `1.6.9` |
| [@tanstack/db](https://github.com/TanStack/db/tree/HEAD/packages/db) | `0.5.25` | `0.6.5` |
| [@tanstack/electric-db-collection](https://github.com/TanStack/db/tree/HEAD/packages/electric-db-collection) | `0.2.31` | `0.3.3` |
| [@tanstack/react-db](https://github.com/TanStack/db/tree/HEAD/packages/react-db) | `0.1.69` | `0.1.83` |
| [better-auth](https://github.com/better-auth/better-auth/tree/HEAD/packages/better-auth) | `1.4.18` | `1.6.9` |
| [better-sqlite3](https://github.com/WiseLibs/better-sqlite3) | `12.6.2` | `12.9.0` |
| [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) | `0.45.1` | `0.45.2` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.563.0` | `1.14.0` |
| [os-locale](https://github.com/sindresorhus/os-locale) | `6.0.2` | `8.0.0` |
| [posthog-js](https://github.com/PostHog/posthog-js) | `1.339.1` | `1.372.5` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.4` | `19.2.5` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.4` | `19.2.5` |
| [uuid](https://github.com/uuidjs/uuid) | `13.0.1` | `14.0.0` |



Updates `@better-auth/stripe` from 1.4.18 to 1.6.9
- [Release notes](https://github.com/better-auth/better-auth/releases)
- [Changelog](https://github.com/better-auth/better-auth/blob/main/packages/stripe/CHANGELOG.md)
- [Commits](https://github.com/better-auth/better-auth/commits/@better-auth/stripe@1.6.9/packages/stripe)

Updates `@tanstack/db` from 0.5.25 to 0.6.5
- [Release notes](https://github.com/TanStack/db/releases)
- [Changelog](https://github.com/TanStack/db/blob/main/packages/db/CHANGELOG.md)
- [Commits](https://github.com/TanStack/db/commits/@tanstack/db@0.6.5/packages/db)

Updates `@tanstack/electric-db-collection` from 0.2.31 to 0.3.3
- [Release notes](https://github.com/TanStack/db/releases)
- [Changelog](https://github.com/TanStack/db/blob/main/packages/electric-db-collection/CHANGELOG.md)
- [Commits](https://github.com/TanStack/db/commits/@tanstack/electric-db-collection@0.3.3/packages/electric-db-collection)

Updates `@tanstack/react-db` from 0.1.69 to 0.1.83
- [Release notes](https://github.com/TanStack/db/releases)
- [Changelog](https://github.com/TanStack/db/blob/main/packages/react-db/CHANGELOG.md)
- [Commits](https://github.com/TanStack/db/commits/@tanstack/react-db@0.1.83/packages/react-db)

Updates `better-auth` from 1.4.18 to 1.6.9
- [Release notes](https://github.com/better-auth/better-auth/releases)
- [Changelog](https://github.com/better-auth/better-auth/blob/main/packages/better-auth/CHANGELOG.md)
- [Commits](https://github.com/better-auth/better-auth/commits/better-auth@1.6.9/packages/better-auth)

Updates `better-sqlite3` from 12.6.2 to 12.9.0
- [Release notes](https://github.com/WiseLibs/better-sqlite3/releases)
- [Commits](WiseLibs/better-sqlite3@v12.6.2...v12.9.0)

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

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

Updates `os-locale` from 6.0.2 to 8.0.0
- [Release notes](https://github.com/sindresorhus/os-locale/releases)
- [Commits](sindresorhus/os-locale@v6.0.2...v8.0.0)

Updates `posthog-js` from 1.339.1 to 1.372.5
- [Release notes](https://github.com/PostHog/posthog-js/releases)
- [Changelog](https://github.com/PostHog/posthog-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/PostHog/posthog-js/compare/posthog-js@1.339.1...posthog-js@1.372.5)

Updates `react` from 19.2.4 to 19.2.5
- [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.2.5/packages/react)

Updates `react-dom` from 19.2.4 to 19.2.5
- [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.2.5/packages/react-dom)

Updates `uuid` from 13.0.1 to 14.0.0
- [Release notes](https://github.com/uuidjs/uuid/releases)
- [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md)
- [Commits](uuidjs/uuid@v13.0.1...v14.0.0)

---
updated-dependencies:
- dependency-name: "@better-auth/stripe"
  dependency-version: 1.6.9
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tanstack/db"
  dependency-version: 0.6.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tanstack/electric-db-collection"
  dependency-version: 0.3.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tanstack/react-db"
  dependency-version: 0.1.83
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: better-auth
  dependency-version: 1.6.9
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: better-sqlite3
  dependency-version: 12.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: drizzle-orm
  dependency-version: 0.45.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: lucide-react
  dependency-version: 1.14.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: os-locale
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: posthog-js
  dependency-version: 1.372.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: uuid
  dependency-version: 14.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-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 May 1, 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