chore: Bump the dotnet-minor-patch group with 8 updates - #80
Open
dependabot[bot] wants to merge 1 commit into
Open
dependabot[bot] wants to merge 1 commit into
dependabot[bot] wants to merge 1 commit into
Conversation
Bumps AWSSDK.DynamoDBv2 from 4.0.103.5 to 4.0.103.7 Bumps AWSSDK.Extensions.NETCore.Setup from 4.0.101.1 to 4.0.101.3 Bumps Compono from 1.0.0 to 1.2.1 Bumps Compono.TestDoubles from 1.0.0 to 1.2.1 Bumps Compono.XunitV3 from 1.0.0 to 1.2.1 Bumps Microsoft.Extensions.Diagnostics.Testing from 10.9.0 to 10.10.0 Bumps Microsoft.NET.Test.Sdk from 18.9.0 to 18.10.0 Bumps Microsoft.SourceLink.GitHub from 10.0.400 to 10.0.401 --- updated-dependencies: - dependency-name: AWSSDK.DynamoDBv2 dependency-version: 4.0.103.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet-minor-patch - dependency-name: AWSSDK.Extensions.NETCore.Setup dependency-version: 4.0.101.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet-minor-patch - dependency-name: Compono dependency-version: 1.2.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dotnet-minor-patch - dependency-name: Compono.TestDoubles dependency-version: 1.2.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dotnet-minor-patch - dependency-name: Compono.XunitV3 dependency-version: 1.2.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dotnet-minor-patch - dependency-name: Microsoft.Extensions.Diagnostics.Testing dependency-version: 10.10.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dotnet-minor-patch - dependency-name: Microsoft.NET.Test.Sdk dependency-version: 18.10.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dotnet-minor-patch - dependency-name: Microsoft.SourceLink.GitHub dependency-version: 10.0.401 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet-minor-patch ... Signed-off-by: dependabot[bot] <support@github.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 AWSSDK.DynamoDBv2 from 4.0.103.5 to 4.0.103.7.
Release notes
Sourced from AWSSDK.DynamoDBv2's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated AWSSDK.Extensions.NETCore.Setup from 4.0.101.1 to 4.0.101.3.
Release notes
Sourced from AWSSDK.Extensions.NETCore.Setup's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Compono from 1.0.0 to 1.2.1.
Release notes
Sourced from Compono's releases.
1.2.1
Summary
Compono 1.2.1 fixes a bug present in every previously published release (
v0.1.0throughv1.2.0): the packaged source generator (Compono.Generators.dll) was built against a Roslyn compiler version newer than what the .NET 8/9/10 stable SDKs bundle. Roslyn silently refuses to load an analyzer built against a newer compiler than the host's own (a build warning,CS9057, never an error), so on any of those stable SDKs the generator simply never ran — composition that depends on a generated plan failed at runtime with a misleading "no generated plan"CompositionExceptioninstead of a clear build-time signal. This went unnoticed because this repo's own CI, and every consumer used to validate releases, pin a.NET 11preview SDK, whose bundled compiler was new enough.Microsoft.CodeAnalysis.CSharpis now pinned to4.11.0— confirmed to be a hard technical floor (the generator's own code requires a Roslyn API that doesn't exist below that version) rather than a preference, and empirically verified clean across all four officially-supported SDKs (net8.0/net9.0/net10.0/net11.0). Buildingnet8.0projects against Compono now requires .NET SDK8.0.400or later — see the installation guide for details.Changes
🐛 Bug Fixes
1.2.0
Summary
Compono 1.2.0 adds
Compono.Options, a new package givingIOptions<T>/IOptionsSnapshot<T>/IOptionsMonitor<T>first-class, coherent test support.TestOptionsSource<T>is a hand-written, reflection-free source of truth for a settings type — construct it directly, wire it into composition with a singleUseOptions<T>()call, and all three Microsoft Options interfaces resolve consistently from it (matching realIOptions<T>/IOptionsSnapshot<T>identity semantics exactly, and closing the correctness gaps in the community's standard hand-rolledIOptionsMonitor<T>fake: broken named options, single-subscriberOnChange, a no-opIDisposable). Also ships a Configuration Cookbook covering plainIConfigurationcomposition independently, sinceCompono.Optionsdoesn't touchIConfigurationitself.Changes
🚀 Features
1.1.0
Summary
Compono 1.1.0 expands the test-doubles and HTTP-testing surfaces without touching any existing API.
CallVerifiergainsAtLeast(int)/AtMost(int)count assertions alongside the existingNever/Once/Exactly, reachable everywhereCallVerifieralready is (Compono.TestDoubles,Compono.Http,Compono.Logging).Compono.TestDoublesgains two new retrospective-inspection capabilities on every generated double:ReceivedCalls()for snapshot-based access to a member's actual call arguments (scoped to non-overloaded eligible members), andClearCalls()to reset observation history between test phases while preserving all configured behavior.Compono.HttpaddsRespondBytes(byte[], mediaType)for serving raw binary response payloads, closing the gap betweenRespondTextandRespondJson.Changes
🚀 Features
Commits viewable in compare view.
Updated Compono.TestDoubles from 1.0.0 to 1.2.1.
Updated Compono.XunitV3 from 1.0.0 to 1.2.1.
Updated Microsoft.Extensions.Diagnostics.Testing from 10.9.0 to 10.10.0.
Release notes
Sourced from Microsoft.Extensions.Diagnostics.Testing's releases.
10.10.0
This month's release focuses on AI package reliability: closing gaps in evaluation scoring, hardening OpenAI image-option handling, and removing the deprecated OpenAI Assistants API support.
Experimental API Changes
Removed Experimental APIs
OPENAI001) #7724What's Changed
AI
AI Evaluation
Repository Infrastructure Updates
Acknowledgements
Full Changelog: dotnet/extensions@v10.9.0...v10.10.0
Commits viewable in compare view.
Updated Microsoft.NET.Test.Sdk from 18.9.0 to 18.10.0.
Release notes
Sourced from Microsoft.NET.Test.Sdk's releases.
18.10.0
What's Changed
vstest.consoleand datacollector by @nohwnd in Run Microsoft.Testing.Platform test apps under vstest.console and datacollector microsoft/vstest#16201Full Changelog: microsoft/vstest@v18.9.0...v18.10.0
Commits viewable in compare view.
Updated Microsoft.SourceLink.GitHub from 10.0.400 to 10.0.401.
Release notes
Sourced from Microsoft.SourceLink.GitHub's releases.
10.0.401
Release
What's Changed
... (truncated)
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