Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 8, 2025

Updated Azure.Identity from 1.12.0 to 1.15.0.

Release notes

Sourced from Azure.Identity's releases.

1.15.0

1.15.0 (2025-08-07)

Breaking Changes

Behavioral Breaking Changes

  • Deprecated SharedTokenCacheCredential. The supporting credential (SharedTokenCacheCredential) was a legacy mechanism for authenticating clients using credentials provided to Visual Studio. For brokered authentication, consider using InteractiveBrowserCredential instead. The following changes have been made:
    • SharedTokenCacheCredential class is marked as [Obsolete] and [EditorBrowsable(EditorBrowsableState.Never)]
    • SharedTokenCacheCredentialOptions class is marked as [Obsolete] and [EditorBrowsable(EditorBrowsableState.Never)]
    • DefaultAzureCredentialOptions.ExcludeSharedTokenCacheCredential property is marked as [Obsolete] and [EditorBrowsable(EditorBrowsableState.Never)]
    • SharedTokenCacheUsername property is marked as [Obsolete] and [EditorBrowsable(EditorBrowsableState.Never)]
    • SharedTokenCacheCredential is no longer included in the DefaultAzureCredential authentication flow

Bugs Fixed

  • Tenant ID comparisons in credential options are now case-insensitive. This affects AdditionallyAllowedTenants values which will now be matched against tenant IDs without case sensitivity, making the authentication more resilient to case differences in tenant IDs returned from WWW-Authenticate challenges (#​51693).

Other Changes

  • BrokerAuthenticationCredential has been renamed as BrokerCredential.

  • Added the EditorBrowsable(Never) attribute to property VisualStudioCodeTenantId as TenantId is preferred. The VisualStudioCodeTenantId property exists only to provide backwards compatibility.

1.15.0-beta.1

1.15.0-beta.1 (2025-07-17)

Features Added

  • Expanded the set of acceptable values for environment variable AZURE_TOKEN_CREDENTIALS to allow for selection of a specific credential in the DefaultAzureCredential chain. The valid values now include any of the credential names available in the default chain (VisualStudioCredential, VisualStudioCodeCredential, AzureCliCredential, AzurePowerShellCredential, AzureDeveloperCliCredential, EnvironmentCredential, WorkloadIdentityCredential, ManagedIdentityCredential, InteractiveBrowserCredential, or BrokerAuthenticationCredential.) Note: BrokerAuthenticationCredential requires that the project include a reference to package Azure.Identity.Broker.

  • Re-introduced VisualStudioCodeCredential and included it in the DefaultAzureCredential authentication flow. This credential now supports Single Sign-On (SSO) through the authentication broker on Windows, macOS, and Linux using the Azure.Identity.Broker package.

Bugs Fixed

  • ManagedIdentityCredential now retries 410 status responses for at least 70 seconds total duration as required by Azure IMDS documentation. Previously, 410 responses were retried with the same short exponential backoff as other status codes, resulting in insufficient retry duration (#​50724).
  • ManagedIdentityCredential throws CredentialUnavailableException when the IMDS endpoint is unavailable. This addresses a regression in how it behaves in the ChainedTokenCredential (47057).

Other Changes

  • VisualStudioCredential throws CredentialUnavailableException for all failures except for OperationCancelledException due to cancellation being requested for a CancellationToken. This ensures that it falls through for most failures when part of a chained credential.
  • Removed AzureApplicationCredential. For context, see issue 49781.

1.13.2

1.13.2 (2025-07-18)

Features Added

  • Make Azure.ResourceManager AOT-compatible.

Commits viewable in compare view.

Updated csharpier from 0.27.3 to 0.30.6.

Release notes

Sourced from csharpier's releases.

0.30.6

What's Changed

Trailing comma is placed on new line if last enum value is followed by a comment #​1429

// input
enum MyEnum
{
    First,
    Second // the second value
}

// 0.30.5
enum MyEnum
{
    First,
    Second // the second value
    ,
}

// 0.30.6
enum MyEnum
{
    First,
    Second, // the second value
}

Full Changelog: belav/csharpier@0.30.5...0.30.6

0.30.5

What's Changed

Extra blank line added to file each time csharpier runs on this file #​1426

When a file ended in a comment and that comment had multiple blank lines before it, a new blank line was being added each time it was formatted.
// input

// input
namespace MyCompany.MyNamespace;


// Comment block

// 0.30.4
namespace MyCompany.MyNamespace;



// Comment block

// 0.30.5
namespace MyCompany.MyNamespace;

// Comment block

**Full Changelog**: https://github.com/belav/csharpier/compare/0.30.4...0.30.5

## 0.30.4

# 0.30.4
## What's Changed
### Formatting deletes `unsafe` modifier [#​1416](https://github.com/belav/csharpier/issues/1416)
Formatting a using directive with an unsafe modifier resulted in the lose of the unsafe keyword
```c#
// input & expected output
using unsafe NvapiQueryInterface = delegate* unmanaged[Cdecl]<uint, nint>;

// 0.30.3
using NvapiQueryInterface = delegate* unmanaged[Cdecl]<uint, nint>;

CSharpier keeps adding a newline every time a file is formatted #​1408

In some cases if a file ended with a comment, CSharpier would add a new extra blank line above the comment each time it formatted the file

// input & expected outpet
using System;

namespace MyCompany.MyNamespace;

// Comment block

// 0.30.3
using System;

namespace MyCompany.MyNamespace;


// Comment block

Full Changelog: belav/csharpier@0.30.3...0.30.4

0.30.3

What's Changed

CSharpier.MsBuild doesn't fail the github action anymore #​1357

The changes for 1311 caused CSharpier.MsBuild to not report unformatted files as errors on linux.

Thanks go to @​PetSerAl for the fix

0.30.2

What's Changed

CSharpier.MsBuild now uses DOTNET_HOST_PATH instead of just dotnet #​1387

Use current dotnet binary from DOTNET_HOST_PATH instead of just dotnet.

Collection expression inside a dictionary adds unexpected new line #​1390

// input & expected output
Dictionary<string, string[]> dictionary = new()
{
    {
        "Key",
        [
            "SomeValue__________________________________________",
            "SomeValue__________________________________________",
        ]
    },
};

// 0.30.1
Dictionary<string, string[]> dictionary = new()
{
    {
        "Key",

        [
            "SomeValue__________________________________________",
            "SomeValue__________________________________________",
        ]
    },
};

Failed syntax tree validation reported when trailing comma added before a trailing comment #​1388

With the following code, CSharpier will add a trailing comma before the trailing comment.
CSharpier's syntax tree validation was incorrectly reporting this as a failure.

// input
var someObject = new SomeObject()
{
    Property1 = 1,
    Property2 = 2 // Trailing Comment
};

// output
var someObject = new SomeObject()
 ... (truncated)

## 0.30.0

## Breaking Changes
The CSharpier dotnet tool no longer supports net6 & net7.
## What's Changed
### Support C# 13 & dotnet 9. [#​1318](https://github.com/belav/csharpier/issues/1318)
CSharpier now supports dotnet 9 along with formatting all C# 13 language features.
### Inconsistent Formatting for new() Operator Compared to Explicit Object Constructors [#​1364](https://github.com/belav/csharpier/issues/1364)
Implicit and explicit object initialization with constructors was not formatted consistently
```c#
// input & expected output
SomeObject someObject = new(
    someLongParameter___________________,
    someLongParameter___________________
)
{
    Property = longValue_______________________________________________________________________,
};

SomeObject someObject = new SomeObject(
    someLongParameter___________________,
    someLongParameter___________________
)
{
    Property = longValue_______________________________________________________________________,
};

// 0.29.2
SomeObject someObject =
    new(someLongParameter___________________, someLongParameter___________________)
    {
        Property = longValue_______________________________________________________________________,
    };

SomeObject someObject = new SomeObject(
    someLongParameter___________________,
    someLongParameter___________________
)
{
    Property = longValue_______________________________________________________________________,
};

Adds additional space before each member access in verbatim interpolated multiline string #​1358

When an interpolated verbatim string contained line breaks, the code within the interpolations would contain extra spaces.

// input & expected output
var someStringWithLineBreakAndLongValue =
    $@"
{someValue.GetValue().Name} someLongText________________________________________________________________";

// 0.29.2
 ... (truncated)

## 0.29.2

## What's Changed
### Comments don't follow tabs indent style [#​1343](https://github.com/belav/csharpier/issues/1343)
Prior to `0.29.2` CSharpier was converting any tabs within the block of a multiline comment to spaces.
```c#
public void SomeFunction()
{
	/*
	The following line is an example with an indent:
		This line is indented by one tab. (prior to 0.29.2 this would end up as a tab followed by 4 spaces)
	*/
	/*
	The following line is an example with an indent:
		This line is indented by 4 spaces but will be converted to 1 tab (prior to 0.29.2 this would end up as a tab followed by 4 spaces)
	*/
	/*
	The following line is an example with an indent:
	   This line is indented by 3 spaces but will be left as 3 spaces
	*/
}

csharpier-ignore-start now supported in object initializers #​1342

// input & expected output
return new SomeClass
{
    // csharpier-ignore-start
    SomeProperty =     someValue,
    SomeProperty2 =     someValue
    // csharpier-ignore-end
};

// 0.29.1
return new SomeClass
{
    // csharpier-ignore-start
    SomeProperty = someValue,
    SomeProperty2 = someValue
    // csharpier-ignore-end
};

Fixed extra new line between cast and collection expression. #​1334

// input & expected output
CallMethod(
    (string[])
        [
            longerValue_____________________________________________,
            longerValue_____________________________________________,
        ]
 ... (truncated)

## 0.29.1

## What's Changed
### Sorting of usings with underscore differs from Visual Studio [#​1327](https://github.com/belav/csharpier/issues/1327)
CSharpier now sorts `_` to the bottom of usings.
```c#
using SomeCompany.MWord;
using SomeCompany.ZWord;
using SomeCompany._Word;

Process cannot access the file "....net8.0\any\server.log" while running multiple extensions. #​1324

CSharpier Server now uses a log file name based on the port that it is starting on to avoid concurrency issues trying to access the same log file

Full Changelog: belav/csharpier@0.29.0...0.29.1

0.29.0

Breaking Changes

The formatting command will now exit with an error code of 1 if one of the target files cannot be compiled #​1131

Prior to 0.29.0 if csharpier encountered a file that could not be compiled it would treat it as a warning and exit with a code of 0.
As of 0.29.0 a file that cannot be compiled is now treated as an error and csharpier will exit with code 1

What's Changed

Enforce trailing commas in object and collection initializer #​668

CSharpier will now add trailing commas automatically where appropriate. It will collapse to a single line and remove the trailing comma in cases where everything fits on one line.

// input
public enum SomeEnum
{
    Value1,
    Value2
}

string[] someArray = new string[]
{
    someLongValue_____________________________________________,
    someLongValue_____________________________________________
};

string[] someArray = new string[]
{
    someValue,
    someValue,
};

// 0.29.0
public enum SomeEnum
{
    Value1,
    Value2,
}

string[] someArray = new string[]
{
    someLongValue_____________________________________________,
    someLongValue_____________________________________________,
}

string[] someArray = new string[] { someValue, someValue };

Many thanks go to @​dawust for the contribution.

Support for formatting custom file extensions #​1220

Prior to 0.29.0 csharpier would only format files with an extension of .cs or .csx. It is now possible to configure csharpier to format other files extensions, and to specify configuration options per file extension.
See https://csharpier.com/docs/Configuration#configuration-overrides for more details.

Invalid blank line being added with lambda returning collection expression #​1306

... (truncated)

0.28.2

What's Changed

Pipe to dotnet csharpier fails when subdirectory is inaccessible #​1240

When running the following CSharpier would look for config files in subdirectories of the pwd. This could lead to exceptions if some of those directories were inaccessible.

echo "namespace Foo { public class Bar { public string Baz {get;set;}}}" | dotnet csharpier

Thanks go to @​jamesfoster for reporting the issue.

Full Changelog: belav/csharpier@0.28.1...0.28.2

0.28.1

What's Changed

Third party .editorconfig leading to: Error Failure parsing editorconfig files #​1227

When CSharpier encountered an invalid .editorconfig file, it would throw an exception and not format files. These files could appear in 3rd party code (for example within node_modules). CSharpier now ignores invalid lines in .editorconfigs

Thanks go to @​K0Te for reporting the issue

Full Changelog: belav/csharpier@0.28.0...0.28.1

0.28.0

What's Changed

Fix dedented method call if there is a long chain #​1154

In some cases of method chains, the first invocation would end up dedented.

// 0.27.3
o.Property.CallMethod(
    someParameter_____________________________,
    someParameter_____________________________
)
    .CallMethod()
    .CallMethod();

// 0.28.0
o.Property.CallMethod(
        someParameter_____________________________,
        someParameter_____________________________
    )
    .CallMethod()
    .CallMethod();

Extra newline in switch case statement with curly braces [#​1192](belav/csharpier#1192

If a case statement started with a block it would get an extra new line

// 0.27.3
switch (someValue)
{
    case 0:
    {
        // dedented because the only statement is a block
        break;
    }

    case 1:

        {
            // indented because there are two statements, a block then a break
        }
        break;
}

// 0.28.0
// 0.27.3
switch (someValue)
{
    case 0:
    {
        // dedented because the only statement is a block
        break;
    }
 ... (truncated)

Commits viewable in [compare view](https://github.com/belav/csharpier/compare/0.27.3...0.30.6).
</details>

Pinned [Microsoft.AspNetCore.DataProtection.EntityFrameworkCore](https://github.com/dotnet/aspnetcore) at 8.0.19.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.AspNetCore.DataProtection.EntityFrameworkCore's releases](https://github.com/dotnet/aspnetcore/releases)._

## 8.0.18

[Release](https://github.com/dotnet/core/releases/tag/v8.0.18)

## What's Changed
* Update branding to 8.0.18 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/62241
* [release/8.0] Update Alpine helix references by @​github-actions in https://github.com/dotnet/aspnetcore/pull/62243
* [release/8.0] (deps): Bump src/submodules/googletest from `04ee1b4` to `e9092b1` by @​dependabot in https://github.com/dotnet/aspnetcore/pull/62201
* [8.0] Delete src/arcade directory by @​akoeplinger in https://github.com/dotnet/aspnetcore/pull/61994
* [Backport 8.0] [IIS] Manually parse exe bitness (#​61894) by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/62037
* [release/8.0] Update dependencies from dotnet/source-build-reference-packages by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/62006
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61944
* [release/8.0] Associate tagged keys with entries so replacements are not evicted by @​github-actions in https://github.com/dotnet/aspnetcore/pull/62247
* [release/8.0] Block test that is failing after switching to latest-chrome by @​github-actions in https://github.com/dotnet/aspnetcore/pull/62284
* backport(net8.0): http.sys on-demand TLS client hello retrieval by @​DeagleGross in https://github.com/dotnet/aspnetcore/pull/62290
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/62302


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v8.0.17...v8.0.18

## 8.0.17

## Bug Fixes

- **Forwarded Headers Middleware: Ignore X-Forwarded-Headers from Unknown Proxy** ([#​61623](https://github.com/dotnet/aspnetcore/pull/61623))  
  The Forwarded Headers Middleware now ignores `X-Forwarded-Headers` sent from unknown proxies. This change improves security by ensuring that only trusted proxies can influence the forwarded headers, preventing potential spoofing or misrouting of requests.

## Dependency Updates

- **Update dependencies from dotnet/arcade** ([#​61832](https://github.com/dotnet/aspnetcore/pull/61832))  
  This update brings in the latest changes from the dotnet/arcade repository, ensuring that ASP.NET Core benefits from recent improvements, bug fixes, and security patches in the shared build infrastructure.

- **Bump src/submodules/googletest from `52204f7` to `04ee1b4`** ([#​61761](https://github.com/dotnet/aspnetcore/pull/61761))  
  The GoogleTest submodule has been updated to a newer commit, providing the latest testing features, bug fixes, and performance improvements for the project's C++ test components.

## Miscellaneous

- **Update branding to 8.0.17** ([#​61830](https://github.com/dotnet/aspnetcore/pull/61830))  
  The project version branding has been updated to reflect the new 8.0.17 release, ensuring consistency across build outputs and documentation.

- **Merging internal commits for release/8.0** ([#​61924](https://github.com/dotnet/aspnetcore/pull/61924))  
  This change merges various internal commits into the release/8.0 branch, incorporating minor fixes, documentation updates, and other non-user-facing improvements to keep the release branch up to date.

---

This summary is generated and may contain inaccuracies. For complete details, please review the linked pull requests.

**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v8.0.16...v8.0.17

## 8.0.16

[Release](https://github.com/dotnet/core/releases/tag/v8.0.16)

## What's Changed
* Update branding to 8.0.16 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/61283
* [release/8.0] (deps): Bump src/submodules/googletest from `24a9e94` to `52204f7` by @​dependabot in https://github.com/dotnet/aspnetcore/pull/61260
* [release/8.0] Update dependencies from dotnet/source-build-externals by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61281
* [release/8.0] Upgrade to Ubuntu 22 by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/61216
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/60901
* [release/8.0] Update dependencies from dotnet/source-build-reference-packages by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/60926
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61404
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/61398
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61411
* Revert "Revert "[release/8.0] Update remnants of azureedge.net"" by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/60352
* [release/8.0] Fix preserving messages for stateful reconnect with backplane by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/61375
* [release/8.0] Update dependencies from dotnet/source-build-reference-packages by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61442
* fetch TLS client hello message from HTTP.SYS by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/61494


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v8.0.15...v8.0.16

## 8.0.15

[Release](https://github.com/dotnet/core/releases/tag/v8.0.15)

## What's Changed
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/60355
* Update branding to 8.0.15 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/60784
* Add partitioned to cookie for SignalR browser testing by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/60728
* [release/8.0] (deps): Bump src/submodules/googletest from `e235eb3` to `24a9e94` by @​dependabot in https://github.com/dotnet/aspnetcore/pull/60677
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/60879


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v8.0.14...v8.0.15

## 8.0.14

[Release](https://github.com/dotnet/core/releases/tag/v8.0.14)

## What's Changed
* Update branding to 8.0.14 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/60197
* [release/8.0] (deps): Bump src/submodules/googletest from `7d76a23` to `e235eb3` by @​dependabot in https://github.com/dotnet/aspnetcore/pull/60150
* [release/8.0] Fix java discovery in IdentityModel pipeline by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/60075
* [release/8.0] Update dependencies from dotnet/source-build-externals by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/60199
* [release/8.0] Update dependencies from dotnet/source-build-reference-packages by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/59922
* [release/8.0] Readd DiagnosticSource to KestrelServerImpl by @​github-actions in https://github.com/dotnet/aspnetcore/pull/60203
* [release/8.0] Update to MacOS 15 in Helix by @​github-actions in https://github.com/dotnet/aspnetcore/pull/60239
* [release/8.0] Use the latest available JDK by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/60233
* [release/8.0] Fix skip condition for java tests by @​github-actions in https://github.com/dotnet/aspnetcore/pull/60243
* [release/8.0] Update list of helix queues to skip by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/60231
* [release/8.0] [Blazor] Allow cascading value subscribers to get added and removed during change notification by @​github-actions in https://github.com/dotnet/aspnetcore/pull/57288
* [release/8.0] Update remnants of azureedge.net by @​sebastienros in https://github.com/dotnet/aspnetcore/pull/60264
* [release/8.0] Centralize on one docker container by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/60299
* Revert "[release/8.0] Update remnants of azureedge.net" by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/60324
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/60316


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v8.0.13...v8.0.14

## 8.0.13

[Release](https://github.com/dotnet/core/releases/tag/v8.0.13)

## What's Changed
* [release/8.0] Update dotnetbuilds CDN to new endpoint by @​mmitche in https://github.com/dotnet/aspnetcore/pull/59575
* Update branding to 8.0.13 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/59756
* [release/8.0] Skip MVC template tests on HelixQueueArmDebian12 by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/59295
* [release/8.0] Update OSX helix queue by @​github-actions in https://github.com/dotnet/aspnetcore/pull/59742
* [release/8.0] (deps): Bump src/submodules/googletest from `d144031` to `7d76a23` by @​dependabot in https://github.com/dotnet/aspnetcore/pull/59678
* [release/8.0] Skip tests on internal queues too by @​github-actions in https://github.com/dotnet/aspnetcore/pull/59579
* [release/8.0] Fix Kestrel host header mismatch handling when port in Url by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/59403
* Migrate off of Debian 11 by @​v-firzha in https://github.com/dotnet/aspnetcore/pull/59584
* [release/8.0] Pin to S.T.J 8.0.5 in Analyzers by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/59777
* [release/8.0] [Blazor WASM standalone] Avoid caching `index.html` during development by @​github-actions in https://github.com/dotnet/aspnetcore/pull/59349
* Update to Fedora 41 by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/59817
* [release/8.0] Update dependencies from dotnet/source-build-externals by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/59811
* [release/8.0] Update dependencies from dotnet/source-build-reference-packages by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/59825
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/59864
* [release/8.0] Fix/update docker tags by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/59867
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/59872


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v8.0.12...v8.0.13

## 8.0.12

[Release](https://github.com/dotnet/core/releases/tag/v8.0.12)

## What's Changed
* Update branding to 8.0.12 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/58800
* [release/8.0] (deps): Bump src/submodules/googletest from `6dae7eb` to `1204d63` by @​dependabot in https://github.com/dotnet/aspnetcore/pull/58741
* Add scope for internal npm packages by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/58512
* [release/8.0] Update dependencies from dotnet/source-build-externals by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/58477
* [release/8.0] Upgrade `serialize-javascript` transient dependency by @​MackinnonBuck in https://github.com/dotnet/aspnetcore/pull/58466
* [release/8.0] Update Messagepack dependency by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/58676
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/58898
* [release/8.0] Use MacOS-13 in CI by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/58549
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/59065
* [release/8.0] Fix java discovery in helix-matrix by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/59181
* [release/8.0] Update dependencies from dotnet/roslyn by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/59184
* [release/8.0] (deps): Bump src/submodules/googletest from `1204d63` to `d144031` by @​dependabot in https://github.com/dotnet/aspnetcore/pull/59033


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v8.0.11...v8.0.12

Commits viewable in [compare view](https://github.com/dotnet/aspnetcore/commits).
</details>

Pinned [Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore](https://github.com/dotnet/aspnetcore) at 8.0.19.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore's releases](https://github.com/dotnet/aspnetcore/releases)._

## 8.0.18

[Release](https://github.com/dotnet/core/releases/tag/v8.0.18)

## What's Changed
* Update branding to 8.0.18 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/62241
* [release/8.0] Update Alpine helix references by @​github-actions in https://github.com/dotnet/aspnetcore/pull/62243
* [release/8.0] (deps): Bump src/submodules/googletest from `04ee1b4` to `e9092b1` by @​dependabot in https://github.com/dotnet/aspnetcore/pull/62201
* [8.0] Delete src/arcade directory by @​akoeplinger in https://github.com/dotnet/aspnetcore/pull/61994
* [Backport 8.0] [IIS] Manually parse exe bitness (#​61894) by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/62037
* [release/8.0] Update dependencies from dotnet/source-build-reference-packages by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/62006
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61944
* [release/8.0] Associate tagged keys with entries so replacements are not evicted by @​github-actions in https://github.com/dotnet/aspnetcore/pull/62247
* [release/8.0] Block test that is failing after switching to latest-chrome by @​github-actions in https://github.com/dotnet/aspnetcore/pull/62284
* backport(net8.0): http.sys on-demand TLS client hello retrieval by @​DeagleGross in https://github.com/dotnet/aspnetcore/pull/62290
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/62302


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v8.0.17...v8.0.18

## 8.0.17

## Bug Fixes

- **Forwarded Headers Middleware: Ignore X-Forwarded-Headers from Unknown Proxy** ([#​61623](https://github.com/dotnet/aspnetcore/pull/61623))  
  The Forwarded Headers Middleware now ignores `X-Forwarded-Headers` sent from unknown proxies. This change improves security by ensuring that only trusted proxies can influence the forwarded headers, preventing potential spoofing or misrouting of requests.

## Dependency Updates

- **Update dependencies from dotnet/arcade** ([#​61832](https://github.com/dotnet/aspnetcore/pull/61832))  
  This update brings in the latest changes from the dotnet/arcade repository, ensuring that ASP.NET Core benefits from recent improvements, bug fixes, and security patches in the shared build infrastructure.

- **Bump src/submodules/googletest from `52204f7` to `04ee1b4`** ([#​61761](https://github.com/dotnet/aspnetcore/pull/61761))  
  The GoogleTest submodule has been updated to a newer commit, providing the latest testing features, bug fixes, and performance improvements for the project's C++ test components.

## Miscellaneous

- **Update branding to 8.0.17** ([#​61830](https://github.com/dotnet/aspnetcore/pull/61830))  
  The project version branding has been updated to reflect the new 8.0.17 release, ensuring consistency across build outputs and documentation.

- **Merging internal commits for release/8.0** ([#​61924](https://github.com/dotnet/aspnetcore/pull/61924))  
  This change merges various internal commits into the release/8.0 branch, incorporating minor fixes, documentation updates, and other non-user-facing improvements to keep the release branch up to date.

---

This summary is generated and may contain inaccuracies. For complete details, please review the linked pull requests.

**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v8.0.16...v8.0.17

## 8.0.16

[Release](https://github.com/dotnet/core/releases/tag/v8.0.16)

## What's Changed
* Update branding to 8.0.16 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/61283
* [release/8.0] (deps): Bump src/submodules/googletest from `24a9e94` to `52204f7` by @​dependabot in https://github.com/dotnet/aspnetcore/pull/61260
* [release/8.0] Update dependencies from dotnet/source-build-externals by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61281
* [release/8.0] Upgrade to Ubuntu 22 by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/61216
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/60901
* [release/8.0] Update dependencies from dotnet/source-build-reference-packages by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/60926
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61404
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/61398
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61411
* Revert "Revert "[release/8.0] Update remnants of azureedge.net"" by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/60352
* [release/8.0] Fix preserving messages for stateful reconnect with backplane by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/61375
* [release/8.0] Update dependencies from dotnet/source-build-reference-packages by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61442
* fetch TLS client hello message from HTTP.SYS by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/61494


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v8.0.15...v8.0.16

## 8.0.15

[Release](https://github.com/dotnet/core/releases/tag/v8.0.15)

## What's Changed
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/60355
* Update branding to 8.0.15 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/60784
* Add partitioned to cookie for SignalR browser testing by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/60728
* [release/8.0] (deps): Bump src/submodules/googletest from `e235eb3` to `24a9e94` by @​dependabot in https://github.com/dotnet/aspnetcore/pull/60677
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/60879


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v8.0.14...v8.0.15

## 8.0.14

[Release](https://github.com/dotnet/core/releases/tag/v8.0.14)

## What's Changed
* Update branding to 8.0.14 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/60197
* [release/8.0] (deps): Bump src/submodules/googletest from `7d76a23` to `e235eb3` by @​dependabot in https://github.com/dotnet/aspnetcore/pull/60150
* [release/8.0] Fix java discovery in IdentityModel pipeline by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/60075
* [release/8.0] Update dependencies from dotnet/source-build-externals by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/60199
* [release/8.0] Update dependencies from dotnet/source-build-reference-packages by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/59922
* [release/8.0] Readd DiagnosticSource to KestrelServerImpl by @​github-actions in https://github.com/dotnet/aspnetcore/pull/60203
* [release/8.0] Update to MacOS 15 in Helix by @​github-actions in https://github.com/dotnet/aspnetcore/pull/60239
* [release/8.0] Use the latest available JDK by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/60233
* [release/8.0] Fix skip condition for java tests by @​github-actions in https://github.com/dotnet/aspnetcore/pull/60243
* [release/8.0] Update list of helix queues to skip by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/60231
* [release/8.0] [Blazor] Allow cascading value subscribers to get added and removed during change notification by @​github-actions in https://github.com/dotnet/aspnetcore/pull/57288
* [release/8.0] Update remnants of azureedge.net by @​sebastienros in https://github.com/dotnet/aspnetcore/pull/60264
* [release/8.0] Centralize on one docker container by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/60299
* Revert "[release/8.0] Update remnants of azureedge.net" by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/60324
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/60316


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v8.0.13...v8.0.14

## 8.0.13

[Release](https://github.com/dotnet/core/releases/tag/v8.0.13)

## What's Changed
* [release/8.0] Update dotnetbuilds CDN to new endpoint by @​mmitche in https://github.com/dotnet/aspnetcore/pull/59575
* Update branding to 8.0.13 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/59756
* [release/8.0] Skip MVC template tests on HelixQueueArmDebian12 by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/59295
* [release/8.0] Update OSX helix queue by @​github-actions in https://github.com/dotnet/aspnetcore/pull/59742
* [release/8.0] (deps): Bump src/submodules/googletest from `d144031` to `7d76a23` by @​dependabot in https://github.com/dotnet/aspnetcore/pull/59678
* [release/8.0] Skip tests on internal queues too by @​github-actions in https://github.com/dotnet/aspnetcore/pull/59579
* [release/8.0] Fix Kestrel host header mismatch handling when port in Url by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/59403
* Migrate off of Debian 11 by @​v-firzha in https://github.com/dotnet/aspnetcore/pull/59584
* [release/8.0] Pin to S.T.J 8.0.5 in Analyzers by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/59777
* [release/8.0] [Blazor WASM standalone] Avoid caching `index.html` during development by @​github-actions in https://github.com/dotnet/aspnetcore/pull/59349
* Update to Fedora 41 by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/59817
* [release/8.0] Update dependencies from dotnet/source-build-externals by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/59811
* [release/8.0] Update dependencies from dotnet/source-build-reference-packages by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/59825
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/59864
* [release/8.0] Fix/update docker tags by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/59867
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/59872


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v8.0.12...v8.0.13

## 8.0.12

[Release](https://github.com/dotnet/core/releases/tag/v8.0.12)

## What's Changed
* Update branding to 8.0.12 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/58800
* [release/8.0] (deps): Bump src/submodules/googletest from `6dae7eb` to `1204d63` by @​dependabot in https://github.com/dotnet/aspnetcore/pull/58741
* Add scope for internal npm packages by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/58512
* [release/8.0] Update dependencies from dotnet/source-build-externals by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/58477
* [release/8.0] Upgrade `serialize-javascript` transient dependency by @​MackinnonBuck in https://github.com/dotnet/aspnetcore/pull/58466
* [release/8.0] Update Messagepack dependency by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/58676
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/58898
* [release/8.0] Use MacOS-13 in CI by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/58549
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/59065
* [release/8.0] Fix java discovery in helix-matrix by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/59181
* [release/8.0] Update dependencies from dotnet/roslyn by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/59184
* [release/8.0] (deps): Bump src/submodules/googletest from `1204d63` to `d144031` by @​dependabot in https://github.com/dotnet/aspnetcore/pull/59033


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v8.0.11...v8.0.12

Commits viewable in [compare view](https://github.com/dotnet/aspnetcore/commits).
</details>

Pinned [Microsoft.CodeAnalysis.Analyzers](https://github.com/dotnet/roslyn-analyzers) at 3.11.0.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.CodeAnalysis.Analyzers's releases](https://github.com/dotnet/roslyn-analyzers/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/dotnet/roslyn-analyzers/commits).
</details>

Updated [Microsoft.EntityFrameworkCore](https://github.com/dotnet/efcore) from 8.0.11 to 8.0.19.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.EntityFrameworkCore's releases](https://github.com/dotnet/efcore/releases)._

## 8.0.17

## Dependency Updates

- **Update dependencies from dotnet/arcade** ([#​36085](https://github.com/dotnet/efcore/pull/36085))  
  Updates the project's dependencies using the latest versions from the dotnet/arcade repository. This ensures that the build infrastructure and related tooling are up to date, which can bring in important bug fixes, security patches, and improvements from upstream.

## Miscellaneous

- **Update branding to 8.0.17** ([#​36043](https://github.com/dotnet/efcore/pull/36043))  
  Updates the internal version branding to 8.0.17. This change ensures that the product and its packages correctly reflect the new release version, helping users and developers identify the build.

- **Merging internal commits for release/8.0** ([#​36080](https://github.com/dotnet/efcore/pull/36080))  
  Integrates various internal commits into the release/8.0 branch. This merge brings together important updates and ensures the release branch is synchronized with recent internal development, maintaining consistency and stability for the release.

---

This summary is generated and may contain inaccuracies. For complete details, please review the linked pull requests.

Full Changelog: [v8.0.16...v8.0.17](https://github.com/dotnet/efcore/compare/v8.0.16...v8.0.17)

## 8.0.16

[Release](https://github.com/dotnet/core/releases/tag/v8.0.16)

## What's Changed
* Update branding to 8.0.16 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35888
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35926
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35930


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.15...v8.0.16

## 8.0.15

[Release](https://github.com/dotnet/core/releases/tag/v9.0.3)

## What's Changed
* Merge branch 'release/8.0' into 'release/8.0-staging' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35541
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35633
* [release/8.0-staging] Improve LoadExtension to work correctly with dotnet run and lib* named libs by @​roji in https://github.com/dotnet/efcore/pull/35718
* [release/8.0-staging] Transform Span-based overloads to Enumerable in funcletizer by @​roji in https://github.com/dotnet/efcore/pull/35720
* Update branding to 8.0.15 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35738
* Merge branch 'release/8.0-staging' => 'release/8.0'  by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35742
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35765
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35780


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.14...v8.0.15

## 8.0.14

[Release](https://github.com/dotnet/core/releases/tag/v8.0.14)

## What's Changed
* Update branding to 8.0.14 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35583
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35621


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.13...v8.0.14

## 8.0.13

[Release](https://github.com/dotnet/core/releases/tag/v8.0.13

## What's Changed
* [release/8.0] Update Helix queues by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35408
* Update branding to 8.0.13 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35427
* Merge branch 'release/8.0-staging' => 'release/8.0' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35464
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35473
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35470


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.12...v8.0.13

## 8.0.12

[Release](https://github.com/dotnet/core/releases/tag/v8.0.12)

## What's Changed
* [release/8.0-staging] Update macOS images to 13 by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35005
* Update branding to 8.0.12 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35048
* Merge branch 'release/8.0' into release/8.0-staging by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35055
* Merge branch 'release/8.0-staging' => 'release/8.0' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35077
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35081


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.11...v8.0.12

Commits viewable in [compare view](https://github.com/dotnet/efcore/commits).
</details>

Updated [Microsoft.EntityFrameworkCore.Design](https://github.com/dotnet/efcore) from 8.0.11 to 8.0.19.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.EntityFrameworkCore.Design's releases](https://github.com/dotnet/efcore/releases)._

## 8.0.17

## Dependency Updates

- **Update dependencies from dotnet/arcade** ([#​36085](https://github.com/dotnet/efcore/pull/36085))  
  Updates the project's dependencies using the latest versions from the dotnet/arcade repository. This ensures that the build infrastructure and related tooling are up to date, which can bring in important bug fixes, security patches, and improvements from upstream.

## Miscellaneous

- **Update branding to 8.0.17** ([#​36043](https://github.com/dotnet/efcore/pull/36043))  
  Updates the internal version branding to 8.0.17. This change ensures that the product and its packages correctly reflect the new release version, helping users and developers identify the build.

- **Merging internal commits for release/8.0** ([#​36080](https://github.com/dotnet/efcore/pull/36080))  
  Integrates various internal commits into the release/8.0 branch. This merge brings together important updates and ensures the release branch is synchronized with recent internal development, maintaining consistency and stability for the release.

---

This summary is generated and may contain inaccuracies. For complete details, please review the linked pull requests.

Full Changelog: [v8.0.16...v8.0.17](https://github.com/dotnet/efcore/compare/v8.0.16...v8.0.17)

## 8.0.16

[Release](https://github.com/dotnet/core/releases/tag/v8.0.16)

## What's Changed
* Update branding to 8.0.16 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35888
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35926
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35930


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.15...v8.0.16

## 8.0.15

[Release](https://github.com/dotnet/core/releases/tag/v9.0.3)

## What's Changed
* Merge branch 'release/8.0' into 'release/8.0-staging' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35541
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35633
* [release/8.0-staging] Improve LoadExtension to work correctly with dotnet run and lib* named libs by @​roji in https://github.com/dotnet/efcore/pull/35718
* [release/8.0-staging] Transform Span-based overloads to Enumerable in funcletizer by @​roji in https://github.com/dotnet/efcore/pull/35720
* Update branding to 8.0.15 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35738
* Merge branch 'release/8.0-staging' => 'release/8.0'  by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35742
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35765
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35780


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.14...v8.0.15

## 8.0.14

[Release](https://github.com/dotnet/core/releases/tag/v8.0.14)

## What's Changed
* Update branding to 8.0.14 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35583
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35621


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.13...v8.0.14

## 8.0.13

[Release](https://github.com/dotnet/core/releases/tag/v8.0.13

## What's Changed
* [release/8.0] Update Helix queues by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35408
* Update branding to 8.0.13 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35427
* Merge branch 'release/8.0-staging' => 'release/8.0' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35464
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35473
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35470


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.12...v8.0.13

## 8.0.12

[Release](https://github.com/dotnet/core/releases/tag/v8.0.12)

## What's Changed
* [release/8.0-staging] Update macOS images to 13 by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35005
* Update branding to 8.0.12 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35048
* Merge branch 'release/8.0' into release/8.0-staging by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35055
* Merge branch 'release/8.0-staging' => 'release/8.0' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35077
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35081


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.11...v8.0.12

Commits viewable in [compare view](https://github.com/dotnet/efcore/commits).
</details>

Pinned [Microsoft.EntityFrameworkCore.InMemory](https://github.com/dotnet/efcore) at 8.0.19.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.EntityFrameworkCore.InMemory's releases](https://github.com/dotnet/efcore/releases)._

## 8.0.17

## Dependency Updates

- **Update dependencies from dotnet/arcade** ([#​36085](https://github.com/dotnet/efcore/pull/36085))  
  Updates the project's dependencies using the latest versions from the dotnet/arcade repository. This ensures that the build infrastructure and related tooling are up to date, which can bring in important bug fixes, security patches, and improvements from upstream.

## Miscellaneous

- **Update branding to 8.0.17** ([#​36043](https://github.com/dotnet/efcore/pull/36043))  
  Updates the internal version branding to 8.0.17. This change ensures that the product and its packages correctly reflect the new release version, helping users and developers identify the build.

- **Merging internal commits for release/8.0** ([#​36080](https://github.com/dotnet/efcore/pull/36080))  
  Integrates various internal commits into the release/8.0 branch. This merge brings together important updates and ensures the release branch is synchronized with recent internal development, maintaining consistency and stability for the release.

---

This summary is generated and may contain inaccuracies. For complete details, please review the linked pull requests.

Full Changelog: [v8.0.16...v8.0.17](https://github.com/dotnet/efcore/compare/v8.0.16...v8.0.17)

## 8.0.16

[Release](https://github.com/dotnet/core/releases/tag/v8.0.16)

## What's Changed
* Update branding to 8.0.16 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35888
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35926
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35930


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.15...v8.0.16

## 8.0.15

[Release](https://github.com/dotnet/core/releases/tag/v9.0.3)

## What's Changed
* Merge branch 'release/8.0' into 'release/8.0-staging' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35541
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35633
* [release/8.0-staging] Improve LoadExtension to work correctly with dotnet run and lib* named libs by @​roji in https://github.com/dotnet/efcore/pull/35718
* [release/8.0-staging] Transform Span-based overloads to Enumerable in funcletizer by @​roji in https://github.com/dotnet/efcore/pull/35720
* Update branding to 8.0.15 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35738
* Merge branch 'release/8.0-staging' => 'release/8.0'  by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35742
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35765
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35780


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.14...v8.0.15

## 8.0.14

[Release](https://github.com/dotnet/core/releases/tag/v8.0.14)

## What's Changed
* Update branding to 8.0.14 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35583
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35621


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.13...v8.0.14

## 8.0.13

[Release](https://github.com/dotnet/core/releases/tag/v8.0.13

## What's Changed
* [release/8.0] Update Helix queues by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35408
* Update branding to 8.0.13 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35427
* Merge branch 'release/8.0-staging' => 'release/8.0' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35464
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35473
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35470


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.12...v8.0.13

## 8.0.12

[Release](https://github.com/dotnet/core/releases/tag/v8.0.12)

## What's Changed
* [release/8.0-staging] Update macOS images to 13 by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35005
* Update branding to 8.0.12 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35048
* Merge branch 'release/8.0' into release/8.0-staging by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35055
* Merge branch 'release/8.0-staging' => 'release/8.0' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35077
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35081


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.11...v8.0.12

Commits viewable in [compare view](https://github.com/dotnet/efcore/commits).
</details>

Updated [Microsoft.EntityFrameworkCore.Relational](https://github.com/dotnet/efcore) from 8.0.11 to 8.0.19.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.EntityFrameworkCore.Relational's releases](https://github.com/dotnet/efcore/releases)._

## 8.0.17

## Dependency Updates

- **Update dependencies from dotnet/arcade** ([#​36085](https://github.com/dotnet/efcore/pull/36085))  
  Updates the project's dependencies using the latest versions from the dotnet/arcade repository. This ensures that the build infrastructure and related tooling are up to date, which can bring in important bug fixes, security patches, and improvements from upstream.

## Miscellaneous

- **Update branding to 8.0.17** ([#​36043](https://github.com/dotnet/efcore/pull/36043))  
  Updates the internal version branding to 8.0.17. This change ensures that the product and its packages correctly reflect the new release version, helping users and developers identify the build.

- **Merging internal commits for release/8.0** ([#​36080](https://github.com/dotnet/efcore/pull/36080))  
  Integrates various internal commits into the release/8.0 branch. This merge brings together important updates and ensures the release branch is synchronized with recent internal development, maintaining consistency and stability for the release.

---

This summary is generated and may contain inaccuracies. For complete details, please review the linked pull requests.

Full Changelog: [v8.0.16...v8.0.17](https://github.com/dotnet/efcore/compare/v8.0.16...v8.0.17)

## 8.0.16

[Release](https://github.com/dotnet/core/releases/tag/v8.0.16)

## What's Changed
* Update branding to 8.0.16 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35888
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35926
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35930


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.15...v8.0.16

## 8.0.15

[Release](https://github.com/dotnet/core/releases/tag/v9.0.3)

## What's Changed
* Merge branch 'release/8.0' into 'release/8.0-staging' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35541
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35633
* [release/8.0-staging] Improve LoadExtension to work correctly with dotnet run and lib* named libs by @​roji in https://github.com/dotnet/efcore/pull/35718
* [release/8.0-staging] Transform Span-based overloads to Enumerable in funcletizer by @​roji in https://github.com/dotnet/efcore/pull/35720
* Update branding to 8.0.15 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35738
* Merge branch 'release/8.0-staging' => 'release/8.0'  by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35742
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35765
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35780


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.14...v8.0.15

## 8.0.14

[Release](https://github.com/dotnet/core/releases/tag/v8.0.14)

## What's Changed
* Update branding to 8.0.14 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35583
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35621


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.13...v8.0.14

## 8.0.13

[Release](https://github.com/dotnet/core/releases/tag/v8.0.13

## What's Changed
* [release/8.0] Update Helix queues by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35408
* Update branding to 8.0.13 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35427
* Merge branch 'release/8.0-staging' => 'release/8.0' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35464
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35473
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35470


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.12...v8.0.13

## 8.0.12

[Release](https://github.com/dotnet/core/releases/tag/v8.0.12)

## What's Changed
* [release/8.0-staging] Update macOS images to 13 by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35005
* Update branding to 8.0.12 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35048
* Merge branch 'release/8.0' into release/8.0-staging by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35055
* Merge branch 'release/8.0-staging' => 'release/8.0' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35077
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35081


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.11...v8.0.12

Commits viewable in [compare view](https://github.com/dotnet/efcore/commits).
</details>

Pinned [Microsoft.EntityFrameworkCore.Sqlite](https://github.com/dotnet/efcore) at 8.0.19.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.EntityFrameworkCore.Sqlite's releases](https://github.com/dotnet/efcore/releases)._

## 8.0.17

## Dependency Updates

- **Update dependencies from dotnet/arcade** ([#​36085](https://github.com/dotnet/efcore/pull/36085))  
  Updates the project's dependencies using the latest versions from the dotnet/arcade repository. This ensures that the build infrastructure and related tooling are up to date, which can bring in important bug fixes, security patches, and improvements from upstream.

## Miscellaneous

- **Update branding to 8.0.17** ([#​36043](https://github.com/dotnet/efcore/pull/36043))  
  Updates the internal version branding to 8.0.17. This change ensures that the product and its packages correctly reflect the new release version, helping users and developers identify the build.

- **Merging internal commits for release/8.0** ([#​36080](https://github.com/dotnet/efcore/pull/36080))  
  Integrates various internal commits into the release/8.0 branch. This merge brings together important updates and ensures the release branch is synchronized with recent internal development, maintaining consistency and stability for the release.

---

This summary is generated and may contain inaccuracies. For complete details, please review the linked pull requests.

Full Changelog: [v8.0.16...v8.0.17](https://github.com/dotnet/efcore/compare/v8.0.16...v8.0.17)

## 8.0.16

[Release](https://github.com/dotnet/core/releases/tag/v8.0.16)

## What's Changed
* Update branding to 8.0.16 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35888
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35926
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35930


**Full Changelog**: https://github.com/dotnet/efcore/compare/v8.0.15...v8.0.16

## 8.0.15

[Release](https://github.com/dotnet/core/releases/tag/v9.0.3)

## What's Changed
* Merge branch 'release/8.0' into 'release/8.0-staging' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35541
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35633
* [release/8.0-stagi...

_Description has been truncated_

Bumps Azure.Identity from 1.12.0 to 1.15.0
Bumps csharpier from 0.27.3 to 0.30.6
Bumps Microsoft.AspNetCore.DataProtection.EntityFrameworkCore from 8.0.11 to 8.0.19
Bumps Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore from 8.0.11 to 8.0.19
Bumps Microsoft.CodeAnalysis.Analyzers from 3.3.4 to 3.11.0
Bumps Microsoft.EntityFrameworkCore from 8.0.11 to 8.0.19
Bumps Microsoft.EntityFrameworkCore.Design from 8.0.11 to 8.0.19
Bumps Microsoft.EntityFrameworkCore.InMemory from 8.0.11 to 8.0.19
Bumps Microsoft.EntityFrameworkCore.Relational from 8.0.11 to 8.0.19
Bumps Microsoft.EntityFrameworkCore.Sqlite from 8.0.11 to 8.0.19
Bumps Microsoft.EntityFrameworkCore.SqlServer from 8.0.11 to 8.0.19
Bumps Microsoft.EntityFrameworkCore.Tools from 8.0.11 to 8.0.19
Bumps Microsoft.IdentityModel.Protocols.OpenIdConnect to 6.36.0, 8.14.0
Bumps Serilog from 2.10.0 to 2.12.0
Bumps Serilog.Sinks.Console from 4.0.1 to 4.1.0
Bumps System.Text.Json from 8.0.5 to 8.0.6

---
updated-dependencies:
- dependency-name: Azure.Identity
  dependency-version: 1.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: Azure.Identity
  dependency-version: 1.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: Azure.Identity
  dependency-version: 1.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: Azure.Identity
  dependency-version: 1.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: csharpier
  dependency-version: 0.30.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.AspNetCore.DataProtection.EntityFrameworkCore
  dependency-version: 8.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.AspNetCore.DataProtection.EntityFrameworkCore
  dependency-version: 8.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-version: 8.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore
  dependency-version: 8.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore
  dependency-version: 8.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.EntityFrameworkCore.Relational
  dependency-version: 8.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.CodeAnalysis.Analyzers
  dependency-version: 3.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.EntityFrameworkCore.Design
  dependency-version: 8.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.EntityFrameworkCore.Design
  dependency-version: 8.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.EntityFrameworkCore.InMemory
  dependency-version: 8.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.EntityFrameworkCore.InMemory
  dependency-version: 8.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.EntityFrameworkCore.Sqlite
  dependency-version: 8.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.EntityFrameworkCore.Sqlite
  dependency-version: 8.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.EntityFrameworkCore.SqlServer
  dependency-version: 8.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.EntityFrameworkCore.SqlServer
  dependency-version: 8.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.EntityFrameworkCore.Tools
  dependency-version: 8.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.IdentityModel.Protocols.OpenIdConnect
  dependency-version: 8.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.IdentityModel.Protocols.OpenIdConnect
  dependency-version: 6.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: Serilog
  dependency-version: 2.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: Serilog
  dependency-version: 2.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: Serilog
  dependency-version: 2.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: Serilog.Sinks.Console
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: Serilog.Sinks.Console
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: System.Text.Json
  dependency-version: 8.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: System.Text.Json
  dependency-version: 8.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: System.Text.Json
  dependency-version: 8.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: System.Text.Json
  dependency-version: 8.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
...

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

dependabot bot commented on behalf of github Sep 15, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 22, 2025

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

@dependabot dependabot bot closed this Sep 22, 2025
@dependabot dependabot bot deleted the dependabot/nuget/dot-config/nuget-minor-and-patch-8c365fcfcf branch September 22, 2025 15:32
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.

1 participant