Bump the nuget-minor-patch group with 7 updates#96
Merged
Conversation
Bumps AndreGoepel.Design.Blazor from 1.0.1 to 1.0.2 Bumps Marten from 9.14.0 to 9.14.1 Bumps Marten.AspNetCore from 9.14.0 to 9.14.1 Bumps Microsoft.Playwright from 1.49.0 to 1.61.0 Bumps OpenTelemetry.Instrumentation.Runtime from 1.15.1 to 1.16.0 Bumps Otp.NET from 1.4.0 to 1.4.1 Bumps Radzen.Blazor from 11.1.2 to 11.1.3 --- updated-dependencies: - dependency-name: AndreGoepel.Design.Blazor dependency-version: 1.0.2 dependency-type: direct:production update-type: version-update:semver-patch 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 - 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: Microsoft.Playwright dependency-version: 1.61.0 dependency-type: direct:production update-type: version-update:semver-minor 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: Otp.NET dependency-version: 1.4.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-minor-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Closed
This was referenced Jul 12, 2026
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 AndreGoepel.Design.Blazor from 1.0.1 to 1.0.2.
Release notes
Sourced from AndreGoepel.Design.Blazor's releases.
1.0.2
What's Changed
New Contributors
Full Changelog: andregoepel/design-blazor@v1.0.1...v1.0.2
Commits viewable in compare view.
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.
Updated Marten.AspNetCore from 9.14.0 to 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 Microsoft.Playwright from 1.49.0 to 1.61.0.
Release notes
Sourced from Microsoft.Playwright's releases.
1.61.0
🔑 WebAuthn passkeys
New Credentials virtual authenticator, available via BrowserContext.Credentials, lets tests register passkeys and answer
navigator.credentials.create()/navigator.credentials.get()ceremonies in the page — no real hardware key required, works in all browsers:You can also let the app register a passkey once in a setup test, read it back with Credentials.GetAsync(), and seed it into later tests — see Credentials for details.
🗃️ Web Storage
New WebStorage API, available via Page.LocalStorage and Page.SessionStorage, reads and writes the page's storage for the current origin:
New APIs
ArtifactsDirin BrowserType.ConnectOverCDPAsync() controls where artifacts such as traces and downloads are stored when attached to an existing browser.Cursorin Screencast.ShowActionsAsync() controls the cursor decoration rendered for pointer actions.OnFramecallback in Screencast.StartAsync() now receives aTimestampof when the frame was presented by the browser.🛠️ Other improvements
Browser Versions
This version was also tested against the following stable channels:
... (truncated)
1.60.0
💬 Custom assertion messages
Expect()overloads now accept a custom message that is prepended to any failure, giving extra context in test reports:When the assertion fails, the message is prefixed:
🌐 HAR recording on Tracing
Tracing.StartHarAsync() / Tracing.StopHarAsync() expose HAR recording as a first-class tracing API, with the same
Content,ModeandUrlFilteroptions asRecordHar:🪝 Drop API
New Locator.DropAsync() simulates an external drag-and-drop of files or clipboard-like data onto an element. Playwright dispatches
dragenter,dragover, anddropwith a synthetic [DataTransfer] in the page context — works cross-browser and is great for testing upload zones:🎯 Aria snapshots
Page.Locator("body").Boxesoption on Locator.AriaSnapshotAsync() / Page.AriaSnapshotAsync() appends each element's bounding box as[box=x,y,width,height], useful for AI consumption.... (truncated)
1.59.0
🎬 Screencast
New Page.Screencast API provides a unified interface for capturing page content with:
Screencast recording — record video with precise start/stop control, as an alternative to the
recordVideoDiroption:Action annotations — enable built-in visual annotations that highlight interacted elements and display action titles during recording:
ShowActionsAsyncacceptsPosition("top-left","top","top-right","bottom-left","bottom","bottom-right"),Duration(ms per annotation), andFontSize(px). Returns a disposable to stop showing actions.Visual overlays — add chapter titles and custom HTML overlays on top of the page for richer narration:
Real-time frame capture — stream JPEG-encoded frames for custom processing like thumbnails, live previews, AI vision, and more:
... (truncated)
1.58.0
Trace Viewer Improvements
Thanks to @cpAdm for contributing these improvements!
Miscellaneous
BrowserType.ConnectOverCDPAsync() now accepts an
IsLocaloption. When set totrue, it tells Playwright that it runs on the same host as the CDP server, enabling file system optimizations.Breaking Changes⚠️
_reactand_vueselectors. See locators guide for alternatives.:lightselector engine suffix. Use standard CSS selectors instead.Devtoolsfrom BrowserType.LaunchAsync() has been removed. UseArgs = new[] { "--auto-open-devtools-for-tabs" }instead.Browser Versions
1.57.0
Chrome for Testing
Starting with this release, Playwright switches from Chromium, to using Chrome for Testing builds. Both headed and headless browsers are subject to this. Your tests should still be passing after upgrading to Playwright 1.57.
We're expecting no functional changes to come from this switch. The biggest change is the new icon and title in your toolbar.
If you still see an unexpected behaviour change, please file an issue.
On Arm64 Linux, Playwright continues to use Chromium.
Breaking Change
After 3 years of being deprecated, we removed
Page.Accessibilityfrom our API. Please use other libraries such as Axe if you need to test page accessibility. See our Node.js guide for integration with Axe.New APIs
Stepsin Locator.ClickAsync() and Locator.DragToAsync() that configures the number ofmousemoveevents emitted while moving the mouse pointer to the target element.Browser Versions
1.56.0
New APIs
Breaking Changes
Miscellaneous
inputplaceholderBrowser Versions
1.55.0
Codegen
ToBeVisibleAsync()assertions: Codegen can now generate automaticToBeVisibleAsync()assertions for common UI interactions. This feature can be enabled in the Codegen settings UI.Breaking Changes
Miscellaneous
Microsoft.Playwright.Xunit.v3Microsoft.Playwright.MSTest.v4Browser Versions
This version was also tested against the following stable channels:
1.54.0
Highlights
New cookie property
PartitionKeyin browserContext.cookies() and browserContext.addCookies(). This property allows to save and restore partitioned cookies. See CHIPS MDN article for more information. Note that browsers have different support and defaults for cookie partitioning.New option
--user-data-dirin multiple commands. You can specify the same user data dir to reuse browsing state, like authentication, between sessions.pwsh bin/Debug/netX/playwright.ps1 opendoes not open the test recorder anymore. Usepwsh bin/Debug/netX/playwright.ps1 codegeninstead.Browser Versions
This version was also tested against the following stable channels:
1.53.0
Miscellaneous
New Steps in Trace Viewer:

New method Locator.Describe() to describe a locator. Used for trace viewer.
pwsh bin/Debug/netX/playwright.ps1 install --listwill now list all installed browsers, versions and locations.Browser Versions
This version was also tested against the following stable channels:
1.52.0
Highlights
New method Expect(locator).ToContainClassAsync() to ergonomically assert individual class names on the element.
Aria Snapshots got two new properties:
/childrenfor strict matching and/urlfor links.Miscellaneous
MaxRedirectsin apiRequest.NewContextAsync() to control the maximum number of redirects.Refin locator.AriaSnapshotAsync() to generate reference for each element in the snapshot which can later be used to locate the element.Breaking Changes
Cookieheader anymore. If aCookieheader is provided, it will be ignored, and the cookie will be loaded from the browser's cookie store. To set custom cookies, use browserContext.AddCookiesAsync().Browser Versions
This version was also tested against the following stable channels:
1.51.0
Highlights
New option
IndexedDBfor BrowserContext.StorageStateAsync() allows to save and restore IndexedDB contents. Useful when your application uses IndexedDB API to store authentication tokens, like Firebase Authentication.Here is an example following the authentication guide:
New option
Visiblefor locator.filter() allows matching only visible elements.New option
Contrastfor methods page.emulateMedia() and Browser.NewContextAsync() allows to emulate theprefers-contrastmedia feature.New option
FailOnStatusCodemakes all fetch requests made through the APIRequestContext throw on response codes other than 2xx and 3xx.Browser Versions
This version was also tested against the following stable channels:
1.50.0
Support for Xunit
Miscellaneous
UI updates
canvascontent in traces is error-prone. Display is now disabled by default, and can be enabled via theDisplay canvas contentUI setting.CallandNetworkpanels now display additional time information.Breaking
<input>,<select>, or a number of other editable elements.Browser Versions
This version was also tested against the following stable channels:
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 Otp.NET from 1.4.0 to 1.4.1.
Release notes
Sourced from Otp.NET's releases.
1.4.1
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.
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