Bump the dotnet-minor-and-patch group with 10 updates#27
Closed
dependabot[bot] wants to merge 1 commit into
Closed
Bump the dotnet-minor-and-patch group with 10 updates#27dependabot[bot] wants to merge 1 commit into
dependabot[bot] wants to merge 1 commit into
Conversation
Bumps AwesomeAssertions from 8.0.0 to 8.2.0 Bumps coverlet.collector from 6.0.2 to 6.0.4 Bumps FluentValidation from 11.11.0 to 11.12.0 Bumps FluentValidation.DependencyInjectionExtensions from 11.11.0 to 11.12.0 Bumps Microsoft.AspNetCore.OpenApi from 10.0.0 to 10.0.8 Bumps Microsoft.Extensions.DependencyInjection from 10.0.0 to 10.0.8 Bumps Microsoft.Extensions.Hosting.Abstractions from 10.0.0 to 10.0.8 Bumps Microsoft.Extensions.Options.ConfigurationExtensions from 10.0.0 to 10.0.8 Bumps Microsoft.NET.Test.Sdk from 17.12.0 to 17.14.1 Bumps xunit from 2.9.2 to 2.9.3 --- updated-dependencies: - dependency-name: AwesomeAssertions dependency-version: 8.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dotnet-minor-and-patch - dependency-name: coverlet.collector dependency-version: 6.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet-minor-and-patch - dependency-name: FluentValidation dependency-version: 11.12.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dotnet-minor-and-patch - dependency-name: FluentValidation.DependencyInjectionExtensions dependency-version: 11.12.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dotnet-minor-and-patch - dependency-name: Microsoft.AspNetCore.OpenApi dependency-version: 10.0.8 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet-minor-and-patch - dependency-name: Microsoft.Extensions.DependencyInjection dependency-version: 10.0.8 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet-minor-and-patch - dependency-name: Microsoft.Extensions.Hosting.Abstractions dependency-version: 10.0.8 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet-minor-and-patch - dependency-name: Microsoft.Extensions.Options.ConfigurationExtensions dependency-version: 10.0.8 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet-minor-and-patch - dependency-name: Microsoft.NET.Test.Sdk dependency-version: 17.14.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dotnet-minor-and-patch - dependency-name: xunit dependency-version: 2.9.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet-minor-and-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Contributor
|
Superseded by the consolidated dependency PR #36, which applies this bump (with any required code fixes) alongside the rest of the Dependabot batch. Closing to keep the queue to a single reviewable PR. |
Author
|
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 |
flydyk
added a commit
that referenced
this pull request
Jun 5, 2026
…license) (#36) * chore(deps): bump backend NuGet packages (MediatR held at 12.x) Consolidates Dependabot backend PRs: - FluentValidation + DI ext 11.11 -> 12.1.1 (#31) - Mapster 7.4 -> 10.0.7 (#32) - AwesomeAssertions 8.0 -> 9.4.0 (#28) — namespace moved FluentAssertions -> AwesomeAssertions; updated GlobalUsings - Microsoft.NET.Test.Sdk 17.12 -> 18.6.0 (#34) - xunit.runner.visualstudio 2.8.2 -> 3.1.5 (#35) - coverlet.collector 6.0.2 -> 10.0.1 (#29) - xunit 2.9.2 -> 2.9.3, Microsoft.* runtime 10.0.0 -> 10.0.8 (#27) MediatR deliberately NOT bumped: v13+ is commercially licensed; the project pins 12.x to stay OSS-free (see dependabot.yml ignore rule). Verified: dotnet test -c Release -> 31 + 5 pass; no vulnerable packages. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> * chore(deps): bump frontend toolchain + runtime majors (Vite 8, Vitest 4) Consolidates Dependabot frontend PRs: - vite 5 -> 8.0.16 (#25, now bundles via rolldown) - vitest 1 -> 4.1.8 (#22) - @vitejs/plugin-vue 5 -> 6.0.7 (#23) - vue-tsc 2 -> 3.3.3 (#20) - typescript 5.5 -> 6.0.3 (#18) - vue-router 4 -> 5.1.0 (#21) - pinia 2 -> 3.0.4 (#24) - @vue/test-utils 2.4.6 -> 2.4.11 (#17) - jsdom 24 -> 29.1.1 (#19) Code fixes required by the toolchain majors: - Add src/vite-env.d.ts (/// <reference types="vite/client" />): vue-tsc 3 / TS 6 now type-check side-effect CSS/SCSS imports in main.ts. - OakTree.vue: wire the <svg> through a stable function ref. vue-tsc 3 no longer counts a string ref="svgRef" (composable-owned) as a read, and a dynamic :ref auto-unwraps to the element; the function form is correct. - vite.config.ts: pin Vitest's worker pool to 'threads' (its Vitest-1 default); Vitest 4 changed it to 'forks', which times out spawning many child processes. Lockfile regenerated under Node 22 / npm 10 so platform-native rolldown bindings (incl. linux-x64-gnu/musl for CI) resolve. MediatR-equivalent licensing concern N/A here. Verified on Node 22.22.3: npm run build OK; vitest 21 files / 132 tests pass; npm audit -> 0 vulnerabilities. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> * ci: codeql-action v4, pin MediatR (ignore majors), full npm audit - codeql.yml: github/codeql-action init+analyze v3 -> v4 (#16) - dependabot.yml: ignore MediatR semver-major bumps (v13+ is commercially licensed); 12.x minor/patch still flow. Closes the loop on #33. - ci.yml: drop `--omit=dev` from the npm audit gate now that the Vite 8 / Vitest 4 upgrade cleared the dev-toolchain advisories (full tree is clean). - docs/ci-cd/pr-quality-gates.md: document the full-tree audit + MediatR pin. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> * chore(deps): upgrade MediatR 12.5.0 -> 14.1.0 (community license) A Lucky Penny Software community license was obtained, so MediatR is no longer held at the OSS 12.x line. - Directory.Packages.props: MediatR 14.1.0; add Microsoft.Extensions.Logging 10.0.8 (v14's license check resolves ILoggerFactory). - AddApplication: register AddLogging() so MediatR's license check works on a bare ServiceCollection (unit tests), and apply the license key when supplied. - Program.cs: pass MediatR:LicenseKey from configuration. - appsettings.json: document the MediatR:LicenseKey slot (blank; real key via user-secrets or MediatR__LicenseKey env var — never committed). - dependabot.yml: drop the MediatR semver-major ignore (now licensed). - Docs (runbook, design spec, CLAUDE.md): reflect MediatR 14.x + licensing. Verified: dotnet test -c Release -> 31 + 5 pass; no vulnerable packages. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> * chore: add UserSecretsId for MediatR license key (local dev) Enables `dotnet user-secrets set "MediatR:LicenseKey" "<key>"` so the Lucky Penny community license key is supplied locally without committing it. The id is not a secret. (Also tidies the csproj formatting that `user-secrets init` collapsed.) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updated AwesomeAssertions from 8.0.0 to 8.2.0.
Release notes
Sourced from AwesomeAssertions's releases.
8.2.0
What's Changed
Others
Full Changelog: AwesomeAssertions/AwesomeAssertions@8.1.0...8.2.0
What's Changed
Improvements
Others
... (truncated)
8.1.0
What's Changed
Improvements
ForConstrainttoGivenSelector<T>by @ITaluone in AddForConstrainttoGivenSelector<T>AwesomeAssertions/AwesomeAssertions#44StringEqualityStrategyto between 45 and 60 characters by @vbreuss in Adapt displayed length inStringEqualityStrategyto between 45 and 60 characters AwesomeAssertions/AwesomeAssertions#94StringEqualityStrategyconfigurable by @vbreuss in Make displayed length inStringEqualityStrategyconfigurable AwesomeAssertions/AwesomeAssertions#100Fixes
Others
nullcheck by @cbersch in Remove unnecessarynullcheck AwesomeAssertions/AwesomeAssertions#93New Contributors
StringEqualityStrategyto between 45 and 60 characters AwesomeAssertions/AwesomeAssertions#94Full Changelog: AwesomeAssertions/AwesomeAssertions@8.0.2...8.1.0
8.0.2
What's Changed
Improvements
Fixes
Taskwas treated as a failure inCompleteWithinAsyncby @ScarletKuro in AwesomeAssertions/AwesomeAssertions@b9cef91Others
New Contributors
Full Changelog: AwesomeAssertions/AwesomeAssertions@8.0.1...8.0.2
8.0.1
What's Changed
Improvements
Others
New Contributors
Full Changelog: AwesomeAssertions/AwesomeAssertions@8.0.0...8.0.1
Commits viewable in compare view.
Updated coverlet.collector from 6.0.2 to 6.0.4.
Release notes
Sourced from coverlet.collector's releases.
6.0.4
Fixed
Diff between 6.0.3 and 6.0.4
6.0.3
Fixed
Improvements
Diff between 6.0.2 and 6.0.3
Commits viewable in compare view.
Updated FluentValidation from 11.11.0 to 11.12.0.
Release notes
Sourced from FluentValidation's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated FluentValidation.DependencyInjectionExtensions from 11.11.0 to 11.12.0.
Release notes
Sourced from FluentValidation.DependencyInjectionExtensions's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.AspNetCore.OpenApi from 10.0.0 to 10.0.8.
Release notes
Sourced from Microsoft.AspNetCore.OpenApi's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.Extensions.DependencyInjection from 10.0.0 to 10.0.8.
Release notes
Sourced from Microsoft.Extensions.DependencyInjection's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.Extensions.Hosting.Abstractions from 10.0.0 to 10.0.8.
Release notes
Sourced from Microsoft.Extensions.Hosting.Abstractions's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.Extensions.Options.ConfigurationExtensions from 10.0.0 to 10.0.8.
Release notes
Sourced from Microsoft.Extensions.Options.ConfigurationExtensions's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.NET.Test.Sdk from 17.12.0 to 17.14.1.
Release notes
Sourced from Microsoft.NET.Test.Sdk's releases.
17.14.1
What's Changed
Full Changelog: microsoft/vstest@v17.14.0...v17.14.1
17.14.0
What's Changed
.NET versions updated
This version of VS Test upgraded .NET to net8 and net9. All projects targeting net6.0 (or other end-of-life .NET target frameworks) should pin their version of Microsoft.NET.Test.SDK to 17.13.0, or update the projects to net8 or newer. We remain backwards compatible with previous versions of Microsoft.NET.Test.SDK. This change does NOT prevent you from:
It also has no impact on .NET Framework projects, where we continue targeting .NET Framework 4.6.2.
Changes
Internal version updates and fixes
New Contributors
... (truncated)
17.14.0-preview-25107-01
What's Changed
.NET versions updated
This version of VS Test upgraded .NET to net8 and net9. All projects targeting net6.0 (or other end-of-life .NET target frameworks) should pin their version of Microsoft.NET.Test.SDK to 17.13.0, or update the projects to net8 or newer. We remain backwards compatible with previous versions of Microsoft.NET.Test.SDK. This change does NOT prevent you from:
It also has no impact on .NET Framework projects, where we continue targeting .NET Framework 4.6.2.
Changes
Internal version updates and fixes
Will probably revert before release:
New Contributors
Full Changelog: microsoft/vstest@v17.13.0...v17.14.0-preview-25107-01
17.13.0
What's Changed
Add letter number among valid identifiers in class name by @nohwnd in Add letter number among valid identifiers in class name microsoft/vstest#13868
Fix formatting in Runner by @mthalman in Fix formatting in Runner microsoft/vstest#13871
Downgrade xunit skip warning to info by @nohwnd in Downgrade xunit skip warning to info microsoft/vstest#10381
Add msdia for arm64 into nuget by @nohwnd in Add msdia for arm64 into nuget microsoft/vstest#10382
Enable native debugging for vstest.console by @ocitrev in Enable native debugging for vstest.console microsoft/vstest#10401
Fix RFCs links by @Youssef1313 in Fix RFCs links microsoft/vstest#10424
Convert to auto property by @nohwnd in Convert to auto property microsoft/vstest#10365
Update Versions.props by @nohwnd in Update Versions.props microsoft/vstest#10378
Enable TSA by @jakubch1 in Enable TSA microsoft/vstest#10385
Arm64 dia by @nohwnd in Arm64 dia microsoft/vstest#10390
Update source-build team references by @MichaelSimons in Update source-build team references microsoft/vstest#10388
Exclude .signature.p7s from nupkg file count by @ellahathaway in Exclude .signature.p7s from nupkg file count microsoft/vstest#10418
Set NetCurrent so that it doesn't roll forward automatically by @ViktorHofer in Set NetCurrent so that it doesn't roll forward automatically microsoft/vstest#10622
New Contributors
Full Changelog: microsoft/vstest@v17.12.0...v17.13.0
Commits viewable in compare view.
Updated xunit from 2.9.2 to 2.9.3.
Release notes
Sourced from xunit's releases.
No release notes found for this version range.
Commits viewable in compare view.
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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