Skip to content

chore(deps): bump the patch-updates group across 1 directory with 22 updates#226

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/patch-updates-550dd182ea
Open

chore(deps): bump the patch-updates group across 1 directory with 22 updates#226
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/patch-updates-550dd182ea

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 8, 2026

Copy link
Copy Markdown

Bumps the patch-updates group with 22 updates in the / directory:

Package From To
@better-auth-ui/core 1.6.15 1.6.18
@better-auth/api-key 1.6.13 1.6.14
better-auth 1.6.13 1.6.14
@langchain/classic 1.0.32 1.0.34
@langchain/community 1.1.28 1.1.29
@langchain/langgraph-checkpoint-postgres 1.0.1 1.0.2
@langchain/langgraph-checkpoint 1.0.2 1.0.4
@langchain/langgraph 1.3.0 1.3.6
@langchain/openai 1.4.5 1.4.7
@nestjs/common 11.1.24 11.1.25
@nestjs/core 11.1.24 11.1.25
@nestjs/platform-fastify 11.1.24 11.1.25
@nestjs/platform-socket.io 11.1.24 11.1.25
@nestjs/platform-ws 11.1.24 11.1.25
@nestjs/testing 11.1.24 11.1.25
@nestjs/websockets 11.1.24 11.1.25
@pyroscope/nodejs 0.4.11 0.4.12
geist 1.7.1 1.7.2
isbot 5.1.40 5.1.41
langchain 1.4.0 1.4.4
vite-plugin-static-copy 4.1.0 4.1.1
vite 8.0.10 8.0.16

Updates @better-auth-ui/core from 1.6.15 to 1.6.18

Release notes

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

v1.6.18

1.6.18 (2026-06-06)

🚀 Features

  • add new sign-in and username-based sign-in components to example and docs apps (a4d3645)

🩹 Fixes

  • sign-in: hide forgot password link when email/password disabled (aeef006)

❤️ Thank You

  • Alex

v1.6.17

1.6.17 (2026-06-04)

🩹 Fixes

  • add captcha support to SetPassword in change-password settings (955be93)

❤️ Thank You

v1.6.16

1.6.16 (2026-06-03)

🚀 Features

  • registry: add target fields for shadcn monorepo support (47fb88e)

🩹 Fixes

  • auth: use alias import for Label component (2791bec)
  • heroui: use localized validation messages instead of browser native strings (#405)
  • heroui: skip length validation for optional empty username field (948a213)
  • shadcn: wrap DropdownMenuLabel in DropdownMenuGroup in UserButton (b90c446)
  • shadcn: use localized validation messages instead of browser native strings (34223ed)

❤️ Thank You

Commits
  • 708c155 chore(release): publish 1.6.18
  • c7df040 chore(release): publish 1.6.17
  • 808c296 chore(release): publish 1.6.16
  • 66996d3 fix(heroui): use localized validation messages instead of browser native strings
  • See full diff in compare view

Updates @better-auth/api-key from 1.6.13 to 1.6.14

Release notes

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

v1.6.14

better-auth

Bug Fixes

  • Fixed Google One Tap authenticating the wrong user when the presented Google account was already linked to a different local user.
  • Fixed null values being rejected for optional fields in the generated database schema (#9841)
  • Fixed getSessionCookie to prefer the __Secure- prefixed cookie over a non-secure leftover, preventing a stale cookie from shadowing the current session (#9806)
  • Fixed redirect URI validation to work on all supported runtimes and to reject URIs containing a fragment component per RFC 6749 §3.1.2 (#9845)
  • Fixed organization invitation verification to restore the normal emailed-invitation flow while enforcing stricter email verification for externally controlled or predictable invitation IDs (#9877)

For detailed changes, see CHANGELOG

@better-auth/sso

Bug Fixes

  • Fixed SAML Single Logout leaving the user signed in due to the logout handlers matching the session by ID instead of token.

For detailed changes, see CHANGELOG

Contributors

Thanks to everyone who contributed to this release:

@​bytaesu, @​gustavovalverde

Full changelog: v1.6.13...v1.6.14

Changelog

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

1.6.14

Patch Changes

Commits

Updates better-auth from 1.6.13 to 1.6.14

Release notes

Sourced from better-auth's releases.

v1.6.14

better-auth

Bug Fixes

  • Fixed Google One Tap authenticating the wrong user when the presented Google account was already linked to a different local user.
  • Fixed null values being rejected for optional fields in the generated database schema (#9841)
  • Fixed getSessionCookie to prefer the __Secure- prefixed cookie over a non-secure leftover, preventing a stale cookie from shadowing the current session (#9806)
  • Fixed redirect URI validation to work on all supported runtimes and to reject URIs containing a fragment component per RFC 6749 §3.1.2 (#9845)
  • Fixed organization invitation verification to restore the normal emailed-invitation flow while enforcing stricter email verification for externally controlled or predictable invitation IDs (#9877)

For detailed changes, see CHANGELOG

@better-auth/sso

Bug Fixes

  • Fixed SAML Single Logout leaving the user signed in due to the logout handlers matching the session by ID instead of token.

For detailed changes, see CHANGELOG

Contributors

Thanks to everyone who contributed to this release:

@​bytaesu, @​gustavovalverde

Full changelog: v1.6.13...v1.6.14

Changelog

Sourced from better-auth's changelog.

1.6.14

Patch Changes

  • #9877 2d9781a Thanks @​gustavovalverde! - Restore the normal emailed-invitation flow while documenting the stricter verification posture for organization invitations.

    Client-side listUserInvitations now always requires a verified session email because it enumerates invitation IDs from session.user.email. The requireEmailVerificationOnInvitation option now controls recipient calls that carry an invitation ID (acceptInvitation, rejectInvitation, getInvitation). When unset, Better Auth keeps the emailed-invitation sign-up flow for built-in opaque invitation IDs, including the default generator or advanced.database.generateId: "uuid", and requires verified email when invitation IDs are externally controlled or predictable, such as advanced.database.generateId: "serial" / false or custom ID generation. Apps that expose invitation IDs outside the invited user's mailbox, expose organization invitation lists to members, or require stricter ownership proof should set requireEmailVerificationOnInvitation: true or require verified email before sign-in.

  • #9841 5a2d642 Thanks @​bytaesu! - Optional fields (required: false) now accept null, not just omission. The generated input validation previously rejected null even though the column is nullable, so a nullable field could not be cleared by passing null.

  • #9845 13abc79 Thanks @​gustavovalverde! - Harden redirect-URI validation across the OAuth provider plugins. isSafeUrlScheme and SafeUrlSchema no longer call URL.canParse, which is absent on some supported runtimes and could throw or silently disable the dangerous-scheme check. They now parse with a try/catch fallback. SafeUrlSchema also rejects redirect URIs that contain a fragment component, per RFC 6749 §3.1.2.

  • #9806 9d3450a Thanks @​bytaesu! - getSessionCookie now prefers the __Secure- cookie when both it and a non-secure cookie are present, so the non-secure cookie no longer shadows the current session cookie.

  • Updated dependencies [13abc79]:

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

Updates @langchain/classic from 1.0.32 to 1.0.34

Release notes

Sourced from @​langchain/classic's releases.

@​langchain/classic@​1.0.34

Patch Changes

@​langchain/classic@​1.0.33

Patch Changes

  • #10872 a640079 Thanks @​hntrl! - chore(deps): remove redundant @​types/uuid declarations

    Remove @types/uuid from package manifests that rely on @langchain/core/utils/uuid or do not require uuid type stubs directly, and refresh the lockfile entries accordingly.

  • Updated dependencies [229a7ad, 36fb0ef]:

    • @​langchain/openai@​1.4.6
Commits

Updates @langchain/community from 1.1.28 to 1.1.29

Release notes

Sourced from @​langchain/community's releases.

@​langchain/community@​1.1.29

Patch Changes

  • #63 bb52506 Thanks @​hntrl! - The community package is being sunsetted. See #61 for details and guidance. Thank you to everyone who has contributed integrations, fixes, reviews, and maintenance over the years.
Commits
  • 7881dd0 chore: version packages (#64)
  • bb52506 chore: add community deprecation changeset (#63)
  • 558bde4 chore: sunset community (#62)
  • 8737586 chore(deps-dev): bump turbo in the npm_and_yarn group across 1 directory (#58)
  • 22325ab chore(deps): bump the npm_and_yarn group across 1 directory with 6 updates (#56)
  • 233a8bf chore(deps): bump the npm_and_yarn group across 1 directory with 8 updates (#55)
  • d837d73 chore(deps): bump langchain (#52)
  • b9b0fc6 chore(deps): bump langsmith in the npm_and_yarn group across 1 directory (#51)
  • See full diff in compare view

Updates @langchain/langgraph-checkpoint-postgres from 1.0.1 to 1.0.2

Release notes

Sourced from @​langchain/langgraph-checkpoint-postgres's releases.

@​langchain/langgraph-checkpoint-postgres@​1.0.2

Patch Changes

Changelog

Sourced from @​langchain/langgraph-checkpoint-postgres's changelog.

1.0.2

Patch Changes

Commits
  • d2ca90f chore: version packages (#2453)
  • 0125920 chore(deps): bump uuid from 10.0.0 to 14.0.0 (#2344)
  • e82a50b fix(langgraph-checkpoint-postgres): move serialization outside transaction in...
  • 085a07f feat(core): event based streaming (#2314)
  • 9102d52 fix(langgraph): propagate tracer metadata defaults from configurable (#2315)
  • d88f29b chore(repo): migrate linting and formatting from ESLint/Prettier to oxlint/ox...
  • See full diff in compare view

Updates @langchain/langgraph-checkpoint from 1.0.2 to 1.0.4

Release notes

Sourced from @​langchain/langgraph-checkpoint's releases.

@​langchain/langgraph-checkpoint@​1.0.4

Patch Changes

  • #2344 0125920 Thanks @​dependabot! - chore(deps): bump uuid to 14.0.0 and keep checkpoint ID ordering stable

    Bump uuid from 10.x/13.x to 14.0.0 across packages. Starting with uuid 11, v6({ clockseq }) no longer advances the sub-millisecond time counter when an explicit clockseq is passed, so checkpoint IDs created within the same millisecond were ordered only by clockseq. Since checkpoint IDs are sorted lexicographically, this broke ordering — most visibly for the negative clockseq used by the first ("input") checkpoint, which sorted as the newest.

    uuid6() now maintains its own monotonic (msecs, nsecs) clock (mirroring uuid 10's internal v1 behavior) so the time component is always strictly increasing and checkpoint ordering no longer depends on the clockseq value. emptyCheckpoint() also uses a non-negative clockseq.

@​langchain/langgraph-checkpoint@​1.0.3

Patch Changes

  • #2352 14f2a79 Thanks @​Nagendhra-web! - fix(langgraph-checkpoint): block prototype pollution in MemorySaver via reserved storage keys

    MemorySaver previously embedded thread_id, checkpoint_ns, checkpoint_id, and task_id directly into property accesses on the nested plain objects this.storage and this.writes. A caller able to shape any of those fields (every quickstart, tutorial, and test fixture uses MemorySaver by default) could pass "__proto__", "constructor", or "prototype" and have the subsequent assignment mutate Object.prototype. From that point every plain object in the process inherits the injected property, breaking for...in loops, truthy short-circuits, and downstream serializers across unrelated code paths. CWE-1321.

    Adds an assertSafeStorageKey chokepoint applied at every public entry that touches storage or writes (put, putWrites, deleteThread, getTuple, list). The guard rejects non-string values, the empty string (unless explicitly opted-in for checkpoint_ns), and the three prototype-pollution keys. Behaviour for valid string identifiers is unchanged.

Changelog

Sourced from @​langchain/langgraph-checkpoint's changelog.

1.0.4

Patch Changes

  • #2344 0125920 Thanks @​dependabot! - chore(deps): bump uuid to 14.0.0 and keep checkpoint ID ordering stable

    Bump uuid from 10.x/13.x to 14.0.0 across packages. Starting with uuid 11, v6({ clockseq }) no longer advances the sub-millisecond time counter when an explicit clockseq is passed, so checkpoint IDs created within the same millisecond were ordered only by clockseq. Since checkpoint IDs are sorted lexicographically, this broke ordering — most visibly for the negative clockseq used by the first ("input") checkpoint, which sorted as the newest.

    uuid6() now maintains its own monotonic (msecs, nsecs) clock (mirroring uuid 10's internal v1 behavior) so the time component is always strictly increasing and checkpoint ordering no longer depends on the clockseq value. emptyCheckpoint() also uses a non-negative clockseq.

1.0.3

Patch Changes

  • #2352 14f2a79 Thanks @​Nagendhra-web! - fix(langgraph-checkpoint): block prototype pollution in MemorySaver via reserved storage keys

    MemorySaver previously embedded thread_id, checkpoint_ns, checkpoint_id, and task_id directly into property accesses on the nested plain objects this.storage and this.writes. A caller able to shape any of those fields (every quickstart, tutorial, and test fixture uses MemorySaver by default) could pass "__proto__", "constructor", or "prototype" and have the subsequent assignment mutate Object.prototype. From that point every plain object in the process inherits the injected property, breaking for...in loops, truthy short-circuits, and downstream serializers across unrelated code paths. CWE-1321.

    Adds an assertSafeStorageKey chokepoint applied at every public entry that touches storage or writes (put, putWrites, deleteThread, getTuple, list). The guard rejects non-string values, the empty string (unless explicitly opted-in for checkpoint_ns), and the three prototype-pollution keys. Behaviour for valid string identifiers is unchanged.

Commits
  • d2ca90f chore: version packages (#2453)
  • 0125920 chore(deps): bump uuid from 10.0.0 to 14.0.0 (#2344)
  • 381a9f6 chore: version packages (#2445)
  • 14f2a79 fix(langgraph-checkpoint): block prototype pollution in MemorySaver via reser...
  • 1f11df2 chore: version packages (#2364)
  • 085a07f feat(core): event based streaming (#2314)
  • 9102d52 fix(langgraph): propagate tracer metadata defaults from configurable (#2315)
  • d88f29b chore(repo): migrate linting and formatting from ESLint/Prettier to oxlint/ox...
  • a1e2abf chore: version packages (#2174)
  • b6cfe55 feat(langgraph): add support for Uint8Array for JsonPlusSerializer (#2190)
  • See full diff in compare view

Updates @langchain/langgraph from 1.3.0 to 1.3.6

Release notes

Sourced from @​langchain/langgraph's releases.

@​langchain/langgraph@​1.3.6

Patch Changes

  • 658a076 Thanks @​christian-bromann! - fix(langgraph): forward named custom stream channels consistently

    Forward remote StreamChannel emissions as custom:<name> protocol events and normalize them back to custom-channel payloads in the API session. This aligns JavaScript stream-channel forwarding with the protocol subscription shape used by remote clients, so custom:<name> subscriptions receive extension channel data consistently.

  • Updated dependencies [0a0e04e, 658a076, a9aa8d6]:

    • @​langchain/langgraph-sdk@​1.9.17

@​langchain/langgraph@​1.3.5

Patch Changes

  • #2489 e3a1933 Thanks @​christian-bromann! - fix(core): keep stream chunks as three-element tuples

    Emit lightweight checkpoint envelopes as separate [namespace, "checkpoints", envelope] chunks before paired values chunks. Public stream() always yields [namespace, mode, payload]; the v3 protocol path surfaces envelopes via convertToProtocolEvent.

  • Updated dependencies [244c24e]:

    • @​langchain/langgraph-sdk@​1.9.16

@​langchain/langgraph@​1.3.4

Patch Changes

  • #2035 7c3a98b Thanks @​JadenKim-dev! - fix(core): prevent Zod schema defaults from overwriting checkpoint state in Command.update

  • Updated dependencies [0491534]:

    • @​langchain/langgraph-sdk@​1.9.12

@​langchain/langgraph@​1.3.3

Patch Changes

  • #2037 9eb478f Thanks @​pawel-twardziak! - Decouple ContextType generic from configurable in PregelOptions so that providing a custom context type no longer incorrectly narrows the configurable parameter.

  • #2457 91a5494 Thanks @​christian-bromann! - fix(langgraph): pass context with stateful RemoteGraph runs

    Pop thread_id from run config.configurable and forward context to the SDK so checkpointed remote runs accept user context without a 400 from ambiguous parameters. Closes #1922.

  • #1988 6d4bf92 Thanks @​Axadali! - Fix race condition in IterableReadableWritableStream.push() that caused ERR_INVALID_STATE errors when streaming with multiple parallel nodes and aborting the stream.

  • #2409 101b70a Thanks @​pragnyanramtha! - Preserve non-plain objects passed through Send and Command argument deserialization.

  • #2344 0125920 Thanks @​dependabot! - chore(deps): bump uuid to 14.0.0 and keep checkpoint ID ordering stable

    Bump uuid from 10.x/13.x to 14.0.0 across packages. Starting with uuid 11, v6({ clockseq }) no longer advances the sub-millisecond time counter when an explicit clockseq is passed, so checkpoint IDs created within the same millisecond were ordered only by clockseq. Since checkpoint IDs are sorted lexicographically, this broke ordering — most visibly for the negative clockseq used by the first ("input") checkpoint, which sorted as the newest.

    uuid6() now maintains its own monotonic (msecs, nsecs) clock (mirroring uuid 10's internal v1 behavior) so the time component is always strictly increasing and checkpoint ordering no longer depends on the clockseq value. emptyCheckpoint() also uses a non-negative clockseq.

... (truncated)

Changelog

Sourced from @​langchain/langgraph's changelog.

1.3.6

Patch Changes

  • 658a076 Thanks @​christian-bromann! - fix(langgraph): forward named custom stream channels consistently

    Forward remote StreamChannel emissions as custom:<name> protocol events and normalize them back to custom-channel payloads in the API session. This aligns JavaScript stream-channel forwarding with the protocol subscription shape used by remote clients, so custom:<name> subscriptions receive extension channel data consistently.

  • Updated dependencies [0a0e04e, 658a076, a9aa8d6]:

    • @​langchain/langgraph-sdk@​1.9.17

1.3.5

Patch Changes

  • #2489 e3a1933 Thanks @​christian-bromann! - fix(core): keep stream chunks as three-element tuples

    Emit lightweight checkpoint envelopes as separate [namespace, "checkpoints", envelope] chunks before paired values chunks. Public stream() always yields [namespace, mode, payload]; the v3 protocol path surfaces envelopes via convertToProtocolEvent.

  • Updated dependencies [244c24e]:

    • @​langchain/langgraph-sdk@​1.9.16

1.3.4

Patch Changes

  • #2035 7c3a98b Thanks @​JadenKim-dev! - fix(core): prevent Zod schema defaults from overwriting checkpoint state in Command.update

  • Updated dependencies [0491534]:

    • @​langchain/langgraph-sdk@​1.9.12

1.3.3

Patch Changes

  • #2037 9eb478f Thanks @​pawel-twardziak! - Decouple ContextType generic from configurable in PregelOptions so that providing a custom context type no longer incorrectly narrows the configurable parameter.

  • #2457 91a5494 Thanks @​christian-bromann! - fix(langgraph): pass context with stateful RemoteGraph runs

    Pop thread_id from run config.configurable and forward context to the SDK so checkpointed remote runs accept user context without a 400 from ambiguous parameters. Closes #1922.

  • #1988 6d4bf92 Thanks @​Axadali! - Fix race condition in IterableReadableWritableStream.push() that caused ERR_INVALID_STATE errors when streaming with multiple parallel nodes and aborting the stream.

  • #2409 101b70a Thanks @​pragnyanramtha! - Preserve non-plain objects passed through Send and Command argument deserialization.

  • #2344 0125920 Thanks @​dependabot! - chore(deps): bump uuid to 14.0.0 and keep checkpoint ID ordering stable

... (truncated)

Commits

Updates @langchain/openai from 1.4.5 to 1.4.7

Release notes

Sourced from @​langchain/openai's releases.

@​langchain/openai@​1.4.7

Patch Changes

@​langchain/openai@​1.4.6

Patch Changes

  • #10902 229a7ad Thanks @​christian-bromann! - fix(openai): preserve v1 assistant tool calls

  • #10895 36fb0ef Thanks @​BertBR! - fix(openai): guard bare JSON.parse in Responses API converter against trailing non-whitespace characters

    convertResponsesDeltaToChatGenerationChunk previously called JSON.parse(msg.text) directly when response.text.format.type === "json_schema". Some models (observed with gpt-5-mini on service_tier: "auto") intermittently emit trailing non-whitespace characters (extra tokens, control characters) after a valid JSON object, causing a SyntaxError that propagates as an unhandled exception and kills the entire streaming response mid-flight. The parse is now wrapped in a try/catch: on failure, additional_kwargs.parsed is left undefined, the stream completes normally, and the existing withStructuredOutput pipeline handles the typed failure — includeRaw: true returns { raw, parsed: null } via its withFallbacks wrapper, includeRaw: false throws a typed OutputParserException that the caller can catch and retry. Closes #10894.

Commits

Updates @nestjs/common from 11.1.24 to 11.1.25

Release notes

Sourced from @​nestjs/common's releases.

v11.1.25

What's Changed

New Contributors

Full Changelog: nestjs/nest@v11.1.24...v11.1.25

Commits
  • 02f8041 chore(release): publish v11.1.25 release
  • 1634915 test(common): Add unit tests for cli-colors utility
  • 380bf5c Merge pull request #17058 from Se3do/test/extend-metadata
  • af4542b test(common): Add unit tests for assignCustomParameterMetadata
  • b67aea1 test(common): Add unit tests for extendArrayMetadata
  • e1e4014 test(common): Tighten throw assertions in validateModuleKeys spec
  • 6b97771 test(common): Add unit tests for validateModuleKeys
  • 5a57222 test(common): add unit test for Optional decorator
  • deed1b3 docs(common): add @​see reference to Res alias JSDoc
  • 46040b1 docs(common): add JSDoc to Req and Res aliases
  • See full diff in compare view

Updates @nestjs/core from 11.1.24 to 11.1.25

Release notes

Sourced from @​nestjs/core's releases.

v11.1.25

What's Changed

New Contributors

Full Changelog: nestjs/nest@v11.1.24...v11.1.25

Commits
  • 02f8041 chore(release): publish v11.1.25 release
  • e2ad4e2 Update package.json
  • 396cf81 refactor(core): avoid duplicating sse intercept call
  • 55cd699 fix(core): preserve deferred SSE handlers
  • 7b5ca83 fix(core): register SSE close listener before async setup
  • See full diff in compare view

Updates @nestjs/platform-fastify from 11.1.24 to 11.1.25

Release notes

Sourced from @​nestjs/platform-fastify's releases.

v11.1.25

What's Changed

New Contributors

Full Changelog: nestjs/nest@v11.1.24...v11.1.25

Commits
  • 02f8041 chore(release): publish v11.1.25 release
  • 3a1da49 Merge pull request #17094 from nestjs/fix/fastify-end-slash
  • 149229c fix(platform-fastify): remove pathname ending slash
  • 7a06d07 chore(fastify): remove invalid eslint directive
  • See full diff in Description has been truncated

…updates

Bumps the patch-updates group with 22 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@better-auth-ui/core](https://github.com/better-auth-ui/better-auth-ui/tree/HEAD/packages/core) | `1.6.15` | `1.6.18` |
| [@better-auth/api-key](https://github.com/better-auth/better-auth/tree/HEAD/packages/api-key) | `1.6.13` | `1.6.14` |
| [better-auth](https://github.com/better-auth/better-auth/tree/HEAD/packages/better-auth) | `1.6.13` | `1.6.14` |
| [@langchain/classic](https://github.com/langchain-ai/langchainjs) | `1.0.32` | `1.0.34` |
| [@langchain/community](https://github.com/langchain-ai/langchainjs-community) | `1.1.28` | `1.1.29` |
| [@langchain/langgraph-checkpoint-postgres](https://github.com/langchain-ai/langgraphjs/tree/HEAD/libs/checkpoint-postgres) | `1.0.1` | `1.0.2` |
| [@langchain/langgraph-checkpoint](https://github.com/langchain-ai/langgraphjs/tree/HEAD/libs/checkpoint) | `1.0.2` | `1.0.4` |
| [@langchain/langgraph](https://github.com/langchain-ai/langgraphjs/tree/HEAD/libs/langgraph-core) | `1.3.0` | `1.3.6` |
| [@langchain/openai](https://github.com/langchain-ai/langchainjs) | `1.4.5` | `1.4.7` |
| [@nestjs/common](https://github.com/nestjs/nest/tree/HEAD/packages/common) | `11.1.24` | `11.1.25` |
| [@nestjs/core](https://github.com/nestjs/nest/tree/HEAD/packages/core) | `11.1.24` | `11.1.25` |
| [@nestjs/platform-fastify](https://github.com/nestjs/nest/tree/HEAD/packages/platform-fastify) | `11.1.24` | `11.1.25` |
| [@nestjs/platform-socket.io](https://github.com/nestjs/nest/tree/HEAD/packages/platform-socket.io) | `11.1.24` | `11.1.25` |
| [@nestjs/platform-ws](https://github.com/nestjs/nest/tree/HEAD/packages/platform-ws) | `11.1.24` | `11.1.25` |
| [@nestjs/testing](https://github.com/nestjs/nest/tree/HEAD/packages/testing) | `11.1.24` | `11.1.25` |
| [@nestjs/websockets](https://github.com/nestjs/nest/tree/HEAD/packages/websockets) | `11.1.24` | `11.1.25` |
| [@pyroscope/nodejs](https://github.com/grafana/pyroscope-nodejs) | `0.4.11` | `0.4.12` |
| [geist](https://github.com/vercel/geist-font/tree/HEAD/packages/next) | `1.7.1` | `1.7.2` |
| [isbot](https://github.com/omrilotan/isbot) | `5.1.40` | `5.1.41` |
| [langchain](https://github.com/langchain-ai/langchainjs) | `1.4.0` | `1.4.4` |
| [vite-plugin-static-copy](https://github.com/sapphi-red/vite-plugin-static-copy) | `4.1.0` | `4.1.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.10` | `8.0.16` |



Updates `@better-auth-ui/core` from 1.6.15 to 1.6.18
- [Release notes](https://github.com/better-auth-ui/better-auth-ui/releases)
- [Commits](https://github.com/better-auth-ui/better-auth-ui/commits/v1.6.18/packages/core)

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

Updates `better-auth` from 1.6.13 to 1.6.14
- [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.14/packages/better-auth)

Updates `@langchain/classic` from 1.0.32 to 1.0.34
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Commits](https://github.com/langchain-ai/langchainjs/commits/@langchain/classic@1.0.34)

Updates `@langchain/community` from 1.1.28 to 1.1.29
- [Release notes](https://github.com/langchain-ai/langchainjs-community/releases)
- [Commits](https://github.com/langchain-ai/langchainjs-community/compare/@langchain/community@1.1.28...@langchain/community@1.1.29)

Updates `@langchain/langgraph-checkpoint-postgres` from 1.0.1 to 1.0.2
- [Release notes](https://github.com/langchain-ai/langgraphjs/releases)
- [Changelog](https://github.com/langchain-ai/langgraphjs/blob/main/libs/checkpoint-postgres/CHANGELOG.md)
- [Commits](https://github.com/langchain-ai/langgraphjs/commits/@langchain/langgraph-checkpoint-postgres@1.0.2/libs/checkpoint-postgres)

Updates `@langchain/langgraph-checkpoint` from 1.0.2 to 1.0.4
- [Release notes](https://github.com/langchain-ai/langgraphjs/releases)
- [Changelog](https://github.com/langchain-ai/langgraphjs/blob/main/libs/checkpoint/CHANGELOG.md)
- [Commits](https://github.com/langchain-ai/langgraphjs/commits/@langchain/langgraph-checkpoint@1.0.4/libs/checkpoint)

Updates `@langchain/langgraph` from 1.3.0 to 1.3.6
- [Release notes](https://github.com/langchain-ai/langgraphjs/releases)
- [Changelog](https://github.com/langchain-ai/langgraphjs/blob/main/libs/langgraph-core/CHANGELOG.md)
- [Commits](https://github.com/langchain-ai/langgraphjs/commits/@langchain/langgraph@1.3.6/libs/langgraph-core)

Updates `@langchain/openai` from 1.4.5 to 1.4.7
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Commits](https://github.com/langchain-ai/langchainjs/commits/@langchain/openai@1.4.7)

Updates `@nestjs/common` from 11.1.24 to 11.1.25
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.25/packages/common)

Updates `@nestjs/core` from 11.1.24 to 11.1.25
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.25/packages/core)

Updates `@nestjs/platform-fastify` from 11.1.24 to 11.1.25
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.25/packages/platform-fastify)

Updates `@nestjs/platform-socket.io` from 11.1.24 to 11.1.25
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.25/packages/platform-socket.io)

Updates `@nestjs/platform-ws` from 11.1.24 to 11.1.25
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.25/packages/platform-ws)

Updates `@nestjs/testing` from 11.1.24 to 11.1.25
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.25/packages/testing)

Updates `@nestjs/websockets` from 11.1.24 to 11.1.25
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.25/packages/websockets)

Updates `@pyroscope/nodejs` from 0.4.11 to 0.4.12
- [Release notes](https://github.com/grafana/pyroscope-nodejs/releases)
- [Changelog](https://github.com/grafana/pyroscope-nodejs/blob/main/docs/RELEASE.md)
- [Commits](grafana/pyroscope-nodejs@v0.4.11...v0.4.12)

Updates `geist` from 1.7.1 to 1.7.2
- [Release notes](https://github.com/vercel/geist-font/releases)
- [Changelog](https://github.com/vercel/geist-font/blob/main/packages/next/CHANGELOG.md)
- [Commits](https://github.com/vercel/geist-font/commits/v1.7.2/packages/next)

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

Updates `langchain` from 1.4.0 to 1.4.4
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Commits](https://github.com/langchain-ai/langchainjs/compare/@langchain/openai@1.4.0...@langchain/openai@1.4.4)

Updates `vite-plugin-static-copy` from 4.1.0 to 4.1.1
- [Release notes](https://github.com/sapphi-red/vite-plugin-static-copy/releases)
- [Changelog](https://github.com/sapphi-red/vite-plugin-static-copy/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sapphi-red/vite-plugin-static-copy/compare/vite-plugin-static-copy@4.1.0...vite-plugin-static-copy@4.1.1)

Updates `vite` from 8.0.10 to 8.0.16
- [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.0.16/packages/vite)

---
updated-dependencies:
- dependency-name: "@better-auth-ui/core"
  dependency-version: 1.6.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@better-auth/api-key"
  dependency-version: 1.6.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: better-auth
  dependency-version: 1.6.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@langchain/classic"
  dependency-version: 1.0.34
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@langchain/community"
  dependency-version: 1.1.29
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@langchain/langgraph-checkpoint-postgres"
  dependency-version: 1.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@langchain/langgraph-checkpoint"
  dependency-version: 1.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@langchain/langgraph"
  dependency-version: 1.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@langchain/openai"
  dependency-version: 1.4.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@nestjs/common"
  dependency-version: 11.1.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@nestjs/core"
  dependency-version: 11.1.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@nestjs/platform-fastify"
  dependency-version: 11.1.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@nestjs/platform-socket.io"
  dependency-version: 11.1.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@nestjs/platform-ws"
  dependency-version: 11.1.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@nestjs/testing"
  dependency-version: 11.1.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@nestjs/websockets"
  dependency-version: 11.1.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@pyroscope/nodejs"
  dependency-version: 0.4.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: geist
  dependency-version: 1.7.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: isbot
  dependency-version: 5.1.41
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: langchain
  dependency-version: 1.4.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: vite-plugin-static-copy
  dependency-version: 4.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: vite
  dependency-version: 8.0.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added automated Automatically created pull requests dependencies Dependencies updated labels Jun 8, 2026
@netlify

netlify Bot commented Jun 8, 2026

Copy link
Copy Markdown

Deploy Preview for taucad-staging failed.

Name Link
🔨 Latest commit 4a0f77e
🔍 Latest deploy log https://app.netlify.com/projects/taucad-staging/deploys/6a268e8e0e403f00094eceb0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

automated Automatically created pull requests dependencies Dependencies updated

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants