Bump the nuget group with 7 updates - #250
Merged
KaliCZ merged 1 commit intoJul 28, 2026
Merged
Conversation
Bumps Marten from 9.17.1 to 9.20.1 Bumps ModelContextProtocol from 2.0.0-preview.3 to 2.0.0-rc.2 Bumps ModelContextProtocol.AspNetCore from 2.0.0-preview.3 to 2.0.0-rc.2 Bumps Sentry.AspNetCore from 6.7.0 to 6.8.0 Bumps Sentry.OpenTelemetry.Exporter from 6.7.0 to 6.8.0 Bumps Supabase.Gotrue from 6.1.0 to 6.2.0 Bumps Supabase.Storage from 2.4.2 to 2.5.0 --- updated-dependencies: - dependency-name: Marten dependency-version: 9.20.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget - dependency-name: ModelContextProtocol dependency-version: 2.0.0-rc.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget - dependency-name: ModelContextProtocol.AspNetCore dependency-version: 2.0.0-rc.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget - dependency-name: Sentry.AspNetCore dependency-version: 6.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget - dependency-name: Sentry.OpenTelemetry.Exporter dependency-version: 6.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget - dependency-name: Supabase.Gotrue dependency-version: 6.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget - dependency-name: Supabase.Storage dependency-version: 2.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget ... Signed-off-by: dependabot[bot] <support@github.com>
KaliCZ
approved these changes
Jul 28, 2026
KaliCZ
deleted the
dependabot/nuget/backend/src/Kalandra.Api/nuget-ad49db7d7c
branch
July 28, 2026 14:53
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 Marten from 9.17.1 to 9.20.1.
Release notes
Sourced from Marten's releases.
9.20.1
Two real improvements:
What's Changed
Full Changelog: JasperFx/marten@V9.20.0...V9.20.1
9.20.0
Bug fixes around permutations of the natural key usage, new convenience mechanisms for querying for event store data
What's Changed
Full Changelog: JasperFx/marten@V9.19.0...V9.20.0
9.19.0
Marten 9.19.0 is a maintenance release adopting the coordinated JasperFx / JasperFx.Events 2.35.0 drop, with a new projection side-effect capability and a secondary-store fix.
Event sourcing
RaiseSideEffectsslice-identity overload — JasperFx.Events 2.35.0 (jasperfx#561) adds a backwards-compatible aggregation-projection overloadRaiseSideEffects(IDocumentOperations operations, TId id, IEventSlice<TDoc> slice). The newidparameter hands you the slice identity even whenslice.Snapshotis null because the aggregate was deleted in the same batch — so aMultiStreamProjectioncan recover the aggregate key to emit a follow-on event or publish a message on deletion. The original two-argument overload is unchanged, and the new one delegates to it by default. Documented with a compiled sample in Side Effects.Fixes
SecondaryStoreConfig.BuildthrewUriFormatExceptionwhen a secondary store was registered with a generic marker interface (e.g.AddMartenStore<IMartenStoreMarker<MyContext>>()). A closed generic CLR type name contains a backtick + arity, which is not a valid URI host. Themarten://subject is now sanitized (arity stripped, generic argument names folded in so distinct closed generics still map to distinct subjects).Dependencies
Notes
running_on_nodeunder managed distribution) is resolved on the Marten side and closed; the node-stamping half ships in the JasperFx 2.35.0 / Wolverine distribution layer.9.18.0
Marten 9.18.0 focuses on raw-JSON streaming endpoints for ASP.NET Core, server-side LINQ
Select()projection, and continued event-store observability work.ASP.NET Core streaming & pagination
StreamPaged<T>— stream a paged JSON envelope (pageNumber/pageSize/totalItemCount/pageCount/hasNextPage/hasPreviousPage/items) in a single round trip via acount(*) OVER()window column (#5014). Test coverage hardened to pin the camelCase wire contract, page-past-end behavior, and filtered totals (#5028).StreamPagedByCursor<T>— keyset ("seek") pagination that costs the same regardless of depth, using an opaque continuation cursor (#5016). Now streams the raw, already-persisteddatacolumn byte-identical toStreamMany/StreamPaged(no hydrate + re-serialize) by reading the next cursor's ORDER BY key values off the same reader; a malformed client-supplied cursor now returns a clean 400 instead of a 500 (#5033).If-None-Match(304) conditional-request support onStreamOne<T>andStreamAggregate<T>(#5015).StreamOne<T>now reads the document'smt_versioninline in the same single round trip (no follow-up metadata query), and thewhere T : notnullconstraint tightening was reversed (#5030).LINQ
Select()projections (x => new Dto { A = x.A, B = x.Nested.B }) now translate to a server-sidejsonb_build_object(...)expression that is streamable as raw JSON, instead of hydrating the full document and projecting on the client (#5017). Value-preserving conversions — widening numerics (int→long/decimal), boxing toobject, nullable wrapping,enum→integral underEnumStorage.AsInteger— stay translatable and streamable; only lossy/computed conversions fall back (#5032).Where()over events (#5004).AggregateToMany()LINQ operator — run an event query through a multi-stream projection (#5003).Event store, projections & daemon
extended_progression_batch_write(#5023);running_on_nodewrite-path regression coverage (#5001 / #5007). The cross-reporunning_on_nodepopulation under Wolverine-managed distribution is completed via JasperFx 2.34.0 + Wolverine.ReadStreamAsync/GetRecentStreamsAsyncoverrides honor tenancy (#5020, #5025), plus aMultiStreamProjectionstepthrough via the instrumented fold inEventStoreExplorer(#5002).ExternallyManageddaemon support (#4992).Multi-tenancy & infrastructure
Dependencies
Full changelog: JasperFx/marten@V9.17.0...V9.18.0
Commits viewable in compare view.
Updated ModelContextProtocol from 2.0.0-preview.3 to 2.0.0-rc.2.
Release notes
Sourced from ModelContextProtocol's releases.
2.0.0-rc.2
This second 2.0 release candidate advances the SDK’s
2026-07-28protocol support, expands Tasks extension conformance tests, strengthens OAuth and transport behavior, and expands 2.0 guidance ahead of general availability.Thank you to the community for using the preview and release-candidate builds and for sharing feedback and issue reports that shape this release!
Breaking Changes
Refer to the C# SDK Versioning documentation for details on versioning and breaking-change policies.
DiscoverResult.ServerInfois removed; read and deserializeMeta[MetaKeys.ServerInfo]instead.2026-07-28, replace legacy initialization, ping, logging, and resource-subscription methods withserver/discover,_metalog level, andsubscriptions/listen.statethroughAuthorizationResult.State, and should returnCode,State, andIss.IOExceptionwrapper.What's Changed
Documentation Updates
Test Improvements
_meta.uiserialization round-trip tests #1698 by @yayayouyouRepository Infrastructure Updates
... (truncated)
2.0.0-rc.1
2.0.0-rc.1 advances the v2 SDK toward general availability with stronger OAuth conformance, improved dynamic client registration, and expanded Tasks validation.
We remain on-track to release 2.0.0 stable on or before 2026-07-28.
We want to give a big thanks to @KubaZ2 for reporting the critical, ship-stopping Tasks/HTTP defect in #1720, fixed by #1722!
Breaking Changes
Refer to the C# SDK Versioning documentation for details on versioning and breaking change policies.
Remove the preview task-scope helper #1722
McpTasksServerExtensions.CreateMcpTaskScope(...)was removed from the stable surface. This affects only applications built against the v2 preview API; no stable 2.0 release has shipped.Harden OAuth issuer validation #1605
AuthorizationRedirectDelegatenow producesMCP9007, which breaks warning-as-error builds; the manual authorization flow now requires the complete redirect URL.AuthorizationCallbackHandlerand returnAuthorizationResult.Require advertised PKCE S256 support #1700
code_challenge_methods_supported: ["S256"]now cause authentication to fail instead of receiving an inferred default.Send Dynamic Client Registration application types #1613
ApplicationTypenow sends an inferredapplication_typeinstead of omitting it.DynamicClientRegistrationOptions.ApplicationTypeexplicitly when the authorization server requires another value.What's Changed
application_typein Dynamic Client Registration requests #1613 by @jayaraman-venkatesan (co-authored by @Copilot)ClientOAuthProvider#1605 by @mikekistler (co-authored by @halter73 @Copilot)Documentation Updates
release/1.x(v1.4.1) andmain(v2 preview) content #1727 by @jeffhandley (co-authored by @Copilot)Test Improvements
... (truncated)
Commits viewable in compare view.
Updated ModelContextProtocol.AspNetCore from 2.0.0-preview.3 to 2.0.0-rc.2.
Release notes
Sourced from ModelContextProtocol.AspNetCore's releases.
2.0.0-rc.2
This second 2.0 release candidate advances the SDK’s
2026-07-28protocol support, expands Tasks extension conformance tests, strengthens OAuth and transport behavior, and expands 2.0 guidance ahead of general availability.Thank you to the community for using the preview and release-candidate builds and for sharing feedback and issue reports that shape this release!
Breaking Changes
Refer to the C# SDK Versioning documentation for details on versioning and breaking-change policies.
DiscoverResult.ServerInfois removed; read and deserializeMeta[MetaKeys.ServerInfo]instead.2026-07-28, replace legacy initialization, ping, logging, and resource-subscription methods withserver/discover,_metalog level, andsubscriptions/listen.statethroughAuthorizationResult.State, and should returnCode,State, andIss.IOExceptionwrapper.What's Changed
Documentation Updates
Test Improvements
_meta.uiserialization round-trip tests #1698 by @yayayouyouRepository Infrastructure Updates
... (truncated)
2.0.0-rc.1
2.0.0-rc.1 advances the v2 SDK toward general availability with stronger OAuth conformance, improved dynamic client registration, and expanded Tasks validation.
We remain on-track to release 2.0.0 stable on or before 2026-07-28.
We want to give a big thanks to @KubaZ2 for reporting the critical, ship-stopping Tasks/HTTP defect in #1720, fixed by #1722!
Breaking Changes
Refer to the C# SDK Versioning documentation for details on versioning and breaking change policies.
Remove the preview task-scope helper #1722
McpTasksServerExtensions.CreateMcpTaskScope(...)was removed from the stable surface. This affects only applications built against the v2 preview API; no stable 2.0 release has shipped.Harden OAuth issuer validation #1605
AuthorizationRedirectDelegatenow producesMCP9007, which breaks warning-as-error builds; the manual authorization flow now requires the complete redirect URL.AuthorizationCallbackHandlerand returnAuthorizationResult.Require advertised PKCE S256 support #1700
code_challenge_methods_supported: ["S256"]now cause authentication to fail instead of receiving an inferred default.Send Dynamic Client Registration application types #1613
ApplicationTypenow sends an inferredapplication_typeinstead of omitting it.DynamicClientRegistrationOptions.ApplicationTypeexplicitly when the authorization server requires another value.What's Changed
application_typein Dynamic Client Registration requests #1613 by @jayaraman-venkatesan (co-authored by @Copilot)ClientOAuthProvider#1605 by @mikekistler (co-authored by @halter73 @Copilot)Documentation Updates
release/1.x(v1.4.1) andmain(v2 preview) content #1727 by @jeffhandley (co-authored by @Copilot)Test Improvements
... (truncated)
Commits viewable in compare view.
Updated Sentry.AspNetCore from 6.7.0 to 6.8.0.
Release notes
Sourced from Sentry.AspNetCore's releases.
6.8.0
Features ✨
Logs
log4netintegration by @Flash0ver in #5172NLogintegration by @Flash0ver in #5176Other
AddToTransactionsonSentryAttachment#5182 by @jamescrosswell in #5182SentrySdk.RecordTransactionto record already-completed transactions and spans (e.g. replayed through a proxy) #5333 by @jamescrosswell in #5333Environmentset on theScopenow gets synchronized to the native layers (sentry-cocoaandsentry-native) by @bitsandfoxes in #5365Fixes 🐛
SentrySpanProcessorno longer leaks spans whose Activity never ends (e.g. aborted requests); the Activity is now held via aWeakReferenceso orphaned spans are pruned once it is garbage-collected. by @Ermabo in #5393Dependencies ⬆️
Deps
Other
Commits viewable in compare view.
Updated Sentry.OpenTelemetry.Exporter from 6.7.0 to 6.8.0.
Release notes
Sourced from Sentry.OpenTelemetry.Exporter's releases.
6.8.0
Features ✨
Logs
log4netintegration by @Flash0ver in #5172NLogintegration by @Flash0ver in #5176Other
AddToTransactionsonSentryAttachment#5182 by @jamescrosswell in #5182SentrySdk.RecordTransactionto record already-completed transactions and spans (e.g. replayed through a proxy) #5333 by @jamescrosswell in #5333Environmentset on theScopenow gets synchronized to the native layers (sentry-cocoaandsentry-native) by @bitsandfoxes in #5365Fixes 🐛
SentrySpanProcessorno longer leaks spans whose Activity never ends (e.g. aborted requests); the Activity is now held via aWeakReferenceso orphaned spans are pruned once it is garbage-collected. by @Ermabo in #5393Dependencies ⬆️
Deps
Other
Commits viewable in compare view.
Updated Supabase.Gotrue from 6.1.0 to 6.2.0.
Release notes
Sourced from Supabase.Gotrue's releases.
6.2.0
6.2.0 (2026-07-22)
Features
Commits viewable in compare view.
Updated Supabase.Storage from 2.4.2 to 2.5.0.
Release notes
Sourced from Supabase.Storage's releases.
2.5.0
2.5.0 (2026-07-23)
Features
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