Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the deps group in /src with 12 updates #196

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 4, 2024

Bumps the deps group in /src with 12 updates:

Package From To
Azure.ResourceManager 1.10.1 1.10.2
Microsoft.Graph 5.43.0 5.44.0
Nox.Secrets 7.0.204 7.0.210
Nox.Secrets.Abstractions 7.0.204 7.0.210
Nox.Solution 7.0.204 7.0.210
Nox.Yaml 7.0.204 7.0.210
Nox.Secrets.Azure 7.0.204 7.0.210
System.IdentityModel.Tokens.Jwt 7.3.1 7.4.0
Nox.Secrets.Abstractions 7.0.204 7.0.210
Nox.Solution 7.0.204 7.0.210
Nox.Yaml 7.0.204 7.0.210
Nox.Solution 7.0.204 7.0.210
Nox.Yaml 7.0.204 7.0.210
YamlDotNet 15.1.1 15.1.2
Nox.Secrets.Azure 7.0.204 7.0.210
Nox.Secrets.Abstractions 7.0.204 7.0.210
Nox.Solution 7.0.204 7.0.210
Nox.Yaml 7.0.204 7.0.210
Microsoft.Data.SqlClient 5.1.5 5.2.0
Nox.Types 7.0.204 7.0.210
Nox.Yaml 7.0.204 7.0.210
Microsoft.Identity.Web 2.17.0 2.17.1
System.IdentityModel.Tokens.Jwt 7.3.1 7.4.0

Updates Azure.ResourceManager from 1.10.1 to 1.10.2

Release notes

Sourced from Azure.ResourceManager's releases.

Azure.ResourceManager_1.10.2

1.10.2 (2024-03-01)

Features Added

  • Added ManagementGroupSubscriptions operations.

Bugs Fixed

  • Fixed the issue that sdk caches wrong subscription provider.
Commits

Updates Microsoft.Graph from 5.43.0 to 5.44.0

Changelog

Sourced from Microsoft.Graph's changelog.

[5.44.0] - 2024-02-28

  • Latest metadata updates from 27th February 2024.
Commits
  • 148f1ef Merge pull request #2361 from microsoftgraph/kiota/v1.0/pipelinebuild/137240
  • 7423b53 Bumps version and release notes.
  • ef5d192 Update generated files with build 137240
  • See full diff in compare view

Updates Nox.Secrets from 7.0.204 to 7.0.210

Commits

Updates Nox.Secrets.Abstractions from 7.0.204 to 7.0.210

Commits

Updates Nox.Solution from 7.0.204 to 7.0.210

Commits

Updates Nox.Yaml from 7.0.204 to 7.0.210

Release notes

Sourced from Nox.Yaml's releases.

v7.0.210

No release notes provided.

v7.0.209

What's Changed

Full Changelog: NoxOrg/Nox@v7.0.208...v7.0.209

v7.0.208

No release notes provided.

v7.0.207

No release notes provided.

v7.0.206

What's Changed

Full Changelog: NoxOrg/Nox@v7.0.205...v7.0.206

v7.0.205

No release notes provided.

Commits
  • 8b8a9a9 updated docs; (#1454)
  • 3262d62 NOX-809 - Update Put Entity behavior for Owned Entities (#1453)
  • d295613 NOX-798 - Change Put for ToMany Owned Relationship to accept an array of owne...
  • d040efd add to generate readme file an option for the Mermaid Details (#1452)
  • a6bd03f update get enumeration localized to Languages (#1449)
  • 00d2602 add test to validate put in a non default lang returns not default
  • 72747d6 load sql entity builders from infrastructure componet (#1448)
  • 51b5c67 disable cluster index for guid key (#1447)
  • b911dd2 Fix NOX Issue#667 (#1406)
  • See full diff in compare view

Updates Nox.Secrets.Azure from 7.0.204 to 7.0.210

Commits

Updates System.IdentityModel.Tokens.Jwt from 7.3.1 to 7.4.0

Release notes

Sourced from System.IdentityModel.Tokens.Jwt's releases.

7.4.0

New Features:

  • Introduced an injection point for external metadata management and adjusted the issuer Last Known Good (LKG) to maintain the state within the issuer validator. See PR #2480.
  • Made an internal virtual method public, enabling users to provide signature providers. See PR #2497.

Performance Improvements:

  • Added a new JsonWebToken constructor that accepts Memory for improved performance, along with enhancements to existing constructors. More information can be found in issue #2487 and in PR #2458.

Fundamentals:

  • Resolved the issue of duplicated log messages in the source code and made IDX10506 log message more specific. For more details, refer to PR #2481.
  • Enhanced Json serialization by ensuring the complete object is always read. This improvement can be found in PR #2491.

Engineering Excellence:

  • Streamlined the build and release process by replacing the dependency on updateAssemblyInfo.ps1 with the Version property. Check out the details in PR #2494.
  • Excluded the packing of Benchmark and TestApp projects for a more efficient process. Details available in PR #2496.

7.4.0-preview1

Performance Improvements:

  • The existing JsonWebToken constructors now utilizes ReadOnlyMemory and Span to extract token segments, eliminating the need for string.split operations.
  • A new constructor has been introduced that accepts ReadOnlyMemory of an encoded token. See issue #2487.

Performance Assessment on .NET 8:

  • When using the preview version and opting for the constructor that accepts a string for the encoded token, the generation of a JWS yields a 3.95% decrease in memory usage, a 4.52% reduction in Gen0 and a 4.61% decrease in execution time compared to the latest release.
  • The performance of the constructor that accepts ReadOnlyMemory is comparable to the constructor accepting a string for the encoded token, both for JWS and JWE.

Preview branch: image

Dev (main) branch: image

View the benchmarks here.

Changelog

Sourced from System.IdentityModel.Tokens.Jwt's changelog.

7.4.0

New Features:

  • Introduced an injection point for external metadata management and adjusted the issuer Last Known Good (LKG) to maintain the state within the issuer validator. See PR #2480.
  • Made an internal virtual method public, enabling users to provide signature providers. See PR #2497.

Performance Improvements:

  • Added a new JsonWebToken constructor that accepts Memory for improved performance, along with enhancements to existing constructors. More information can be found in issue #2487 and in PR #2458.

Fundamentals:

  • Resolved the issue of duplicated log messages in the source code and made IDX10506 log message more specific. For more details, refer to PR #2481.
  • Enhanced Json serialization by ensuring the complete object is always read. This improvement can be found in PR #2491.

Engineering Excellence:

  • Streamlined the build and release process by replacing the dependency on updateAssemblyInfo.ps1 with the Version property. Check out the details in PR #2494.
  • Excluded the packing of Benchmark and TestApp projects for a more efficient process. Details available in PR #2496.
Commits

Updates Nox.Secrets.Abstractions from 7.0.204 to 7.0.210

Commits

Updates Nox.Solution from 7.0.204 to 7.0.210

Commits

Updates Nox.Yaml from 7.0.204 to 7.0.210

Release notes

Sourced from Nox.Yaml's releases.

v7.0.210

No release notes provided.

v7.0.209

What's Changed

Full Changelog: NoxOrg/Nox@v7.0.208...v7.0.209

v7.0.208

No release notes provided.

v7.0.207

No release notes provided.

v7.0.206

What's Changed

Full Changelog: NoxOrg/Nox@v7.0.205...v7.0.206

v7.0.205

No release notes provided.

Commits
  • 8b8a9a9 updated docs; (#1454)
  • 3262d62 NOX-809 - Update Put Entity behavior for Owned Entities (#1453)
  • d295613 NOX-798 - Change Put for ToMany Owned Relationship to accept an array of owne...
  • d040efd add to generate readme file an option for the Mermaid Details (#1452)
  • a6bd03f update get enumeration localized to Languages (#1449)
  • 00d2602 add test to validate put in a non default lang returns not default
  • 72747d6 load sql entity builders from infrastructure componet (#1448)
  • 51b5c67 disable cluster index for guid key (#1447)
  • b911dd2 Fix NOX Issue#667 (#1406)
  • See full diff in compare view

Updates Nox.Solution from 7.0.204 to 7.0.210

Commits

Updates Nox.Yaml from 7.0.204 to 7.0.210

Release notes

Sourced from Nox.Yaml's releases.

v7.0.210

No release notes provided.

v7.0.209

What's Changed

Full Changelog: NoxOrg/Nox@v7.0.208...v7.0.209

v7.0.208

No release notes provided.

v7.0.207

No release notes provided.

v7.0.206

What's Changed

Full Changelog: NoxOrg/Nox@v7.0.205...v7.0.206

v7.0.205

No release notes provided.

Commits
  • 8b8a9a9 updated docs; (#1454)
  • 3262d62 NOX-809 - Update Put Entity behavior for Owned Entities (#1453)
  • d295613 NOX-798 - Change Put for ToMany Owned Relationship to accept an array of owne...
  • d040efd add to generate readme file an option for the Mermaid Details (#1452)
  • a6bd03f update get enumeration localized to Languages (#1449)
  • 00d2602 add test to validate put in a non default lang returns not default
  • 72747d6 load sql entity builders from infrastructure componet (#1448)
  • 51b5c67 disable cluster index for guid key (#1447)
  • b911dd2 Fix NOX Issue#667 (#1406)
  • See full diff in compare view

Updates YamlDotNet from 15.1.1 to 15.1.2

Release notes

Sourced from YamlDotNet's releases.

Release 15.1.2

  • Merge pull request #912 from EdwardCooke/ec-732
    Fixed #732, quote strings starting with whitespace characters
Commits
  • 7ae209b Quoted test changes to not log to stdout
  • 33ed33b Merge pull request #912 from EdwardCooke/ec-732
  • 66c68a2 Fixed #732, quote strings starting with whitespace characters
  • See full diff in compare view

Updates Nox.Secrets.Azure from 7.0.204 to 7.0.210

Commits

Updates Nox.Secrets.Abstractions from 7.0.204 to 7.0.210

Commits

Updates Nox.Solution from 7.0.204 to 7.0.210

Commits

Updates Nox.Yaml from 7.0.204 to 7.0.210

Release notes

Sourced from Nox.Yaml's releases.

v7.0.210

No release notes provided.

v7.0.209

What's Changed

Full Changelog: NoxOrg/Nox@v7.0.208...v7.0.209

v7.0.208

No release notes provided.

v7.0.207

No release notes provided.

v7.0.206

What's Changed

Full Changelog: NoxOrg/Nox@v7.0.205...v7.0.206

v7.0.205

No release notes provided.

Commits
  • 8b8a9a9 updated docs; (#1454)
  • 3262d62 NOX-809 - Update Put Entity behavior for Owned Entities (#1453)
  • d295613 NOX-798 - Change Put for ToMany Owned Relationship to accept an array of owne...
  • d040efd add to generate readme file an option for the Mermaid Details (#1452)
  • a6bd03f update get enumeration localized to Languages (#1449)
  • 00d2602 add test to validate put in a non default lang returns not default
  • 72747d6 load sql entity builders from infrastructure componet (#1448)
  • 51b5c67 disable cluster index for guid key (#1447)
  • b911dd2 Fix NOX Issue#667 (#1406)
  • See full diff in compare view

Updates Microsoft.Data.SqlClient from 5.1.5 to 5.2.0

Release notes

Sourced from Microsoft.Data.SqlClient's releases.

Stable release V5.2.0

[Stable release 5.2.0] - 2024-02-28

Added

  • Added a new AccessTokenCallBack API to SqlConnection. #1260
  • Added SqlBatch support on .NET 6+ #1825, #2223,#2371, #2373
  • Added support of SqlDiagnosticListener on .NET Standard. #1931
  • Added new property RowsCopied64 to SqlBulkCopy. #2004
  • Added support for the SuperSocketNetLib registry option for Encrypt on .NET on Windows. #2047
  • Added the ability to generate debugging symbols in a separate package file #2137
  • Added Workload Identity authentication support #2159, #2264
  • Added support for Big Endian systems #2170
  • Added support for Georgian collation #2194
  • Added Localization support on .NET #2210
  • Added .NET 8 support #2230
  • Added explicit version for major .NET version dependencies on System.Runtime.Caching 8.0.0, System.Configuration.ConfigurationManager 8.0.0, and System.Diagnostics.
  • DiagnosticSource 8.0.0 #2303

Changed

  • Improved parsing buffered characters in TdsParser. #1544
  • Added Microsoft.SqlServer.Types to verify support for SqlHierarchyId and Spatial for .NET Core. #1848
  • Moved to new System.Data.SqlTypes APIs on .NET 7 and up. #1934 and #1981
  • Removed reference to Microsoft.Win32.Registry since it's shipped starting with .NET 6.0. #1974
  • Changed UseOneSecFloorInTimeoutCalculationDuringLogin App Context switch default to true and extended its effect to .NET and .NET Standard. #2012
  • Updated Microsoft.Identity.Client version from 4.47.2 to 4.53.0. #2031, #2055
  • Switched to the new .NET NegotiateAuthentication API on .NET 7.0 and above for SSPI token negotiation using Managed SNI. #2063
  • Removed ignoreSniOpenTimeout in open connection process on Windows. #2067
  • Enforce explicit ordinal for internal StringComparison operations. #2068
  • Improved error messages when validating server certificates in managed SNI (Linux/macOS) #2060
  • Improved CPU usage when AppContext switches are in use #2227
  • Upgraded Azure.Identity dependency version to 1.10.3 to address CVE-2023-36414, #2189
  • Changed Microsoft.IdentityModel.JsonWebTokens and Microsoft.IdentityModel.Protocols.OpenIdConnect version 6.24.0 to 6.35.0 #2290 to address CVE-2024-21319
  • Updated Microsoft.Data.SqlClient.SNI (.NET Framework dependency) and Microsoft.Data.SqlClient.SNI.runtime (.NET/.NET Standard dependency) version to v5.2.0. #2363, which includes removing dead code and addressing static analysis warnings
  • Code health improvements: #1198, #1829, #1943, #1949, #1959, #1985, #2071, #2073, #2088, #2091, #2098, #2121, #2122, #2132, #2136, #2144, #2147, #2157, #2164, #2166, #2168, #2186, #2254, #2288, #2305, #2317

Fixed

  • Fixed Always Encrypted secure enclave retry logic for async queries. #1988
  • Fixed activity correlator to continue use of same GUID for connection activity. #1997
  • Fixed behavior when error class is greater than 20 on connection retry. #1953
  • Fixed error message when symmetric key decryption failed using Always Encrypted. #1948
  • Fixed TransactionScope connection issue when Enlist is enable, Pooling is disabled and network connection type is Redirect. #1960
  • Fixed TDS RPC error on large queries in SqlCommand.ExecuteReaderAsync. #1936
  • Fixed throttling of token requests by calling AcquireTokenSilent. #1925
  • Fixed Linux code coverage result in Build proj. #1950
  • Fixed NullReferenceException in GetBytesAsync. #1906
  • Fixed Transient fault handling issue with OpenAsync. #1983
  • Fixed invariant mode checks. #1917

... (truncated)

Changelog

Sourced from Microsoft.Data.SqlClient's changelog.

[Stable release 5.2.0] - 2024-02-28

Added

  • Added a new AccessTokenCallBack API to SqlConnection. #1260
  • Added SqlBatch support on .NET 6+ #1825, #2223,#2371, #2373
  • Added support of SqlDiagnosticListener on .NET Standard. #1931
  • Added new property RowsCopied64 to SqlBulkCopy. #2004
  • Added support for the SuperSocketNetLib registry option for Encrypt on .NET on Windows. #2047
  • Added the ability to generate debugging symbols in a separate package file #2137
  • Added Workload Identity authentication support #2159, #2264
  • Added support for Big Endian systems #2170
  • Added support for Georgian collation #2194
  • Added Localization support on .NET #2210
  • Added .NET 8 support #2230
  • Added explicit version for major .NET version dependencies on System.Runtime.Caching 8.0.0, System.Configuration.ConfigurationManager 8.0.0, and System.Diagnostics.
  • DiagnosticSource 8.0.0 #2303

Changed

  • Improved parsing buffered characters in TdsParser. #1544
  • Added Microsoft.SqlServer.Types to verify support for SqlHierarchyId and Spatial for .NET Core. #1848
  • Moved to new System.Data.SqlTypes APIs on .NET 7 and up. #1934 and #1981
  • Removed reference to Microsoft.Win32.Registry since it's shipped starting with .NET 6.0. #1974
  • Changed UseOneSecFloorInTimeoutCalculationDuringLogin App Context switch default to true and extended its effect to .NET and .NET Standard. #2012
  • Updated Microsoft.Identity.Client version from 4.47.2 to 4.53.0. #2031, #2055
  • Switched to the new .NET NegotiateAuthentication API on .NET 7.0 and above for SSPI token negotiation using Managed SNI. #2063
  • Removed ignoreSniOpenTimeout in open connection process on Windows. #2067
  • Enforce explicit ordinal for internal StringComparison operations. #2068
  • Improved error messages when validating server certificates in managed SNI (Linux/macOS) #2060
  • Improved CPU usage when AppContext switches are in use #2227
  • Upgraded Azure.Identity dependency version to 1.10.3 to address CVE-2023-36414, #2189
  • Changed Microsoft.IdentityModel.JsonWebTokens and Microsoft.IdentityModel.Protocols.OpenIdConnect version 6.24.0 to 6.35.0 #2290 to address CVE-2024-21319
  • Updated Microsoft.Data.SqlClient.SNI (.NET Framework dependency) and Microsoft.Data.SqlClient.SNI.runtime (.NET/.NET Standard dependency) version to v5.2.0. #2363, which includes removing dead code and addressing static analysis warnings
  • Code health improvements: #1198, #1829, #1943, #1949, #1959, #1985, #2071, #2073, #2088, #2091, #2098, #2121, #2122, #2132, #2136, #2144, #2147, #2157, #2164, #2166, #2168, #2186, #2254, #2288, #2305, #2317

Fixed

  • Fixed Always Encrypted secure enclave retry logic for async queries. #1988
  • Fixed activity correlator to continue use of same GUID for connection activity. #1997
  • Fixed behavior when error class is greater than 20 on connection retry. #1953
  • Fixed error message when symmetric key decryption failed using Always Encrypted. #1948
  • Fixed TransactionScope connection issue when Enlist is enable, Pooling is disabled and network connection type is Redirect. #1960
  • Fixed TDS RPC error on large queries in SqlCommand.ExecuteReaderAsync. #1936
  • Fixed throttling of token requests by calling AcquireTokenSilent. #1925
  • Fixed Linux code coverage result in Build proj. #1950
  • Fixed NullReferenceException in GetBytesAsync. #1906
  • Fixed Transient fault handling issue with OpenAsync. #1983
  • Fixed invariant mode checks. #1917
  • Fixed GC behavior in TdsParser by adding array rental capability in TryReadPlpUnicodeChars. #1866

... (truncated)

Commits
  • faf9b95 Fix | ExecuteReaderAsync API xml and ref files (#2373)
  • 51ef22c Fix | ExecuteReaderAsync API return type in ref file (#2372)
  • e9cab01 [Scheduled Run] Localized resource files from OneLocBuild
  • 10c9e17 Fix | Refine documents for GA v5.2 (#2371)
  • 94c089e Fix | Fix unit test for SPN to include port number with Managed SNI (#2281)
  • 5cd9514 Test | Adjust tests to read IsAzureSynapse value from database (#2367)
  • 5a98166 [Scheduled Run] Localized resource files from OneLocBuild
  • 8b1b7a9 Fix | Removing non-breaking space from links inside some of exception message...
  • ed949d5 Change | Updating SNI version to 5.2.0 (#2363)
  • e3cf59d [Scheduled Run] Localized resource files from OneLocBuild
  • Additional commits viewable in compare view

Updates Nox.Types from 7.0.204 to 7.0.210

Commits

Updates Nox.Yaml from 7.0.204 to 7.0.210

Release notes

Sourced from Nox.Yaml's releases.

v7.0.210

No release notes provided.

v7.0.209

What's Changed

Full Changelog: NoxOrg/Nox@v7.0.208...v7.0.209

v7.0.208

No release notes provided.

v7.0.207

No release notes provided.

v7.0.206

What's Changed

Full Changelog: NoxOrg/Nox@v7.0.205...v7.0.206

v7.0.205

No release notes provided.

Commits
  • 8b8a9a9 updated docs; (#1454)
  • 3262d62 NOX-809 - Update Put Entity behavior for Owned Entities (#1453)
  • d295613 NOX-798 - Change Put for ToMany Owned Relationship to accept an array of owne...
  • d040efd add to generate readme file an option for the Mermaid Details (#1452)
  • a6bd03f update get enumeration localized to Languages (#1449)
  • 00d2602 add test to validate put in a non default lang returns not default
  • 72747d6 load sql entity builders from infrastructure componet (#1448)
  • 51b5c67 disable cluster index for guid key (#1447)
  • b911dd2 Fix NOX Issue#667 (#1406)
  • See full diff in compare view

Updates Microsoft.Identity.Web from 2.17.0 to 2.17.1

Release notes

Sourced from Microsoft.Identity.Web's releases.

2.17.1

  • Updated to Microsoft.IdentityModel.* 7.4.0

New features

  • DownstreamApi now automatically processes claims challenge from web APIs which are CAE enabled, provided you set "ClientCapablities" : ["cp1"] in the configuation. See issue #2550.

Bug fixes

  • Fixes the use of ServiceDescriptor for containers which have keyed services present. This can be an issue on .NET 8.0. See issue #2676 for details.

Engineering excellence

  • Calls to ConfidentialClientApplicationBuilderExtension.WithClientCredentials are fully async. See issue #2566 for details.
Changelog

Sourced from Microsoft.Identity.Web's changelog.

2.17.1

  • Updated to Microsoft.IdentityModel.* 7.4.0

New features

  • DownstreamApi now automatically processes claims challenge from web APIs which are CAE enabled, provided you set "ClientCapablities" : ["cp1"] in the configuation. See issue #2550.

Bug fixes

  • Fixes the use of ServiceDescriptor for containers which have keyed services present. This can be an issue on .NET 8.0. See issue #2676 for details.

Engineering excellence

  • Calls to ConfidentialClientApplicationBuilderExtension.WithClientCredentials are fully async. See issue #2566 for details.
Commits
  • 8473045 changelog for 2.17.1 (#2682)
  • 4355c93 update to identitymodel 7.4.0 (#2683)
  • 407db82 IDownstreamApi handles Continuous Access Evaluation (CAE) (#2616)
  • ced8591 Make ConfidentialClientApplicationBuilderExtension.WithClientCredentials asyn...
  • b6cc9eb Fix ServiceDescriptor access when Keyed Services are present (#2676)
  • 7ca44be Stabilize UI and Unit Tests (#2669)
  • 397fce7 Changelog for IdWeb 2.17.0 (#2668)
  • See full ...

    Description has been truncated

Bumps the deps group in /src with 12 updates:

| Package | From | To |
| --- | --- | --- |
| [Azure.ResourceManager](https://github.com/Azure/azure-sdk-for-net) | `1.10.1` | `1.10.2` |
| [Microsoft.Graph](https://github.com/microsoftgraph/msgraph-sdk-dotnet) | `5.43.0` | `5.44.0` |
| [Nox.Secrets](https://github.com/NoxOrg/Nox.Lib) | `7.0.204` | `7.0.210` |
| [Nox.Secrets.Abstractions](https://github.com/NoxOrg/Nox.Lib) | `7.0.204` | `7.0.210` |
| [Nox.Solution](https://github.com/NoxOrg/Nox.Solution) | `7.0.204` | `7.0.210` |
| [Nox.Yaml](https://github.com/NoxOrg/Nox.Generator) | `7.0.204` | `7.0.210` |
| [Nox.Secrets.Azure](https://github.com/NoxOrg/Nox.Lib) | `7.0.204` | `7.0.210` |
| [System.IdentityModel.Tokens.Jwt](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet) | `7.3.1` | `7.4.0` |
| [Nox.Secrets.Abstractions](https://github.com/NoxOrg/Nox.Lib) | `7.0.204` | `7.0.210` |
| [Nox.Solution](https://github.com/NoxOrg/Nox.Solution) | `7.0.204` | `7.0.210` |
| [Nox.Yaml](https://github.com/NoxOrg/Nox.Generator) | `7.0.204` | `7.0.210` |
| [Nox.Solution](https://github.com/NoxOrg/Nox.Solution) | `7.0.204` | `7.0.210` |
| [Nox.Yaml](https://github.com/NoxOrg/Nox.Generator) | `7.0.204` | `7.0.210` |
| [YamlDotNet](https://github.com/aaubry/YamlDotNet) | `15.1.1` | `15.1.2` |
| [Nox.Secrets.Azure](https://github.com/NoxOrg/Nox.Lib) | `7.0.204` | `7.0.210` |
| [Nox.Secrets.Abstractions](https://github.com/NoxOrg/Nox.Lib) | `7.0.204` | `7.0.210` |
| [Nox.Solution](https://github.com/NoxOrg/Nox.Solution) | `7.0.204` | `7.0.210` |
| [Nox.Yaml](https://github.com/NoxOrg/Nox.Generator) | `7.0.204` | `7.0.210` |
| [Microsoft.Data.SqlClient](https://github.com/dotnet/sqlclient) | `5.1.5` | `5.2.0` |
| [Nox.Types](https://github.com/NoxOrg/Nox.Types) | `7.0.204` | `7.0.210` |
| [Nox.Yaml](https://github.com/NoxOrg/Nox.Generator) | `7.0.204` | `7.0.210` |
| [Microsoft.Identity.Web](https://github.com/AzureAD/microsoft-identity-web) | `2.17.0` | `2.17.1` |
| [System.IdentityModel.Tokens.Jwt](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet) | `7.3.1` | `7.4.0` |


Updates `Azure.ResourceManager` from 1.10.1 to 1.10.2
- [Release notes](https://github.com/Azure/azure-sdk-for-net/releases)
- [Commits](Azure/azure-sdk-for-net@Azure.ResourceManager_1.10.1...Azure.ResourceManager_1.10.2)

Updates `Microsoft.Graph` from 5.43.0 to 5.44.0
- [Release notes](https://github.com/microsoftgraph/msgraph-sdk-dotnet/releases)
- [Changelog](https://github.com/microsoftgraph/msgraph-sdk-dotnet/blob/dev/CHANGELOG.md)
- [Commits](microsoftgraph/msgraph-sdk-dotnet@5.43.0...5.44.0)

Updates `Nox.Secrets` from 7.0.204 to 7.0.210
- [Release notes](https://github.com/NoxOrg/Nox.Lib/releases)
- [Commits](https://github.com/NoxOrg/Nox.Lib/commits)

Updates `Nox.Secrets.Abstractions` from 7.0.204 to 7.0.210
- [Release notes](https://github.com/NoxOrg/Nox.Lib/releases)
- [Commits](https://github.com/NoxOrg/Nox.Lib/commits)

Updates `Nox.Solution` from 7.0.204 to 7.0.210
- [Release notes](https://github.com/NoxOrg/Nox.Solution/releases)
- [Commits](https://github.com/NoxOrg/Nox.Solution/commits)

Updates `Nox.Yaml` from 7.0.204 to 7.0.210
- [Release notes](https://github.com/NoxOrg/Nox.Generator/releases)
- [Commits](NoxOrg/Nox@v7.0.204...v7.0.210)

Updates `Nox.Secrets.Azure` from 7.0.204 to 7.0.210
- [Release notes](https://github.com/NoxOrg/Nox.Lib/releases)
- [Commits](https://github.com/NoxOrg/Nox.Lib/commits)

Updates `System.IdentityModel.Tokens.Jwt` from 7.3.1 to 7.4.0
- [Release notes](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/releases)
- [Changelog](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/blob/dev/CHANGELOG.md)
- [Commits](AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet@7.3.1...v7.4.0)

Updates `Nox.Secrets.Abstractions` from 7.0.204 to 7.0.210
- [Release notes](https://github.com/NoxOrg/Nox.Lib/releases)
- [Commits](https://github.com/NoxOrg/Nox.Lib/commits)

Updates `Nox.Solution` from 7.0.204 to 7.0.210
- [Release notes](https://github.com/NoxOrg/Nox.Solution/releases)
- [Commits](https://github.com/NoxOrg/Nox.Solution/commits)

Updates `Nox.Yaml` from 7.0.204 to 7.0.210
- [Release notes](https://github.com/NoxOrg/Nox.Generator/releases)
- [Commits](NoxOrg/Nox@v7.0.204...v7.0.210)

Updates `Nox.Solution` from 7.0.204 to 7.0.210
- [Release notes](https://github.com/NoxOrg/Nox.Solution/releases)
- [Commits](https://github.com/NoxOrg/Nox.Solution/commits)

Updates `Nox.Yaml` from 7.0.204 to 7.0.210
- [Release notes](https://github.com/NoxOrg/Nox.Generator/releases)
- [Commits](NoxOrg/Nox@v7.0.204...v7.0.210)

Updates `YamlDotNet` from 15.1.1 to 15.1.2
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](aaubry/YamlDotNet@v15.1.1...v15.1.2)

Updates `Nox.Secrets.Azure` from 7.0.204 to 7.0.210
- [Release notes](https://github.com/NoxOrg/Nox.Lib/releases)
- [Commits](https://github.com/NoxOrg/Nox.Lib/commits)

Updates `Nox.Secrets.Abstractions` from 7.0.204 to 7.0.210
- [Release notes](https://github.com/NoxOrg/Nox.Lib/releases)
- [Commits](https://github.com/NoxOrg/Nox.Lib/commits)

Updates `Nox.Solution` from 7.0.204 to 7.0.210
- [Release notes](https://github.com/NoxOrg/Nox.Solution/releases)
- [Commits](https://github.com/NoxOrg/Nox.Solution/commits)

Updates `Nox.Yaml` from 7.0.204 to 7.0.210
- [Release notes](https://github.com/NoxOrg/Nox.Generator/releases)
- [Commits](NoxOrg/Nox@v7.0.204...v7.0.210)

Updates `Microsoft.Data.SqlClient` from 5.1.5 to 5.2.0
- [Release notes](https://github.com/dotnet/sqlclient/releases)
- [Changelog](https://github.com/dotnet/SqlClient/blob/main/CHANGELOG.md)
- [Commits](dotnet/SqlClient@v5.1.5...V5.2.0)

Updates `Nox.Types` from 7.0.204 to 7.0.210
- [Release notes](https://github.com/NoxOrg/Nox.Types/releases)
- [Commits](https://github.com/NoxOrg/Nox.Types/commits)

Updates `Nox.Yaml` from 7.0.204 to 7.0.210
- [Release notes](https://github.com/NoxOrg/Nox.Generator/releases)
- [Commits](NoxOrg/Nox@v7.0.204...v7.0.210)

Updates `Microsoft.Identity.Web` from 2.17.0 to 2.17.1
- [Release notes](https://github.com/AzureAD/microsoft-identity-web/releases)
- [Changelog](https://github.com/AzureAD/microsoft-identity-web/blob/master/changelog.md)
- [Commits](AzureAD/microsoft-identity-web@2.17.0...2.17.1)

Updates `System.IdentityModel.Tokens.Jwt` from 7.3.1 to 7.4.0
- [Release notes](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/releases)
- [Changelog](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/blob/dev/CHANGELOG.md)
- [Commits](AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet@7.3.1...v7.4.0)

---
updated-dependencies:
- dependency-name: Azure.ResourceManager
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: Microsoft.Graph
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: Nox.Secrets
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: Nox.Secrets.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: Nox.Solution
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: Nox.Yaml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: Nox.Secrets.Azure
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: System.IdentityModel.Tokens.Jwt
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: Nox.Secrets.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: Nox.Solution
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: Nox.Yaml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: Nox.Solution
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: Nox.Yaml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: Nox.Secrets.Azure
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: Nox.Secrets.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: Nox.Solution
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: Nox.Yaml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: Microsoft.Data.SqlClient
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: Nox.Types
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: Nox.Yaml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: Microsoft.Identity.Web
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: System.IdentityModel.Tokens.Jwt
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 4, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 5, 2024

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.

Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 6, 2024

Superseded by #197.

@dependabot dependabot bot closed this Mar 6, 2024
@dependabot dependabot bot deleted the dependabot/nuget/src/deps-ec0b244c8e branch March 6, 2024 08:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants