Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 23, 2024

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

Package From To
FluentAssertions 6.12.0 6.12.1
Elastic.Apm 1.28.5 1.29.0
Elastic.Apm.Azure.Storage 1.28.5 1.29.0
Elastic.Apm 1.28.5 1.29.0
Microsoft.Identity.Client 4.64.0 4.64.1
Microsoft.Azure.WebJobs.Extensions.Storage 5.3.1 5.3.2
Azure.Storage.Blobs 12.20.0 12.21.1
Azure.Storage.Queues 12.18.0 12.19.1
FluentValidation 11.9.2 11.10.0

Updates FluentAssertions from 6.12.0 to 6.12.1

Release notes

Sourced from FluentAssertions's releases.

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
  • 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
  • f3b4564 Ensured that nested assertion scopes produce a nested context (#2607)
  • Additional commits viewable in compare view

Updates Elastic.Apm from 1.28.5 to 1.29.0

Release notes

Sourced from Elastic.Apm's releases.

v1.29.0

What's Changed

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

v1.28.6

What's Changed

Full Changelog: elastic/apm-agent-dotnet@v1.28.5...v1.28.6

Changelog

Sourced from Elastic.Apm's changelog.

==== 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.

In this release, we no longer parse out individual cookies, and the cookie Dictionary has been removed from the data model. This means that cookies will no longer be indexed individually. However, we have ensured that we retain the primary reason for the earlier change, which was to redact the values of sensitive cookies. Any cookies with a name matching the SanitizeFieldNames patterns will be redacted in the value of the Cookie header we store.

For most consumers, we expect the impact to be minimal. However, if you were relying on the parsed cookie fields, adjustments will be necessary to work with the Cookie header value instead.

===== Breaking changes

{pull}2444#2444 No longer parse request cookies, but ensure they are still redacted in the Cookie header string

[[release-notes-1.28.6]] ==== 1.28.6 - 2024/09/11

===== Bug fixes

{pull}2431#2431 Hard exclude several system processes from being auto instrumented. {pull}2436#2436 Disabling the agent should not try to enqueue events, now a NOOP.

[[release-notes-1.28.5]]

Commits

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

Release notes

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

v1.29.0

What's Changed

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

v1.28.6

What's Changed

Full Changelog: elastic/apm-agent-dotnet@v1.28.5...v1.28.6

Changelog

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

==== 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.

In this release, we no longer parse out individual cookies, and the cookie Dictionary has been removed from the data model. This means that cookies will no longer be indexed individually. However, we have ensured that we retain the primary reason for the earlier change, which was to redact the values of sensitive cookies. Any cookies with a name matching the SanitizeFieldNames patterns will be redacted in the value of the Cookie header we store.

For most consumers, we expect the impact to be minimal. However, if you were relying on the parsed cookie fields, adjustments will be necessary to work with the Cookie header value instead.

===== Breaking changes

{pull}2444#2444 No longer parse request cookies, but ensure they are still redacted in the Cookie header string

[[release-notes-1.28.6]] ==== 1.28.6 - 2024/09/11

===== Bug fixes

{pull}2431#2431 Hard exclude several system processes from being auto instrumented. {pull}2436#2436 Disabling the agent should not try to enqueue events, now a NOOP.

[[release-notes-1.28.5]]

Commits

Updates Elastic.Apm from 1.28.5 to 1.29.0

Release notes

Sourced from Elastic.Apm's releases.

v1.29.0

What's Changed

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

v1.28.6

What's Changed

Full Changelog: elastic/apm-agent-dotnet@v1.28.5...v1.28.6

Changelog

Sourced from Elastic.Apm's changelog.

==== 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.

In this release, we no longer parse out individual cookies, and the cookie Dictionary has been removed from the data model. This means that cookies will no longer be indexed individually. However, we have ensured that we retain the primary reason for the earlier change, which was to redact the values of sensitive cookies. Any cookies with a name matching the SanitizeFieldNames patterns will be redacted in the value of the Cookie header we store.

For most consumers, we expect the impact to be minimal. However, if you were relying on the parsed cookie fields, adjustments will be necessary to work with the Cookie header value instead.

===== Breaking changes

{pull}2444#2444 No longer parse request cookies, but ensure they are still redacted in the Cookie header string

[[release-notes-1.28.6]] ==== 1.28.6 - 2024/09/11

===== Bug fixes

{pull}2431#2431 Hard exclude several system processes from being auto instrumented. {pull}2436#2436 Disabling the agent should not try to enqueue events, now a NOOP.

[[release-notes-1.28.5]]

Commits

Updates Microsoft.Identity.Client from 4.64.0 to 4.64.1

Changelog

Sourced from Microsoft.Identity.Client's changelog.

4.64.1

Bug Fixes

Commits

Updates Microsoft.Azure.WebJobs.Extensions.Storage from 5.3.1 to 5.3.2

Release notes

Sourced from Microsoft.Azure.WebJobs.Extensions.Storage's releases.

Microsoft.Azure.WebJobs.Extensions.Storage_5.3.2

5.3.2 (2024-09-19)

Other Changes

Please refer to Microsoft.Azure.WebJobs.Extension.Storage.Blobs and Microsoft.Azure.WebJobs.Extension.Storage.Queues for detailed list of changes.

Microsoft.Azure.WebJobs.Extensions.Storage.Queues_5.3.2

5.3.2 (2024-09-19)

Bugs Fixed

  • When grabbing Queue Metrics for amount of messages, will now use the QueueTriggerMetrics.QueueLength instead of the ApproximateMessagesCount for less stale metrics.

Other Changes

  • Improvement in logging exceptions when retrieving queue metrics.

Microsoft.Azure.WebJobs.Extensions.Storage.Blobs_5.3.2

5.3.2 (2024-09-19)

Other Changes

  • This release contains bug fixes to improve quality.
Commits
  • 5c0b478 Storage WebJobs Extension Prepare for Release 2024-09-19 (#46068)
  • 8b29bc5 AdditionalValidationPackagesFromPackageSetFn now accepts all discovered packa...
  • bf1b191 we need the condition to be set on populateScanPaths step. if we don't, and t...
  • e9e1e47 create patch with azure core 1.43 (#46055)
  • 879876e Increment version for storage releases (#46051)
  • 0d8b3cf Increment version for storage releases (#46054)
  • c7548c1 Revert "[Storage] Add Queue Permissions enum to represent QueueAccessPolicy.P...
  • f362309 Update to newer resource id for open source api (#46044)
  • 5f8b725 Update perf tests to use federated auth (#46040)
  • 70567f2 Core TransferManager tests (#46014)
  • Additional commits viewable in compare view

Updates Azure.Storage.Blobs from 12.20.0 to 12.21.1

Commits

Updates Azure.Storage.Queues from 12.18.0 to 12.19.1

Commits

Updates FluentValidation from 11.9.2 to 11.10.0

Release notes

Sourced from FluentValidation's releases.

11.10.0

Release notes

Please read the upgrade guide if you are moving from 10.x to 11.x

Note that the after 11.1.0 release, the FluentValidation.AspNetCore package has been moved to a separate repository and is now versioned and released separately. These release notes now only apply to the core FluentValidation package. For FluentValidation.AspNetCore release notes, please visit the FluentValidation.AspNetCore repository.

Changes in 11.10.0

  • Add WhereAsync as conterpart to Where on collection rules (#2240)
  • Create IEnumValidator to expose the targeted Enum type of EnumValidator (#2244)
  • Add Romansh language translations (#2239)

Changes in 11.9.2

  • ScalePrecisionValidator error message clarification (#2211)

Changes in 11.9.1

  • Fix issue with CascadeMode on child validators (#2207)

Changes in 11.9.0

  • Fix memory leak in NotEmptyValidator/EmptyValidator (#2174)
  • Add more descriptive error messages if a rule throws a NullReferenceException (#2152)
  • Add support for caching root parameter expressions (eg RuleFor(x => x)) (#2168)
  • Prevent AddValidatorsFromAssemblyContaining from registering validators twice (#2182)
  • Add builds for .net 8

Changes in 11.8.1

  • Fix unintentional behavioural changes in introduced in the previous release as part of #2158

Changes in 11.8.0

  • Added AbstractValidator.OnRuleAdded to allow customization of rule instances after creation (#2114)
  • Fix Serbian translation of LengthValidator (#2147)
  • Fix chinese culture codes (#2151)
  • Add Khmer translations (#2155)
  • Various performance improvements (#2158)
  • Fix ChildRules with class hierarchies (#2165)

Changes in 11.7.1

  • Resolved issue with combining multiple ValidationResult instances where RuleSetsExecuted wasn't properly set on the combined result (#2125)

Changes in 11.7.0

  • Add additional constructor for combining multiple ValidationResult instances (#2125)
  • Add PropertyPath placeholder (#2134)
  • Fix Brazilian Portuguese translation (#2131)

Changes in 11.6.0

  • Add OnFailurecCreated callback in ValidatorOptions.Global (#2120)
  • Fix typo in Russian localization (#2102)
  • Add Tajik language (#2108)
  • Fixed some typos in Validator Extension docblocks (#2118)

... (truncated)

Changelog

Sourced from FluentValidation's changelog.

11.10.0 - 15 Sep 2024 Add WhereAsync as conterpart to Where on collection rules (#2240) Create IEnumValidator to expose the targeted Enum type of EnumValidator (#2244) Add Romansh language translations (#2239)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

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

| Package | From | To |
| --- | --- | --- |
| [FluentAssertions](https://github.com/fluentassertions/fluentassertions) | `6.12.0` | `6.12.1` |
| [Elastic.Apm](https://github.com/elastic/apm-agent-dotnet) | `1.28.5` | `1.29.0` |
| [Elastic.Apm.Azure.Storage](https://github.com/elastic/apm-agent-dotnet) | `1.28.5` | `1.29.0` |
| [Elastic.Apm](https://github.com/elastic/apm-agent-dotnet) | `1.28.5` | `1.29.0` |
| [Microsoft.Identity.Client](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet) | `4.64.0` | `4.64.1` |
| [Microsoft.Azure.WebJobs.Extensions.Storage](https://github.com/Azure/azure-sdk-for-net) | `5.3.1` | `5.3.2` |
| [Azure.Storage.Blobs](https://github.com/Azure/azure-sdk-for-net) | `12.20.0` | `12.21.1` |
| [Azure.Storage.Queues](https://github.com/Azure/azure-sdk-for-net) | `12.18.0` | `12.19.1` |
| [FluentValidation](https://github.com/JeremySkinner/fluentvalidation) | `11.9.2` | `11.10.0` |



Updates `FluentAssertions` from 6.12.0 to 6.12.1
- [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.1)

Updates `Elastic.Apm` from 1.28.5 to 1.29.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.29.0)

Updates `Elastic.Apm.Azure.Storage` from 1.28.5 to 1.29.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.29.0)

Updates `Elastic.Apm` from 1.28.5 to 1.29.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.29.0)

Updates `Microsoft.Identity.Client` from 4.64.0 to 4.64.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.64.1)

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 `Azure.Storage.Blobs` from 12.20.0 to 12.21.1
- [Release notes](https://github.com/Azure/azure-sdk-for-net/releases)
- [Commits](Azure/azure-sdk-for-net@Azure.Storage.Blobs_12.20.0...Azure.Storage.Blobs_12.21.1)

Updates `Azure.Storage.Queues` from 12.18.0 to 12.19.1
- [Release notes](https://github.com/Azure/azure-sdk-for-net/releases)
- [Commits](Azure/azure-sdk-for-net@Azure.Storage.Queues_12.18.0...Azure.Storage.Queues_12.19.1)

Updates `FluentValidation` from 11.9.2 to 11.10.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.10.0)

---
updated-dependencies:
- dependency-name: FluentAssertions
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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: Elastic.Apm
  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-patch
  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: Azure.Storage.Blobs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-packages
- dependency-name: Azure.Storage.Queues
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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 requested review from a team and rockydevnet as code owners September 23, 2024 03:09
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 23, 2024
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 30, 2024

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

@dependabot dependabot bot closed this Sep 30, 2024
@dependabot dependabot bot deleted the dependabot/nuget/UKHO.PeriodicOutputService/all-packages-b9923e9178 branch September 30, 2024 02:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant