Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Mar 10, 2025

Bumps the all-dependencies group with 17 updates in the / directory:

Package From To
BouncyCastle.Cryptography 2.5.0 2.5.1
Microsoft.Extensions.Logging 9.0.0 9.0.2
Microsoft.Extensions.Logging 9.0.0 9.0.2
Microsoft.Extensions.Logging.Console 9.0.0 9.0.2
Microsoft.OpenApi 1.6.22 1.6.23
MongoDB.Driver 3.1.0 3.2.1
NodaTime 3.2.0 3.2.1
Npgsql 9.0.2 9.0.3
NodaTime 3.2.0 3.2.0
Npgsql 9.0.2 9.0.3
Npgsql.NodaTime 9.0.2 9.0.3
Microsoft.Extensions.Logging 9.0.0 9.0.0
OpenTelemetry 1.10.0 1.11.2
Microsoft.Extensions.Logging 9.0.0 9.0.0
OpenTelemetry 1.10.0 1.11.2
OpenTelemetry.Exporter.Console 1.10.0 1.11.2
Microsoft.Extensions.Logging 9.0.0 9.0.0
OpenTelemetry 1.10.0 1.11.2
OpenTelemetry.Exporter.OpenTelemetryProtocol 1.10.0 1.11.2
Microsoft.Extensions.Logging 9.0.0 9.0.0
OpenTelemetry 1.10.0 1.11.2
OpenTelemetry.Extensions.Hosting 1.10.0 1.11.2
OpenTelemetry.Instrumentation.AspNetCore 1.10.1 1.11.1
OpenTelemetry.Instrumentation.Http 1.10.0 1.11.1
OpenTelemetry.Instrumentation.Runtime 1.10.0 1.11.1
Microsoft.Extensions.Logging 9.0.0 3.1.0
OpenTelemetry 1.10.0 1.6.0
Sentry.OpenTelemetry 4.13.0 5.3.0
Microsoft.Extensions.Logging 9.0.0 6.0.0
Sentry.Profiling 4.13.0 5.3.0

Updates BouncyCastle.Cryptography from 2.5.0 to 2.5.1

Commits

Updates Microsoft.Extensions.Logging from 9.0.0 to 9.0.2

Release notes

Sourced from Microsoft.Extensions.Logging's releases.

.NET 9.0.2

Release

What's Changed

... (truncated)

Commits

Updates Microsoft.Extensions.Logging from 9.0.0 to 9.0.2

Release notes

Sourced from Microsoft.Extensions.Logging's releases.

.NET 9.0.2

Release

What's Changed

... (truncated)

Commits

Updates Microsoft.Extensions.Logging.Console from 9.0.0 to 9.0.2

Release notes

Sourced from Microsoft.Extensions.Logging.Console's releases.

.NET 9.0.2

Release

What's Changed

... (truncated)

Commits

Updates Microsoft.OpenApi from 1.6.22 to 1.6.23

Release notes

Sourced from Microsoft.OpenApi's releases.

1.6.23

Changes:

  • #2020: fix: reverts to a regular variable for the tag value
  • #2018: fix/ci hidi gh upload to v1
  • #2013: chore: bumps version for releasing
  • #2012: chore/hidi maintenance
  • #2011: feat: bumps v3 patch version to 3.0.4
  • #2010: ci: fixes hidi gh release
  • #2007: security: bumps STJ version to fix security vulnerabilities

This list of changes was auto generated.

Commits
  • dfa9c8a Merge pull request #2020 from microsoft/fix/ci-tag-value-to-v1
  • 320345a ci: fix artefacts path
  • 5400bbe fix: reverts to a regular variable for the tag value
  • 74a7b5d Merge pull request #2018 from microsoft/fix/ci-hidi-gh-upload-to-v1
  • e352fd3 nit: fixes indent
  • de67664 ci: moves create github release to its own job
  • 9c46b3c fix: updates output syntax for tag version
  • 8148d5c fix: removes actions steps that create extraneous tags
  • 6fea0e1 Merge pull request #2013 from microsoft/chore/version-bumps
  • d6d5e89 Merge pull request #2012 from microsoft/chore/hidi-maintenance
  • Additional commits viewable in compare view

