Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 21, 2025

Bumps the major-updates group with 7 updates in the / directory:

Package From To
@langchain/community 0.3.58 1.0.4
@langchain/core 0.3.79 1.0.6
@langchain/mongodb 0.1.1 1.0.0
@langchain/textsplitters 0.1.0 1.0.0
langchain 0.3.36 1.0.6
mongodb 6.21.0 7.0.0
mongoose 8.20.1 9.0.0

Updates @langchain/community from 0.3.58 to 1.0.4

Release notes

Sourced from @​langchain/community's releases.

@​langchain/community@​1.0.4

Patch Changes

@​langchain/community==1.0.2

Patch Changes

  • b17762a: fix(community): export type properly in duckduckgo_search
  • e4a3b3b: improve(pdf-loader): update error message to specify support for pdf-parse v1 only
  • ecc7a8a: swap problematic eval package
  • Updated dependencies [8319201]
  • Updated dependencies [4906522]
    • @​langchain/openai@​1.1.0
    • @​langchain/classic@​1.0.2

@​langchain/community==1.0.1

What's Changed

Patch Changes

  • Updated dependencies [dda9ea4]
    • @​langchain/classic@​1.0.1
    • @​langchain/openai@​1.0.0

@​langchain/community==1.0.0

What's Changed

This release updates the package for compatibility with LangChain v1.0. See the v1.0 release notes for details on what's new.

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​langchain/community since your current version.


Updates @langchain/core from 0.3.79 to 1.0.6

Release notes

Sourced from @​langchain/core's releases.

@​langchain/core==1.0.4

Patch Changes

  • 8319201: Export standard converter function utility

@​langchain/core==1.0.3

Patch Changes

  • 0a8a23b: feat(@​langchain/core): support of ToolRuntime

@​langchain/core==1.0.2

What's Changed

Patch Changes

  • 6426eb6: fix chunks constructed with tool calls + chunks
  • 619ae64: Add BaseMessage.toFormattedString()

@​langchain/core==1.0.0

🎉 LangChain v1.0 is here! This release provides a focused, production-ready foundation for building agents with significant improvements to the core abstractions and APIs. See the release notes for more details.

✨ Major Features

Standard content blocks

A new unified API for accessing modern LLM features across all providers:

  • New contentBlocks property: Provides provider-agnostic access to reasoning traces, citations, built-in tools (web search, code interpreters, etc.), and other advanced LLM features
  • Type-safe: Full TypeScript support with type hints for all content block types
  • Backward compatible: Content blocks can be loaded lazily with no breaking changes to existing code

Example:

const response = await model.invoke([
  { role: "user", content: "What is the weather in Tokyo?" },
]);
// Access structured content blocks
for (const block of response.contentBlocks) {
if (block.type === "thinking") {
console.log("Model reasoning:", block.thinking);
} else if (block.type === "text") {
console.log("Response:", block.text);
}
}

For more information, see our guide on content blocks.

... (truncated)

Commits
  • 70320b7 chore: version packages (#9443)
  • 70734c1 chore(google-*): set workspace dependencies (#9445)
  • 39404ac feat(genai): thinkingConfig, fix thought sig streaming, token metadata (#9444)
  • f7cfece fix(tools): update error handling behaviour of createAgent fn (#9434)
  • d897f90 chore: fix google deps (#9442)
  • d664418 chore: version packages (#9438)
  • 269e5ba fix(google-genai): add function calling thought signature support (#9441)
  • 0af3fae fix(core): make sure store is provided to tools (#9431)
  • 9f17af1 chore(deps): bump actions/checkout from 5.0.0 to 5.0.1 in the patch-deps-upda...
  • eeef405 chore(deps): bump the major-deps-updates group with 2 updates (#9430)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​langchain/core since your current version.


Updates @langchain/mongodb from 0.1.1 to 1.0.0

Release notes

Sourced from @​langchain/mongodb's releases.

@​langchain/mongodb==1.0.0

What's Changed

This release updates the package for compatibility with LangChain v1.0. See the v1.0 release notes for details on what's new.

Commits

Updates @langchain/textsplitters from 0.1.0 to 1.0.0

Release notes

Sourced from @​langchain/textsplitters's releases.

@​langchain/textsplitters==1.0.0

What's Changed

This release updates the package for compatibility with LangChain v1.0. See the v1.0 release notes for details on what's new.

Commits
Maintainer changes

This version was pushed to npm by hntrl, a new releaser for @​langchain/textsplitters since your current version.


Updates langchain from 0.3.36 to 1.0.6

Release notes

Sourced from langchain's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

langchain==1.0.4

Patch Changes

  • b401680: avoid invalid message order after summarization
  • f63fc0f: fix(langchain): export ToolRuntime from langchain

langchain==1.0.3

Patch Changes

  • f1583cd: allow for model strings in summarization middleware
  • e960f97: check message property when pulling chat models for vercel compat
  • 66fc10c: fix(langchain): don't allow default or optional context schemas
  • 0a8a23b: feat(@​langchain/core): support of ToolRuntime
  • b38be50: Add missing ToolMessage in toolStrategy structured output
  • 42930b5: fix(langchain): improved state schema typing

langchain==1.0.2

What's Changed

Patch Changes

  • 2e45c43: remove bad dynamic import for LS
  • 28eceac: preserve full model name when deciding model provider

langchain==1.0.0

🎉 LangChain v1.0 is here! This release provides a focused, production-ready foundation for building agents. We've streamlined the framework around three core improvements: createAgent, standard content blocks, and a simplified package structure. See the release notes for complete details.

✨ Major Features

createAgent - A new standard for building agents

createAgent is the new standard way to build agents in LangChain 1.0. It provides a simpler interface than createReactAgent from LangGraph while offering greater customization potential through middleware.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for langchain since your current version.


Updates mongodb from 6.21.0 to 7.0.0

Release notes

Sourced from mongodb's releases.

v7.0.0

7.0.0 (2025-11-06)

The MongoDB Node.js team is pleased to announce version 7.0.0 of the mongodb package!

Release Notes

The following is a detailed collection of the changes in the major v7 release of the mongodb package for Node.js. The main focus of this release was usability improvements and a streamlined API. Read on for details!

[!IMPORTANT] This is a list of changes relative to v6.21.0 of the driver. ALL changes listed below are BREAKING unless indicated otherwise. Users migrating from an older version of the driver are advised to upgrade to at least v6.21.0 before adopting v7.

🛠️ Runtime and dependency updates

Minimum Node.js version is now v20.19.0

The minimum supported Node.js version is now v20.19.0 and our TypeScript target has been updated to ES2023. We strive to keep our minimum supported Node.js version in sync with the runtime's release cadence to keep up with the latest security updates and modern language features.

Notably, the driver now offers native support for explicit resource management. Symbol.asyncDispose implementations are available on the MongoClient, ClientSession, ChangeStream and on cursors.

[!Note] Explicit resource management is considered experimental in the driver and will be until the TC39 explicit resource management proposal is completed.

bson and mongodb-connection-string-url versions 7.0.0

This driver version has been updated to use [email protected] and [email protected], which match the driver's Node.js runtime version support. BSON functionality re-exported from the driver is furthermore subject to the changes outlined in the BSON V7 release notes.

Optional peer dependency releases and version bumps

  • @mongodb-js/zstd optional peer dependency minimum version raised to 7.0.0, dropped support for 1.x and 2.x (note that @mongodb-js/zstd does not have 3.x-6.x version releases)
  • kerberos optional peer dependency minimum version raised to 7.0.0, dropped support for 2.x (note that kerberos does not have 3.x-6.x version releases)
  • mongodb-client-encryption optional peer dependency minimum version raised to 7.0.0, dropped support for 6.x

Additionally, the driver is now compatible with the following packages:

Dependency Previous Range New Allowed Range
@​aws-sdk/credential-providers ^3.188.0 ^3.806.0
gcp-metadata ^5.2.0 ^7.0.1
socks ^2.7.1 ^2.8.6

🔐 AWS authentication

To improve long-term maintainability and ensure compatibility with AWS updates, we’ve standardized AWS auth to use the official SDK in all cases and made a number of supporting changes outlined below.

@aws-sdk/credential-providers is now required for MONGODB-AWS authentication

Previous versions of the driver contained two implementations for AWS authentication and could run the risk of the custom driver implementation not supporting all AWS authentication features as well as not being correct when AWS makes changes. Using the official AWS SDK in all cases alleviates these issues.

... (truncated)

Changelog

Sourced from mongodb's changelog.

7.0.0 (2025-11-06)

⚠ BREAKING CHANGES

  • NODE-7259: use alphas of all supporting packages (#4746)
  • NODE-5510: dont filter change stream options (#4723)
  • NODE-6296: remove cursor default batch size of 1000 (#4729)
  • NODE-7150: update peer dependency matrix for 3rd party peer deps (#4720)
  • NODE-7046: remove AWS uri/options support (#4689)
  • NODE-4808: remove support for stream() transform on cursors and change streams (#4728)
  • NODE-6377: remove noResponse option (#4724)
  • NODE-6473: remove MONGODB-CR auth (#4717)
  • NODE-5994: Remove metadata-related properties from public driver API (#4716)
  • NODE-7016: remove beta namespace and move resource management into driver (#4719)
  • NODE-4184: don't throw on aggregate with write concern and explain (#4718)
  • NODE-7043, NODE-7217: adopt mongodb-client-encryption v7 (#4705)
  • NODE-6065: throw MongoRuntimeError instead of MissingDependencyError in crypto connection (#4711)
  • NODE-6584: improve typing for filepaths in AutoEncryptionOptions (#4341)
  • NODE-6334: rename PoolRequstedRetry to PoolRequestedRetry (#4696)
  • NODE-7174: drop support for Node16 and Node18 (#4668)
  • NODE-7047: use custom credential provider first after URI (#4656)
  • NODE-6988: require aws sdk for aws auth (#4659)

Features

  • bump bson to 7.0.0-alpha.2 (#4756) (9b34953)
  • NODE-4184: don't throw on aggregate with write concern and explain (#4718) (88e02a4)
  • NODE-4243: drop collection checks ns not found (#4742) (a8d7c5f)
  • NODE-4808: remove support for stream() transform on cursors and change streams (#4728) (1702987)
  • NODE-5510: dont filter change stream options (#4723) (a2daf76)
  • NODE-5545: remove deprecated objects (#4704) (cfbada6)
  • NODE-5994: Remove metadata-related properties from public driver API (#4716) (b59c5ce)
  • NODE-6065: throw MongoRuntimeError instead of MissingDependencyError in crypto connection (#4711) (ff229fa)
  • NODE-6296: remove cursor default batch size of 1000 (#4729) (f8a855f)
  • NODE-6334: rename PoolRequstedRetry to PoolRequestedRetry (#4696) (84db848)
  • NODE-6377: remove noResponse option (#4724) (9e9059a)
  • NODE-6473: remove MONGODB-CR auth (#4717) (9a1bc65)
  • NODE-6584: improve typing for filepaths in AutoEncryptionOptions (#4341) (dab4c7c)
  • NODE-6988: require aws sdk for aws auth (#4659) (b7c6750)
  • NODE-7016: remove beta namespace and move resource management into driver (#4719) (fb2824f)
  • NODE-7043, NODE-7217: adopt mongodb-client-encryption v7 (#4705) (3f7196e)
  • NODE-7046: remove AWS uri/options support (#4689) (d14ac3f)
  • NODE-7047: use custom credential provider first after URI (#4656) (2a47bbb)
  • NODE-7150: update peer dependency matrix for 3rd party peer deps (#4720) (0451dae)
  • NODE-7174: drop support for Node16 and Node18 (#4668) (a576b7d)
  • NODE-7223: run checkout on connect regardless of credentials (#4715) (c5f74ab)
  • NODE-7259: use alphas of all supporting packages (#4746) (e1ea14c)
  • NODE-7260: update bson alpha to latest (#4748) (4e88559)

... (truncated)

Commits
  • 2512137 chore(main): release 7.0.0 (#4667)
  • e4881f5 docs(NODE-7172): create v7 migration guide (#4751)
  • 53a4fb1 docs: 6.21 docs (#4782)
  • 696664c feat!(NODE-7286): update peer dependencies (#4780)
  • 517da84 docs: add info about testing with different versions and the rosetta setup fo...
  • 252dab8 test(NODE-7219): remove unused tests (#4767)
  • 76c98bb test(NODE-5206): fix flaky sdam prose test (#4752)
  • cb522bf fix(NODE-7247): clarify #rewrapManyDataKey() parameter types (#4760)
  • ec996e6 chore(NODE-6945): remove dependency on v8-heapsnapshot (#4763)
  • 7d879fd test(NODE-7280): remove test/mongodb.ts and its usage (#4766)
  • Additional commits viewable in compare view

Updates mongoose from 8.20.1 to 9.0.0

Release notes

Sourced from mongoose's releases.

9.0.0 / 2025-11-21

  • BREAKING CHANGE: drop support for callback-based pre middleware, e.g. next() in pre() hooks
  • BREAKING CHANGE: update to MongoDB Node driver v7
  • BREAKING CHANGE: make UUID schema type return bson UUIDs #15378
  • BREAKING CHANGE: make findOne(null), find(null), etc. throw an error instead of returning first doc #15019 #14948
  • BREAKING CHANGE: disallow update pipelines by default, require updatePipeline option #15586 #14424
  • BREAKING CHANGE: call virtual ref function with subdoc, not top-level doc #14652 #12440 #12363
  • BREAKING CHANGE(types): make create() and insertOne() params more strict, remove generics to prevent type inference #15587 #15355
  • BREAKING CHANGE(types): make FilterQuery properties no longer resolve to any in TypeScript #15422
  • BREAKING CHANGE(types): change this to HydratedDocument for default() and required(), HydratedDocument | Query for validate() #15020 #14696
  • BREAKING CHANGE(types): make id a virtual in TypeScript rather than a property on Document base class #15572 #13079
  • BREAKING CHANGE(types): consolidate RootQuerySelector, Condition, etc. types with MongoDB driver's #15593
  • BREAKING CHANGE: asyncify update validators, SchemaType.prototype.doValidate(), save hooks for improved stack traces #15312
  • BREAKING CHANGE: remove bson as direct dependency, use mongodb/lib/bson instead #15576 #15154
  • BREAKING CHANGE: remove _executionStack, make validate() async function and call Kareem hooks directly vs through wrappers #15298 #14906
  • BREAKING CHANGE: remove browser build, move to @​mongoosejs/browser instead #15385 #15296
  • BREAKING CHANGE: remove schematype caster and casterConstructor properties in favor of embeddedSchemaType and Constructor #15513 #15179
  • BREAKING CHANGE: adding missing pluralizations, fixing pluralization: virus -> viruses #14247 ItsBradyDavis
  • BREAKING CHANGE: remove connection noListener option #15641 #15640
  • feat(types): add Schema.create() for TypeScript type inference #15482 #14954
  • chore: remove examples directory #15597

9.0.0-rc1 / 2025-11-19

  • fix(populate): correctly populate embedded discriminators on subdocuments #15774

9.0.0-rc0 / 2025-11-19

  • BREAKING CHANGE: drop support for callback-based pre middleware, e.g. next() in pre() hooks
  • BREAKING CHANGE: update to MongoDB Node driver v7
  • BREAKING CHANGE: make UUID schema type return bson UUIDs #15378
  • BREAKING CHANGE: make findOne(null), find(null), etc. throw an error instead of returning first doc #15019 #14948
  • BREAKING CHANGE: disallow update pipelines by default, require updatePipeline option #15586 #14424
  • BREAKING CHANGE: call virtual ref function with subdoc, not top-level doc #14652 #12440 #12363
  • BREAKING CHANGE(types): make create() and insertOne() params more strict, remove generics to prevent type inference #15587 #15355
  • BREAKING CHANGE(types): make FilterQuery properties no longer resolve to any in TypeScript #15422
  • BREAKING CHANGE(types): change this to HydratedDocument for default() and required(), HydratedDocument | Query for validate() #15020 #14696
  • BREAKING CHANGE(types): make id a virtual in TypeScript rather than a property on Document base class #15572 #13079
  • BREAKING CHANGE(types): consolidate RootQuerySelector, Condition, etc. types with MongoDB driver's #15593
  • BREAKING CHANGE: asyncify update validators, SchemaType.prototype.doValidate(), save hooks for improved stack traces #15312
  • BREAKING CHANGE: remove bson as direct dependency, use mongodb/lib/bson instead #15576 #15154
  • BREAKING CHANGE: remove _executionStack, make validate() async function and call Kareem hooks directly vs through wrappers #15298 #14906
  • BREAKING CHANGE: remove browser build, move to @​mongoosejs/browser instead #15385 #15296
  • BREAKING CHANGE: remove schematype caster and casterConstructor properties in favor of embeddedSchemaType and Constructor #15513 #15179
  • BREAKING CHANGE: adding missing pluralizations, fixing pluralization: virus -> viruses #14247 ItsBradyDavis
  • BREAKING CHANGE: remove connection noListener option #15641 #15640
  • feat(types): add Schema.create() for TypeScript type inference #15482 #14954
  • chore: remove examples directory #15597
Changelog

Sourced from mongoose's changelog.

9.0.0 / 2025-11-21

  • BREAKING CHANGE: drop support for callback-based pre middleware, e.g. next() in pre() hooks
  • BREAKING CHANGE: update to MongoDB Node driver v7
  • BREAKING CHANGE: make UUID schema type return bson UUIDs #15378
  • BREAKING CHANGE: make findOne(null), find(null), etc. throw an error instead of returning first doc #15019 #14948
  • BREAKING CHANGE: disallow update pipelines by default, require updatePipeline option #15586 #14424
  • BREAKING CHANGE: call virtual ref function with subdoc, not top-level doc #14652 #12440 #12363
  • BREAKING CHANGE(types): make create() and insertOne() params more strict, remove generics to prevent type inference #15587 #15355
  • BREAKING CHANGE(types): make FilterQuery properties no longer resolve to any in TypeScript #15422
  • BREAKING CHANGE(types): change this to HydratedDocument for default() and required(), HydratedDocument | Query for validate() #15020 #14696
  • BREAKING CHANGE(types): make id a virtual in TypeScript rather than a property on Document base class #15572 #13079
  • BREAKING CHANGE(types): consolidate RootQuerySelector, Condition, etc. types with MongoDB driver's #15593
  • BREAKING CHANGE: asyncify update validators, SchemaType.prototype.doValidate(), save hooks for improved stack traces #15312
  • BREAKING CHANGE: remove bson as direct dependency, use mongodb/lib/bson instead #15576 #15154
  • BREAKING CHANGE: remove _executionStack, make validate() async function and call Kareem hooks directly vs through wrappers #15298 #14906
  • BREAKING CHANGE: remove browser build, move to @​mongoosejs/browser instead #15385 #15296
  • BREAKING CHANGE: remove schematype caster and casterConstructor properties in favor of embeddedSchemaType and Constructor #15513 #15179
  • BREAKING CHANGE: adding missing pluralizations, fixing pluralization: virus -> viruses #14247 ItsBradyDavis
  • BREAKING CHANGE: remove connection noListener option #15641 #15640
  • feat(types): add Schema.create() for TypeScript type inference #15482 #14954
  • chore: remove examples directory #15597
Commits

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

…pdates

Bumps the major-updates group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@langchain/community](https://github.com/langchain-ai/langchainjs) | `0.3.58` | `1.0.4` |
| [@langchain/core](https://github.com/langchain-ai/langchainjs) | `0.3.79` | `1.0.6` |
| [@langchain/mongodb](https://github.com/langchain-ai/langchainjs) | `0.1.1` | `1.0.0` |
| [@langchain/textsplitters](https://github.com/langchain-ai/langchainjs) | `0.1.0` | `1.0.0` |
| [langchain](https://github.com/langchain-ai/langchainjs) | `0.3.36` | `1.0.6` |
| [mongodb](https://github.com/mongodb/node-mongodb-native) | `6.21.0` | `7.0.0` |
| [mongoose](https://github.com/Automattic/mongoose) | `8.20.1` | `9.0.0` |



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

Updates `@langchain/core` from 0.3.79 to 1.0.6
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Commits](https://github.com/langchain-ai/langchainjs/compare/@langchain/[email protected])

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

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

Updates `langchain` from 0.3.36 to 1.0.6
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Commits](https://github.com/langchain-ai/langchainjs/commits/[email protected])

Updates `mongodb` from 6.21.0 to 7.0.0
- [Release notes](https://github.com/mongodb/node-mongodb-native/releases)
- [Changelog](https://github.com/mongodb/node-mongodb-native/blob/main/HISTORY.md)
- [Commits](mongodb/node-mongodb-native@v6.21.0...v7.0.0)

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

---
updated-dependencies:
- dependency-name: "@langchain/community"
  dependency-version: 1.0.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-updates
- dependency-name: "@langchain/core"
  dependency-version: 1.0.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-updates
- dependency-name: "@langchain/mongodb"
  dependency-version: 1.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-updates
- dependency-name: "@langchain/textsplitters"
  dependency-version: 1.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-updates
- dependency-name: langchain
  dependency-version: 1.0.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-updates
- dependency-name: mongodb
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-updates
- dependency-name: mongoose
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Nov 21, 2025
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.

1 participant