Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

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

Updated Microsoft.ApplicationInsights.AspNetCore from 2.22.0 to 2.23.0.

Release notes

Sourced from Microsoft.ApplicationInsights.AspNetCore's releases.

2.23.0

  • no changes since beta.

2.23.0-beta1

Commits viewable in compare view.

Updated Microsoft.AspNetCore.Authentication.JwtBearer from 8.0.10 to 8.0.19.

Release notes

Sourced from Microsoft.AspNetCore.Authentication.JwtBearer's releases.

8.0.18

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.17...v8.0.18

8.0.17

Bug Fixes

  • Forwarded Headers Middleware: Ignore X-Forwarded-Headers from Unknown Proxy (#​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)
    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)
    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)
    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)
    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: dotnet/aspnetcore@v8.0.16...v8.0.17

8.0.16

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.15...v8.0.16

8.0.15

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.14...v8.0.15

8.0.14

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.13...v8.0.14

8.0.13

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.12...v8.0.13

8.0.12

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.11...v8.0.12

8.0.11

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.10...v8.0.11

Commits viewable in compare view.

Updated Microsoft.AspNetCore.SpaServices.Extensions from 8.0.10 to 8.0.19.

Release notes

Sourced from Microsoft.AspNetCore.SpaServices.Extensions's releases.

8.0.18

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.17...v8.0.18

8.0.17

Bug Fixes

  • Forwarded Headers Middleware: Ignore X-Forwarded-Headers from Unknown Proxy (#​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)
    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)
    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)
    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)
    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: dotnet/aspnetcore@v8.0.16...v8.0.17

8.0.16

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.15...v8.0.16

8.0.15

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.14...v8.0.15

8.0.14

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.13...v8.0.14

8.0.13

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.12...v8.0.13

8.0.12

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.11...v8.0.12

8.0.11

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.10...v8.0.11

Commits viewable in compare view.

Updated Microsoft.Azure.AppConfiguration.AspNetCore from 8.0.0 to 8.3.0.

Release notes

Sourced from Microsoft.Azure.AppConfiguration.AspNetCore's releases.

8.3.0

Microsoft.Extensions.Configuration.AzureAppConfiguration 8.3.0 - July 24th, 2025

Enhancements

  • Added health check integration for Microsoft.Extensions.Diagnostic.HealthChecks. You can call AddAzureAppConfiguration on IHealthCheckBuilder to register a health check for the Azure App Configuration provider. #​644

    builder.Services
       .AddHealthChecks()
       .AddAzureAppConfiguration();
  • Introduced a new environment variable AZURE_APP_CONFIGURATION_FM_SCHEMA_COMPATIBILITY_DISABLED to force processing and outputting feature flags using the Microsoft schema. #​676

Microsoft.Azure.AppConfiguration.AspNetCore 8.3.0 - July 24th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.3.0. See the release notes for more information on the changes.

Microsoft.Azure.AppConfiguration.Functions.Worker 8.3.0 - July 24th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.3.0. See the release notes for more information on the changes.

8.2.0

Microsoft.Extensions.Configuration.AzureAppConfiguration 8.2.0 - May 14th, 2025

Enhancements

  • Updated the existing Select APIs with the new parameter tagFilters to support filtering key-values and feature flags by tags.

    public AzureAppConfigurationOptions Select(string keyFilter, string labelFilter = LabelFilter.Null, IEnumerable<string> tagFilters = null)
    public FeatureFlagOptions Select(string featureFlagFilter, string labelFilter = LabelFilter.Null, IEnumerable<string> tagFilters = null)
  • Added an ActivitySource called Microsoft.Extensions.Configuration.AzureAppConfiguration to support instrumentation. A Load activity will start when configuration is initially built and the Refresh activity will start when a refresh is triggered. #​645

  • This is the first stable release of the AzureAppConfigurationOptions.SetClientFactory API introduced in 8.2.0-preview. #​380

    public AzureAppConfigurationOptions SetClientFactory(IAzureClientFactory<ConfigurationClient> factory)

Other Changes

  • Removed the FeatureFlagId property from feature flag telemetry. #​655
  • Shortened default network timeout for requests to App Configuration to improve failover speed and retry responsiveness. #​657
  • This is the first stable release of AllocationId from feature flag telemetry metadata, which was introduced in 8.1.0-preview. #​600

Microsoft.Azure.AppConfiguration.AspNetCore 8.2.0 - May 14th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.2.0. See the release notes for more information on the changes.

Microsoft.Azure.AppConfiguration.Functions.Worker 8.2.0 - May 14th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.2.0. See the release notes for more information on the changes.

8.2.0-preview

Microsoft.Extensions.Configuration.AzureAppConfiguration 8.2.0-preview - March 21st, 2025

Enhancements

  • Added the ability to set a client factory used for creating ConfigurationClient instances. #​380

    public AzureAppConfigurationOptions SetClientFactory(IAzureClientFactory<ConfigurationClient> factory)

Microsoft.Azure.AppConfiguration.AspNetCore 8.2.0-preview - March 21st, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.2.0-preview. See the release notes for more information on the changes.

Microsoft.Azure.AppConfiguration.Functions.Worker 8.2.0-preview - March 21st, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.2.0-preview. See the release notes for more information on the changes.

8.1.2

Microsoft.Extensions.Configuration.AzureAppConfiguration 8.1.2 - April 22nd, 2025

Bug Fixes

  • Calling IServiceCollection.AddAzureAppConfiguration now correctly adds an instance of IConfigurationRefresherProvider to the service collection only the first time it is called instead of adding an instance on each invocation. #​611

Microsoft.Azure.AppConfiguration.AspNetCore 8.1.2 - April 22nd, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.1.2. See the release notes for more information on the changes.

Microsoft.Azure.AppConfiguration.Functions.Worker 8.1.2 - April 22nd, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.1.2. See the release notes for more information on the changes.

8.1.1

Microsoft.Extensions.Configuration.AzureAppConfiguration 8.1.1 - February 26th, 2025

Bug Fixes

  • Fixed a bug introduced in the 8.1.0 release where calls to FeatureFlagOptions.Select were ignored if they were followed by a call to either AzureAppConfigurationOptions.Select or AzureAppConfigurationOptions.SelectSnapshot. #​628

Microsoft.Azure.AppConfiguration.AspNetCore 8.1.1 - February 26th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.1.1. See the release notes for more information on the changes.

Microsoft.Azure.AppConfiguration.Functions.Worker 8.1.1 - February 26th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.1.1. See the release notes for more information on the changes.

8.1.0

Microsoft.Extensions.Configuration.AzureAppConfiguration 8.1.0 - February 24th, 2025

Enhancements

  • Added the ability to monitor all selected key-values for refresh with the following new API. #​536

    public AzureAppConfigurationRefreshOptions RegisterAll()

    When this API is called, changes to any selected key-values will cause a reload of the configuration.

  • Added the ability to check if the type of an IConfigurationSource is AzureAppConfigurationSource with the following new extension. #​456

    public static bool IsAzureAppConfigurationSource(this IConfigurationSource source)

Bug Fixes

  • Fixed a bug where changing a feature flag would always override an already loaded feature flag with the same key but different label on refresh. As part of this change, feature flags are now always refreshed as a collection, meaning a change in any selected flag will result in a reload of all selected feature flags on refresh. #​317
  • Fixed a bug where an unnecessary refresh could occur when a request to App Configuration was served from the cache. #​588

Other Changes

  • Removed support for the configuration_reference property in feature flags. #​614
  • AllocationId from feature flag telemetry metadata, which was introduced in 8.1.0-preview version, has been removed in this stable version. #​600

Microsoft.Azure.AppConfiguration.AspNetCore 8.1.0 - February 24th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.1.0. See the release notes for more information on the changes.

Microsoft.Azure.AppConfiguration.Functions.Worker 8.1.0 - February 24th, 2025

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.1.0. See the release notes for more information on the changes.

8.1.0-preview

Microsoft.Extensions.Configuration.AzureAppConfiguration 8.1.0-preview - October 24, 2024

Enhancements

  • Added support for injecting additional telemetry metadata to feature flags if telemetry is enabled
    • AllocationId represents the version of an allocation on a feature flag. The AllocationId changes when there are essential modifications to the allocation, such as adjustments to the percentile or variant configuration, but not for non-essential changes like feature flag descriptions.

Microsoft.Azure.AppConfiguration.AspNetCore 8.1.0-preview - October 24, 2024

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.1.0-preview. See the release notes for more information on the changes.

Microsoft.Azure.AppConfiguration.Functions.Worker 8.1.0-preview - October 24, 2024

  • Updated Microsoft.Extensions.Configuration.AzureAppConfiguration reference to 8.1.0-preview. See the release notes for more information on the changes.

Commits viewable in compare view.

Updated Microsoft.OpenApi from 1.6.22 to 2.1.0.

Release notes

Sourced from Microsoft.OpenApi's releases.

2.1.0

2.1.0 (2025-08-20)

Features

  • adds a default validation rule for unresolved references (90b3966)

Bug Fixes

  • Improve OpenApiWalker performance (a007c03)
  • Validate schema property is not null (3326022)

2.0.1

2.0.1 (2025-08-18)

Bug Fixes

  • add missing disposable for stream (0c1ccbd)

2.0.0

2.0.0 (2025-07-10)

Features

  • General availability of version 2 with support for OpenAPI 3.1!!! 🎉🎉🎉 (a02d74c)

Bug Fixes

  • inconsistent visibility of properties in current keys class (cb9772f)
  • removes extraneous default value constant (bf8d0b6)
  • removes loop methods from parsing context as its available in loop detector instead (de3531b)
  • removes public mermaid types that were not usuable (ef7ae33)
  • removes redundant marker interface (5a055f9)
  • switches to a getter for API consistency (7975082)
  • unconsistent visibility of properties in current keys class (d0c20ab)
  • visibility of extension methods (1e9112a)

2.0.0-preview9

2.0.0-preview9 (2025-02-21)

Features

  • add support for dependentRequired (75d7a66)

Bug Fixes

  • an issue where deprecation extension parsing would fail (5db8757)
  • an issue where deprecation extension parsing would fail (b59864c)
  • refactor ToIdentifier() to normalize flaggable enums (#​2156) (b80e934)

2.0.0-preview8

2.0.0-preview8 (2025-02-17)

Bug Fixes

  • a bug where external reference loading for local files would not work on linux (df99a00)
  • add meaningful exception message during validation (4a6547d)
  • add meaningful exception message during validation (74d20ed)
  • adds a cancellation token argument to external document loading (a5ffab1)
  • parsing failure on nodes set to null (20aacc1)
  • parsing failure on nodes set to null (4245de9)

2.0.0-preview7

2.0.0-preview7 (2025-02-06)

Bug Fixes

  • do not write null for types on parameters in v2 (f889937)
  • do not write null for types on parameters in v2 (4aef7b7)

2.0.0-preview6

2.0.0-preview6 (2025-02-05)

Features

  • adds a net8 target to benefit from all the conditional compilation (a201aa2)
  • adds components registration method for schemas (10e548a)
  • adds deconstructor to read result (79336f6)
  • adds deconstructor to read result (d8c1593)
  • adds to identifier mapping to non nullable enum (bd9622e)
  • bumps target OAS version to 3.1.1 (9e8d8a4)
  • configure AOT for trimming compatibility (b4f9c3e)
  • makes document optional (754f763)
  • makes the reference interface covariant (7405f3c)
  • splits described and summarized interfaces (2a10cd9)

Bug Fixes

  • 3.0 serialization when type is set to null (920a51a)
  • a bug where 3.0 downcast of type null would not work (6b636d5)
  • a bug where 3.0 downcast of type null would not work (ac05342)
  • a flaky behaviour for format property serialization (3ea1fa9)
  • a flaky behaviour for format property serialization (52981d4)
  • additional 3.1.0 constants after merge and v2 release (9e8d8a4)
  • adds generic shallow copy method to avoid inadvertent conversions of references to schemas (e4c14a4)
  • adds missing culture argument to date serialization (45329e4)
  • adds missing null prop operator to proxy properties (8361069)
  • adds missing null propagation operators for callback and header references (0cb4ccb)
  • adds support for all component types (8a73b54)
  • aligns callback parameter name with interface (68b25cc)
  • aligns missing properties for override (e3325b9)
  • aligns parameter name with interface definition for example (d7e1f91)
  • aligns reference copy constructors (ce93aa7)
  • aligns to null propagation operator (8d57b81)
  • allow registration of component references (14750dc)
  • an empty security requirement should not result in an object during serialization (1c6fd8e)
  • build passes (ea68427)
  • callback reference proxy implementation (028d60b)
  • callback reference proxy implementation (2cbb0fa)
  • components schema copy (88daad5)
  • conditional version for extension causes invalid json (4030c1f)
  • conditional version for extension causes invalid json (0ce92cc)
  • date time and date time offset shifting zones (a6a44a7)
  • default settings in case of null value (ab2ddf0)
  • do not allow null argument for example copy constructor (aa80b19)
  • do not copy host document as it negatively impact performance (1043e4e)
  • do not copy host document as it negatively impact performance (a46e857)
  • do not emit a type array in 3.1 when unnecessary (3b3d0e6)
  • draft security scheme reference proxy design pattern (1bd2624)
    ... (truncated)

2.0.0-preview5

Changes:

  • #​2077: Release v2.0.0-preview5
  • #​2076: Fix: Error validating OpenAPI using hidi preview
  • #​2074: Bump preview versions
  • #​2046: fix/reference copy
  • #​2072: chore(deps): bump coverlet.collector from 6.0.3 to 6.0.4
  • #​2071: chore(deps): bump docker/build-push-action from 6.11.0 to 6.12.0
  • #​2073: chore(deps): bump coverlet.msbuild from 6.0.3 to 6.0.4
  • #​2070: chore(deps): bump FluentAssertions from 7.0.0 to 7.1.0
  • #​2063: feat: configure AOT for trimming compatibility
  • #​2064: chore/reduce fluent assertions dependency
See More
  • #​2033: fix: passes missing host document references to all layers
  • #​2065: chore(deps): bump System.Formats.Asn1 and Microsoft.Windows.Compatibility
  • #​2032: fix: side effects in tag references
  • #​2061: chore(deps): bump System.Formats.Asn1 from 9.0.0 to 9.0.1
  • #​2057: chore(deps): bump Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions and Microsoft.Extensions.Logging.Debug
  • #​2059: chore(deps): bump Verify.Xunit from 28.8.1 to 28.9.0
  • #​2056: chore(deps): bump docker/build-push-action from 6.10.0 to 6.11.0
  • #​2053: make IDiagnosticExtensions internal and fix namespace
  • #​2054: chore(deps): bump xunit.runner.visualstudio from 3.0.0 to 3.0.1
  • #​2049: fix: enum parsing when encountering unknown values should not default to first member
  • #​2051: fix/async surface
  • #​2050: chore(deps): bump xunit from 2.9.2 to 2.9.3
  • #​2031: fix/reference proxy single copy
  • #​2041: fix: v2 references for properties do not work as expected
  • #​2044: chore(deps): bump Verify.Xunit from 28.7.0 to 28.8.1
  • #​2042: fix: v2 request body content null propagation
  • #​2043: fix: conditional version for extension causes invalid json
  • #​2038: fix/clone api
  • #​2039: fix/json node serialization
  • #​2040: chore/remove obsolete
  • #​2037: fix/missing culture
  • #​2035: chore(deps): bump coverlet.msbuild from 6.0.2 to 6.0.3
  • #​2034: chore(deps): bump coverlet.collector from 6.0.2 to 6.0.3
  • #​2028: dev
  • #​2027: chore: bumps preview version
  • #​2026: fix: specifies encoding for net fx
  • #​2024: feat: adds deconstructor to read result
  • #​2023: fix: enum description number values
  • #​2025: chore(deps): bump Verify.Xunit from 28.6.1 to 28.7.0
  • #​2021: fix/ci tag value to main
  • #​2019: fix: reverts to a regular variable for the tag value
  • #​2015: release of preview 3
  • #​2017: fix/ci hidi gh upload to main
  • #​2016: fix/ci hidi gh upload
  • #​1975: Refactor readers to reduce surface area
    ... (truncated)

2.0.0-preview4

Changes:

  • #​2028: dev
  • #​2027: chore: bumps preview version
  • #​2026: fix: specifies encoding for net fx
  • #​2024: feat: adds deconstructor to read result
  • #​2023: fix: enum description number values
  • #​2025: chore(deps): bump Verify.Xunit from 28.6.1 to 28.7.0
  • #​2021: fix/ci tag value to main
  • #​2019: fix: reverts to a regular variable for the tag value
  • #​2015: release of preview 3
  • #​2017: fix/ci hidi gh upload to main
See More
  • #​2016: fix/ci hidi gh upload
  • #​1975: Refactor readers to reduce surface area
  • #​2014: chore/v1 sync
  • #​2008: ci: fixes hidi gh release
  • #​2005: ci: updates main with the latest ci changes
  • #​2003: chore(deps): bump Verify.Xunit from 28.2.0 to 28.6.1
  • #​2001: ci/align branches
  • #​1999: chore: fixes extraneous master references
  • #​2000: fix: sets hidi version to a preview
  • #​1997: chore/linting
  • #​1982: Add support for handling unrecognized keywords
  • #​1981: Rename Read Result properties
  • #​1996: chore: adds baywet to code owners
  • #​1993: chore(deps): bump Verify.Xunit from 28.5.0 to 28.6.0
  • #​1994: chore(deps): bump PublicApiGenerator from 11.2.0 to 11.3.0
  • #​1939: Fix tags serialization bug
  • #​1992: chore(deps): bump xunit.runner.visualstudio from 2.8.2 to 3.0.0
  • #​1990: chore(deps): bump Verify.Xunit from 28.4.0 to 28.5.0
  • #​1988: Bump preview versions
  • #​1984: chore(deps): bump PublicApiGenerator from 11.1.0 to 11.2.0
  • #​1986: chore(deps): bump Microsoft.OData.Edm from 8.2.2 to 8.2.3
  • #​1979: chore(deps): bump FluentAssertions from 6.12.2 to 7.0.0
  • #​1978: Fix: Adds missing security metadata to the pipeline
  • #​1977: chore(deps): bump docker/build-push-action from 6.9.0 to 6.10.0
  • #​1976: chore(deps): bump Verify.Xunit from 28.3.2 to 28.4.0
  • #​1955: Fix: Empty paths object is now failing for version 3.0.0
  • #​1943: Add support for JSON schema const keyword in OpenApiSchema
  • #​1956: Fix: Workbench fails because of a missing format parameter
  • #​1942: Use range for STJ reference and suppress warnings
  • #​1945: chore(deps): bump Microsoft.NET.Test.Sdk from 17.11.1 to 17.12.0
  • #​1944: chore(deps): bump Microsoft.OData.Edm from 8.2.1 to 8.2.2
  • #​1941: chore(deps): bump Verify.Xunit from 28.3.1 to 28.3.2
  • #​1938: Fix link to OpenAPI specification
  • #​1936: chore(deps): bump Verify.Xunit from 28.2.1 to 28.3.1
  • #​1932: chore(deps): bump Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Console and System.Text.Json
    ... (truncated)

2.0.0-preview3

Changes:

  • #​2021: fix/ci tag value to main
  • #​2015: release of preview 3
  • #​2017: fix/ci hidi gh upload to main
  • #​2016: fix/ci hidi gh upload
  • #​1975: Refactor readers to reduce surface area
  • #​2014: chore/v1 sync
  • #​2008: ci: fixes hidi gh release
  • #​2005: ci: updates main with the latest ci changes
  • #​2003: chore(deps): bump Verify.Xunit from 28.2.0 to 28.6.1
  • #​2001: ci/align branches
See More
  • #​1999: chore: fixes extraneous master references
  • #​2000: fix: sets hidi version to a preview
  • #​1997: chore/linting
  • #​1982: Add support for handling unrecognized keywords
  • #​1981: Rename Read Result properties
  • #​1996: chore: adds baywet to code owners
  • #​1993: chore(deps): bump Verify.Xunit from 28.5.0 to 28.6.0
  • #​1994: chore(deps): bump PublicApiGenerator from 11.2.0 to 11.3.0
  • #​1939: Fix tags serialization bug
  • #​1992: chore(deps): bump xunit.runner.visualstudio from 2.8.2 to 3.0.0
  • #​1990: chore(deps): bump Verify.Xunit from 28.4.0 to 28.5.0
  • #​1988: Bump preview versions
  • #​1984: chore(deps): bump PublicApiGenerator from 11.1.0 to 11.2.0
  • #​1986: chore(deps): bump Microsoft.OData.Edm from 8.2.2 to 8.2.3
  • #​1979: chore(deps): bump FluentAssertions from 6.12.2 to 7.0.0
  • #​1978: Fix: Adds missing security metadata to the pipeline
  • #​1977: chore(deps): bump docker/build-push-action from 6.9.0 to 6.10.0
  • #​1976: chore(deps): bump Verify.Xunit from 28.3.2 to 28.4.0
  • #​1955: Fix: Empty paths object is now failing for version 3.0.0
  • #​1943: Add support for JSON schema const keyword in OpenApiSchema
  • #​1956: Fix: Workbench fails because of a missing format parameter
  • #​1942: Use range for STJ reference and suppress warnings
  • #​1945: chore(deps): bump Microsoft.NET.Test.Sdk from 17.11.1 to 17.12.0
  • #​1944: chore(deps): bump Microsoft.OData.Edm from 8.2.1 to 8.2.2
  • #​1941: chore(deps): bump Verify.Xunit from 28.3.1 to 28.3.2
  • #​1938: Fix link to OpenAPI specification
  • #​1936: chore(deps): bump Verify.Xunit from 28.2.1 to 28.3.1
  • #​1932: chore(deps): bump Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Console and System.Text.Json
  • #​1931: chore: removes newtonsoft dependency all together
  • #​1927: chore(deps): bump Microsoft.OData.Edm from 8.2.0 to 8.2.1
  • #​1926: chore(deps): bump Microsoft.Extensions.Logging and Microsoft.Extensions.Logging.Abstractions
  • #​1928: chore(deps): bump Microsoft.VisualStudio.Threading.Analyzers from 17.11.20 to 17.12.19
  • #​1925: chore(deps): bump Verify.Xunit from 28.2.0 to 28.2.1
  • #​1915: fix: multiple performance fixes for type serialization feat: adds to identifier mapping to non nullable enum
  • #​1919: chore(deps): bump Microsoft.Extensions.Logging.Abstractions from 8.0.2 to 9.0.0
    ... (truncated)

2.0.0-preview2

Changes:

  • #​1914: Release hidi and libs
  • #​1913: Bump up libs and hidi versions
  • #​1894: feature/3.1.1
  • #​1823: feature/3 0 4
  • #​1912: chore(deps): bump Verify.Xunit from 28.0.0 to 28.2.0
  • #​1909: chore(deps): bump Microsoft.OData.Edm from 8.1.0 to 8.2.0
  • #​1910: chore(deps): bump FluentAssertions from 6.12.1 to 6.12.2
  • #​1908: Release hidi
  • #​1907: Bump hidi version
  • #​1906: V2-preview1 release
See More
  • #​1904: V2.0-preview1 release
  • #​1903: Sync latest vnext changes
  • #​1897: Define JSON schema's Type property as a flaggable enum to allow storing multiple values
  • #​1900: chore(deps): bump Verify.Xunit from 27.1.0 to 28.0.0
  • #​1888: Remove DataTypeMismatch validation rule from the default ruleset
  • #​1899: OpenApiSchema refactor to remove recursive keywords
  • #​1898: Release Hidi
  • #​1896: Bump up hidi and conversion lib versions
  • #​1890: Update workbench tool to parse 3.1 and YAML docs
  • #​1895: chore(deps): bump Verify.Xunit from 27.0.1 to 27.1.0
  • #​1892: docs: fixes doc comments to align with changes made in #​1883
  • #​1883: fix: emits number for integer formats
  • #​1893: merge/vnext to release2
  • #​1886: use nameof for CallerArgumentExpression
  • #​1887: Simplify null/empty string checks
  • #​1885: Release Hidi lib.
  • #​1884: Bump, Release Hidi
  • #​1881: chore(deps): bump Microsoft.OData.Edm from 8.0.2 to 8.1.0
  • #​1882: chore(deps): bump Microsoft.OpenApi.OData from 2.0.0-preview.5 to 2.0.0-preview.6
  • #​1877: Bump Verify.Xunit from 26.6.0 to 27.0.1
  • #​1873: Released Hidi
  • #​1871: Bumps up conversion lib. and hidi versions
  • #​1870: ci: removes zengin since he doesn't have access to the repo anymore
  • #​1869: Bump Microsoft.OpenApi.OData from 2.0.0-preview.3 to 2.0.0-preview.4
  • #​1868: Bump Microsoft.Extensions.Logging.Debug from 8.0.0 to 8.0.1
  • #​1867: Bump Microsoft.Extensions.Logging.Console from 8.0.0 to 8.0.1
  • #​1866: Sync v2 branch with the latest changes in vnext
  • #​1865: Bump v2 lib versions to 2.0.0-preview1
  • #​1863: Bump Microsoft.Extensions.Logging and Microsoft.Extensions.Logging.Abstractions
  • #​1862: Bump System.Text.Json from 8.0.4 to 8.0.5
  • #​1864: Bump Microsoft.Windows.Compatibility from 8.0.8 to 8.0.10
  • #​1861: Sync vnext changes with the v2 branch
  • #​1809: Use ConcurrentDictionary For Improving GetEnumFromDisplayName
  • #​1857: Avoid buffering JSON data into a new MemoryStream during parsing
  • #​1856: Remove validation rule to make paths and webhooks optional
    ... (truncated)

2.0.0-preview10

2.0.0-preview10 (2025-02-27)

Features

  • deduplicates tags at the document level (93c468e)
  • tags references are now deduplicated as well (763c0c1)

Bug Fixes

  • add logic for serializing date time objects (23395c5)
  • adds missing cancellation parameter to async method (243a111)
  • avoid creating new http clients to load additional documents of the workspace (0f23798)
  • deduplicates exclusive min/max properties in the object model (08414a1)
  • deduplicates exclusive min/max properties in the object model (0d5b471)
  • moves the http client for the reader to settings so it can be passed by client application (9b910f3)
  • OpenAPIDocument JsonSchemaDialect property is now a URI (45977b5)
  • openapischema schema property is now a Uri (452a6b9)
  • primitive parsing for strings as DateTimes is too greedy (4ee1d8b)
  • removes static readers registry (fe7a2fd)
  • use a single http client in hidi ([9386fae](htt......

Description has been truncated

Bumps Microsoft.ApplicationInsights.AspNetCore from 2.22.0 to 2.23.0
Bumps Microsoft.AspNetCore.Authentication.JwtBearer from 8.0.10 to 8.0.19
Bumps Microsoft.AspNetCore.SpaServices.Extensions from 8.0.10 to 8.0.19
Bumps Microsoft.Azure.AppConfiguration.AspNetCore from 8.0.0 to 8.3.0
Bumps Microsoft.OpenApi from 1.6.22 to 2.1.0

---
updated-dependencies:
- dependency-name: Microsoft.ApplicationInsights.AspNetCore
  dependency-version: 2.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: microsoft
- dependency-name: Microsoft.AspNetCore.Authentication.JwtBearer
  dependency-version: 8.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: microsoft
- dependency-name: Microsoft.AspNetCore.SpaServices.Extensions
  dependency-version: 8.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: microsoft
- dependency-name: Microsoft.Azure.AppConfiguration.AspNetCore
  dependency-version: 8.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: microsoft
- dependency-name: Microsoft.OpenApi
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: microsoft
...

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 Aug 23, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants