Skip to content

chore(deps): bump the production-dependencies group with 11 updates#63

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-456d6bbcb7
Closed

chore(deps): bump the production-dependencies group with 11 updates#63
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-456d6bbcb7

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 16, 2026

Bumps the production-dependencies group with 11 updates:

Package From To
@langchain/community 1.1.14 1.1.15
@langchain/groq 1.0.4 1.1.0
@mixedbread/sdk 0.50.1 0.50.2
@sentry/nextjs 10.38.0 10.39.0
langchain 1.2.23 1.2.24
lucide-react 0.563.0 0.564.0
mongoose 9.1.6 9.2.1
npm 11.9.0 11.10.0
posthog-js 1.344.0 1.347.2
react-resizable-panels 4.6.2 4.6.4
tailwind-merge 3.4.0 3.4.1

Updates @langchain/community from 1.1.14 to 1.1.15

Commits

Updates @langchain/groq from 1.0.4 to 1.1.0

Commits
  • 8a77e9a chore: version packages (#9491)
  • 38f0162 feat(core,anthropic): tool extras, tool search support (#9531)
  • 42ae02a chore(deps): bump actions/checkout from 5.0.1 to 6.0.0 in the major-deps-upda...
  • 9563a7f chore(mongodb): remove unused testing setup (#9506)
  • 6cecddf fix: pass cwd to mcp sdk correctly (#9514)
  • 6f8fa47 feat(aws): allow bedrock Application Inference Profile (#9129)
  • 8b9f66f fix(community): enable import plugins, remove bad load export (#9501)
  • fa8c36e chore(mongodb): bump mongodb dep (#9502)
  • 636b994 fix(core): use dynamic import for p-retry to support CJS (#9495)
  • 31240d4 feat(community/ibm): enable model gateway usage in IBM implementation, apply ...
  • Additional commits viewable in compare view

Updates @mixedbread/sdk from 0.50.1 to 0.50.2

Release notes

Sourced from @​mixedbread/sdk's releases.

v0.50.2

0.50.2 (2026-01-17)

Full Changelog: v0.50.1...v0.50.2

Chores

  • internal: update actions/checkout version (031ec6d)
  • internal: upgrade babel, qs, js-yaml (3e223cf)

This pull request is managed by Stainless's GitHub App.

The semver version number is based on included commit messages. Alternatively, you can manually set the version number in the title of this pull request.

For a better experience, it is recommended to use either rebase-merge or squash-merge when merging this pull request.

🔗 Stainless website 📚 Read the docs 🙋 Reach out for help or questions

Changelog

Sourced from @​mixedbread/sdk's changelog.

0.50.2 (2026-01-17)

Full Changelog: v0.50.1...v0.50.2

Chores

  • internal: update actions/checkout version (031ec6d)
  • internal: upgrade babel, qs, js-yaml (3e223cf)
Commits
  • 9c2b863 Merge pull request #255 from mixedbread-ai/release-please--branches--main--ch...
  • f701846 release: 0.50.2
  • 031ec6d chore(internal): update actions/checkout version
  • 3e223cf chore(internal): upgrade babel, qs, js-yaml
  • See full diff in compare view

Updates @sentry/nextjs from 10.38.0 to 10.39.0

Release notes

Sourced from @​sentry/nextjs's releases.

10.39.0

Important Changes

  • feat(tanstackstart-react): Auto-instrument server function middleware (#19001)

    The sentryTanstackStart Vite plugin now automatically instruments middleware in createServerFn().middleware([...]) calls. This captures performance data without requiring manual wrapping with wrapMiddlewaresWithSentry().

  • feat(nextjs): New experimental automatic vercel cron monitoring (#19192)

    Setting _experimental.vercelCronMonitoring to true in your Sentry configuration will automatically create Sentry cron monitors for your Vercel Cron Jobs.

    Please note that this is an experimental unstable feature and subject to change.

    // next.config.ts
    export default withSentryConfig(nextConfig, {
      _experimental: {
        vercelCronMonitoring: true,
      },
    });
  • feat(node-core): Add node-core/light (#18502)

    This release adds a new light-weight @sentry/node-core/light export to @sentry/node-core. The export acts as a light-weight SDK that does not depend on OpenTelemetry and emits no spans.

    Use this SDK when:

    • You only need error tracking, logs or metrics without tracing data (no spans)
    • You want to minimize bundle size and runtime overhead
    • You don't need spans emitted by OpenTelemetry instrumentation

    It supports error tracking and reporting, logs, metrics, automatic request isolation (requires Node.js 22+) and basic tracing via our Sentry.startSpan* APIs.

    Install the SDK by running

    npm install @sentry/node-core

    and add Sentry at the top of your application's entry file:

    import * as Sentry from '@sentry/node-core/light';
    Sentry.init({
    dsn: 'DSN',
    });

Other Changes

... (truncated)

Changelog

Sourced from @​sentry/nextjs's changelog.

10.39.0

Important Changes

  • feat(tanstackstart-react): Auto-instrument server function middleware (#19001)

    The sentryTanstackStart Vite plugin now automatically instruments middleware in createServerFn().middleware([...]) calls. This captures performance data without requiring manual wrapping with wrapMiddlewaresWithSentry().

  • feat(nextjs): New experimental automatic vercel cron monitoring (#19192)

    Setting _experimental.vercelCronMonitoring to true in your Sentry configuration will automatically create Sentry cron monitors for your Vercel Cron Jobs.

    Please note that this is an experimental unstable feature and subject to change.

    // next.config.ts
    export default withSentryConfig(nextConfig, {
      _experimental: {
        vercelCronMonitoring: true,
      },
    });
  • feat(node-core): Add node-core/light (#18502)

    This release adds a new light-weight @sentry/node-core/light export to @sentry/node-core. The export acts as a light-weight SDK that does not depend on OpenTelemetry and emits no spans.

    Use this SDK when:

    • You only need error tracking, logs or metrics without tracing data (no spans)
    • You want to minimize bundle size and runtime overhead
    • You don't need spans emitted by OpenTelemetry instrumentation

    It supports error tracking and reporting, logs, metrics, automatic request isolation (requires Node.js 22+) and basic tracing via our Sentry.startSpan* APIs.

    Install the SDK by running

    npm install @sentry/node-core

    and add Sentry at the top of your application's entry file:

    import * as Sentry from '@sentry/node-core/light';
    Sentry.init({
    dsn: 'DSN',
    });

... (truncated)

Commits
  • ab54c5c Make @sentry/opentelemetry not a peer dep in node-core
  • f822e69 chore: Lint lerna.json
  • c4708d2 release: 10.39.0
  • b5e3094 chore: Revert to lerna v8 (#19294)
  • 9dea581 Merge pull request #19281 from getsentry/prepare-release/10.39.0
  • 12e467f meta(changelog): Update changelog for 10.39.0
  • d7df7d4 ref(sveltekit): Use untrack to read route id without invalidation (#19272)
  • 24b2ef2 fix(sveltekit): Detect used adapter via svelte.config.js (#19270)
  • e051be4 feat(node-core): Add outgoing fetch trace propagation to light mode (#19262)
  • eaf297f ref(core): Move shouldPropagateTraceForUrl from opentelemetry to core (#19258)
  • Additional commits viewable in compare view

Updates langchain from 1.2.23 to 1.2.24

Release notes

Sourced from langchain's releases.

langchain@1.2.24

Patch Changes

Commits
  • 20df955 chore: version packages (#10036)
  • 277e118 chore(deps): bump date-fns from 3.6.0 to 4.1.0 (#10020)
  • 8eea9d4 fix(langchain): fix streaming types (#10034)
  • 33c0b5d fix: SQL Injection via Filter Parameter in PostgresVectorStore.queryCollectio...
  • aa2f89d fix: SQL Injection via Table/Schema Name in PostgresChatMessageHistory.initia...
  • efb03d0 chore(deps): bump @​types/node from 20.19.33 to 25.2.3 (#10024)
  • 4bdf174 chore(deps): bump @​aws-sdk/client-bedrock-runtime from 3.985.0 to 3.988.0 (#1...
  • 9863e10 chore(deps): bump langsmith from 0.5.1 to 0.5.2 (#10035)
  • 760a68a chore(deps): bump rolldown from 1.0.0-beta.30 to 1.0.0-rc.4 in /internal/buil...
  • f26beb3 chore(deps-dev): bump the root-dev-minor-and-patch group with 11 updates (#10...
  • Additional commits viewable in compare view

Updates lucide-react from 0.563.0 to 0.564.0

Release notes

Sourced from lucide-react's releases.

Version 0.564.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.563.1...0.564.0

Hotfix @lucide/svelte hasA11yProp.js import

What's Changed

Full Changelog: lucide-icons/lucide@0.563.0...0.563.1

Commits

Updates mongoose from 9.1.6 to 9.2.1

Release notes

Sourced from mongoose's releases.

9.2.1 / 2026-02-11

  • types(query): allow assigning QueryFilter<DocType> to QueryFilter<any> #16020
  • types: duplicate identifier 'UUIDToJSON' in mongoosejs 9.2.0 #16023
  • types: preserve subdocument toObject() field types when using virtuals + versionKey options #16021 #15965 AbdelrahmanHafez
  • docs(mongoose): add missing options to mongoose.set() docs #16019

9.2.0 / 2026-02-09

  • feat: add option to skip middleware #15883 #8768 AbdelrahmanHafez
  • feat(model): delay "Duplicate schema index" warning until createIndexes runs to include model name in the warning #15979
  • feat(model): add strict option to Model.hydrate(...) #15940 #15977
  • feat(document): add flattenUUIDs option to toObject() and toJSON() #15864 #15021 AbdelrahmanHafez
  • fix(schema): treat undefined as not provided for strict, strictQuery and id options #16004 AbdelrahmanHafez
  • types(inferrawdoctype): avoid adding _id to nested paths and handle _id: false in options + schema definition #15989
  • types: fix toObject() type inference with timestamps + virtuals #15975 AbdelrahmanHafez
  • types(models): remove dead MapReduce and GeoSearch types #15984
  • test(types): remove tsd in favor of tsc + test utilities #15951 #15696
Changelog

Sourced from mongoose's changelog.

9.2.1 / 2026-02-11

  • types(query): allow assigning QueryFilter to QueryFilter #16020
  • types: duplicate identifier 'UUIDToJSON' in mongoosejs 9.2.0 #16023
  • types: preserve subdocument toObject() field types when using virtuals + versionKey options #16021 #15965 AbdelrahmanHafez
  • docs(mongoose): add missing options to mongoose.set() docs #16019

9.2.0 / 2026-02-09

  • feat: add option to skip middleware #15883 #8768 AbdelrahmanHafez
  • feat(model): delay "Duplicate schema index" warning until createIndexes runs to include model name in the warning #15979
  • feat(model): add strict option to Model.hydrate(...) #15940 #15977
  • feat(document): add flattenUUIDs option to toObject() and toJSON() #15864 #15021 AbdelrahmanHafez
  • fix(schema): treat undefined as not provided for strict, strictQuery and id options #16004 AbdelrahmanHafez
  • types(inferrawdoctype): avoid adding _id to nested paths and handle _id: false in options + schema definition #15989
  • types: fix toObject() type inference with timestamps + virtuals #15975 AbdelrahmanHafez
  • types(models): remove dead MapReduce and GeoSearch types #15984
  • test(types): remove tsd in favor of tsc + test utilities #15951 #15696

8.23.0 / 2026-02-09

  • feat(document): add flattenUUIDs option to toObject() and toJSON() (backport #15021 to 8.x)
Commits
  • 764bd82 chore: release 9.2.1
  • 2e5b780 Merge pull request #16021 from Automattic/fix/gh-15965-subdoc-toObject
  • 324ff4c Merge pull request #16020 from Automattic/vkarpov15/gh-16006
  • 684b31f test(types): check types using ts-expect-error directive instead of ExpectType
  • 06b4e93 Merge pull request #16019 from Automattic/vkarpov15/gh-16005
  • 55749fc fix(types): make subdocuments and array subdocuments have the same behavior f...
  • b81b3b6 types(query): allow assigning QueryFilter<DocType> to QueryFilter<any>
  • 8d05461 test(types): assert subdocuments in toObject() and toJSON get the correc...
  • 40ffefe docs(mongoose): add missing options to mongoose.set() docs
  • 904a2eb chore: release 9.2.0
  • Additional commits viewable in compare view

Updates npm from 11.9.0 to 11.10.0

Release notes

Sourced from npm's releases.

v11.10.0

11.10.0 (2026-02-11)

Features

Dependencies

Chores

Changelog

Sourced from npm's changelog.

11.10.0 (2026-02-11)

Features

Dependencies

Chores

Commits

Updates posthog-js from 1.344.0 to 1.347.2

Release notes

Sourced from posthog-js's releases.

posthog-js@1.347.2

1.347.2

Patch Changes

  • #3094 0d30218 Thanks @​TueHaulund! - feat(replay): add $snapshot_max_depth_exceeded debug property and bump rrweb to 0.0.42 with DOM depth limit (2026-02-13)

  • #3093 f19b7f2 Thanks @​TueHaulund! - fix(replay): retry session recording start when persisted remote config is stale (2026-02-13)

  • Updated dependencies []:

    • @​posthog/types@​1.347.2

posthog-js@1.347.1

1.347.1

Patch Changes

  • #3090 312b785 Thanks @​adboio! - enable product tour image preload (2026-02-13)
  • Updated dependencies []:
    • @​posthog/types@​1.347.1

posthog-js@1.347.0

1.347.0

Minor Changes

Patch Changes

  • #3079 9c078ac Thanks @​adboio! - update z-index hierarchy for tours > surveys > conversations (2026-02-12)
  • Updated dependencies []:
    • @​posthog/types@​1.347.0

posthog-js@1.346.0

1.346.0

Minor Changes

Patch Changes

  • Updated dependencies []:
    • @​posthog/types@​1.346.0

... (truncated)

Commits
  • 447c81b chore: update versions and lockfile [version bump]
  • 0d30218 feat(replay): add $snapshot_max_depth_exceeded debug property (#3094)
  • 01ef861 fix(logs): fix circular references (#3092)
  • f19b7f2 fix(replay): retry session recording start when remote config is stale (#3093)
  • 615f909 chore: update versions and lockfile [version bump]
  • 312b785 feat(product tours): enable image preload on tour fetch (#3090)
  • 631a9ef chore: update versions and lockfile [version bump]
  • e2ac0e8 feat: react native error boundary (#3084)
  • d3e0b9d chore: update versions and lockfile [version bump]
  • 512d578 fix(browser): Revert tree shaking - extract extension constructors from core ...
  • Additional commits viewable in compare view

Updates react-resizable-panels from 4.6.2 to 4.6.4

Release notes

Sourced from react-resizable-panels's releases.

4.6.4

  • 664, 665: Resize actions sometimes "jump" on touch devices

4.6.3

  • Fixed a problem with project logo not displaying correctly in the README for the Firefox browser.
Changelog

Sourced from react-resizable-panels's changelog.

4.6.4

  • 664, 665: Resize actions sometimes "jump" on touch devices

4.6.3

  • Fixed a problem with project logo not displaying correctly in the README for the Firefox browser.
Commits
  • 6f932fd 4.6.3 -> 4.6.4
  • f07e647 Prevent layout jump when resizing on touch devices (#665)
  • 8f5e5f3 Update CHANGELOG with pending release changes
  • 338d952 fix: add touch-action: none to Separator for touch device support Fixes #662 ...
  • a7c9df1 4.6.2 -> 4.6.3
  • a33b189 Fixed a problem with project logo not displaying correctly in the README for ...
  • See full diff in compare view

Updates tailwind-merge from 3.4.0 to 3.4.1

Release notes

Sourced from tailwind-merge's releases.

v3.4.1

Bug Fixes

Full Changelog: dcastil/tailwind-merge@v3.4.0...v3.4.1

Thanks to @​brandonmcconnell, @​manavm1990, @​langy, @​roboflow, @​syntaxfm, @​getsentry, @​codecov, a private sponsor, @​block, @​openclaw, @​sourcegraph and more via @​thnxdev for sponsoring tailwind-merge! ❤️

Commits
  • 02b6eb6 v3.4.1
  • 6b845eb add agent info for release workflow
  • 655f2f1 add changelog for v3.4.1
  • e44e5eb add agent docs
  • 4a38681 Merge pull request #644 from dcastil/renovate/major-vitest-monorepo
  • 23ac259 migrate to vitest v4
  • 927f617 chore(deps): update vitest monorepo to v4
  • aea4869 Merge pull request #648 from dcastil/renovate/major-octokit-monorepo
  • 78365f2 Merge pull request #646 from dcastil/renovate/actions-exec-3.x
  • b08384d fix(deps): update dependency @​octokit/types to v16
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the production-dependencies group with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [@langchain/community](https://github.com/langchain-ai/langchainjs) | `1.1.14` | `1.1.15` |
| [@langchain/groq](https://github.com/langchain-ai/langchainjs) | `1.0.4` | `1.1.0` |
| [@mixedbread/sdk](https://github.com/mixedbread-ai/mixedbread-ts) | `0.50.1` | `0.50.2` |
| [@sentry/nextjs](https://github.com/getsentry/sentry-javascript) | `10.38.0` | `10.39.0` |
| [langchain](https://github.com/langchain-ai/langchainjs) | `1.2.23` | `1.2.24` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.563.0` | `0.564.0` |
| [mongoose](https://github.com/Automattic/mongoose) | `9.1.6` | `9.2.1` |
| [npm](https://github.com/npm/cli) | `11.9.0` | `11.10.0` |
| [posthog-js](https://github.com/PostHog/posthog-js) | `1.344.0` | `1.347.2` |
| [react-resizable-panels](https://github.com/bvaughn/react-resizable-panels) | `4.6.2` | `4.6.4` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `3.4.0` | `3.4.1` |


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

Updates `@langchain/groq` from 1.0.4 to 1.1.0
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Commits](https://github.com/langchain-ai/langchainjs/compare/@langchain/groq@1.0.4...@langchain/aws@1.1.0)

Updates `@mixedbread/sdk` from 0.50.1 to 0.50.2
- [Release notes](https://github.com/mixedbread-ai/mixedbread-ts/releases)
- [Changelog](https://github.com/mixedbread-ai/mixedbread-ts/blob/main/CHANGELOG.md)
- [Commits](mixedbread-ai/mixedbread-ts@v0.50.1...v0.50.2)

Updates `@sentry/nextjs` from 10.38.0 to 10.39.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/10.39.0/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@10.38.0...10.39.0)

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

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

Updates `mongoose` from 9.1.6 to 9.2.1
- [Release notes](https://github.com/Automattic/mongoose/releases)
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md)
- [Commits](Automattic/mongoose@9.1.6...9.2.1)

Updates `npm` from 11.9.0 to 11.10.0
- [Release notes](https://github.com/npm/cli/releases)
- [Changelog](https://github.com/npm/cli/blob/latest/CHANGELOG.md)
- [Commits](npm/cli@v11.9.0...v11.10.0)

Updates `posthog-js` from 1.344.0 to 1.347.2
- [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.344.0...posthog-js@1.347.2)

Updates `react-resizable-panels` from 4.6.2 to 4.6.4
- [Release notes](https://github.com/bvaughn/react-resizable-panels/releases)
- [Changelog](https://github.com/bvaughn/react-resizable-panels/blob/main/CHANGELOG.md)
- [Commits](bvaughn/react-resizable-panels@4.6.2...4.6.4)

Updates `tailwind-merge` from 3.4.0 to 3.4.1
- [Release notes](https://github.com/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v3.4.0...v3.4.1)

---
updated-dependencies:
- dependency-name: "@langchain/community"
  dependency-version: 1.1.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@langchain/groq"
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@mixedbread/sdk"
  dependency-version: 0.50.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@sentry/nextjs"
  dependency-version: 10.39.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: langchain
  dependency-version: 1.2.24
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: lucide-react
  dependency-version: 0.564.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: mongoose
  dependency-version: 9.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: npm
  dependency-version: 11.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: posthog-js
  dependency-version: 1.347.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-resizable-panels
  dependency-version: 4.6.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: tailwind-merge
  dependency-version: 3.4.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 16, 2026

Assignees

The following users could not be added as assignees: vectorMindsAI. Either the username does not exist or it does not have the correct permissions to be added as an assignee.

Labels

The following labels could not be found: automated, dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 23, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Feb 23, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/production-dependencies-456d6bbcb7 branch February 23, 2026 09:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants