Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 5, 2024

Bumps the all-packages group with 20 updates in the /UKHO.PeriodicOutputService directory:

Package From To
FluentAssertions 6.12.0 6.12.2
Newtonsoft.Json 13.0.3 13.0.1
Microsoft.NET.Test.Sdk 17.11.1 17.12.0
NUnit.Analyzers 4.3.0 4.4.0
Elastic.Apm 1.28.5 1.31.0
Elastic.Apm 1.28.5 1.31.0
Elastic.Apm.Azure.Storage 1.28.5 1.31.0
Microsoft.Extensions.Caching.Memory 8.0.0 8.0.1
Microsoft.Extensions.Configuration 8.0.0 8.0.0
Microsoft.Extensions.Configuration.Json 8.0.0 8.0.1
Microsoft.Extensions.DependencyInjection 8.0.0 8.0.1
Microsoft.Extensions.DependencyInjection 8.0.0 8.0.1
Microsoft.Extensions.Logging 8.0.0 8.0.1
Microsoft.Extensions.Configuration 8.0.0 8.0.0
Microsoft.Extensions.DependencyInjection 8.0.0 8.0.1
Microsoft.Extensions.Logging 8.0.0 8.0.1
Microsoft.Extensions.Logging.Configuration 8.0.0 8.0.1
Microsoft.Extensions.Configuration 8.0.0 8.0.0
Microsoft.Extensions.DependencyInjection 8.0.0 8.0.1
Microsoft.Extensions.Logging 8.0.0 8.0.1
Microsoft.Extensions.Logging.Configuration 8.0.0 8.0.1
Microsoft.Extensions.Logging.Console 8.0.0 8.0.1
Microsoft.Extensions.DependencyInjection 8.0.0 8.0.1
Microsoft.Extensions.Logging 8.0.0 8.0.1
Microsoft.Extensions.Logging.Debug 8.0.0 8.0.1
Microsoft.Identity.Client 4.64.0 4.66.2
Azure.Identity 1.12.0 1.13.1
Microsoft.Identity.Client 4.64.0 4.66.1
Azure.Identity 1.12.0 1.11.4
Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.0 2.1.0
Microsoft.Extensions.Configuration.Json 8.0.0 2.1.0
Microsoft.Extensions.Hosting 8.0.0 2.1.0
Microsoft.Identity.Client 4.64.0 4.61.3
Microsoft.Azure.WebJobs.Extensions.Storage 5.3.1 5.3.2
FluentValidation 11.9.2 11.11.0

Updates FluentAssertions from 6.12.0 to 6.12.2

Release notes

Sourced from FluentAssertions's releases.

6.12.2

What's Changed

Others

Full Changelog: fluentassertions/fluentassertions@6.12.1...6.12.2

6.12.1

What's Changed

Improvements

  • Improve BeEmpty() and BeNullOrEmpty() performance for IEnumerable<T>, by materializing only the first item - #2530

Fixes

  • Fixed formatting error when checking nullable DateTimeOffset with BeWithin(...).Before(...) - #2312
  • BeEquivalentTo will now find and can map subject properties that are implemented through an explicitly-implemented interface - #2152
  • Fixed that the because and becauseArgs were not passed down the equivalency tree - #2318
  • BeEquivalentTo can again compare a non-generic IDictionary with a generic one - #2358
  • Fixed that the FormattingOptions were not respected in inner AssertionScope - #2329
  • Capitalize true and false in failure messages and make them formattable to a custom BooleanFormatter - #2390, #2393
  • Improved the failure message for NotBeOfType when wrapped in an AssertionScope and the subject is null - #2399
  • Improved the failure message for BeWritable/BeReadable when wrapped in an AssertionScope and the subject is read-only/write-only - #2399
  • Improved the failure message for ThrowExactly[Async] when wrapped in an AssertionScope and no exception is thrown - #2398
  • Improved the failure message for [Not]HaveExplicitProperty when wrapped in an AssertionScope and not implementing the interface - #2403
  • Improved the failure message for [Not]HaveExplicitMethod when wrapped in an AssertionScope and not implementing the interface - #2403
  • Changed BeEquivalentTo to exclude private protected members from the comparison - #2417
  • Fixed using BeEquivalentTo on an empty ArraySegment - #2445, #2511
  • BeEquivalentTo with a custom comparer can now handle null values - #2489
  • Ensured that nested calls to AssertionScope(context) create a chained context - #2607
  • One overload of the AssertionScope constructor would not create an actual scope associated with the thread - #2607
  • Fixed ThrowWithinAsync not respecting OperationCanceledException - #2614
  • Fixed using BeEquivalentTo with an IEqualityComparer targeting nullable types - #2648

Full Changelog: fluentassertions/fluentassertions@6.12.0...6.12.1

Commits
  • c6cd85c Better support for default interface and explicitly implemented properties (#...
  • a8e7f17 Update qodana
  • d58e0b5 Turn off RoslynAnalyzers in Qodana WF (#2504)
  • 2181217 Remove unused usings
  • 2c3a012 Make implicit usage more explicit
  • 1d5d64f Do not use UsingLineBreaks for [Not]BeSameAs
  • c30fc7a Fixed BeEquivalentTo when using a custom comparer targeting nullable types ...
  • f9b770b Make ThrowWithinAsync respect canceled tasks (#2614)
  • f204cf3 Simplify deferred allocation with local function
  • a3644b0 Only allocate Lazy<> and lambda when necessary
  • Additional commits viewable in compare view

Updates Newtonsoft.Json from 13.0.3 to 13.0.1

Commits

Updates Microsoft.NET.Test.Sdk from 17.11.1 to 17.12.0

Release notes

Sourced from Microsoft.NET.Test.Sdk's releases.

v17.12.0

What's Changed

Internal and infrastructure fixes:

Full Changelog: microsoft/vstest@v17.11.1...v17.12.0

Commits

Updates NUnit.Analyzers from 4.3.0 to 4.4.0

Release notes

Sourced from NUnit.Analyzers's releases.

NUnit Analyzers 4.4 - November 13, 2024

This release of the NUnit Analyzers adds handling of Assert.IsAssignableFrom/Assert.IsNotAssignableFrom and Assert.Positive/Assert.Negative. Also insertion of trivia for code fixes for NUnit2007 and NUnit2046 have been improved.

The release contains contributions from the following users (in alphabetical order):

Issues Resolved

Features and Enhancements

  • #790 NUnit.Analyzers 4.3.0 missed an Assert.IsAssignableFrom that caused a build error after upgrading to latest NUnit 4.2.2
  • #789 NUnit.Analyzers 4.3.0 missed an Assert.Positive that caused a build error after upgrading to latest NUnit 4.2.2

Bugs

  • #784 Fix trivia for NUnit2046
  • #783 NUnit2007 doesn't apply trivia correctly

Tooling, Process, and Documentation

  • #788 chore: Bump NUnit to version 4.2.2
  • #785 chore(deps): Bump NUnit3TestAdapter from 4.5.0 to 4.6.0
  • #780 chore(deps): Bump CSharpIsNullAnalyzer from 0.1.495 to 0.1.593
  • #778 chore(deps): Bump Microsoft.NET.Test.Sdk from 17.10.0 to 17.11.1
  • #776 chore: bump version
  • #775 chore: Update release notes
Changelog

Sourced from NUnit.Analyzers's changelog.

# NUnit Analyzers 4.4 - November 13, 2024

This release of the NUnit Analyzers adds handling of Assert.IsAssignableFrom/Assert.IsNotAssignableFrom and Assert.Positive/Assert.Negative. Also insertion of trivia for code fixes for NUnit2007 and NUnit2046 have been improved.

The release contains contributions from the following users (in alphabetical order):

Issues Resolved

Features and Enhancements

  • #790 NUnit.Analyzers 4.3.0 missed an Assert.IsAssignableFrom that caused a build error after upgrading to latest NUnit 4.2.2
  • #789 NUnit.Analyzers 4.3.0 missed an Assert.Positive that caused a build error after upgrading to latest NUnit 4.2.2

Bugs

  • #784 Fix trivia for NUnit2046
  • #783 NUnit2007 doesn't apply trivia correctly

Tooling, Process, and Documentation

  • #788 chore: Bump NUnit to version 4.2.2
  • #785 chore(deps): Bump NUnit3TestAdapter from 4.5.0 to 4.6.0
  • #780 chore(deps): Bump CSharpIsNullAnalyzer from 0.1.495 to 0.1.593
  • #778 chore(deps): Bump Microsoft.NET.Test.Sdk from 17.10.0 to 17.11.1
  • #776 chore: bump version
  • #775 chore: Update release notes

NUnit Analyzers 4.3 - August 9, 2024

This release of the NUnit Analyzers contains some bug fixes to existing analyzers and code fixes - among other improvements to trivia when using the code fix of NUnit2049.

For new features we now warn against using TestContext.Write as this will be obsolete in NUnit at some point; NUnit1001 now recognises and check generic TestCase attributes; and we have added a new analyzer and code fix for simplifying usages of ValuesAttribute.

The release contains contributions from the following users (in alphabetical order):

... (truncated)

Commits
  • a7963fa Merge pull request #792 from nunit/release4.4
  • 1ed8bef chore: Update release notes
  • b2f4e68 Detect more Classic Assert (#791)
  • 405d2c4 Merge pull request #788 from nunit/chore/bump-nunit-version
  • b643c64 chore: Remove temporary TestCaseAttribute(s)
  • d287eae chore: Bump NUnit to version 4.2.2
  • e026ba5 Merge pull request #785 from nunit/dependabot/nuget/src/NUnit3TestAdapter-4.6.0
  • a3f5660 chore(deps): Bump NUnit3TestAdapter from 4.5.0 to 4.6.0 in /src
  • 5b98d8d Merge pull request #780 from nunit/dependabot/nuget/src/CSharpIsNullAnalyzer-...
  • 859c2f8 Fix trivia for NUnit2046
  • Additional commits viewable in compare view

Updates Elastic.Apm from 1.28.5 to 1.31.0

Release notes

Sourced from Elastic.Apm's releases.

v1.31.0

What's Changed

Full Changelog: elastic/apm-agent-dotnet@v1.30.1...v1.31.0

v1.30.1

What's Changed

Full Changelog: elastic/apm-agent-dotnet@v1.30.0...v1.30.1

v1.30.0

What's Changed

Full Changelog: elastic/apm-agent-dotnet@v1.29.0...v1.30.0

v1.29.0

What's Changed

... (truncated)

Changelog

Sourced from Elastic.Apm's changelog.

==== 1.31.0 - 2024/12/02

[float] ===== Breaking changes

{pull}2498#2498 Remove net 6.0 targets

We no longer ship net6.0 targets as .NET 6 is now out of support. Applications targetting net6.0 will continue to work, but fall down to the netstandard2.0 target which may not be as optimised. We therefore recommend updating your application to net8.0 or net9.0 prior to installing 1.31.0 of the Elastic.Apm.* packages.

===== Bug fixes

{pull}2505#2505 Fixes and enhancements for Azure Functions {pull}2508#2508 Azure Function service name logic

[float] ===== Features

{pull}2503#2503 Phase one logger optimisations

[[release-notes-1.30.1]] ==== 1.30.1 - 2024/11/19

===== Bug fixes {pull}2471#2471 Remove netcoreapp2.0 from Elastic.Apm.Profiler.Managed.Loader {pull}2474#2474 Fix span linking for Azure ServiceBus {pull}2482#2482 Support K8S_ATTACH environment variable for activation

[[release-notes-1.30.0]] ==== 1.30.0 - 2024/10/11

===== Bug fixes

{pull}2455#2455 Improve OTel bridge compatibility with existing Azure instrumentation {pull}2457#2457 Revert skipping of System.Web to fix profiler-based installation {pull}2461#2461 Limit attribute count and truncate values in ElasticActivityListener {pull}2460#2460 Add IntakeResponse deserialization for detailed error logging

[[release-notes-1.29.0]] ==== 1.29.0 - 2024/09/18

This release includes a breaking change in how we parse and send transaction cookies. In 1.26.0, we introduced improved cookie redaction based on the SanitizeFieldNames configuration. To implement this, we extracted each cookie from the Cookie header, storing them in a cookie dictionary on the transaction request data. We have identified a problem with the storage of cookies that include period characters due to the mapping of such data when stored in the APM data stream. This behaviour can lead to lost transactions on requests which include such cookies. This is common in ASP.NET Core due to the default cookie names used for sessions, authentication, etc.

... (truncated)

Commits
  • aa8e3ba Make deploy.sh executable (#2515)
  • 706aaf1 Update changelog for 1.31.0 release (#2514)
  • 32f9e6b Bump docker/build-push-action from 6.9.0 to 6.10.0 in the github-actions grou...
  • 6d7ccea rename and add updatecli policies autodiscovery (#2511)
  • 4cc5cd8 github-actions: dependabot cannot use the id-token:write (#2510)
  • 9c0b926 Update Azure Functions documentation (#2507)
  • ed91a91 Update Azure Function service name logic (#2508)
  • 7dd5b11 Bump docker/metadata-action from 5.5.1 to 5.6.1 in the github-actions group (...
  • 8edcb49 Fixes and enhancements for Azure Functions (isolated worker) (#2505)
  • ba985d6 Cleanup unused files in .ci directory (#2494)
  • Additional commits viewable in compare view

Updates Elastic.Apm from 1.28.5 to 1.31.0

Release notes

Sourced from Elastic.Apm's releases.

v1.31.0

What's Changed

Full Changelog: elastic/apm-agent-dotnet@v1.30.1...v1.31.0

v1.30.1

What's Changed

Full Changelog: elastic/apm-agent-dotnet@v1.30.0...v1.30.1

v1.30.0

What's Changed

Full Changelog: elastic/apm-agent-dotnet@v1.29.0...v1.30.0

v1.29.0

What's Changed

... (truncated)

Changelog

Sourced from Elastic.Apm's changelog.

==== 1.31.0 - 2024/12/02

[float] ===== Breaking changes

{pull}2498#2498 Remove net 6.0 targets

We no longer ship net6.0 targets as .NET 6 is now out of support. Applications targetting net6.0 will continue to work, but fall down to the netstandard2.0 target which may not be as optimised. We therefore recommend updating your application to net8.0 or net9.0 prior to installing 1.31.0 of the Elastic.Apm.* packages.

===== Bug fixes

{pull}2505#2505 Fixes and enhancements for Azure Functions {pull}2508#2508 Azure Function service name logic

[float] ===== Features

{pull}2503#2503 Phase one logger optimisations

[[release-notes-1.30.1]] ==== 1.30.1 - 2024/11/19

===== Bug fixes {pull}2471#2471 Remove netcoreapp2.0 from Elastic.Apm.Profiler.Managed.Loader {pull}2474#2474 Fix span linking for Azure ServiceBus {pull}2482#2482 Support K8S_ATTACH environment variable for activation

[[release-notes-1.30.0]] ==== 1.30.0 - 2024/10/11

===== Bug fixes

{pull}2455#2455 Improve OTel bridge compatibility with existing Azure instrumentation {pull}2457#2457 Revert skipping of System.Web to fix profiler-based installation {pull}2461#2461 Limit attribute count and truncate values in ElasticActivityListener {pull}2460#2460 Add IntakeResponse deserialization for detailed error logging

[[release-notes-1.29.0]] ==== 1.29.0 - 2024/09/18

This release includes a breaking change in how we parse and send transaction cookies. In 1.26.0, we introduced improved cookie redaction based on the SanitizeFieldNames configuration. To implement this, we extracted each cookie from the Cookie header, storing them in a cookie dictionary on the transaction request data. We have identified a problem with the storage of cookies that include period characters due to the mapping of such data when stored in the APM data stream. This behaviour can lead to lost transactions on requests which include such cookies. This is common in ASP.NET Core due to the default cookie names used for sessions, authentication, etc.

... (truncated)

Commits
  • aa8e3ba Make deploy.sh executable (#2515)
  • 706aaf1 Update changelog for 1.31.0 release (#2514)
  • 32f9e6b Bump docker/build-push-action from 6.9.0 to 6.10.0 in the github-actions grou...
  • 6d7ccea rename and add updatecli policies autodiscovery (#2511)
  • 4cc5cd8 github-actions: dependabot cannot use the id-token:write (#2510)
  • 9c0b926 Update Azure Functions documentation (#2507)
  • ed91a91 Update Azure Function service name logic (#2508)
  • 7dd5b11 Bump docker/metadata-action from 5.5.1 to 5.6.1 in the github-actions group (...
  • 8edcb49 Fixes and enhancements for Azure Functions (isolated worker) (#2505)
  • ba985d6 Cleanup unused files in .ci directory (#2494)
  • Additional commits viewable in compare view

Updates Elastic.Apm.Azure.Storage from 1.28.5 to 1.31.0

Release notes

Sourced from Elastic.Apm.Azure.Storage's releases.

v1.31.0

What's Changed

Full Changelog: elastic/apm-agent-dotnet@v1.30.1...v1.31.0

v1.30.1

What's Changed

@dependabot dependabot bot requested review from a team and rockydevnet as code owners December 5, 2024 14:37
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 5, 2024
@dependabot dependabot bot force-pushed the dependabot/nuget/UKHO.PeriodicOutputService/all-packages-fedcf7a154 branch from ce03f25 to 7021b71 Compare December 9, 2024 16:30
Bumps the all-packages group with 20 updates in the /UKHO.PeriodicOutputService directory:

| Package | From | To |
| --- | --- | --- |
| [FluentAssertions](https://github.com/fluentassertions/fluentassertions) | `6.12.0` | `6.12.2` |
| [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) | `13.0.3` | `13.0.1` |
| [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) | `17.11.1` | `17.12.0` |
| [NUnit.Analyzers](https://github.com/nunit/nunit.analyzers) | `4.3.0` | `4.4.0` |
| [Elastic.Apm](https://github.com/elastic/apm-agent-dotnet) | `1.28.5` | `1.31.0` |
| [Elastic.Apm](https://github.com/elastic/apm-agent-dotnet) | `1.28.5` | `1.31.0` |
| [Elastic.Apm.Azure.Storage](https://github.com/elastic/apm-agent-dotnet) | `1.28.5` | `1.31.0` |
| [Microsoft.Extensions.Caching.Memory](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Configuration](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.0` |
| [Microsoft.Extensions.Configuration.Json](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.DependencyInjection](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.DependencyInjection](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Logging](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Configuration](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.0` |
| [Microsoft.Extensions.DependencyInjection](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Logging](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Logging.Configuration](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Configuration](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.0` |
| [Microsoft.Extensions.DependencyInjection](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Logging](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Logging.Configuration](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Logging.Console](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.DependencyInjection](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Logging](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Logging.Debug](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Identity.Client](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet) | `4.64.0` | `4.66.2` |
| [Azure.Identity](https://github.com/Azure/azure-sdk-for-net) | `1.12.0` | `1.13.1` |
| [Microsoft.Identity.Client](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet) | `4.64.0` | `4.66.1` |
| [Azure.Identity](https://github.com/Azure/azure-sdk-for-net) | `1.12.0` | `1.11.4` |
| [Microsoft.Extensions.Configuration.EnvironmentVariables](https://github.com/aspnet/Configuration) | `8.0.0` | `2.1.0` |
| [Microsoft.Extensions.Configuration.Json](https://github.com/dotnet/runtime) | `8.0.0` | `2.1.0` |
| [Microsoft.Extensions.Hosting](https://github.com/aspnet/Hosting) | `8.0.0` | `2.1.0` |
| [Microsoft.Identity.Client](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet) | `4.64.0` | `4.61.3` |
| [Microsoft.Azure.WebJobs.Extensions.Storage](https://github.com/Azure/azure-sdk-for-net) | `5.3.1` | `5.3.2` |
| [FluentValidation](https://github.com/JeremySkinner/fluentvalidation) | `11.9.2` | `11.11.0` |



Updates `FluentAssertions` from 6.12.0 to 6.12.2
- [Release notes](https://github.com/fluentassertions/fluentassertions/releases)
- [Changelog](https://github.com/fluentassertions/fluentassertions/blob/develop/AcceptApiChanges.ps1)
- [Commits](fluentassertions/fluentassertions@6.12.0...6.12.2)

Updates `Newtonsoft.Json` from 13.0.3 to 13.0.1
- [Release notes](https://github.com/JamesNK/Newtonsoft.Json/releases)
- [Commits](JamesNK/Newtonsoft.Json@13.0.3...13.0.1)

Updates `Microsoft.NET.Test.Sdk` from 17.11.1 to 17.12.0
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.11.1...v17.12.0)

Updates `NUnit.Analyzers` from 4.3.0 to 4.4.0
- [Release notes](https://github.com/nunit/nunit.analyzers/releases)
- [Changelog](https://github.com/nunit/nunit.analyzers/blob/master/CHANGES.md)
- [Commits](nunit/nunit.analyzers@4.3.0...4.4.0)

Updates `Elastic.Apm` from 1.28.5 to 1.31.0
- [Release notes](https://github.com/elastic/apm-agent-dotnet/releases)
- [Changelog](https://github.com/elastic/apm-agent-dotnet/blob/main/CHANGELOG.asciidoc)
- [Commits](elastic/apm-agent-dotnet@v1.28.5...v1.31.0)

Updates `Elastic.Apm` from 1.28.5 to 1.31.0
- [Release notes](https://github.com/elastic/apm-agent-dotnet/releases)
- [Changelog](https://github.com/elastic/apm-agent-dotnet/blob/main/CHANGELOG.asciidoc)
- [Commits](elastic/apm-agent-dotnet@v1.28.5...v1.31.0)

Updates `Elastic.Apm.Azure.Storage` from 1.28.5 to 1.31.0
- [Release notes](https://github.com/elastic/apm-agent-dotnet/releases)
- [Changelog](https://github.com/elastic/apm-agent-dotnet/blob/main/CHANGELOG.asciidoc)
- [Commits](elastic/apm-agent-dotnet@v1.28.5...v1.31.0)

Updates `Microsoft.Extensions.Caching.Memory` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Configuration` from 8.0.0 to 8.0.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.0)

Updates `Microsoft.Extensions.Configuration.Json` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.DependencyInjection` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.DependencyInjection` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Logging` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Configuration` from 8.0.0 to 8.0.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.0)

Updates `Microsoft.Extensions.DependencyInjection` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Logging` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Logging.Configuration` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Configuration` from 8.0.0 to 8.0.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.0)

Updates `Microsoft.Extensions.DependencyInjection` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Logging` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Logging.Configuration` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Logging.Console` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.DependencyInjection` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Logging` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Logging.Debug` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Identity.Client` from 4.64.0 to 4.66.2
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/releases)
- [Changelog](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/blob/main/CHANGELOG.md)
- [Commits](AzureAD/microsoft-authentication-library-for-dotnet@4.64.0...4.66.2)

Updates `Azure.Identity` from 1.12.0 to 1.13.1
- [Release notes](https://github.com/Azure/azure-sdk-for-net/releases)
- [Commits](Azure/azure-sdk-for-net@Azure.Identity_1.12.0...Azure.Identity_1.13.1)

Updates `Microsoft.Identity.Client` from 4.64.0 to 4.66.1
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/releases)
- [Changelog](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/blob/main/CHANGELOG.md)
- [Commits](AzureAD/microsoft-authentication-library-for-dotnet@4.64.0...4.66.2)

Updates `Azure.Identity` from 1.12.0 to 1.11.4
- [Release notes](https://github.com/Azure/azure-sdk-for-net/releases)
- [Commits](Azure/azure-sdk-for-net@Azure.Identity_1.12.0...Azure.Identity_1.13.1)

Updates `Microsoft.Extensions.Configuration.EnvironmentVariables` from 8.0.0 to 2.1.0
- [Release notes](https://github.com/aspnet/Configuration/releases)
- [Commits](https://github.com/aspnet/Configuration/commits/2.1.0)

Updates `Microsoft.Extensions.Configuration.Json` from 8.0.0 to 2.1.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Hosting` from 8.0.0 to 2.1.0
- [Release notes](https://github.com/aspnet/Hosting/releases)
- [Commits](https://github.com/aspnet/Hosting/commits/2.1.0)

Updates `Microsoft.Identity.Client` from 4.64.0 to 4.61.3
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/releases)
- [Changelog](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/blob/main/CHANGELOG.md)
- [Commits](AzureAD/microsoft-authentication-library-for-dotnet@4.64.0...4.66.2)

Updates `Microsoft.Azure.WebJobs.Extensions.Storage` from 5.3.1 to 5.3.2
- [Release notes](https://github.com/Azure/azure-sdk-for-net/releases)
- [Commits](Azure/azure-sdk-for-net@Microsoft.Azure.WebJobs.Extensions.Storage_5.3.1...Microsoft.Azure.WebJobs.Extensions.Storage_5.3.2)

Updates `FluentValidation` from 11.9.2 to 11.11.0
- [Release notes](https://github.com/JeremySkinner/fluentvalidation/releases)
- [Changelog](https://github.com/FluentValidation/FluentValidation/blob/main/Changelog.txt)
- [Commits](FluentValidation/FluentValidation@11.9.2...11.11.0)

---
updated-dependencies:
- dependency-name: FluentAssertions
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Newtonsoft.Json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: NUnit.Analyzers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: Elastic.Apm
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: Elastic.Apm
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: Elastic.Apm.Azure.Storage
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Caching.Memory
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Configuration
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Configuration.Json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Logging
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Configuration
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Logging
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Logging.Configuration
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Configuration
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Logging
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Logging.Configuration
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Logging.Console
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Logging
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Logging.Debug
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Identity.Client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: Azure.Identity
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: Microsoft.Identity.Client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: Azure.Identity
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Configuration.EnvironmentVariables
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Configuration.Json
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Hosting
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-packages
- dependency-name: Microsoft.Identity.Client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: Microsoft.Azure.WebJobs.Extensions.Storage
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: FluentValidation
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/nuget/UKHO.PeriodicOutputService/all-packages-fedcf7a154 branch from 7021b71 to 0f3992d Compare December 12, 2024 11:28
Copy link
Contributor

@hukho hukho left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK

@hukho hukho merged commit 9add81a into main Dec 12, 2024
20 checks passed
@hukho hukho deleted the dependabot/nuget/UKHO.PeriodicOutputService/all-packages-fedcf7a154 branch December 12, 2024 14:17
JiviteshT pushed a commit that referenced this pull request Mar 3, 2025
Bumps the all-packages group with 20 updates in the /UKHO.PeriodicOutputService directory:

| Package | From | To |
| --- | --- | --- |
| [FluentAssertions](https://github.com/fluentassertions/fluentassertions) | `6.12.0` | `6.12.2` |
| [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) | `13.0.3` | `13.0.1` |
| [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) | `17.11.1` | `17.12.0` |
| [NUnit.Analyzers](https://github.com/nunit/nunit.analyzers) | `4.3.0` | `4.4.0` |
| [Elastic.Apm](https://github.com/elastic/apm-agent-dotnet) | `1.28.5` | `1.31.0` |
| [Elastic.Apm](https://github.com/elastic/apm-agent-dotnet) | `1.28.5` | `1.31.0` |
| [Elastic.Apm.Azure.Storage](https://github.com/elastic/apm-agent-dotnet) | `1.28.5` | `1.31.0` |
| [Microsoft.Extensions.Caching.Memory](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Configuration](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.0` |
| [Microsoft.Extensions.Configuration.Json](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.DependencyInjection](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.DependencyInjection](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Logging](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Configuration](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.0` |
| [Microsoft.Extensions.DependencyInjection](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Logging](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Logging.Configuration](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Configuration](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.0` |
| [Microsoft.Extensions.DependencyInjection](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Logging](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Logging.Configuration](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Logging.Console](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.DependencyInjection](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Logging](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Extensions.Logging.Debug](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.Identity.Client](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet) | `4.64.0` | `4.66.2` |
| [Azure.Identity](https://github.com/Azure/azure-sdk-for-net) | `1.12.0` | `1.13.1` |
| [Microsoft.Identity.Client](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet) | `4.64.0` | `4.66.1` |
| [Azure.Identity](https://github.com/Azure/azure-sdk-for-net) | `1.12.0` | `1.11.4` |
| [Microsoft.Extensions.Configuration.EnvironmentVariables](https://github.com/aspnet/Configuration) | `8.0.0` | `2.1.0` |
| [Microsoft.Extensions.Configuration.Json](https://github.com/dotnet/runtime) | `8.0.0` | `2.1.0` |
| [Microsoft.Extensions.Hosting](https://github.com/aspnet/Hosting) | `8.0.0` | `2.1.0` |
| [Microsoft.Identity.Client](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet) | `4.64.0` | `4.61.3` |
| [Microsoft.Azure.WebJobs.Extensions.Storage](https://github.com/Azure/azure-sdk-for-net) | `5.3.1` | `5.3.2` |
| [FluentValidation](https://github.com/JeremySkinner/fluentvalidation) | `11.9.2` | `11.11.0` |



Updates `FluentAssertions` from 6.12.0 to 6.12.2
- [Release notes](https://github.com/fluentassertions/fluentassertions/releases)
- [Changelog](https://github.com/fluentassertions/fluentassertions/blob/develop/AcceptApiChanges.ps1)
- [Commits](fluentassertions/fluentassertions@6.12.0...6.12.2)

Updates `Newtonsoft.Json` from 13.0.3 to 13.0.1
- [Release notes](https://github.com/JamesNK/Newtonsoft.Json/releases)
- [Commits](JamesNK/Newtonsoft.Json@13.0.3...13.0.1)

Updates `Microsoft.NET.Test.Sdk` from 17.11.1 to 17.12.0
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.11.1...v17.12.0)

Updates `NUnit.Analyzers` from 4.3.0 to 4.4.0
- [Release notes](https://github.com/nunit/nunit.analyzers/releases)
- [Changelog](https://github.com/nunit/nunit.analyzers/blob/master/CHANGES.md)
- [Commits](nunit/nunit.analyzers@4.3.0...4.4.0)

Updates `Elastic.Apm` from 1.28.5 to 1.31.0
- [Release notes](https://github.com/elastic/apm-agent-dotnet/releases)
- [Changelog](https://github.com/elastic/apm-agent-dotnet/blob/main/CHANGELOG.asciidoc)
- [Commits](elastic/apm-agent-dotnet@v1.28.5...v1.31.0)

Updates `Elastic.Apm` from 1.28.5 to 1.31.0
- [Release notes](https://github.com/elastic/apm-agent-dotnet/releases)
- [Changelog](https://github.com/elastic/apm-agent-dotnet/blob/main/CHANGELOG.asciidoc)
- [Commits](elastic/apm-agent-dotnet@v1.28.5...v1.31.0)

Updates `Elastic.Apm.Azure.Storage` from 1.28.5 to 1.31.0
- [Release notes](https://github.com/elastic/apm-agent-dotnet/releases)
- [Changelog](https://github.com/elastic/apm-agent-dotnet/blob/main/CHANGELOG.asciidoc)
- [Commits](elastic/apm-agent-dotnet@v1.28.5...v1.31.0)

Updates `Microsoft.Extensions.Caching.Memory` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Configuration` from 8.0.0 to 8.0.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.0)

Updates `Microsoft.Extensions.Configuration.Json` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.DependencyInjection` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.DependencyInjection` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Logging` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Configuration` from 8.0.0 to 8.0.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.0)

Updates `Microsoft.Extensions.DependencyInjection` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Logging` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Logging.Configuration` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Configuration` from 8.0.0 to 8.0.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.0)

Updates `Microsoft.Extensions.DependencyInjection` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Logging` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Logging.Configuration` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Logging.Console` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.DependencyInjection` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Logging` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Logging.Debug` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Identity.Client` from 4.64.0 to 4.66.2
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/releases)
- [Changelog](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/blob/main/CHANGELOG.md)
- [Commits](AzureAD/microsoft-authentication-library-for-dotnet@4.64.0...4.66.2)

Updates `Azure.Identity` from 1.12.0 to 1.13.1
- [Release notes](https://github.com/Azure/azure-sdk-for-net/releases)
- [Commits](Azure/azure-sdk-for-net@Azure.Identity_1.12.0...Azure.Identity_1.13.1)

Updates `Microsoft.Identity.Client` from 4.64.0 to 4.66.1
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/releases)
- [Changelog](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/blob/main/CHANGELOG.md)
- [Commits](AzureAD/microsoft-authentication-library-for-dotnet@4.64.0...4.66.2)

Updates `Azure.Identity` from 1.12.0 to 1.11.4
- [Release notes](https://github.com/Azure/azure-sdk-for-net/releases)
- [Commits](Azure/azure-sdk-for-net@Azure.Identity_1.12.0...Azure.Identity_1.13.1)

Updates `Microsoft.Extensions.Configuration.EnvironmentVariables` from 8.0.0 to 2.1.0
- [Release notes](https://github.com/aspnet/Configuration/releases)
- [Commits](https://github.com/aspnet/Configuration/commits/2.1.0)

Updates `Microsoft.Extensions.Configuration.Json` from 8.0.0 to 2.1.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.Extensions.Hosting` from 8.0.0 to 2.1.0
- [Release notes](https://github.com/aspnet/Hosting/releases)
- [Commits](https://github.com/aspnet/Hosting/commits/2.1.0)

Updates `Microsoft.Identity.Client` from 4.64.0 to 4.61.3
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/releases)
- [Changelog](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/blob/main/CHANGELOG.md)
- [Commits](AzureAD/microsoft-authentication-library-for-dotnet@4.64.0...4.66.2)

Updates `Microsoft.Azure.WebJobs.Extensions.Storage` from 5.3.1 to 5.3.2
- [Release notes](https://github.com/Azure/azure-sdk-for-net/releases)
- [Commits](Azure/azure-sdk-for-net@Microsoft.Azure.WebJobs.Extensions.Storage_5.3.1...Microsoft.Azure.WebJobs.Extensions.Storage_5.3.2)

Updates `FluentValidation` from 11.9.2 to 11.11.0
- [Release notes](https://github.com/JeremySkinner/fluentvalidation/releases)
- [Changelog](https://github.com/FluentValidation/FluentValidation/blob/main/Changelog.txt)
- [Commits](FluentValidation/FluentValidation@11.9.2...11.11.0)

---
updated-dependencies:
- dependency-name: FluentAssertions
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Newtonsoft.Json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: NUnit.Analyzers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: Elastic.Apm
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: Elastic.Apm
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: Elastic.Apm.Azure.Storage
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Caching.Memory
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Configuration
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Configuration.Json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Logging
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Configuration
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Logging
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Logging.Configuration
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Configuration
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Logging
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Logging.Configuration
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Logging.Console
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Logging
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Logging.Debug
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: Microsoft.Identity.Client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: Azure.Identity
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: Microsoft.Identity.Client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: Azure.Identity
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Configuration.EnvironmentVariables
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Configuration.Json
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-packages
- dependency-name: Microsoft.Extensions.Hosting
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-packages
- dependency-name: Microsoft.Identity.Client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: Microsoft.Azure.WebJobs.Extensions.Storage
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-packages
- dependency-name: FluentValidation
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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.

2 participants