Bump the nuget group with 11 updates#16
Open
dependabot[bot] wants to merge 1 commit into
Open
Conversation
Bumps Aspire.Hosting.AppHost from 13.4.0 to 13.4.3 Bumps Aspire.Hosting.PostgreSQL from 13.4.0 to 13.4.3 Bumps FsCheck.Xunit from 2.16.6 to 3.3.3 Bumps Microsoft.AspNetCore.Authentication.JwtBearer from 10.0.8 to 10.0.9 Bumps Microsoft.AspNetCore.Components.Web from 10.0.8 to 10.0.9 Bumps Microsoft.AspNetCore.Identity.EntityFrameworkCore from 10.0.8 to 10.0.9 Bumps Microsoft.AspNetCore.Mvc.Testing from 10.0.8 to 10.0.9 Bumps Microsoft.AspNetCore.OpenApi from 10.0.8 to 10.0.9 Bumps Microsoft.EntityFrameworkCore.Design from 10.0.8 to 10.0.9 Bumps Microsoft.EntityFrameworkCore.Tools from 10.0.8 to 10.0.9 Bumps Polly from 8.6.6 to 8.7.0 --- updated-dependencies: - dependency-name: Aspire.Hosting.AppHost dependency-version: 13.4.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget - dependency-name: Aspire.Hosting.PostgreSQL dependency-version: 13.4.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget - dependency-name: FsCheck.Xunit dependency-version: 3.3.3 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget - dependency-name: Microsoft.AspNetCore.Authentication.JwtBearer dependency-version: 10.0.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget - dependency-name: Microsoft.AspNetCore.Components.Web dependency-version: 10.0.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget - dependency-name: Microsoft.AspNetCore.Identity.EntityFrameworkCore dependency-version: 10.0.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget - dependency-name: Microsoft.AspNetCore.Mvc.Testing dependency-version: 10.0.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget - dependency-name: Microsoft.AspNetCore.OpenApi dependency-version: 10.0.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget - dependency-name: Microsoft.EntityFrameworkCore.Design dependency-version: 10.0.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget - dependency-name: Microsoft.EntityFrameworkCore.Tools dependency-version: 10.0.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget - dependency-name: Polly dependency-version: 8.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget ... 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 Aspire.Hosting.AppHost from 13.4.0 to 13.4.3.
Release notes
Sourced from Aspire.Hosting.AppHost's releases.
13.4.3
What's New in Aspire 13.4.3
Patch release for Aspire 13.4 with a fix for persistent container endpoint allocation regressions introduced in 13.4.
🐛 Fixes
isProxied: falseorWithEndpointProxySupport(false). Proxyless container endpoints with only atargetPortspecified now also resolve immediately to that port instead of waiting for delayed allocation. (#17960,@danegsta)🏷️ Housekeeping
Full Changelog: microsoft/aspire@v13.4.2...v13.4.3
Full commit: 4f218933552e18ff2874d1b6d5dc3fe671e3b6d9
13.4.2
What's New in Aspire 13.4.2
Patch release for Aspire 13.4 with a fix for Redis persistent container deadlock on startup when using TLS.
🐛 Fixes
WithLifetime(ContainerLifetime.Persistent)could deadlock on startup — Redis TLS startup arguments used the public/allocated host ports instead of the internal target ports. When the public port differed from the target port (or was not yet allocated) the container would listen on an unexpected port and become unreachable. The TLS and non-TLS startup arguments now bind to target ports, matching what Redis expects internally. Fixes #17822. (#17827, backported via #17850,@danegsta)🏷️ Housekeeping
Full Changelog: microsoft/aspire@v13.4.1...v13.4.2
Full commit: d7d0b6759ce4b936c76bc4775814d27db560dd6d
13.4.1
What's New in Aspire 13.4.1
Patch release for Aspire 13.4 with fixes for explicit-start resource lifecycle callbacks, Redis persistent container startup, proxyless endpoint allocation, and a duplicated
profilesblock in the empty C# AppHost template.🐛 Fixes
WithExplicitStart()were having their execution configuration callbacks (environment variables, arguments, certificates) evaluated at AppHost startup instead of at manual start. This meant user-interaction callbacks such asWithEnvironment(ctx => PromptForValueAsync(...))were called before the user triggered the resource. DCP registration is now deferred until the user manually starts the resource; persistent explicit-start resources still register immediately but patch the existing DCP record toStart = truerather than deleting and recreating it. Fixes #17813. (#17825, backported via #17826,@danegsta)WithLifetime(ContainerLifetime.Persistent)could deadlock on startup — Redis TLS startup arguments used the public/allocated host ports instead of the internal target ports. When the public port differed from the target port (or was not yet allocated) the container would listen on an unexpected port and become unreachable. The TLS and non-TLS startup arguments now bind to target ports, matching what Redis expects internally. Fixes #17822. (#17827, backported via #17850,@danegsta)BuildContainerPortsruns, normal DCP dynamic port assignment takes over for any later resolution. (#17851, backported via #17859,@danegsta)profilesblock —aspire new aspire-emptyon 13.4 produced anaspire.config.jsonwith aprofilesblock that duplicated the content already present inapphost.run.json, causing redundant launch configuration. The embedded template now contains only the requiredappHost.pathbinding; profile configuration lives exclusively inapphost.run.json. Fixes #17660. (#17781, backported via #17820,@mitchdenny)🏷️ Housekeeping
@adamint)Full Changelog: microsoft/aspire@v13.4.0...v13.4.1
Full commit: cf985fa817dd5863e7f62eb74fa1725ab5069ed2
Commits viewable in compare view.
Updated Aspire.Hosting.PostgreSQL from 13.4.0 to 13.4.3.
Release notes
Sourced from Aspire.Hosting.PostgreSQL's releases.
13.4.3
What's New in Aspire 13.4.3
Patch release for Aspire 13.4 with a fix for persistent container endpoint allocation regressions introduced in 13.4.
🐛 Fixes
isProxied: falseorWithEndpointProxySupport(false). Proxyless container endpoints with only atargetPortspecified now also resolve immediately to that port instead of waiting for delayed allocation. (#17960,@danegsta)🏷️ Housekeeping
Full Changelog: microsoft/aspire@v13.4.2...v13.4.3
Full commit: 4f218933552e18ff2874d1b6d5dc3fe671e3b6d9
13.4.2
What's New in Aspire 13.4.2
Patch release for Aspire 13.4 with a fix for Redis persistent container deadlock on startup when using TLS.
🐛 Fixes
WithLifetime(ContainerLifetime.Persistent)could deadlock on startup — Redis TLS startup arguments used the public/allocated host ports instead of the internal target ports. When the public port differed from the target port (or was not yet allocated) the container would listen on an unexpected port and become unreachable. The TLS and non-TLS startup arguments now bind to target ports, matching what Redis expects internally. Fixes #17822. (#17827, backported via #17850,@danegsta)🏷️ Housekeeping
Full Changelog: microsoft/aspire@v13.4.1...v13.4.2
Full commit: d7d0b6759ce4b936c76bc4775814d27db560dd6d
13.4.1
What's New in Aspire 13.4.1
Patch release for Aspire 13.4 with fixes for explicit-start resource lifecycle callbacks, Redis persistent container startup, proxyless endpoint allocation, and a duplicated
profilesblock in the empty C# AppHost template.🐛 Fixes
WithExplicitStart()were having their execution configuration callbacks (environment variables, arguments, certificates) evaluated at AppHost startup instead of at manual start. This meant user-interaction callbacks such asWithEnvironment(ctx => PromptForValueAsync(...))were called before the user triggered the resource. DCP registration is now deferred until the user manually starts the resource; persistent explicit-start resources still register immediately but patch the existing DCP record toStart = truerather than deleting and recreating it. Fixes #17813. (#17825, backported via #17826,@danegsta)WithLifetime(ContainerLifetime.Persistent)could deadlock on startup — Redis TLS startup arguments used the public/allocated host ports instead of the internal target ports. When the public port differed from the target port (or was not yet allocated) the container would listen on an unexpected port and become unreachable. The TLS and non-TLS startup arguments now bind to target ports, matching what Redis expects internally. Fixes #17822. (#17827, backported via #17850,@danegsta)BuildContainerPortsruns, normal DCP dynamic port assignment takes over for any later resolution. (#17851, backported via #17859,@danegsta)profilesblock —aspire new aspire-emptyon 13.4 produced anaspire.config.jsonwith aprofilesblock that duplicated the content already present inapphost.run.json, causing redundant launch configuration. The embedded template now contains only the requiredappHost.pathbinding; profile configuration lives exclusively inapphost.run.json. Fixes #17660. (#17781, backported via #17820,@mitchdenny)🏷️ Housekeeping
@adamint)Full Changelog: microsoft/aspire@v13.4.0...v13.4.1
Full commit: cf985fa817dd5863e7f62eb74fa1725ab5069ed2
Commits viewable in compare view.
Updated FsCheck.Xunit from 2.16.6 to 3.3.3.
Release notes
Sourced from FsCheck.Xunit's releases.
3.3.3
Add Gen.pick and Gen.tryPick functions.
Fill NullReferenceException when using Replay with an Implies combinator.
Improve behavior of stamps and labels when using And/Or property combinators.
3.3.2
Fixed FsCheck.NUnit failure reporting. (by Brian Rourke Boll)
Added a replay hint to failure message. (by Brian Rourke Boll)
3.3.1
Update xunit.v3.extensibility.core to v3.0.1 to fix a test discovery issue. (by Hyogeol Lee)
3.3.0
Added FsCheck.Xunit.v3. (by JohSand)
3.2.0
Support C# struct record generation. (by Brian Rourke Boll)
Xunit
PropertyrespectsIAsyncLifetime. (by Arialdo Martini)3.1.0
Support Async<'Testable> & Task<'Testable>. Slight behavior change: an explicit upcast to non-generic
Task(:> Task) is now needed for tests involvingTask<'T>where'Tis not itself a testable type. (by Brian Rourke Boll)3.0.1
3.0.0
Fix stamp missing for final test. (by Calum Sieppert)
FsCheck.NUnit: updated to NUnit 4. (with David Naylor)
FsCheck.NUnit: implement PropertiesAttribute. (by Oleksandr Bogomaz)
FsCheck.NUnit: handle NUnit's signalling exceptions. (by Oleksandr Bogomaz)
FsCheck.Xunit: fixed MissingMethodException caused by integration issue with xunit 2.9.x.
3.0.0-rc3
StringNoNnullsis renamed toStringNoNullChar.|@,@|and%>are removed. Please useProp.labelinstead.ForAlloverloads for variousTasktypes.NonEmptySet,NonEmptyArrayandFixedLengthArraynow implementIEnnumerableto avoid a call toGetin common scenarios.3.0.0-rc2
Negative decimals are now also generated. (by Stephen Smith)
Relax FsCheck.Xunit's restriction on xUnit versions. (by Tom Rijnbeek)
Made
Gen.choose64public.Remove dependency on FAKE and paket in favor of standard .NET tools. (by Patrick Stevens)cription of the release
3.0.0-rc1
Enable properties that return
Task<T>. (by Mark Seemann)Includes all changes up to 2.16.6.
3.0.0-beta2
Fixed bug that caused exceptions not to be propagated to output correctly.
Added a few missing methods in
Fluent.Arbitrary.Add a few missing
Prop.ForAlloverloads.Includes changes in 2.16.4.
3.0.0-beta1
Backwards incompatible*: Refactor and split of the
GenandArbitraryAPIs intoFsCheck.FSharpandFsCheck.Fluent. This is a first step in splitting the entire API into a functional (for F# consumers) and fluent (for C# and VB.NET consumers) interface. This should be clearer for both kinds of consumers.By and large, if you are an F# user, now
open FsCheck.FSharpin addition toopen FsCheck. If you are a C# or VB.NET user, addusing FsCheck.Fluent.Backwards incompatible*: redesigned API for per-type Arbitrary instance discovery and lookup. There is no longer a single global, mutable map of type to Arbitrary instances, instead there are any number of immutable
IArbMaps that can be configured at your leisure, and set viaConfig.WithArbitraryon the test.Detailed changes to
FsCheck.FSharp.Gen: AddedRequireQualifiedAccess. Addedapplyandbind. Renamedcollectandsequencetocollect/sequenceToList/Array/Seqfor clarity. Removedunzipandunzip3- their implementation is problematic, and it's hard to see a use case for them. RemovedsubListOfToIlist,subListOfArr- these returnedIList<'T>types. Untupledrows,colsarguments inarray2DOfDim.Detailed changes to
FsCheck.Fluent.Gen: Split into non-extension methods onGenand extension methods onGen<T>type inGenExtensions. RemovedGen.Apply- not useful without partial application.Two,Three,FourandZipnow output ValueTuples, which is idiomatic in modern C#, and are only visible as extension methods onGen<T>. Removed the overloads ofZipwith arity 3. Changed the return type of methods that returnedIList<T>previously toList<T>. Split theSamplemethod with optional arguments in three overloads, this is better for backwards compatibilty going forward.Detailed changes to
FsCheck.FSharp.Arb: RemovedfromGenShrinkFunc. Removedregister,registerByType,from,generateandshrink- these are replaced by functions onArbMap, resp.mergeWith,mergeWithType,arbitraryandgenerate. MadeArb.Defaultinternal. Default types should now be looked up usingArbMap, e.g.ArbMap.defaults |> ArbMap.arbitrary<list<int>>.Detailed changes to
FsCheck.Fluent.Arb: Removed extension methodToArbitrarythat took an F# function as argument for the shrinker. RenamadArb.Frommethods toArbitrary.From- C# does not tolerate ambiguity between using two types of the same name in the same namespace. RemovedRegister,RegisterByType,From,GenerateandShrink- these are replaced by methods onArbMap, resp.Merge<'T>,Merge,ArbForandGeneratorFor. MadeArb.Defaultinternal. Default Arbitrary types should now be looked up usingArbMap, e.g.ArbMap.Default.ArbFor<int[]>().First pass at improving XML docs for Gen API.
Fixed bug in
try..withcomputation expression builder.Added support for
let!...and!...syntax in computation expression builder.3.0.0-alpha4
Propagate thread-local arbitraries to thread pool threads that are executing tests.
3.0.0-alpha3
NuGet packaging: relax FSharp.Core constraint to 4.0 and higher for .NET Desktop.
3.0.0-alpha2
Remove PCL builds. NET Standard is the way forward. Latest FSharp.Core builds don't even include PCL versions. As a result of the FSharp.Core dependency, FsCheck targets NET Standard 1.6.
Remove Prop.within.
Remove tuple and list testables.
Bug fix: Tasks that were faulted or canceled were not detected as test failures (by chrisoverzero)
3.0.0-alpha1
Update random number generator to SplitMix algorithm. (with thanks to Jack Pappas for making it fast)
Add support for parallel and async testing. (by Sergey - great effort!)
Simplify sampling data: Gen.sample et al.
Commits viewable in compare view.
Updated Microsoft.AspNetCore.Authentication.JwtBearer from 10.0.8 to 10.0.9.
Release notes
Sourced from Microsoft.AspNetCore.Authentication.JwtBearer's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.AspNetCore.Components.Web from 10.0.8 to 10.0.9.
Release notes
Sourced from Microsoft.AspNetCore.Components.Web's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.AspNetCore.Identity.EntityFrameworkCore from 10.0.8 to 10.0.9.
Release notes
Sourced from Microsoft.AspNetCore.Identity.EntityFrameworkCore's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.AspNetCore.Mvc.Testing from 10.0.8 to 10.0.9.
Release notes
Sourced from Microsoft.AspNetCore.Mvc.Testing's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.AspNetCore.OpenApi from 10.0.8 to 10.0.9.
Release notes
Sourced from Microsoft.AspNetCore.OpenApi's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.EntityFrameworkCore.Design from 10.0.8 to 10.0.9.
Release notes
Sourced from Microsoft.EntityFrameworkCore.Design's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.EntityFrameworkCore.Tools from 10.0.8 to 10.0.9.
Release notes
Sourced from Microsoft.EntityFrameworkCore.Tools's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Polly from 8.6.6 to 8.7.0.
Release notes
Sourced from Polly's releases.
8.7.0
Highlights
What's Changed
New Contributors
Full Changelog: App-vNext/Polly@8.6.6...8.7.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