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

deps: bump the all-dependencies group with 38 updates #278

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 13, 2024

Bumps the all-dependencies group with 39 updates:

Package From To
ClosedXML 0.104.0-preview2 0.104.1
FluentValidation 11.9.2 11.10.0
FluentValidation.DependencyInjectionExtensions 11.9.2 11.10.0
Microsoft.AspNetCore.Components.Web 8.0.8 8.0.10
Microsoft.AspNetCore.DataProtection.EntityFrameworkCore 8.0.8 8.0.10
Microsoft.EntityFrameworkCore 8.0.8 8.0.10
Microsoft.Extensions.Localization.Abstractions 8.0.8 8.0.10
Ardalis.SmartEnum 8.0.0 8.1.0
MediatR 12.4.0 12.4.1
Microsoft.AspNetCore.Identity.EntityFrameworkCore 8.0.8 8.0.10
Microsoft.Extensions.Identity.Core 8.0.8 8.0.10
AWSSDK.S3 3.7.401.1 3.7.404.5
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore 8.0.8 8.0.10
Microsoft.EntityFrameworkCore.Design 8.0.8 8.0.10
Microsoft.EntityFrameworkCore.InMemory 8.0.8 8.0.10
Microsoft.EntityFrameworkCore.Sqlite 8.0.8 8.0.10
Microsoft.EntityFrameworkCore.SqlServer 8.0.8 8.0.10
Microsoft.EntityFrameworkCore.Tools 8.0.8 8.0.10
Microsoft.Extensions.Http.Polly 8.0.8 8.0.10
QuestPDF 2024.7.2 2024.10.0
Sentry.Serilog 4.10.2 4.12.1
Serilog 4.0.1 4.0.2
Serilog.AspNetCore 8.0.2 8.0.3
ZiggyCreatures.FusionCache 1.3.0 1.4.0
ActualLab.Fusion 9.1.8 9.5.39
MemoryPack.Generator 1.21.1 1.21.3
ActualLab.Fusion.Blazor 9.1.8 9.5.39
Microsoft.AspNetCore.Components.Web 8.0.8 9.0.0-rc.2.24474.3
ActualLab.Fusion.Ext.Services 9.1.8 9.5.39
ActualLab.Generators 9.1.8 9.5.39
Blazor-ApexCharts 3.4.0 3.5.0
Microsoft.AspNetCore.SignalR.Client 8.0.8 8.0.10
MudBlazor 7.6.0 7.11.0
FluentAssertions 6.12.0 6.12.1
Microsoft.NET.Test.Sdk 17.11.0 17.11.1
Moq 4.20.70 4.20.72
NUnit 4.2.1 4.2.2
NunitXml.TestLogger 4.0.254 4.1.0
dotnet-ef 8.0.8 8.0.10

Updates ClosedXML from 0.104.0-preview2 to 0.104.1

Release notes

Sourced from ClosedXML's releases.

0.104.1

Release notes from 0.102.1 to the 0.104.1.

Summary of breaking changes is available at docs.closedxml.io:

OpenXML SDK

OpenXML SDK has released version 3. The 0.104.0 uses it as a dependency.

XLParser replaced with ClosedParser

The XLParser has been replaced with ClosedParser. The key benefits are

  • performance - ~2μs/formula, it's likely formulas will be parseable on the demand, necessary for construction of dependency tree
  • A1/R1C1 parsing parity - both modes can be parsed with no problems
  • AST oriented - it's likely a construction of AST in memory won't even be necessary, just use AST factory to evaluate formula directly

There is also a visualizer to display AST in a browser at https://parser.closedxml.io

image

Formula Calculation

In previous version, formulas used to be calculated recursively. Each formula checked it's supporting cells for other formulas and if there were some, they were recursively evaluated. There was some logic to decrease number of evaluations. That works for a very simple cases, but isn't very good for various non-happy paths (i.e. cells weren't calculated when they should be).

This version has replaced it with a standard

  • dependency tree for checking which formulas are dirty and need to be recalculated
  • calculation chain that manages dependencies and order of formulas during calculation

For more info, see docs, the Microsoft has a page about principles Excel Recalculation and there is one with API at docs.closedxml.io.

image

Structured references

New parser also allows a basic evaluation of structured references. Format of structured reference must use official grammar, not Excel friendly names (e.g. Pastry[@Name] is user-friendly name for Pastry[[#This Row],[Name]]). It's now possible to

using var wb = new XLWorkbook();
var ws = wb.AddWorksheet();
ws.Cell("A1").InsertTable(new Pastry[]
{
    new("Cake", 14),
    new("Waffle", 3),
}, "Pastry");
ws.Cell("D1").FormulaA1 = "SUM(Pastry[Price])";
ws.Cell("D3").FormulaA1 = ""Pastry " & Pastry[[#This Row],[Name]]";
</tr></table>

... (truncated)

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

Updates FluentValidation.DependencyInjectionExtensions from 11.9.2 to 11.10.0

Release notes

Sourced from FluentValidation.DependencyInjectionExtensions'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.DependencyInjectionExtensions'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

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

Updates Microsoft.AspNetCore.Components.Web from 8.0.8 to 8.0.10

Release notes

Sourced from Microsoft.AspNetCore.Components.Web's releases.

.NET 8.0.10

Release

Commits

Updates Microsoft.AspNetCore.DataProtection.EntityFrameworkCore from 8.0.8 to 8.0.10

Release notes

Sourced from Microsoft.AspNetCore.DataProtection.EntityFrameworkCore's releases.

.NET 8.0.10

Release

Commits

Updates Microsoft.EntityFrameworkCore from 8.0.8 to 8.0.10

Release notes

Sourced from Microsoft.EntityFrameworkCore's releases.

.NET 8.0.10

Release

Commits

Updates Microsoft.EntityFrameworkCore from 8.0.8 to 8.0.10

Release notes

Sourced from Microsoft.EntityFrameworkCore's releases.

.NET 8.0.10

Release

Commits

Updates Microsoft.Extensions.Localization.Abstractions from 8.0.8 to 8.0.10

Release notes

Sourced from Microsoft.Extensions.Localization.Abstractions's releases.

.NET 8.0.10

Release

Commits

Updates Ardalis.SmartEnum from 8.0.0 to 8.1.0

Release notes

Sourced from Ardalis.SmartEnum's releases.

SmartEnum-v8.1

What's Changed

New Contributors

Full Changelog: ardalis/SmartEnum@SmartEnum-v8.0...SmartEnum-v8.1

Commits
  • 517469f Updating packages (#548)
  • b067397 Bump SonarAnalyzer.CSharp from 9.17.0.82934 to 9.25.1.91650 (#526)
  • 76c5b94 Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.10.0 (#525)
  • 5b541d9 Bump Enums.NET from 4.0.1 to 5.0.0 (#523)
  • 935b494 Bump coverlet.msbuild from 3.2.0 to 6.0.2 (#506)
  • 262e277 Bump coverlet.collector from 3.2.0 to 6.0.2 (#505)
  • 64ae75f Bump MessagePack from 2.4.59 to 2.5.140 (#503)
  • 3121624 Bump FluentAssertions from 6.11.0 to 6.12.0 (#499)
  • 4a3cdb8 Bump BenchmarkDotNet from 0.13.10 to 0.13.12 (#498)
  • 03f5e2f Bump protobuf-net from 3.2.26 to 3.2.30 (#480)
  • Additional commits viewable in compare view

Updates MediatR from 12.4.0 to 12.4.1

Release notes

Sourced from MediatR's releases.

v12.4.1

What's Changed

Full Changelog: jbogard/MediatR@v12.4.0...v12.4.1

Commits
  • fb30902 Merge pull request #1057 from zachpainter77/master
  • 32b512e Make auto registration of generic handlers opt in.
  • 6abee0c Remove Missing Constraints logic
  • See full diff in compare view

Updates Microsoft.AspNetCore.Identity.EntityFrameworkCore from 8.0.8 to 8.0.10

Release notes

Sourced from Microsoft.AspNetCore.Identity.EntityFrameworkCore's releases.

.NET 8.0.10

Release

Commits

Updates Microsoft.Extensions.Identity.Core from 8.0.8 to 8.0.10

Release notes

Sourced from Microsoft.Extensions.Identity.Core's releases.Description has been truncated

Bumps the all-dependencies group with 39 updates:

| Package | From | To |
| --- | --- | --- |
| [ClosedXML](https://github.com/ClosedXML/ClosedXML) | `0.104.0-preview2` | `0.104.1` |
| [FluentValidation](https://github.com/JeremySkinner/fluentvalidation) | `11.9.2` | `11.10.0` |
| [FluentValidation.DependencyInjectionExtensions](https://github.com/JeremySkinner/fluentvalidation) | `11.9.2` | `11.10.0` |
| [Microsoft.AspNetCore.Components.Web](https://github.com/dotnet/aspnetcore) | `8.0.8` | `8.0.10` |
| [Microsoft.AspNetCore.DataProtection.EntityFrameworkCore](https://github.com/dotnet/aspnetcore) | `8.0.8` | `8.0.10` |
| [Microsoft.EntityFrameworkCore](https://github.com/dotnet/efcore) | `8.0.8` | `8.0.10` |
| [Microsoft.Extensions.Localization.Abstractions](https://github.com/dotnet/aspnetcore) | `8.0.8` | `8.0.10` |
| [Ardalis.SmartEnum](https://github.com/ardalis/SmartEnum) | `8.0.0` | `8.1.0` |
| [MediatR](https://github.com/jbogard/MediatR) | `12.4.0` | `12.4.1` |
| [Microsoft.AspNetCore.Identity.EntityFrameworkCore](https://github.com/dotnet/aspnetcore) | `8.0.8` | `8.0.10` |
| [Microsoft.Extensions.Identity.Core](https://github.com/dotnet/aspnetcore) | `8.0.8` | `8.0.10` |
| [AWSSDK.S3](https://github.com/aws/aws-sdk-net) | `3.7.401.1` | `3.7.404.5` |
| [Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore](https://github.com/dotnet/aspnetcore) | `8.0.8` | `8.0.10` |
| [Microsoft.EntityFrameworkCore.Design](https://github.com/dotnet/efcore) | `8.0.8` | `8.0.10` |
| [Microsoft.EntityFrameworkCore.InMemory](https://github.com/dotnet/efcore) | `8.0.8` | `8.0.10` |
| [Microsoft.EntityFrameworkCore.Sqlite](https://github.com/dotnet/efcore) | `8.0.8` | `8.0.10` |
| [Microsoft.EntityFrameworkCore.SqlServer](https://github.com/dotnet/efcore) | `8.0.8` | `8.0.10` |
| [Microsoft.EntityFrameworkCore.Tools](https://github.com/dotnet/efcore) | `8.0.8` | `8.0.10` |
| [Microsoft.Extensions.Http.Polly](https://github.com/dotnet/aspnetcore) | `8.0.8` | `8.0.10` |
| [QuestPDF](https://github.com/QuestPDF/library) | `2024.7.2` | `2024.10.0` |
| [Sentry.Serilog](https://github.com/getsentry/sentry-dotnet) | `4.10.2` | `4.12.1` |
| [Serilog](https://github.com/serilog/serilog) | `4.0.1` | `4.0.2` |
| [Serilog.AspNetCore](https://github.com/serilog/serilog-aspnetcore) | `8.0.2` | `8.0.3` |
| [ZiggyCreatures.FusionCache](https://github.com/ZiggyCreatures/FusionCache) | `1.3.0` | `1.4.0` |
| [ActualLab.Fusion](https://github.com/ActualLab/Fusion) | `9.1.8` | `9.5.39` |
| [MemoryPack.Generator](https://github.com/Cysharp/MemoryPack) | `1.21.1` | `1.21.3` |
| [ActualLab.Fusion.Blazor](https://github.com/ActualLab/Fusion) | `9.1.8` | `9.5.39` |
| [Microsoft.AspNetCore.Components.Web](https://github.com/dotnet/aspnetcore) | `8.0.8` | `9.0.0-rc.2.24474.3` |
| [ActualLab.Fusion.Ext.Services](https://github.com/ActualLab/Fusion) | `9.1.8` | `9.5.39` |
| [ActualLab.Generators](https://github.com/ActualLab/Fusion) | `9.1.8` | `9.5.39` |
| [Blazor-ApexCharts](https://github.com/apexcharts/Blazor-ApexCharts) | `3.4.0` | `3.5.0` |
| [Microsoft.AspNetCore.SignalR.Client](https://github.com/dotnet/aspnetcore) | `8.0.8` | `8.0.10` |
| [MudBlazor](https://github.com/MudBlazor/MudBlazor) | `7.6.0` | `7.11.0` |
| [FluentAssertions](https://github.com/fluentassertions/fluentassertions) | `6.12.0` | `6.12.1` |
| [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) | `17.11.0` | `17.11.1` |
| [Moq](https://github.com/moq/moq) | `4.20.70` | `4.20.72` |
| [NUnit](https://github.com/nunit/nunit) | `4.2.1` | `4.2.2` |
| [NunitXml.TestLogger](https://github.com/spekt/testlogger) | `4.0.254` | `4.1.0` |
| [dotnet-ef](https://github.com/dotnet/efcore) | `8.0.8` | `8.0.10` |


Updates `ClosedXML` from 0.104.0-preview2 to 0.104.1
- [Release notes](https://github.com/ClosedXML/ClosedXML/releases)
- [Commits](ClosedXML/ClosedXML@0.104.0-preview2...0.104.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)

Updates `FluentValidation.DependencyInjectionExtensions` 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)

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)

Updates `Microsoft.AspNetCore.Components.Web` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.8...v8.0.10)

Updates `Microsoft.AspNetCore.DataProtection.EntityFrameworkCore` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.8...v8.0.10)

Updates `Microsoft.EntityFrameworkCore` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.8...v8.0.10)

Updates `Microsoft.EntityFrameworkCore` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.8...v8.0.10)

Updates `Microsoft.Extensions.Localization.Abstractions` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.8...v8.0.10)

Updates `Ardalis.SmartEnum` from 8.0.0 to 8.1.0
- [Release notes](https://github.com/ardalis/SmartEnum/releases)
- [Commits](ardalis/SmartEnum@SmartEnum-v8.0...SmartEnum-v8.1)

Updates `MediatR` from 12.4.0 to 12.4.1
- [Release notes](https://github.com/jbogard/MediatR/releases)
- [Commits](jbogard/MediatR@v12.4.0...v12.4.1)

Updates `Microsoft.AspNetCore.Identity.EntityFrameworkCore` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.8...v8.0.10)

Updates `Microsoft.Extensions.Identity.Core` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.8...v8.0.10)

Updates `Microsoft.EntityFrameworkCore` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.8...v8.0.10)

Updates `AWSSDK.S3` from 3.7.401.1 to 3.7.404.5
- [Changelog](https://github.com/aws/aws-sdk-net/blob/main/SDK.CHANGELOG.MD)
- [Commits](https://github.com/aws/aws-sdk-net/commits)

Updates `Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.8...v8.0.10)

Updates `Microsoft.EntityFrameworkCore` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.8...v8.0.10)

Updates `Microsoft.EntityFrameworkCore.Design` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.8...v8.0.10)

Updates `Microsoft.EntityFrameworkCore` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.8...v8.0.10)

Updates `Microsoft.EntityFrameworkCore.InMemory` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.8...v8.0.10)

Updates `Microsoft.EntityFrameworkCore` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.8...v8.0.10)

Updates `Microsoft.EntityFrameworkCore.Sqlite` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.8...v8.0.10)

Updates `Microsoft.EntityFrameworkCore` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.8...v8.0.10)

Updates `Microsoft.EntityFrameworkCore.SqlServer` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.8...v8.0.10)

Updates `Microsoft.EntityFrameworkCore` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.8...v8.0.10)

Updates `Microsoft.EntityFrameworkCore.Tools` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.8...v8.0.10)

Updates `Microsoft.EntityFrameworkCore.Design` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.8...v8.0.10)

Updates `Microsoft.EntityFrameworkCore` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.8...v8.0.10)

Updates `Microsoft.Extensions.Http.Polly` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.8...v8.0.10)

Updates `QuestPDF` from 2024.7.2 to 2024.10.0
- [Release notes](https://github.com/QuestPDF/library/releases)
- [Commits](QuestPDF/QuestPDF@2024.7.2...2024.10)

Updates `Sentry.Serilog` from 4.10.2 to 4.12.1
- [Release notes](https://github.com/getsentry/sentry-dotnet/releases)
- [Changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-dotnet@4.10.2...4.12.1)

Updates `Serilog` from 4.0.1 to 4.0.2
- [Release notes](https://github.com/serilog/serilog/releases)
- [Commits](serilog/serilog@v4.0.1...v4.0.2)

Updates `Serilog.AspNetCore` from 8.0.2 to 8.0.3
- [Release notes](https://github.com/serilog/serilog-aspnetcore/releases)
- [Commits](serilog/serilog-aspnetcore@v8.0.2...v8.0.3)

Updates `ZiggyCreatures.FusionCache` from 1.3.0 to 1.4.0
- [Release notes](https://github.com/ZiggyCreatures/FusionCache/releases)
- [Commits](ZiggyCreatures/FusionCache@v1.3.0...v1.4.0)

Updates `ActualLab.Fusion` from 9.1.8 to 9.5.39
- [Commits](https://github.com/ActualLab/Fusion/commits)

Updates `MemoryPack.Generator` from 1.21.1 to 1.21.3
- [Release notes](https://github.com/Cysharp/MemoryPack/releases)
- [Commits](Cysharp/MemoryPack@1.21.1...1.21.3)

Updates `ActualLab.Fusion.Blazor` from 9.1.8 to 9.5.39
- [Commits](https://github.com/ActualLab/Fusion/commits)

Updates `ActualLab.Fusion` from 9.1.8 to 9.5.39
- [Commits](https://github.com/ActualLab/Fusion/commits)

Updates `MemoryPack.Generator` from 1.21.1 to 1.21.3
- [Release notes](https://github.com/Cysharp/MemoryPack/releases)
- [Commits](Cysharp/MemoryPack@1.21.1...1.21.3)

Updates `Microsoft.AspNetCore.Components.Web` from 8.0.8 to 9.0.0-rc.2.24474.3
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.8...v8.0.10)

Updates `ActualLab.Fusion.Ext.Services` from 9.1.8 to 9.5.39
- [Commits](https://github.com/ActualLab/Fusion/commits)

Updates `ActualLab.Fusion` from 9.1.8 to 9.5.39
- [Commits](https://github.com/ActualLab/Fusion/commits)

Updates `MemoryPack.Generator` from 1.21.1 to 1.21.3
- [Release notes](https://github.com/Cysharp/MemoryPack/releases)
- [Commits](Cysharp/MemoryPack@1.21.1...1.21.3)

Updates `ActualLab.Generators` from 9.1.8 to 9.5.39
- [Commits](https://github.com/ActualLab/Fusion/commits)

Updates `Blazor-ApexCharts` from 3.4.0 to 3.5.0
- [Release notes](https://github.com/apexcharts/Blazor-ApexCharts/releases)
- [Commits](apexcharts/Blazor-ApexCharts@v3.4.0...v3.5.0)

Updates `Microsoft.AspNetCore.SignalR.Client` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.8...v8.0.10)

Updates `MudBlazor` from 7.6.0 to 7.11.0
- [Release notes](https://github.com/MudBlazor/MudBlazor/releases)
- [Changelog](https://github.com/MudBlazor/MudBlazor/blob/dev/CHANGELOG.md)
- [Commits](MudBlazor/MudBlazor@v7.6.0...v7.11.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 `Microsoft.NET.Test.Sdk` from 17.11.0 to 17.11.1
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.11.0...v17.11.1)

Updates `Moq` from 4.20.70 to 4.20.72
- [Release notes](https://github.com/moq/moq/releases)
- [Changelog](https://github.com/devlooped/moq/blob/main/changelog.md)
- [Commits](moq/moq.spikes@v4.20.70...v4.20.72)

Updates `NUnit` from 4.2.1 to 4.2.2
- [Release notes](https://github.com/nunit/nunit/releases)
- [Changelog](https://github.com/nunit/nunit/blob/main/CHANGES.md)
- [Commits](nunit/nunit@4.2.1...4.2.2)

Updates `NunitXml.TestLogger` from 4.0.254 to 4.1.0
- [Release notes](https://github.com/spekt/testlogger/releases)
- [Changelog](https://github.com/spekt/testlogger/blob/master/CHANGELOG.md)
- [Commits](spekt/testlogger@v4.0.254...v4.1.0)

Updates `dotnet-ef` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.8...v8.0.10)

---
updated-dependencies:
- dependency-name: ClosedXML
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: FluentValidation
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: FluentValidation.DependencyInjectionExtensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: FluentValidation
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: Microsoft.AspNetCore.Components.Web
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.AspNetCore.DataProtection.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.Extensions.Localization.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Ardalis.SmartEnum
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: MediatR
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.AspNetCore.Identity.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.Extensions.Identity.Core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: AWSSDK.S3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.EntityFrameworkCore.Design
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.EntityFrameworkCore.InMemory
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.EntityFrameworkCore.Sqlite
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.EntityFrameworkCore.SqlServer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.EntityFrameworkCore.Tools
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.EntityFrameworkCore.Design
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.Extensions.Http.Polly
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: QuestPDF
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: Sentry.Serilog
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: Serilog
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Serilog.AspNetCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: ZiggyCreatures.FusionCache
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: ActualLab.Fusion
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: MemoryPack.Generator
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: ActualLab.Fusion.Blazor
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: ActualLab.Fusion
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: MemoryPack.Generator
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.AspNetCore.Components.Web
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: ActualLab.Fusion.Ext.Services
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: ActualLab.Fusion
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: MemoryPack.Generator
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: ActualLab.Generators
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: Blazor-ApexCharts
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: Microsoft.AspNetCore.SignalR.Client
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: MudBlazor
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: FluentAssertions
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: NUnit
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: NunitXml.TestLogger
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: dotnet-ef
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@carlsixsmith-moj
Copy link
Contributor

Nope. Breaking build

Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 14, 2024

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/nuget/all-dependencies-645bb6d2b8 branch October 14, 2024 06:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant