chore(deps): update dependency mongodb.driver to 3.5.2 #464

Open
kjuulh wants to merge 1 commits from renovate/mongo-csharp-driver-monorepo into main
Owner

This PR contains the following updates:

Package Type Update Change
MongoDB.Driver (source) nuget minor 3.2.1 -> 3.5.2

⚠️ Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

mongodb/mongo-csharp-driver (MongoDB.Driver)

v3.5.2: .NET Driver Version 3.5.2 Release Notes

[!IMPORTANT]

.NET 10 / C# 14

If you are targeting .NET 10 or using C# 14 in your project you should upgrade to this release as soon as possible as it contains important compatibilty fixes.

Projects targeting prior versions of .NET or not using C# 14 can upgrade at their convenience.

This is a patch release that contains fixes and stability improvements:

  • CSHARP-5793: Map MemoryExtensions Contains and SequenceEqual with null comparer to Enumerable methods with no comparer parameter

The full list of issues resolved in this release is available at CSHARP JIRA project.
Documentation on the .NET driver can be found here.

v3.5.1: .NET Driver Version 3.5.1 Release Notes

This is a patch release that contains fixes and stability improvements:

  • CSHARP-5777: Avoid ThreadPool-dependent IO methods in sync API
  • CSHARP-5743: Version 3.5 causes delays and disruptions because it is trying to access a disposed semaphore slim
  • CSHARP-5749: Support C# 14 changes that result in overloads now binding MemoryExtensions extension methods
  • CSHARP-5786: Add Decimal128 byte constructor overload (net10 compat)

The full list of issues resolved in this release is available at CSHARP JIRA project.
Documentation on the .NET driver can be found here.

v3.5.0: .NET Driver Version 3.5.0 Release Notes

This is the general availability release for the 3.5.0 version of the driver.

[!IMPORTANT]

Internal Changes for an Upcoming Feature

This release includes low level changes to internal subsystems including operation execution, timeout handling, and resource cleanup logic - in preparation for supporting Client-Side Operations Timeout (CSOT) in an upcoming release.
While these changes should be backward-compatible and not alter existing behavior, they touch core driver infrastructure.
If you experience unexpected issues such as:

  • Operations timing out unexpectedly or not timing out when expected
  • Unusual delays or hangs in database calls
  • Differences in command cancellation behavior

Please let us know via the MongoDB JIRA Driver project or your MongoDB support channel, providing driver logs and a reproduction if possible.

Experimental Support for Queryable Encryption Text Field Prefix, Suffix and Substring Queries

Substring, prefix and suffix search for Queryable Encryption are in preview and should be used for experimental workloads only. These features are unstable and their security is not guaranteed until released as Generally Available (GA). The GA version of these features may not be backwards compatible with the preview version.

The main new features in 3.5.0 include:
  • CSHARP-5453: Add builder for CSFLE schemas
  • CSHARP-3222: Add LINQ support for median and percentile accumulators/window functions
  • CSHARP-5672: Support sorting by value in PushEach operation
  • CSHARP-5625: Support text indexes for explicit and automatic encryption
  • CSHARP-734: SOCKS5 Proxy Support
  • CSHARP-3458: Extend IAsyncCursor and IAsyncCursorSource to support IAsyncEnumerable
Improvements:
  • CSHARP-5603: Add Big Endian support in BinaryVectorReader and BinaryVectorWriter
  • CSHARP-5614: Fix deserialization of primitive arrays on Big Endian systems
  • CSHARP-5619: Replace IConnection.SendMessages with the method to send a single message
  • CSHARP-5377: Eliminate unnecessary killCursors command when batchSize == limit
Fixes:
  • CSHARP-3435: FilterDefinition Inject method should use root serializer
  • CSHARP-3662: MongoClientSettings.SocketTimeout does not work for values under 500ms on Windows for sync code
  • CSHARP-4040: Fix bug when using field with same element name as discriminator
  • CSHARP-5587: FindOneAndUpdate should insert correct discriminator value on upsert
  • CSHARP-3494: Fix discriminator for generic types
  • CSHARP-5588: Unable to select KeyValuePair Key when using camelCase convention
  • CSHARP-5633: BsonSerializer.IsTypeDiscriminated is not thread-safe
Maintenance:

The full list of issues resolved in this release is available at CSHARP JIRA project.
Documentation on the .NET driver can be found here.

v3.4.3: .NET Driver Version 3.4.3 Release Notes

This is a patch release that contains fixes and stability improvements:

  • CSHARP-5697: Fix Client.BulkWrite failure in case complex type is being used as Document's Id

The full list of issues resolved in this release is available at CSHARP JIRA project.
Documentation on the .NET driver can be found here.

v3.4.2: .NET Driver Version 3.4.2 Release Notes

This is a patch release that contains fixes and stability improvements:

  • CSHARP-5661: Fix UnobservedTaskException on socket connecting timeout

The full list of issues resolved in this release is available at CSHARP JIRA project.

Documentation on the .NET driver can be found here.

Upgrading
There are no known backwards breaking changes in this release.

v3.4.1: .NET Driver Version 3.4.1 Release Notes

This is a patch release that addresses some issues reported since 3.4.0 was released:

  • CSHARP-5588 Fix issue with conventions being ignored when using KeyValuePair in LINQ
  • CSHARP-5633 Fix thread safety issue with BsonSerializer.IsTypeDiscriminated

The list of JIRA tickets resolved in this release is available at CSHARP JIRA project.

Documentation on the .NET driver can be found here.

Upgrading
There are no known backwards breaking changes in this release.

v3.4.0: .NET Driver Version 3.4.0 Release Notes

This is the general availability release for the 3.4.0 version of the driver.

The main new features in 3.4.0 include:
  • CSHARP-5551: Support KeyValuePair.Create<TKey,TValue>method in LINQ
  • CSHARP-5552: Add support for $convert in LINQ
  • CSHARP-5505: Add $geoNear stage aggregation builders
  • CSHARP-4935: Support casting from an interface to a type that implements that interface in LINQ queries
  • CSHARP-4779: Support Dictionary(IEnumerable<KeyValuePair<TKey, TValue>> collection) constructor in LINQ
  • CSHARP-5543: Add new options for Atlas Search Text and Phrase operators
  • CSHARP-4535: Support queries after casting IQueryable<Derived> to IQueryable<Base>
Improvements:
  • CSHARP-5531: Reduce memory allocations in BsonStreamAdapter.WriteDouble and WriteInt64
  • CSHARP-5529: Optimize grouping.First().X to not retrieve the entire $$ROOT
Fixes:
  • CSHARP-5540: Fix exception when using AsQueryable().Last()
  • CSHARP-5471: Incorrectly resolving the authentication mechanism parameters from SRV connection string
  • CSHARP-5442: Fixed use of serializer by Atlas Search operators

[!NOTE]
Driver will start using registered serializers for Atlas Search operators, to continue using the previous behavior use SearchDefinition.UseConfiguredSerializers(false)

The full list of issues resolved in this release is available at CSHARP JIRA project.
Documentation on the .NET driver can be found here.

v3.3.0: .NET Driver Version 3.3.0 Release Notes

This is the general availability release for the 3.3.0 version of the driver.

[!IMPORTANT]
A future minor release will raise the minimum supported MongoDB Server version from 4.0 to 4.2. This is in accordance with MongoDB Software Lifecycle Schedules. Support for MongoDB Server 4.0 will be dropped in a future release!

The main new features in 3.3.0 include:
  • CSHARP-5469: Support $lookup in CSFLE and QE
  • CSHARP-5205: Add option to configure DEK cache lifetime
  • CSHARP-4883: Support SkipWhile and TakeWhile methods in LINQ
  • CSHARP-5472: Support of NamespaceType property into ChangeStreamDocument
  • CSHARP-5478: Support for $rankFusion aggregation stage
  • CSHARP-5527: Support for $sigmoid expression in LINQ
  • CSHARP-5506: Support dictionary[key] for keys that aren't strings but are serialized as strings in LINQ queries
  • CSHARP-1585: Support for $elemMatch filters directly against the elements with no field name
  • CSHARP-5481: Implement OfType and Is support for queries with scalar discriminators
Improvements:
  • CSHARP-5496: Reduce locks contention on server selection and connection checkout
Fixes:
  • CSHARP-5513: Fix ChangeStream DisambiguatedPaths implementation
Maintenance:

The full list of issues resolved in this release is available at CSHARP JIRA project.

Documentation on the .NET driver can be found here.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [MongoDB.Driver](https://www.mongodb.com/docs/drivers/csharp/) ([source](https://github.com/mongodb/mongo-csharp-driver)) | nuget | minor | `3.2.1` -> `3.5.2` | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>mongodb/mongo-csharp-driver (MongoDB.Driver)</summary> ### [`v3.5.2`](https://github.com/mongodb/mongo-csharp-driver/releases/tag/v3.5.2): .NET Driver Version 3.5.2 Release Notes > \[!IMPORTANT] > > ## .NET 10 / C# 14 > > If you are targeting .NET 10 or using C# 14 in your project you should upgrade to this release as soon as possible as it contains important compatibilty fixes. > > Projects targeting prior versions of .NET or not using C# 14 can upgrade at their convenience. This is a patch release that contains fixes and stability improvements: - [CSHARP-5793](https://jira.mongodb.org/browse/CSHARP-5793): Map MemoryExtensions Contains and SequenceEqual with null comparer to Enumerable methods with no comparer parameter The full list of issues resolved in this release is available at [CSHARP JIRA project](https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%203.5.2%20ORDER%20BY%20key%20ASC). Documentation on the .NET driver can be found [here](https://www.mongodb.com/docs/drivers/csharp/v3.5/). ### [`v3.5.1`](https://github.com/mongodb/mongo-csharp-driver/releases/tag/v3.5.1): .NET Driver Version 3.5.1 Release Notes This is a patch release that contains fixes and stability improvements: - [CSHARP-5777](https://jira.mongodb.org/browse/CSHARP-5777): Avoid ThreadPool-dependent IO methods in sync API - [CSHARP-5743](https://jira.mongodb.org/browse/CSHARP-5743): Version 3.5 causes delays and disruptions because it is trying to access a disposed semaphore slim - [CSHARP-5749](https://jira.mongodb.org/browse/CSHARP-5749): Support C# 14 changes that result in overloads now binding MemoryExtensions extension methods - [CSHARP-5786](https://jira.mongodb.org/browse/CSHARP-5786): Add Decimal128 byte constructor overload (net10 compat) The full list of issues resolved in this release is available at [CSHARP JIRA project](https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%203.5.1%20ORDER%20BY%20key%20ASC). Documentation on the .NET driver can be found [here](https://www.mongodb.com/docs/drivers/csharp/v3.5/). ### [`v3.5.0`](https://github.com/mongodb/mongo-csharp-driver/releases/tag/v3.5.0): .NET Driver Version 3.5.0 Release Notes This is the general availability release for the 3.5.0 version of the driver. > \[!IMPORTANT] > > ### Internal Changes for an Upcoming Feature > > This release includes low level changes to internal subsystems including operation execution, timeout handling, and resource cleanup logic - in preparation for supporting [Client-Side Operations Timeout (CSOT)](https://jira.mongodb.org/browse/CSHARP-3393) in an upcoming release. > While these changes should be backward-compatible and not alter existing behavior, they touch core driver infrastructure. > If you experience unexpected issues such as: > > - Operations timing out unexpectedly or not timing out when expected > - Unusual delays or hangs in database calls > - Differences in command cancellation behavior > > Please [let us know via the MongoDB JIRA Driver project](https://jira.mongodb.org/projects/CSHARP/issues/) or your MongoDB support channel, providing driver logs and a reproduction if possible. > > ### Experimental Support for Queryable Encryption Text Field Prefix, Suffix and Substring Queries > > Substring, prefix and suffix search for Queryable Encryption are in preview and should be used for experimental workloads only. These features are unstable and their security is not guaranteed until released as Generally Available (GA). The GA version of these features may not be backwards compatible with the preview version. ##### The main new features in 3.5.0 include: - [CSHARP-5453](https://jira.mongodb.org/browse/CSHARP-5453): Add builder for CSFLE schemas - [CSHARP-3222](https://jira.mongodb.org/browse/CSHARP-3222): Add LINQ support for median and percentile accumulators/window functions - [CSHARP-5672](https://jira.mongodb.org/browse/CSHARP-5672): Support sorting by value in PushEach operation - [CSHARP-5625](https://jira.mongodb.org/browse/CSHARP-5625): Support text indexes for explicit and automatic encryption - [CSHARP-734](https://jira.mongodb.org/browse/CSHARP-734): SOCKS5 Proxy Support - [CSHARP-3458](https://jira.mongodb.org/browse/CSHARP-3458): Extend IAsyncCursor and IAsyncCursorSource to support IAsyncEnumerable ##### Improvements: - [CSHARP-5603](https://jira.mongodb.org/browse/CSHARP-5603): Add Big Endian support in BinaryVectorReader and BinaryVectorWriter - [CSHARP-5614](https://jira.mongodb.org/browse/CSHARP-5614): Fix deserialization of primitive arrays on Big Endian systems - [CSHARP-5619](https://jira.mongodb.org/browse/CSHARP-5619): Replace IConnection.SendMessages with the method to send a single message - [CSHARP-5377](https://jira.mongodb.org/browse/CSHARP-5377): Eliminate unnecessary killCursors command when batchSize == limit ##### Fixes: - [CSHARP-3435](https://jira.mongodb.org/browse/CSHARP-3435): FilterDefinition Inject method should use root serializer - [CSHARP-3662](https://jira.mongodb.org/browse/CSHARP-3662): MongoClientSettings.SocketTimeout does not work for values under 500ms on Windows for sync code - [CSHARP-4040](https://jira.mongodb.org/browse/CSHARP-4040): Fix bug when using field with same element name as discriminator - [CSHARP-5587](https://jira.mongodb.org/browse/CSHARP-5587): FindOneAndUpdate should insert correct discriminator value on upsert - [CSHARP-3494](https://jira.mongodb.org/browse/CSHARP-3494): Fix discriminator for generic types - [CSHARP-5588](https://jira.mongodb.org/browse/CSHARP-5588): Unable to select KeyValuePair Key when using camelCase convention - [CSHARP-5633](https://jira.mongodb.org/browse/CSHARP-5633): BsonSerializer.IsTypeDiscriminated is not thread-safe ##### Maintenance: - [CSHARP-5596](https://jira.mongodb.org/browse/CSHARP-5596): Remove unused \*OpcodeOperation classes - [CSHARP-5617](https://jira.mongodb.org/browse/CSHARP-5617): Remove unused IChannel.Query methods - [CSHARP-5547](https://jira.mongodb.org/browse/CSHARP-5547): Remove support for MongoDB 4.0 The full list of issues resolved in this release is available at [CSHARP JIRA project](https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%203.5.0%20ORDER%20BY%20key%20ASC). Documentation on the .NET driver can be found [here](https://www.mongodb.com/docs/drivers/csharp/v3.5/). ### [`v3.4.3`](https://github.com/mongodb/mongo-csharp-driver/releases/tag/v3.4.3): .NET Driver Version 3.4.3 Release Notes This is a patch release that contains fixes and stability improvements: - [CSHARP-5697](https://jira.mongodb.org/browse/CSHARP-5697): Fix Client.BulkWrite failure in case complex type is being used as Document's Id The full list of issues resolved in this release is available at [CSHARP JIRA project](https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%203.4.3%20ORDER%20BY%20key%20ASC). Documentation on the .NET driver can be found [here](https://www.mongodb.com/docs/drivers/csharp/v3.4/). ### [`v3.4.2`](https://github.com/mongodb/mongo-csharp-driver/releases/tag/v3.4.2): .NET Driver Version 3.4.2 Release Notes This is a patch release that contains fixes and stability improvements: - [CSHARP-5661](https://jira.mongodb.org/browse/CSHARP-5661): Fix UnobservedTaskException on socket connecting timeout The full list of issues resolved in this release is available at [CSHARP JIRA project](https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%203.4.2%20ORDER%20BY%20key%20ASC). Documentation on the .NET driver can be found [here](https://www.mongodb.com/docs/drivers/csharp/v3.4/). Upgrading There are no known backwards breaking changes in this release. ### [`v3.4.1`](https://github.com/mongodb/mongo-csharp-driver/releases/tag/v3.4.1): .NET Driver Version 3.4.1 Release Notes This is a patch release that addresses some issues reported since 3.4.0 was released: - [CSHARP-5588](https://jira.mongodb.org/browse/CSHARP-5588) Fix issue with conventions being ignored when using KeyValuePair in LINQ - [CSHARP-5633](https://jira.mongodb.org/browse/CSHARP-5633) Fix thread safety issue with BsonSerializer.IsTypeDiscriminated The list of JIRA tickets resolved in this release is available at [CSHARP JIRA project](https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%203.4.1%20ORDER%20BY%20key%20ASC). Documentation on the .NET driver can be found [here](https://www.mongodb.com/docs/drivers/csharp/v3.4/). Upgrading There are no known backwards breaking changes in this release. ### [`v3.4.0`](https://github.com/mongodb/mongo-csharp-driver/releases/tag/v3.4.0): .NET Driver Version 3.4.0 Release Notes This is the general availability release for the 3.4.0 version of the driver. ##### The main new features in 3.4.0 include: - [CSHARP-5551](https://jira.mongodb.org/browse/CSHARP-5551): Support KeyValuePair.Create\<TKey,TValue>method in LINQ - [CSHARP-5552](https://jira.mongodb.org/browse/CSHARP-5552): Add support for $convert in LINQ - [CSHARP-5505](https://jira.mongodb.org/browse/CSHARP-5505): Add $geoNear stage aggregation builders - [CSHARP-4935](https://jira.mongodb.org/browse/CSHARP-4935): Support casting from an interface to a type that implements that interface in LINQ queries - [CSHARP-4779](https://jira.mongodb.org/browse/CSHARP-4779): Support Dictionary(IEnumerable\<KeyValuePair\<TKey, TValue>> collection) constructor in LINQ - [CSHARP-5543](https://jira.mongodb.org/browse/CSHARP-5543): Add new options for Atlas Search Text and Phrase operators - [CSHARP-4535](https://jira.mongodb.org/browse/CSHARP-4535): Support queries after casting IQueryable\<Derived> to IQueryable\<Base> ##### Improvements: - [CSHARP-5531](https://jira.mongodb.org/browse/CSHARP-5531): Reduce memory allocations in BsonStreamAdapter.WriteDouble and WriteInt64 - [CSHARP-5529](https://jira.mongodb.org/browse/CSHARP-5529): Optimize grouping.First().X to not retrieve the entire $$ROOT ##### Fixes: - [CSHARP-5540](https://jira.mongodb.org/browse/CSHARP-5540): Fix exception when using AsQueryable().Last() - [CSHARP-5471](https://jira.mongodb.org/browse/CSHARP-5471): Incorrectly resolving the authentication mechanism parameters from SRV connection string - [CSHARP-5442](https://jira.mongodb.org/browse/CSHARP-5442): Fixed use of serializer by Atlas Search operators > \[!NOTE] > Driver will start using registered serializers for Atlas Search operators, to continue using the previous behavior use `SearchDefinition.UseConfiguredSerializers(false)` The full list of issues resolved in this release is available at [CSHARP JIRA project](https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%203.4.0%20ORDER%20BY%20key%20ASC). Documentation on the .NET driver can be found [here](https://www.mongodb.com/docs/drivers/csharp/v3.4/). ### [`v3.3.0`](https://github.com/mongodb/mongo-csharp-driver/releases/tag/v3.3.0): .NET Driver Version 3.3.0 Release Notes This is the general availability release for the 3.3.0 version of the driver. > \[!IMPORTANT]\ > A future minor release will raise the minimum supported MongoDB Server version from 4.0 to 4.2. This is in accordance with [MongoDB Software Lifecycle Schedules](https://www.mongodb.com/legal/support-policy/lifecycles). Support for MongoDB Server 4.0 will be dropped in a future release! ##### The main new features in 3.3.0 include: - [CSHARP-5469](https://jira.mongodb.org/browse/CSHARP-5469): Support $lookup in CSFLE and QE - [CSHARP-5205](https://jira.mongodb.org/browse/CSHARP-5205): Add option to configure DEK cache lifetime - [CSHARP-4883](https://jira.mongodb.org/browse/CSHARP-4883): Support SkipWhile and TakeWhile methods in LINQ - [CSHARP-5472](https://jira.mongodb.org/browse/CSHARP-5472): Support of NamespaceType property into ChangeStreamDocument - [CSHARP-5478](https://jira.mongodb.org/browse/CSHARP-5478): Support for $rankFusion aggregation stage - [CSHARP-5527](https://jira.mongodb.org/browse/CSHARP-5527): Support for $sigmoid expression in LINQ - [CSHARP-5506](https://jira.mongodb.org/browse/CSHARP-5506): Support dictionary\[key] for keys that aren't strings but are serialized as strings in LINQ queries - [CSHARP-1585](https://jira.mongodb.org/browse/CSHARP-1585): Support for $elemMatch filters directly against the elements with no field name - [CSHARP-5481](https://jira.mongodb.org/browse/CSHARP-5481): Implement OfType and Is support for queries with scalar discriminators ##### Improvements: - [CSHARP-5496](https://jira.mongodb.org/browse/CSHARP-5496): Reduce locks contention on server selection and connection checkout ##### Fixes: - [CSHARP-5513](https://jira.mongodb.org/browse/CSHARP-5513): Fix ChangeStream DisambiguatedPaths implementation ##### Maintenance: - [CSHARP-5494](https://jira.mongodb.org/browse/CSHARP-5494): Deprecate Hedged Reads options The full list of issues resolved in this release is available at [CSHARP JIRA project](https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%203.3.0%20ORDER%20BY%20key%20ASC). Documentation on the .NET driver can be found [here](https://www.mongodb.com/docs/drivers/csharp/v3.3/). </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMjAuMyIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-03-28 23:52:11 +01:00
kjuulh force-pushed renovate/mongo-csharp-driver-monorepo from dff1ffdad4 to 5032542d2e 2025-05-02 02:47:20 +02:00 Compare
kjuulh changed title from chore(deps): update dependency mongodb.driver to 3.3.0 to chore(deps): update dependency mongodb.driver to 3.4.0 2025-05-02 02:47:21 +02:00
kjuulh force-pushed renovate/mongo-csharp-driver-monorepo from 5032542d2e to be40986e03 2025-07-17 02:55:58 +02:00 Compare
kjuulh changed title from chore(deps): update dependency mongodb.driver to 3.4.0 to chore(deps): update dependency mongodb.driver to 3.4.1 2025-07-17 02:56:00 +02:00
kjuulh force-pushed renovate/mongo-csharp-driver-monorepo from be40986e03 to 26b60ce667 2025-07-26 02:55:31 +02:00 Compare
kjuulh changed title from chore(deps): update dependency mongodb.driver to 3.4.1 to chore(deps): update dependency mongodb.driver to 3.4.2 2025-07-26 02:55:33 +02:00
kjuulh force-pushed renovate/mongo-csharp-driver-monorepo from 26b60ce667 to 605d53d1b0 2025-11-13 03:45:48 +01:00 Compare
kjuulh changed title from chore(deps): update dependency mongodb.driver to 3.4.2 to chore(deps): update dependency mongodb.driver to 3.5.0 2025-11-13 03:45:51 +01:00
kjuulh force-pushed renovate/mongo-csharp-driver-monorepo from 605d53d1b0 to ffcebf749a 2025-11-20 03:02:54 +01:00 Compare
kjuulh changed title from chore(deps): update dependency mongodb.driver to 3.5.0 to chore(deps): update dependency mongodb.driver to 3.5.1 2025-11-20 03:02:57 +01:00
kjuulh force-pushed renovate/mongo-csharp-driver-monorepo from ffcebf749a to c19aa19f2c 2025-11-28 02:58:08 +01:00 Compare
kjuulh changed title from chore(deps): update dependency mongodb.driver to 3.5.1 to chore(deps): update dependency mongodb.driver to 3.5.2 2025-11-28 02:58:12 +01:00
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/mongo-csharp-driver-monorepo:renovate/mongo-csharp-driver-monorepo
git checkout renovate/mongo-csharp-driver-monorepo
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: kjuulh/todo#464
No description provided.