Bump Marten and 3 others#94
Closed
dependabot[bot] wants to merge 1 commit into
Closed
Conversation
Bumps Marten from 9.14.0 to 9.14.1 Bumps Marten.AspNetCore from 9.14.0 to 9.14.1 Bumps OpenTelemetry.Instrumentation.Runtime from 1.15.1 to 1.16.0 Bumps Radzen.Blazor from 11.1.2 to 11.1.3 --- updated-dependencies: - dependency-name: Marten dependency-version: 9.14.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-minor-patch - dependency-name: Marten.AspNetCore dependency-version: 9.14.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-minor-patch - dependency-name: OpenTelemetry.Instrumentation.Runtime dependency-version: 1.16.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-minor-patch - dependency-name: Radzen.Blazor dependency-version: 11.1.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-minor-patch ... Signed-off-by: dependabot[bot] <support@github.com>
dependabot
Bot
force-pushed
the
dependabot/nuget/nuget-minor-patch-d907492cad
branch
from
July 12, 2026 05:24
ff47dd0 to
8ef50a2
Compare
Contributor
Author
|
Superseded by #96. |
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.14.0 to 9.14.1.
Release notes
Sourced from Marten's releases.
9.14.1
Marten 9.14.1 is a patch release focused on a substantial round of LINQ query-translation improvements, plus event-store partitioning, high-water, and AoT fixes, and refreshed Weasel/JasperFx dependencies.
LINQ query translation
This release significantly expands what the LINQ provider can push down to PostgreSQL instead of falling back to slower strategies or throwing:
Any(predicate)filters now translate to JSONPath and OR-of-containment strategies, and the old explode/ctidfallback has been replaced by a correlatedEXISTSstrategy.All()shapes and duplicated array fields moved onto the sameEXISTSstrategy. The net effect is correct, index-friendlier SQL for nested-collection predicates.Where()clauses is now supported (e.g.x.Children[0].Name == "...").Sum/Min/Max/Average— can now be used insideWhere()clauses.Regex.IsMatch()is translated inWhere()clauses.IComparable.CompareTo()now works for non-string comparables such asGuid(#4920), alongside broaderCompareTo()coverage,stringIsOneOfvia the?|operator, andCollectionIsEmptyviaICollectionAware.GinIndexJsonDataMember()was added for member-scoped expression GIN indexes.#4916 — subclass queries now use duplicated fields and the base id
Querying a document subclass and filtering on a
Duplicate()'d field or the base-class id previously emitted a JSONB filter (CAST(d.data ->> 'FarmId' as uuid)) instead of the real column, missing the duplicated column and the primary-key index:A subclass shares its parent's table, so the parent's column-backed members (duplicated fields, the id, the soft-delete flag) are now inherited by the subclass's query member resolution. Querying the parent type was already correct and is unchanged.
Event store, partitioning & daemon
UseTenantPartitionedEvents. Registering a tenant whose partition suffix contains a-(so every GUID tenant id) madeApplyAllConfiguredChangesToDatabaseAsync()throw42601because the per-tenantCREATE SEQUENCE/DROP SEQUENCEDDL emitted the identifier unquoted. The schema-apply statements are now quoted (matching the quick-append function and the imperative provisioning path), so hyphenated tenants migrate cleanly. Quote — not sanitize — so the append function can still resolve the sequence by its raw suffix.ObjectDisposedExceptionpath latches-and-rethrows so a HotCold cold node's leadership loop terminates instead of re-polling a disposed data source during shutdown.UseTenantPartitionedEventsthe store-global high-water agent was continuously runningselect max(seq_id) from mt_events, an unfiltered scan that fans out across every tenant partition on every poll. That store-global mark is not used to advance tenant projections (they advance per-tenant), so the recurring scan is now skipped under partitioning; tenant high water is driven by the per-tenant coordinator and poll timer.GetProjectionStatusesAsyncnow resolves the correct named database.AoT / trimming
AddEventType/QueryRawEventDataOnlygeneric-constraint tightening was reversed, and event-mapping construction now routes through the cachedGenericFactoryCachewhile preserving the trimming root (#4930).Dependencies
ShardState.DatabaseIdentifier(jasperfx#501).Closed issues
#4913, #4915, #4916, #4917, #4924, and jasperfx#502.
Commits viewable in compare view.
Pinned Marten.AspNetCore at 9.14.1.
Release notes
Sourced from Marten.AspNetCore's releases.
9.14.1
Marten 9.14.1 is a patch release focused on a substantial round of LINQ query-translation improvements, plus event-store partitioning, high-water, and AoT fixes, and refreshed Weasel/JasperFx dependencies.
LINQ query translation
This release significantly expands what the LINQ provider can push down to PostgreSQL instead of falling back to slower strategies or throwing:
Any(predicate)filters now translate to JSONPath and OR-of-containment strategies, and the old explode/ctidfallback has been replaced by a correlatedEXISTSstrategy.All()shapes and duplicated array fields moved onto the sameEXISTSstrategy. The net effect is correct, index-friendlier SQL for nested-collection predicates.Where()clauses is now supported (e.g.x.Children[0].Name == "...").Sum/Min/Max/Average— can now be used insideWhere()clauses.Regex.IsMatch()is translated inWhere()clauses.IComparable.CompareTo()now works for non-string comparables such asGuid(#4920), alongside broaderCompareTo()coverage,stringIsOneOfvia the?|operator, andCollectionIsEmptyviaICollectionAware.GinIndexJsonDataMember()was added for member-scoped expression GIN indexes.#4916 — subclass queries now use duplicated fields and the base id
Querying a document subclass and filtering on a
Duplicate()'d field or the base-class id previously emitted a JSONB filter (CAST(d.data ->> 'FarmId' as uuid)) instead of the real column, missing the duplicated column and the primary-key index:A subclass shares its parent's table, so the parent's column-backed members (duplicated fields, the id, the soft-delete flag) are now inherited by the subclass's query member resolution. Querying the parent type was already correct and is unchanged.
Event store, partitioning & daemon
UseTenantPartitionedEvents. Registering a tenant whose partition suffix contains a-(so every GUID tenant id) madeApplyAllConfiguredChangesToDatabaseAsync()throw42601because the per-tenantCREATE SEQUENCE/DROP SEQUENCEDDL emitted the identifier unquoted. The schema-apply statements are now quoted (matching the quick-append function and the imperative provisioning path), so hyphenated tenants migrate cleanly. Quote — not sanitize — so the append function can still resolve the sequence by its raw suffix.ObjectDisposedExceptionpath latches-and-rethrows so a HotCold cold node's leadership loop terminates instead of re-polling a disposed data source during shutdown.UseTenantPartitionedEventsthe store-global high-water agent was continuously runningselect max(seq_id) from mt_events, an unfiltered scan that fans out across every tenant partition on every poll. That store-global mark is not used to advance tenant projections (they advance per-tenant), so the recurring scan is now skipped under partitioning; tenant high water is driven by the per-tenant coordinator and poll timer.GetProjectionStatusesAsyncnow resolves the correct named database.AoT / trimming
AddEventType/QueryRawEventDataOnlygeneric-constraint tightening was reversed, and event-mapping construction now routes through the cachedGenericFactoryCachewhile preserving the trimming root (#4930).Dependencies
ShardState.DatabaseIdentifier(jasperfx#501).Closed issues
#4913, #4915, #4916, #4917, #4924, and jasperfx#502.
Commits viewable in compare view.
Updated OpenTelemetry.Instrumentation.Runtime from 1.15.1 to 1.16.0.
Release notes
Sourced from OpenTelemetry.Instrumentation.Runtime's releases.
1.16.0
NuGet: OpenTelemetry.Extensions.AWS v1.16.0
Fix sampling behaviour to be compatible with .NET 11.
(#4396)
Updated OpenTelemetry core component version(s) to
1.16.0.(#4487)
See CHANGELOG for details.
NuGet: OpenTelemetry.Instrumentation.AWS v1.16.0
Add instrumentation scope version and schema URL to metrics and traces.
(#4063)
Pass AWS attribute values to created meters as tags.
(#4063)
Capture SNS
TopicArnas theaws.sns.topic.arnspan attribute.(#4043)
Add
cloud.regionattribute to all AWS SDK client spans.(#4043)
Add messaging attributes for AWS SNS and SQS.
(#4043)
BREAKING: Update latest AWS Semantic Conventions to 1.40.0.
(#4043)
Fix suppression scope leakage when
SuppressDownstreamInstrumentationisenabled.
(#4304)
See CHANGELOG for details.
NuGet: OpenTelemetry.Instrumentation.AWSLambda v1.16.0
Update
System.Text.Jsonfornetstandard2.0to8.0.5.(#4154)
Add instrumentation scope version and schema URL to traces.
(#4063)
See CHANGELOG for details.
1.16.0-rc.1
NuGet: OpenTelemetry.Instrumentation.Process v1.16.0-rc.1
Updated semantic conventions to
v1.42.0.
(#4602)
process.cpu.timemetric attributeprocess.cpu.statewas renamed to
cpu.mode.process.uptimemetric.process.windows.handle.countmetric (Windows only).process.unix.file_descriptor.countmetric (Linux only).Assemblies are now digitally signed using cosign.
(#4637)
Updated semantic conventions to
v1.43.0
and marked package as release candidate.
(#4675)
See CHANGELOG for details.
1.16.0-beta.1
NuGet: OpenTelemetry.Instrumentation.ServiceFabricRemoting v1.16.0-beta.1
Raised the minimum required version of
Microsoft.ServiceFabric.ActorsandMicrosoft.ServiceFabric.Services.Remotingfrom7.1.2448to8.4.268, as the7.1Service Fabric runtime is going out of support.(#4510)
Updated OpenTelemetry core component version(s) to
1.16.0.(#4487)
See CHANGELOG for details.
1.16.0-alpha.1
NuGet: OpenTelemetry.Instrumentation.EventCounters v1.16.0-alpha.1
Fixed
OnEventWrittenprocessing events from EventSources that were notconfigured via
AddEventSources.(#4031)
Updated OpenTelemetry core component version(s) to
1.16.0.(#4487)
See CHANGELOG for details.
1.15.2
NuGet: OpenTelemetry.Exporter.Geneva v1.15.2
1.15.3.(#4166)
See CHANGELOG for details.
Commits viewable in compare view.
Updated Radzen.Blazor from 11.1.2 to 11.1.3.
Release notes
Sourced from Radzen.Blazor's releases.
11.1.3
11.1.3 - 2026-07-10
Improvements
Culture(exposed as a newWorkbook.Cultureproperty, defaulting to the current culture). It drives cell input parsing (including comma-decimal entry like10,50and day-month date handling), edit and display rendering, number formats (separators, month names and AM/PM designators follow the culture while format codes stay canonical), formula entry and display with ExcelFormulaLocalsemantics (;argument separators and,decimals in comma-decimal cultures), and dialog input for data validation, conditional formats and filters. XLSX and CSV files continue to read and write canonical invariant values regardless of the workbook culture, and malformed formulas now surface as formula errors instead of throwing. Includes new localization demos for Spreadsheet and Document Processing. Note: headless code on non-en-US hosts now parses string values with the host culture — setWorkbook.Cultureexplicitly (e.g. toInvariantCulture) for host-independent processing.data-seriesindexattribute, making it possible to establish a direct link between a series and its labels. Thanks to @wimsoetens-cmd!Fixes
Commits viewable in compare view.