Skip to content

Bump Auth0.AspNetCore.Authentication and 11 others#552

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/bot/dot-config/multi-35ec6052d0
Closed

Bump Auth0.AspNetCore.Authentication and 11 others#552
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/bot/dot-config/multi-35ec6052d0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 4, 2025

Updated Auth0.AspNetCore.Authentication from 1.4.1 to 1.5.0.

Release notes

Sourced from Auth0.AspNetCore.Authentication's releases.

1.5.0

Description

  • Update release.yml to use .NET 8

References

N/A

Testing

N/A

Checklist

  • I have added documentation for new/changed functionality in this PR or in auth0.com/docs
  • All active GitHub checks for tests, formatting, and security are passing
  • The correct base branch is being used, if not main

Commits viewable in compare view.

Updated Azure.Storage.Blobs from 12.24.1 to 12.25.0.

Release notes

Sourced from Azure.Storage.Blobs's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated csharpier from 1.0.2 to 1.1.1.

Release notes

Sourced from csharpier's releases.

1.1.1

What's Changed

Unhandled exception: System.ArgumentOutOfRangeException: startIndex cannot be larger than length of string. (Parameter 'startIndex') #​1673

CSharpier was throwing an exception when formating a directory contained a file without an extension.

1.1.0

What's Changed

.gitignore from parent folders impacts formatting of children #​1627

CSharpier will no longer consider .gitignore files located above the root of the current git repository.

Changes to stdin formatting #​288 #​1657

There is a new option --stdin-filepath that is used to specify the filepath CSharpier should use for resolving options and ignore files.
When no path is specified via stdin-path

  • No ignore files are considered.
  • The current directory is considered when locating options
  • The file is assumed to be c# unless the first non-whitespace character is < in which case it is assumed to be xml.

Support for C# 14 and .NET 10 #​1654 #​1646

Changes were required to support the following

  • Extension Declarations
  • File level directives in file based C# Apps

Support --ignore-path CLI option #​1585

It is now possible to specify the path to an ignore file

dotnet csharpier format . --ignore-path .config/.csharpierignore

Format xaml and slnx by default #​1628 #​1604

CSharpier now formats xaml and slnx by default without the need for configuration changes.

XML formatting is not taking into account EOL configuration on multiline comments #​1660

When formatting the following XML, CSharpier would always use the system system default for ending lines within the comment instead of the respecting the configured EOL setting.

<Element>
  <!--
  Comment with EOL
  -->
</Element>

Error when no read access to intermediate containing folder #​1656

In the case that CSharpier had access to a sub directory but not the parent of that sub directory, it was failing with an exception. That has been resolved.

Misleading message after "csharpier check" #​1645

Previously the format and check commands both used the same output message. The check command now correctly reports that it checked files and did not format them.

# 1.0.3
dotnet csharpier check .
Formatted 13226 files in 21986ms.

# 1.1.0
dotnet csharpier check .
Checked 13226 files in 21986ms.

Multiline collection expressions should not be indented #​1635

CSharpier now formats collection expressions consistently when they are in a property

// input & expected output
public class ClassName
{
    public SomeObject LongValue = new
 ... (truncated)

## 1.0.3

## What's Changed
### Switch block case with conditionals adding newlines [#​1630](https://github.com/belav/csharpier/issues/1630)
Switch blocks were breaking on conditions within patterns.
```c#
// input and expected output
switch ("")
{
    case "" or "":
        break;
}

// 1.0.2
switch ("")
{
    case ""
    or "":
        break;
}

switch expression formatting adds odd newlines #​1620

CSharpier was breaking after a discard with a when, resulting in extra new lines

// input and expected output
_ = someValue switch
{
    _ when KeepWhenWithDiscard() => "",
    _ when KeepWhenWithDiscard_________________(
            SomeObject_______________________________________________
        ) => "",
    _ when KeepWhenWithDiscard_________________(
            SomeObject_______________________________________________
        ) => "LongString_____________________________________________________________________",
};

// 1.0.2
_ = someValue switch
{
    _ when KeepWhenWithDiscard() => "",
    _
        when KeepWhenWithDiscard_________________(
            SomeObject_______________________________________________
        ) => "",
    _
        when KeepWhenWithDiscard_________________(
            SomeObject_______________________________________________
        ) => "LongString_____________________________________________________________________",
};

multi-line raw string in linq query causes a subsequent linq query to be printed on one line #​1617

... (truncated)

Commits viewable in compare view.

Updated Discord.Net from 3.17.4 to 3.18.0.

Release notes

Sourced from Discord.Net's releases.

3.18.0

[3.18.0] - 2025-07-19

This release finally brings components v2 support to stable 🎉
It did not come for free though, involving a few breaking changes, which should be minimal, but they are breaking nontheless; you can find more info in the docs.

Added

  • #​3145 add ApproximateUserAuthorizationCount (6e1f9c1)
  • #​3147 [CV2] add children component counts to IComponentContainer (f18c836)
  • #​3153 [CV2] QoL & fixes (800a234)
  • #​3156 Add user primary guild (79b455e)
  • #​3131 support POLL_RESULT (46) in MessageType enum (dc3bd76)
  • #​3162 Components v2 docs :wires: (cf66ab4)

Fixed

  • #​3138 Fix value of TextDisplayBuilder.MaxContentLength (b338d30)
  • #​3140 Fixed incorrect ComponentType in TextDisplayBuilder. (7a74f78)
  • #​3142 Fix overflow exception (0c1536d)
  • #​3146 Fixed missing Type in constructor SelectMenuBuilder(SelectMenuComponent) (c07c28d)
  • #​3148 fix(IsLoadableModule): return false for abstract classes (978f999)
  • #​3152 Guild member JoinedAt nullability (c343ce9)
  • #​3158 Certain global user properies not getting updated (f9ba642)

Misc

  • #​3139 Fix visibility of MessageComponent.Empty (35d94ca)
  • #​3144 edge case missed (1e50900)
  • #​3161 Fix guild tag badge URL helper (80b4328)

New Contributors

Full Changelog: discord-net/Discord.Net@3.18.0-beta.3...3.18.0

3.18.0-beta.3

[3.18.0-beta.3] - 2025-05-26

Fixed

  • #​3125 Add empty constructors for containers (56d6980)
  • #​3126 Include section accessories in ComponentCount() (5f2d173)
  • #​3129 Fix error when only sending components in response to interactions (b1c2fcb)
  • #​3135 Fix some CV2 oversights (35b493c)

Misc

  • #​3130 correct typo (523212a)
  • #​3127 Change comment to reflect longer polls (9f9b093)
  • #​3133 refactor(TimestampTagStyles): replace ASCII integer values with character literals (e68fa50)

New Contributors

Full Changelog: discord-net/Discord.Net@3.18.0-beta.2...3.18.0-beta.3

3.18.0-beta.2

[3.18.0-beta.2] - 2025-05-09

This beta release brings more QoL things to CV2 support and fixes some bugs discovered during testing.

Added

  • #​3119 Add component => builder converters (b729380)
  • #​3120 use Color for container AccentColor & fix action row validation (c888c84)
  • #​3123 Component search fixes & improvements (be8e6e0)

Fixed

  • #​3121 fix & improve ToBuilder methods (4ab96c7)
  • #​3122 Fix Ids in ActionRowComponent and SelectmenuComponent (57cdec7)

Misc

  • #​3108 Ensure the required gateway intent is available when connected to audio (f1ff191)

Full Changelog: discord-net/Discord.Net@3.18.0-beta.1...3.18.0-beta.2

3.18.0-beta.1

[3.18.0-beta.1] - 2025-05-08

This prerelease brings initial support for components v2!

Added

  • #​3065 Components V2 (ba78e0c)
  • #​3110 CV2 Find component by id (cc81669)

Fixed

  • #​3106 Providing multiple message flags fails to pass validations (05a0acc)
  • #​3114 Fix NRE responding with a modal info class with null required fields (2b6a912)

Misc

  • #​3107 update component limits + add ComponentCount() extension (348928a)

Full Changelog: discord-net/Discord.Net@3.17.4...3.18.0/beta.1

Commits viewable in compare view.

Updated Discord.Net.Rest from 3.17.4 to 3.18.0.

Release notes

Sourced from Discord.Net.Rest's releases.

3.18.0

[3.18.0] - 2025-07-19

This release finally brings components v2 support to stable 🎉
It did not come for free though, involving a few breaking changes, which should be minimal, but they are breaking nontheless; you can find more info in the docs.

Added

  • #​3145 add ApproximateUserAuthorizationCount (6e1f9c1)
  • #​3147 [CV2] add children component counts to IComponentContainer (f18c836)
  • #​3153 [CV2] QoL & fixes (800a234)
  • #​3156 Add user primary guild (79b455e)
  • #​3131 support POLL_RESULT (46) in MessageType enum (dc3bd76)
  • #​3162 Components v2 docs :wires: (cf66ab4)

Fixed

  • #​3138 Fix value of TextDisplayBuilder.MaxContentLength (b338d30)
  • #​3140 Fixed incorrect ComponentType in TextDisplayBuilder. (7a74f78)
  • #​3142 Fix overflow exception (0c1536d)
  • #​3146 Fixed missing Type in constructor SelectMenuBuilder(SelectMenuComponent) (c07c28d)
  • #​3148 fix(IsLoadableModule): return false for abstract classes (978f999)
  • #​3152 Guild member JoinedAt nullability (c343ce9)
  • #​3158 Certain global user properies not getting updated (f9ba642)

Misc

  • #​3139 Fix visibility of MessageComponent.Empty (35d94ca)
  • #​3144 edge case missed (1e50900)
  • #​3161 Fix guild tag badge URL helper (80b4328)

New Contributors

Full Changelog: discord-net/Discord.Net@3.18.0-beta.3...3.18.0

3.18.0-beta.3

[3.18.0-beta.3] - 2025-05-26

Fixed

  • #​3125 Add empty constructors for containers (56d6980)
  • #​3126 Include section accessories in ComponentCount() (5f2d173)
  • #​3129 Fix error when only sending components in response to interactions (b1c2fcb)
  • #​3135 Fix some CV2 oversights (35b493c)

Misc

  • #​3130 correct typo (523212a)
  • #​3127 Change comment to reflect longer polls (9f9b093)
  • #​3133 refactor(TimestampTagStyles): replace ASCII integer values with character literals (e68fa50)

New Contributors

Full Changelog: discord-net/Discord.Net@3.18.0-beta.2...3.18.0-beta.3

3.18.0-beta.2

[3.18.0-beta.2] - 2025-05-09

This beta release brings more QoL things to CV2 support and fixes some bugs discovered during testing.

Added

  • #​3119 Add component => builder converters (b729380)
  • #​3120 use Color for container AccentColor & fix action row validation (c888c84)
  • #​3123 Component search fixes & improvements (be8e6e0)

Fixed

  • #​3121 fix & improve ToBuilder methods (4ab96c7)
  • #​3122 Fix Ids in ActionRowComponent and SelectmenuComponent (57cdec7)

Misc

  • #​3108 Ensure the required gateway intent is available when connected to audio (f1ff191)

Full Changelog: discord-net/Discord.Net@3.18.0-beta.1...3.18.0-beta.2

3.18.0-beta.1

[3.18.0-beta.1] - 2025-05-08

This prerelease brings initial support for components v2!

Added

  • #​3065 Components V2 (ba78e0c)
  • #​3110 CV2 Find component by id (cc81669)

Fixed

  • #​3106 Providing multiple message flags fails to pass validations (05a0acc)
  • #​3114 Fix NRE responding with a modal info class with null required fields (2b6a912)

Misc

  • #​3107 update component limits + add ComponentCount() extension (348928a)

Full Changelog: discord-net/Discord.Net@3.17.4...3.18.0/beta.1

Commits viewable in compare view.

Updated Discord.Net.WebSocket from 3.17.4 to 3.18.0.

Release notes

Sourced from Discord.Net.WebSocket's releases.

3.18.0

[3.18.0] - 2025-07-19

This release finally brings components v2 support to stable 🎉
It did not come for free though, involving a few breaking changes, which should be minimal, but they are breaking nontheless; you can find more info in the docs.

Added

  • #​3145 add ApproximateUserAuthorizationCount (6e1f9c1)
  • #​3147 [CV2] add children component counts to IComponentContainer (f18c836)
  • #​3153 [CV2] QoL & fixes (800a234)
  • #​3156 Add user primary guild (79b455e)
  • #​3131 support POLL_RESULT (46) in MessageType enum (dc3bd76)
  • #​3162 Components v2 docs :wires: (cf66ab4)

Fixed

  • #​3138 Fix value of TextDisplayBuilder.MaxContentLength (b338d30)
  • #​3140 Fixed incorrect ComponentType in TextDisplayBuilder. (7a74f78)
  • #​3142 Fix overflow exception (0c1536d)
  • #​3146 Fixed missing Type in constructor SelectMenuBuilder(SelectMenuComponent) (c07c28d)
  • #​3148 fix(IsLoadableModule): return false for abstract classes (978f999)
  • #​3152 Guild member JoinedAt nullability (c343ce9)
  • #​3158 Certain global user properies not getting updated (f9ba642)

Misc

  • #​3139 Fix visibility of MessageComponent.Empty (35d94ca)
  • #​3144 edge case missed (1e50900)
  • #​3161 Fix guild tag badge URL helper (80b4328)

New Contributors

Full Changelog: discord-net/Discord.Net@3.18.0-beta.3...3.18.0

3.18.0-beta.3

[3.18.0-beta.3] - 2025-05-26

Fixed

  • #​3125 Add empty constructors for containers (56d6980)
  • #​3126 Include section accessories in ComponentCount() (5f2d173)
  • #​3129 Fix error when only sending components in response to interactions (b1c2fcb)
  • #​3135 Fix some CV2 oversights (35b493c)

Misc

  • #​3130 correct typo (523212a)
  • #​3127 Change comment to reflect longer polls (9f9b093)
  • #​3133 refactor(TimestampTagStyles): replace ASCII integer values with character literals (e68fa50)

New Contributors

Full Changelog: discord-net/Discord.Net@3.18.0-beta.2...3.18.0-beta.3

3.18.0-beta.2

[3.18.0-beta.2] - 2025-05-09

This beta release brings more QoL things to CV2 support and fixes some bugs discovered during testing.

Added

  • #​3119 Add component => builder converters (b729380)
  • #​3120 use Color for container AccentColor & fix action row validation (c888c84)
  • #​3123 Component search fixes & improvements (be8e6e0)

Fixed

  • #​3121 fix & improve ToBuilder methods (4ab96c7)
  • #​3122 Fix Ids in ActionRowComponent and SelectmenuComponent (57cdec7)

Misc

  • #​3108 Ensure the required gateway intent is available when connected to audio (f1ff191)

Full Changelog: discord-net/Discord.Net@3.18.0-beta.1...3.18.0-beta.2

3.18.0-beta.1

[3.18.0-beta.1] - 2025-05-08

This prerelease brings initial support for components v2!

Added

  • #​3065 Components V2 (ba78e0c)
  • #​3110 CV2 Find component by id (cc81669)

Fixed

  • #​3106 Providing multiple message flags fails to pass validations (05a0acc)
  • #​3114 Fix NRE responding with a modal info class with null required fields (2b6a912)

Misc

  • #​3107 update component limits + add ComponentCount() extension (348928a)

Full Changelog: discord-net/Discord.Net@3.17.4...3.18.0/beta.1

Commits viewable in compare view.

Updated JetBrains.Annotations from 2024.3.0 to 2025.2.0.

Release notes

Sourced from JetBrains.Annotations's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated MediatR from 12.5.0 to 13.0.0.

Release notes

Sourced from MediatR's releases.

13.0.0

Full Changelog: LuckyPennySoftware/MediatR@v12.5.0...v13.0.0

  • Added support for .NET Standard 2.0
  • Requiring license key
  • Moving from Apache license to dual commercial/OSS license

To set your license key:

services.AddMediatR(cfg => {
    cfg.LicenseKey = "<License key here>";
});

You can obtain your license key at MediatR.io

Commits viewable in compare view.

Updated Microsoft.SemanticKernel from 1.60.0 to 1.61.0.

Release notes

Sourced from Microsoft.SemanticKernel's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated MongoDB.Driver from 3.4.0 to 3.4.2.

Release notes

Sourced from MongoDB.Driver's releases.

3.4.2

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.

3.4.1

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.

Commits viewable in compare view.

Updated Pulumi from 3.85.1 to 3.86.0.

Release notes

Sourced from Pulumi's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Pulumi.AzureNative from 3.5.1 to 3.6.1.

Release notes

Sourced from Pulumi.AzureNative's releases.

3.6.1

Does the PR have any schema changes?

Found 459 breaking changes:

Resources

  • 🟡 "azure-native:compute:DedicatedHostGroup": properties: "additionalCapabilities" type changed from "#/types/azure-native:compute:DedicatedHostGroupPropertiesResponseAdditionalCapabilities" to "#/types/azure-native:compute:DedicatedHostGroupPropertiesAdditionalCapabilitiesResponse"
  • "azure-native:compute:Disk":
    • 🟡 inputs: "purchasePlan" type changed from "#/types/azure-native:compute:PurchasePlan" to "#/types/azure-native:compute:DiskPurchasePlan"
    • 🟡 properties: "purchasePlan" type changed from "#/types/azure-native:compute:PurchasePlanResponse" to "#/types/azure-native:compute:DiskPurchasePlanResponse"
  • 🟡 "azure-native:compute:ProximityPlacementGroup": properties: "intent" type changed from "#/types/azure-native:compute:ProximityPlacementGroupPropertiesResponseIntent" to "#/types/azure-native:compute:ProximityPlacementGroupPropertiesIntentResponse"
  • "azure-native:compute:Snapshot":
    • 🟡 inputs: "purchasePlan" type changed from "#/types/azure-native:compute:PurchasePlan" to "#/types/azure-native:compute:DiskPurchasePlan"
    • 🟡 properties: "purchasePlan" type changed from "#/types/azure-native:compute:PurchasePlanResponse" to "#/types/azure-native:compute:DiskPurchasePlanResponse"
  • "azure-native:confluent:OrganizationClusterById": inputs:
    • 🟡 "id" missing
    • 🟡 "name" missing
    • 🟡 "type" missing
  • "azure-native:confluent:OrganizationEnvironmentById": inputs:
    • 🟡 "id" missing
    • 🟡 "name" missing
    • 🟡 "type" missing
  • "azure-native:cosmosdb:FleetspaceAccount":
    • inputs:
      • 🟡 "accountLocation" missing
      • 🟡 "accountResourceIdentifier" missing
    • properties:
      • 🟡 "accountLocation" missing output "accountLocation"
      • 🟡 "accountResourceIdentifier" missing output "accountResourceIdentifier"
  • 🟢 "azure-native:guestconfiguration:GuestConfigurationAssignment": required inputs: "name" input has changed to Required
  • 🟢 "azure-native:guestconfiguration:GuestConfigurationConnectedVMwarevSphereAssignment": required inputs: "name" input has changed to Required
  • 🟢 "azure-native:guestconfiguration:GuestConfigurationHCRPAssignment": required inputs: "name" input has changed to Required
  • 🔴 "azure-native:media:AccountFilter" missing
  • 🔴 "azure-native:media:Asset" missing
  • 🔴 "azure-native:media:AssetFilter" missing
  • 🔴 "azure-native:media:ContentKeyPolicy" missing
  • 🔴 "azure-native:media:Job" missing
  • 🔴 "azure-native:media:LiveEvent" missing
  • 🔴 "azure-native:media:LiveOutput" missing
  • 🔴 "azure-native:media:MediaService" missing
  • 🔴 "azure-native:media:PrivateEndpointConnection" missing
  • 🔴 "azure-native:media:StreamingEndpoint" missing
  • 🔴 "azure-native:media:StreamingLocator" missing
  • 🔴 "azure-native:media:StreamingPolicy" missing
  • 🔴 "azure-native:media:Track" missing
  • 🔴 "azure-native:media:Transform" missing
  • 🟡 "azure-native:powerbidedicated:AutoScaleVCore": inputs: "systemData" missing
  • 🟡 "azure-native:powerbidedicated:CapacityDetails": inputs: "systemData" missing
  • 🟡 "azure-native:providerhub:DefaultRollout": properties: "properties" type changed from "#/types/azure-native:providerhub:DefaultRolloutResponseProperties" to "#/types/azure-native:providerhub:DefaultRolloutPropertiesResponse"
  • 🟡 "azure-native:providerhub:NotificationRegistration": properties: "properties" type changed from "#/types/azure-native:providerhub:NotificationRegistrationResponseProperties" to "#/types/azure-native:providerhub:NotificationRegistrationPropertiesResponse"
  • 🟡 "azure-native:providerhub:ProviderRegistration": properties: "properties" type changed from "#/types/azure-native:providerhub:ProviderRegistrationResponseProperties" to "#/types/azure-native:providerhub:ProviderRegistrationPropertiesResponse"
    ... (truncated)

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 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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps Auth0.AspNetCore.Authentication from 1.4.1 to 1.5.0
Bumps Azure.Storage.Blobs from 12.24.1 to 12.25.0
Bumps csharpier from 1.0.2 to 1.1.1
Bumps Discord.Net from 3.17.4 to 3.18.0
Bumps Discord.Net.Rest from 3.17.4 to 3.18.0
Bumps Discord.Net.WebSocket from 3.17.4 to 3.18.0
Bumps JetBrains.Annotations to 2025.2.0
Bumps MediatR from 12.5.0 to 13.0.0
Bumps Microsoft.SemanticKernel from 1.60.0 to 1.61.0
Bumps MongoDB.Driver from 3.4.0 to 3.4.2
Bumps Pulumi from 3.85.1 to 3.86.0
Bumps Pulumi.AzureNative from 3.5.1 to 3.6.1

---
updated-dependencies:
- dependency-name: Auth0.AspNetCore.Authentication
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Azure.Storage.Blobs
  dependency-version: 12.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: csharpier
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Discord.Net
  dependency-version: 3.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Discord.Net.Rest
  dependency-version: 3.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Discord.Net.WebSocket
  dependency-version: 3.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: JetBrains.Annotations
  dependency-version: 2025.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: JetBrains.Annotations
  dependency-version: 2025.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: MediatR
  dependency-version: 13.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Microsoft.SemanticKernel
  dependency-version: 1.61.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: MongoDB.Driver
  dependency-version: 3.4.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Pulumi
  dependency-version: 3.86.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Pulumi.AzureNative
  dependency-version: 3.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Aug 4, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 4, 2025

Looks like these dependencies are no longer a dependency, so this is no longer needed.

@dependabot dependabot bot closed this Aug 4, 2025
@dependabot dependabot bot deleted the dependabot/nuget/bot/dot-config/multi-35ec6052d0 branch August 4, 2025 16:19
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 .NET Pull requests that update .net code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants