Bump the nuget group with 5 updates#2585
Open
dependabot[bot] wants to merge 1 commit into
Open
Conversation
Bumps AWSSDK.S3 from 4.0.23.3 to 4.0.24.4 Bumps Dapr.Client from 1.17.9 to 1.18.4 Bumps Swashbuckle.AspNetCore.Swagger from 10.1.7 to 10.2.1 Bumps Swashbuckle.AspNetCore.SwaggerGen from 10.1.7 to 10.2.1 Bumps Swashbuckle.AspNetCore.SwaggerUI from 10.1.7 to 10.2.1 --- updated-dependencies: - dependency-name: AWSSDK.S3 dependency-version: 4.0.24.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget - dependency-name: Swashbuckle.AspNetCore.Swagger dependency-version: 10.2.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget - dependency-name: Swashbuckle.AspNetCore.SwaggerGen dependency-version: 10.2.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget - dependency-name: Swashbuckle.AspNetCore.SwaggerUI dependency-version: 10.2.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget - dependency-name: Dapr.Client dependency-version: 1.18.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget ... Signed-off-by: dependabot[bot] <support@github.com>
Dependency ReviewThe following issues were found:
License Issuessamples/aws/aws.csproj
samples/dapr/ui/ui.csproj
OpenSSF Scorecard
Scanned Files
|
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.S3 from 4.0.23.3 to 4.0.24.4.
Release notes
Sourced from AWSSDK.S3's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Dapr.Client from 1.17.9 to 1.18.4.
Release notes
Sourced from Dapr.Client's releases.
1.18.4
What's Changed
Full Changelog: dapr/dotnet-sdk@v1.18.2...v1.18.4
1.18.2
What's Changed
WorkflowStateby @WhitWaldo in GetWorkflowStateAsync should always returnWorkflowStatedapr/dotnet-sdk#1847Full Changelog: dapr/dotnet-sdk@v1.18.1...v1.18.2
1.18.1
What's Changed
Full Changelog: dapr/dotnet-sdk@v1.18.0...v1.18.1
What's Changed
General
Dapr.SecretsManagementpackage #1794 to split secret management into its own clientDapr.StateManagementpackage #1806 to split state management into its own clientDapr.WorkflowtoDapr.Common#1805 as a precursor to having common serialization across .NET SDKActors
UnloadStateAsyncimplementation #1750 to force actors to unload their currently cached in-memory state (no impact to persisted state). The next timeGetStateAsyncis called, the cache is repopulated as normal.PubSub
SubscribeAsyncnow throwsDaprExceptionwhen the sidecar is unavailable instead of failing silently #1803Metadata
Dapr.Metadatapackage for retrieving strongly typed data from the Dapr Metadata API #1846.To use, add
Dapr.Metadatapackage from NuGet, register in DI withbuilder.Services.AddDaprMetadata()and simply injectIOptions<DaprMetadata>,IOptionsSnapshot<DaprMetadata>orIOptionsMonitor<DaprMetadata>and read the values out of the injected value.Service Invocation
InvokeMethodAsyncfamily marked[Obsolete]aligning SDK with prior runtime guidance — recommended guidance is to use a native HTTP/gRPC client for service invocation #1698.Jobs
Workflows
Dapr.Workflowmeta-project (#1822) and automatic workflow/activity registration (#1823)This means that there is no longer a need to install
Dapr.Workflow.VersioningorDapr.Workflow.Analyzersseparately. All are bundled in the oneDapr.Workflowpackage, no refactoring necessary (though you might want to remove the stale packages).... (truncated)
1.18.0-rc02
What's Changed
Full Changelog: dapr/dotnet-sdk@v1.18.0-rc01...v1.18.0-rc02
1.18.0-rc01
What's Changed
New Features
Bug Fixes
Unavailableon first RPC by @Copilot in Dapr.Testcontainers: probe gRPC port with HTTP/2 preface to eliminate transientUnavailableon first RPC dapr/dotnet-sdk#1821Miscellaneous/Infrastructure
New Contributors
Full Changelog: dapr/dotnet-sdk@v1.17.9...v1.18.0-rc01
1.18.0-rc.7
What's Changed
New Contributors
Full Changelog: dapr/dotnet-sdk@v1.18.0-rc.4...v1.18.0-rc.7
1.18.0-rc.4
What's Changed
Full Changelog: dapr/dotnet-sdk@v1.18.0-rc.3...v1.18.0-rc.4
1.18.0-rc.3
What's Changed
Full Changelog: dapr/dotnet-sdk@v1.18.0-rc02...v1.18.0-rc.3
Commits viewable in compare view.
Updated Swashbuckle.AspNetCore.Swagger from 10.1.7 to 10.2.1.
Release notes
Sourced from Swashbuckle.AspNetCore.Swagger's releases.
10.2.1
What's Changed
Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v10.2.0...v10.2.1
10.2.0
What's Changed
MapSwaggerUIandMapReDocto support endpoint routing by @Strepto in Add MapSwaggerUI and MapReDoc to support endpoint routing domaindrivendev/Swashbuckle.AspNetCore#3822HEADrequests by @snebjorn in Support HEAD requests domaindrivendev/Swashbuckle.AspNetCore#3887IAsyncSwaggerProviderin CLItofilecommand by @bt-Knodel in Use IAsyncSwaggerProvider in CLI tofile command domaindrivendev/Swashbuckle.AspNetCore#3910New Contributors
Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v10.1.7...v10.2.0
Commits viewable in compare view.
Updated Swashbuckle.AspNetCore.SwaggerGen from 10.1.7 to 10.2.1.
Release notes
Sourced from Swashbuckle.AspNetCore.SwaggerGen's releases.
10.2.1
What's Changed
Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v10.2.0...v10.2.1
10.2.0
What's Changed
MapSwaggerUIandMapReDocto support endpoint routing by @Strepto in Add MapSwaggerUI and MapReDoc to support endpoint routing domaindrivendev/Swashbuckle.AspNetCore#3822HEADrequests by @snebjorn in Support HEAD requests domaindrivendev/Swashbuckle.AspNetCore#3887IAsyncSwaggerProviderin CLItofilecommand by @bt-Knodel in Use IAsyncSwaggerProvider in CLI tofile command domaindrivendev/Swashbuckle.AspNetCore#3910New Contributors
Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v10.1.7...v10.2.0
Commits viewable in compare view.
Updated Swashbuckle.AspNetCore.SwaggerUI from 10.1.7 to 10.2.1.
Release notes
Sourced from Swashbuckle.AspNetCore.SwaggerUI's releases.
10.2.1
What's Changed
Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v10.2.0...v10.2.1
10.2.0
What's Changed
MapSwaggerUIandMapReDocto support endpoint routing by @Strepto in Add MapSwaggerUI and MapReDoc to support endpoint routing domaindrivendev/Swashbuckle.AspNetCore#3822HEADrequests by @snebjorn in Support HEAD requests domaindrivendev/Swashbuckle.AspNetCore#3887IAsyncSwaggerProviderin CLItofilecommand by @bt-Knodel in Use IAsyncSwaggerProvider in CLI tofile command domaindrivendev/Swashbuckle.AspNetCore#3910New Contributors
Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v10.1.7...v10.2.0
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