Updates MongoDB.Driver from 3.1.0 to 3.2.1

Release notes

Sourced from MongoDB.Driver's releases.

.NET Driver Version 3.2.1 Release Notes

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

  • Fix potential leak with KMS retry mechanism - CSHARP-5489
  • Fix stack overflow exception on POCOs that represents tree-like structures - CSHARP-5493

An online version of these release notes is available here.

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.

.NET Driver Version 3.2.0 Release Notes

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

The main new features in 3.2.0 include:

  • Support casting from an interface to a concrete type in a filter expression - CSHARP-4572
  • Support for BSON Binary Vector subtype that helps make MongoDB Vector Search more efficient and easy to work with - CSHARP-5202
  • Support for additional methods in LINQ, such as Append, OfType, Repeat, SequenceEqual - CSHARP-4872, CSHARP-4876, CSHARP-4878, CSHARP-4880
  • Support strings with "Range" operator for Atlas Search - CSHARP-5429
  • Added ObjectSerializerAllowedTypesConvention to more easily configure allowed types for ObjectSerializer - CSHARP-4495
  • Added Kubernetes Support for OIDC - CSHARP-5026
  • Added BsonDateOnlyOptionsAttribute to control the serialization of DateOnly - CSHARP-5345
  • Added array field support for "In" and "Range" operators in Atlas Search - CSHARP-5430
  • Fixed an error where BulkWrite command would not be retried when throwing a ClientBulkWriteException - CSHARP-5449
  • Fixed a bug where BsonGuidRepresentationAttribute will not work on nullable GUIDs - CSHARP-5456
  • EnumRepresentationConvention will now also be applied to collection of enums - CSHARP-2096
  • Automatically retry KMS requests on transient errors - CSHARP-5017
  • LINQ aggregate Group now supports $addToSet operator - CSHARP-5446
  • Minor bug fixes and improvements.

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

Documentation on the .NET driver can be found here.

Commits
  • 5de245c Add v3.2.1 release notes. (#1620)
  • 54fdcf7 CSHARP-5493: Fix stackoverflow in EnumRepresentationConvention (#1616)
  • bfc43d6 CSHARP-5499 Sync non-lb-connection-establishment test (#1618)
  • 97165a3 CSHARP-5491: Validate API Compatibility against previous minor release (#1612)
  • d49098d CSHARP5489: Fix potential leak with KMS retry mechanism (#1611)
  • acf095a 3.2.0 Release Notes (#1609)
  • a08d063 Add LinqIntegrationTest file template (#1608)
  • 5c08e94 [CSHARP-5488] Updating libmongocrypt in purls and sbom to 1.12 (#1610)
  • 4000f45 CSHARP-5429: Support strings with range operator for atlas search (#1588)
  • 8bdee88 CSHARP-5202: BSON Binary Vector Subtype Support (#1581)
  • Additional commits viewable in compare view

Updates NodaTime from 3.2.0 to 3.2.1

Commits

Updates Npgsql from 9.0.2 to 9.0.3

Release notes

Sourced from Npgsql's releases.

v9.0.3 contains several minor bug fixes.

Milestone issues

Full Changelog: npgsql/npgsql@v9.0.2...v9.0.3

Commits

Updates NodaTime from 3.2.0 to 3.2.0

Commits

Updates Npgsql from 9.0.2 to 9.0.3

Release notes

Sourced from Npgsql's releases.

v9.0.3 contains several minor bug fixes.

Milestone issues

Full Changelog: npgsql/npgsql@v9.0.2...v9.0.3

Commits

Updates Npgsql.NodaTime from 9.0.2 to 9.0.3

Release notes

Sourced from Npgsql.NodaTime's releases.

v9.0.3 contains several minor bug fixes.

Milestone issues

Full Changelog: npgsql/npgsql@v9.0.2...v9.0.3

Commits

Updates Microsoft.Extensions.Logging from 9.0.0 to 9.0.0

Release notes

Sourced from

Bumps the all-dependencies group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [BouncyCastle.Cryptography](https://github.com/bcgit/bc-csharp) | `2.5.0` | `2.5.1` |
| [Microsoft.Extensions.Logging](https://github.com/dotnet/runtime) | `9.0.0` | `9.0.2` |
| [Microsoft.Extensions.Logging](https://github.com/dotnet/runtime) | `9.0.0` | `9.0.2` |
| [Microsoft.Extensions.Logging.Console](https://github.com/dotnet/runtime) | `9.0.0` | `9.0.2` |
| [Microsoft.OpenApi](https://github.com/Microsoft/OpenAPI.NET) | `1.6.22` | `1.6.23` |
| [MongoDB.Driver](https://github.com/mongodb/mongo-csharp-driver) | `3.1.0` | `3.2.1` |
| [NodaTime](https://github.com/nodatime/nodatime) | `3.2.0` | `3.2.1` |
| [Npgsql](https://github.com/npgsql/npgsql) | `9.0.2` | `9.0.3` |
| [NodaTime](https://github.com/nodatime/nodatime) | `3.2.0` | `3.2.0` |
| [Npgsql](https://github.com/npgsql/npgsql) | `9.0.2` | `9.0.3` |
| [Npgsql.NodaTime](https://github.com/npgsql/npgsql) | `9.0.2` | `9.0.3` |
| [Microsoft.Extensions.Logging](https://github.com/dotnet/runtime) | `9.0.0` | `9.0.0` |
| [OpenTelemetry](https://github.com/open-telemetry/opentelemetry-dotnet) | `1.10.0` | `1.11.2` |
| [Microsoft.Extensions.Logging](https://github.com/dotnet/runtime) | `9.0.0` | `9.0.0` |
| [OpenTelemetry](https://github.com/open-telemetry/opentelemetry-dotnet) | `1.10.0` | `1.11.2` |
| [OpenTelemetry.Exporter.Console](https://github.com/open-telemetry/opentelemetry-dotnet) | `1.10.0` | `1.11.2` |
| [Microsoft.Extensions.Logging](https://github.com/dotnet/runtime) | `9.0.0` | `9.0.0` |
| [OpenTelemetry](https://github.com/open-telemetry/opentelemetry-dotnet) | `1.10.0` | `1.11.2` |
| [OpenTelemetry.Exporter.OpenTelemetryProtocol](https://github.com/open-telemetry/opentelemetry-dotnet) | `1.10.0` | `1.11.2` |
| [Microsoft.Extensions.Logging](https://github.com/dotnet/runtime) | `9.0.0` | `9.0.0` |
| [OpenTelemetry](https://github.com/open-telemetry/opentelemetry-dotnet) | `1.10.0` | `1.11.2` |
| [OpenTelemetry.Extensions.Hosting](https://github.com/open-telemetry/opentelemetry-dotnet) | `1.10.0` | `1.11.2` |
| [OpenTelemetry.Instrumentation.AspNetCore](https://github.com/open-telemetry/opentelemetry-dotnet-contrib) | `1.10.1` | `1.11.1` |
| [OpenTelemetry.Instrumentation.Http](https://github.com/open-telemetry/opentelemetry-dotnet-contrib) | `1.10.0` | `1.11.1` |
| [OpenTelemetry.Instrumentation.Runtime](https://github.com/open-telemetry/opentelemetry-dotnet-contrib) | `1.10.0` | `1.11.1` |
| [Microsoft.Extensions.Logging](https://github.com/dotnet/runtime) | `9.0.0` | `3.1.0` |
| [OpenTelemetry](https://github.com/open-telemetry/opentelemetry-dotnet) | `1.10.0` | `1.6.0` |
| [Sentry.OpenTelemetry](https://github.com/getsentry/sentry-dotnet) | `4.13.0` | `5.3.0` |
| [Microsoft.Extensions.Logging](https://github.com/dotnet/runtime) | `9.0.0` | `6.0.0` |
| [Sentry.Profiling](https://github.com/getsentry/sentry-dotnet) | `4.13.0` | `5.3.0` |



Updates `BouncyCastle.Cryptography` from 2.5.0 to 2.5.1
- [Commits](bcgit/bc-csharp@release-2.5.0...release-2.5.1)

Updates `Microsoft.Extensions.Logging` from 9.0.0 to 9.0.2
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v9.0.0...v9.0.2)

Updates `Microsoft.Extensions.Logging` from 9.0.0 to 9.0.2
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v9.0.0...v9.0.2)

Updates `Microsoft.Extensions.Logging.Console` from 9.0.0 to 9.0.2
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v9.0.0...v9.0.2)

Updates `Microsoft.OpenApi` from 1.6.22 to 1.6.23
- [Release notes](https://github.com/Microsoft/OpenAPI.NET/releases)
- [Changelog](https://github.com/microsoft/OpenAPI.NET/blob/main/CHANGELOG.md)
- [Commits](microsoft/OpenAPI.NET@1.6.22...1.6.23)

Updates `MongoDB.Driver` from 3.1.0 to 3.2.1
- [Release notes](https://github.com/mongodb/mongo-csharp-driver/releases)
- [Commits](mongodb/mongo-csharp-driver@v3.1.0...v3.2.1)

Updates `NodaTime` from 3.2.0 to 3.2.1
- [Release notes](https://github.com/nodatime/nodatime/releases)
- [Commits](nodatime/nodatime@3.2.0...3.2.1)

Updates `Npgsql` from 9.0.2 to 9.0.3
- [Release notes](https://github.com/npgsql/npgsql/releases)
- [Commits](npgsql/npgsql@v9.0.2...v9.0.3)

Updates `NodaTime` from 3.2.0 to 3.2.0
- [Release notes](https://github.com/nodatime/nodatime/releases)
- [Commits](nodatime/nodatime@3.2.0...3.2.1)

Updates `Npgsql` from 9.0.2 to 9.0.3
- [Release notes](https://github.com/npgsql/npgsql/releases)
- [Commits](npgsql/npgsql@v9.0.2...v9.0.3)

Updates `Npgsql.NodaTime` from 9.0.2 to 9.0.3
- [Release notes](https://github.com/npgsql/npgsql/releases)
- [Commits](npgsql/npgsql@v9.0.2...v9.0.3)

Updates `Microsoft.Extensions.Logging` from 9.0.0 to 9.0.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v9.0.0...v9.0.2)

Updates `OpenTelemetry` from 1.10.0 to 1.11.2
- [Release notes](https://github.com/open-telemetry/opentelemetry-dotnet/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/RELEASENOTES.md)
- [Commits](open-telemetry/opentelemetry-dotnet@core-1.10.0...core-1.11.2)

Updates `Microsoft.Extensions.Logging` from 9.0.0 to 9.0.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v9.0.0...v9.0.2)

Updates `OpenTelemetry` from 1.10.0 to 1.11.2
- [Release notes](https://github.com/open-telemetry/opentelemetry-dotnet/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/RELEASENOTES.md)
- [Commits](open-telemetry/opentelemetry-dotnet@core-1.10.0...core-1.11.2)

Updates `OpenTelemetry.Exporter.Console` from 1.10.0 to 1.11.2
- [Release notes](https://github.com/open-telemetry/opentelemetry-dotnet/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/RELEASENOTES.md)
- [Commits](open-telemetry/opentelemetry-dotnet@core-1.10.0...core-1.11.2)

Updates `Microsoft.Extensions.Logging` from 9.0.0 to 9.0.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v9.0.0...v9.0.2)

Updates `OpenTelemetry` from 1.10.0 to 1.11.2
- [Release notes](https://github.com/open-telemetry/opentelemetry-dotnet/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/RELEASENOTES.md)
- [Commits](open-telemetry/opentelemetry-dotnet@core-1.10.0...core-1.11.2)

Updates `OpenTelemetry.Exporter.OpenTelemetryProtocol` from 1.10.0 to 1.11.2
- [Release notes](https://github.com/open-telemetry/opentelemetry-dotnet/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/RELEASENOTES.md)
- [Commits](open-telemetry/opentelemetry-dotnet@core-1.10.0...core-1.11.2)

Updates `Microsoft.Extensions.Logging` from 9.0.0 to 9.0.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v9.0.0...v9.0.2)

Updates `OpenTelemetry` from 1.10.0 to 1.11.2
- [Release notes](https://github.com/open-telemetry/opentelemetry-dotnet/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/RELEASENOTES.md)
- [Commits](open-telemetry/opentelemetry-dotnet@core-1.10.0...core-1.11.2)

Updates `OpenTelemetry.Extensions.Hosting` from 1.10.0 to 1.11.2
- [Release notes](https://github.com/open-telemetry/opentelemetry-dotnet/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/RELEASENOTES.md)
- [Commits](open-telemetry/opentelemetry-dotnet@core-1.10.0...core-1.11.2)

Updates `OpenTelemetry.Instrumentation.AspNetCore` from 1.10.1 to 1.11.1
- [Release notes](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/releases)
- [Commits](open-telemetry/opentelemetry-dotnet-contrib@Instrumentation.AspNetCore-1.10.1...Resources.AWS-1.11.1)

Updates `OpenTelemetry.Instrumentation.Http` from 1.10.0 to 1.11.1
- [Release notes](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/releases)
- [Commits](open-telemetry/opentelemetry-dotnet-contrib@Exporter.Geneva-1.10.0...Resources.AWS-1.11.1)

Updates `OpenTelemetry.Instrumentation.Runtime` from 1.10.0 to 1.11.1
- [Release notes](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/releases)
- [Commits](open-telemetry/opentelemetry-dotnet-contrib@Exporter.Geneva-1.10.0...Resources.AWS-1.11.1)

Updates `Microsoft.Extensions.Logging` from 9.0.0 to 3.1.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v9.0.0...v9.0.2)

Updates `OpenTelemetry` from 1.10.0 to 1.6.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-dotnet/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/RELEASENOTES.md)
- [Commits](open-telemetry/opentelemetry-dotnet@core-1.10.0...core-1.11.2)

Updates `Sentry.OpenTelemetry` from 4.13.0 to 5.3.0
- [Release notes](https://github.com/getsentry/sentry-dotnet/releases)
- [Changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-dotnet@4.13.0...5.3.0)

Updates `Microsoft.Extensions.Logging` from 9.0.0 to 6.0.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v9.0.0...v9.0.2)

Updates `Sentry.Profiling` from 4.13.0 to 5.3.0
- [Release notes](https://github.com/getsentry/sentry-dotnet/releases)
- [Changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-dotnet@4.13.0...5.3.0)

---
updated-dependencies:
- dependency-name: BouncyCastle.Cryptography
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.Extensions.Logging
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.Extensions.Logging
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.Extensions.Logging.Console
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.OpenApi
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: MongoDB.Driver
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: NodaTime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Npgsql
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: NodaTime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Npgsql
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Npgsql.NodaTime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.Extensions.Logging
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: OpenTelemetry
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: Microsoft.Extensions.Logging
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: OpenTelemetry
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: OpenTelemetry.Exporter.Console
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: Microsoft.Extensions.Logging
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: OpenTelemetry
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: OpenTelemetry.Exporter.OpenTelemetryProtocol
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: Microsoft.Extensions.Logging
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: OpenTelemetry
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: OpenTelemetry.Extensions.Hosting
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: OpenTelemetry.Instrumentation.AspNetCore
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: OpenTelemetry.Instrumentation.Http
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: OpenTelemetry.Instrumentation.Runtime
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: Microsoft.Extensions.Logging
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: OpenTelemetry
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: Sentry.OpenTelemetry
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: Microsoft.Extensions.Logging
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: Sentry.Profiling
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 10, 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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant