Skip to content

Bump the all-updates group with 6 updates#1405

Open
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/nuget/PPMTool.Data/all-updates-f098aa6359
Open

Bump the all-updates group with 6 updates#1405
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/nuget/PPMTool.Data/all-updates-f098aa6359

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 3, 2026

Copy link
Copy Markdown
Contributor

Updated GitInfo from 3.6.0 to 3.6.1.

Release notes

Sourced from GitInfo's releases.

3.6.1

What's Changed

🔨 Other

Full Changelog: devlooped/GitInfo@v3.6.0...v3.6.1

Sponsors

The following sponsors made this release possible: @​clarius, @​MFB-Technologies-Inc, @​sandrock, @​drivenet, @​Keflon, @​tbolon, @​kfrancis, @​rbnswartz, @​jfoshee, @​Mrxx99, @​eajhnsn1, @​Jonathan-Hickey, @​KenBonny, @​SimonCropp, @​agileworks-eu, @​arsdragonfly, @​vezel-dev, @​ChilliCream, @​4OTC, @​DominicSchell, @​adalon, @​torutek, @​mccaffers, @​SeikaLogiciel, @​wizardness, @​eska-gmbh, @​geodata-no.

Thanks 💜

Commits viewable in compare view.

Updated Microsoft.Identity.Web from 4.10.0 to 4.11.0.

Release notes

Sourced from Microsoft.Identity.Web's releases.

4.11.0

What's Changed

New Contributors

Full Changelog: AzureAD/microsoft-identity-web@4.10.0...4.11.0

Commits viewable in compare view.

Updated Microsoft.NET.Test.Sdk from 18.6.0 to 18.7.0.

Release notes

Sourced from Microsoft.NET.Test.Sdk's releases.

18.7.0

What's Changed

New Contributors

Full Changelog: microsoft/vstest@v18.6.0...v18.7.0

Commits viewable in compare view.

Updated Microsoft.Playwright.NUnit from 1.60.0 to 1.61.0.

Release notes

Sourced from Microsoft.Playwright.NUnit'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:

var context = await browser.NewContextAsync();

// Seed a passkey your backend provisioned for a test user.
await context.Credentials.CreateAsync("example.com", new()
{
    Id = credentialId,
    UserHandle = userHandle,
    PrivateKey = privateKey,
    PublicKey = publicKey,
});
await context.Credentials.InstallAsync();

var page = await context.NewPageAsync();
await page.GotoAsync("https://example.com/login");
// The page's navigator.credentials.get() is answered with the seeded passkey.

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:

await page.LocalStorage.SetItemAsync("token", "abc");
var token = await page.LocalStorage.GetItemAsync("token");
var items = await page.SessionStorage.ItemsAsync();

New APIs

🛠️ Other improvements

  • Playwright now supports Ubuntu 26.04.
  • HAR and trace recordings now include WebSocket requests.

Browser Versions

  • Chromium 149.0.7827.55
  • Mozilla Firefox 151.0
  • WebKit 26.5

This version was also tested against the following stable channels:
... (truncated)

Commits viewable in compare view.

Updated Radzen.Blazor from 10.4.9 to 11.0.4.

Release notes

Sourced from Radzen.Blazor's releases.

11.0.4

11.0.4 - 2026-06-25

Fixes

  • RadzenChart no longer captures page scroll when the pointer is over a chart that has zooming disabled.
  • DataGrid column filter popups now close other open column popups in Initial filter mode.
  • PivotDataGrid filter popup no longer double-toggles.
  • Fixed a popup teardown crash ("element orphaned" / removeChild) when a popup is disposed.
  • Fixed RadzenFormField when it starts with Visible set to false.

11.0.3

11.0.3 - 2026-06-24

Fixes

  • Disabled assembly trimming for the component library (IsTrimmable=false).

11.0.2

11.0.2 - 2026-06-24

Fixes

  • Fixed several components crashing under trimming (Blazor WebAssembly) with System.Text.Json ConstructorContainsNullParameterNames. The trimmer strips anonymous-type constructor parameter names, so anonymous objects could no longer be serialized:
    • RadzenGoogleMap — crashed when rendering markers (createMap/updateMap JS interop). Marker data now uses a named, trim-preserved type.
    • AI Chat — failed when sending requests to the chat API. The request payload and conversation messages now use named, trim-preserved types.

11.0.1

11.0.1 - 2026-06-24

Fixes

  • Fixed RadzenSpreadsheet crashing on first render under trimming (WASM).

11.0.0

11.0.0 - 2026-06-24

This is a major release headlined by the new Spreadsheet component, a large Chart expansion (many new series and a Range Navigator), resource-based localization with built-in translations, and trimming/CSP support.

Breaking Changes

  • .NET 7 support removed. The library now targets net8.0, net9.0 and net10.0.
  • RadzenHtml component removed. (RadzenHtmlEditor is unaffected.)
  • Markdown types moved to the Radzen.Documents.Markdown namespace. Update using directives.
  • Localization is now resource-based across all components. Custom text overrides that relied on the previous mechanism should be migrated to the resource-based approach (see the new Localization page).
  • RadzenPopup — the internal Popup is now a public component.

New Components

  • RadzenSpreadsheet — a full Excel-compatible spreadsheet component. Highlights:
    • Formula engine with 100+ Excel-compatible functions (math, statistical, text, date/time, logical and lookup — e.g. SUM/AVERAGE/COUNT, IF/IFERROR, VLOOKUP/HLOOKUP/XLOOKUP, INDEX/CHOOSE, SUBTOTAL/AGGREGATE, DATE/EDATE/EOMONTH/DATEDIF, plus Tier 1/Tier 2 functions), Excel-matching boolean and number coercion, and dependency-tracked recalculation.
    • Tables matching Excel's ListObject (multi-key sort, AutoFilter, advanced/Top 10/Dynamic/Color filters, totals row, banding, table design) with XLSX round-trip.
    • Charts inside sheets with an Edit Chart dialog, series management, drag-to-move/resize and XLSX import/export.
    • Floating images with interactive drag/resize.
    • Data validation (input prompts, error popups), conditional formatting, and number/scientific/accounting formats with a Format Cells dialog.
    • Multiple worksheets, freeze panes, merged cells, autofill, custom cell types, sheet/workbook protection.
    • Undo/redo for all commands (including paste, cut, sort, filter) with keyboard shortcuts.
    • Import/export: XLSX (closer to Excel's package layout) and CSV.
    • Customizable toolbar/toolsets, feature toggles, async command pipeline, custom ribbons, and a dedicated localization service.
  • RadzenSignaturePad — capture handwritten signatures.
  • RadzenRangeNavigator — interactive range selector for charts, with axis support and a compact mode.
  • Scheduler Agenda View — a new list-style view for RadzenScheduler.
  • HTML Editor tables — table creation and editing tools added to RadzenHtmlEditor.

Charts

A large expansion of the charting subsystem.

New series types:

  • BoxPlot, Bullet, Pyramid, Funnel (with Inverted), Heatmap, Treemap, Contour.
  • Candlestick, OHLC, Scatter Line.
  • Waterfall / Horizontal Waterfall.
  • Range Column / Bar / Area, and Range Step Area.
  • Step Line, Step Area, Stacked Line, Full Stacked Column / Bar / Area / Line, High-Low.
  • Radar (polar) column; RadzenSpiderChart now supports polar configurations.
  • Pie/Donut RadiusProperty and ExplodeOffset.

Axes & interaction:

  • Multiple axes, inverted axes, axis crossing, indexed and logarithmic axes.
  • Pan and zoom support.
  • Series and legend hover highlighting; active point highlight inherits series colors/marker shapes.
  • Per-axis crosshair with axis label, shared tooltip, and improved tooltip positioning.
  • Trendlines and drill-down support.
  • RTL support, including RTL-aware Start/End legend positions.

Styling & polish:

  • Opt-in (radial) gradient fills for pie, donut, funnel, pyramid, waterfall, range area, column, bar and bullet series.
  • Initial render animations across series types.
    ... (truncated)

Commits viewable in compare view.

Updated Swashbuckle.AspNetCore from 10.2.1 to 10.2.3.

Release notes

Sourced from Swashbuckle.AspNetCore's releases.

10.2.3

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v10.2.2...v10.2.3

10.2.2

What's Changed

New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v10.2.1...v10.2.2

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will 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 version will 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

Bumps GitInfo from 3.6.0 to 3.6.1
Bumps Microsoft.Identity.Web from 4.10.0 to 4.11.0
Bumps Microsoft.NET.Test.Sdk from 18.6.0 to 18.7.0
Bumps Microsoft.Playwright.NUnit from 1.60.0 to 1.61.0
Bumps Radzen.Blazor from 10.4.9 to 11.0.4
Bumps Swashbuckle.AspNetCore from 10.2.1 to 10.2.3

---
updated-dependencies:
- dependency-name: GitInfo
  dependency-version: 3.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: Microsoft.Identity.Web
  dependency-version: 4.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: Microsoft.Playwright.NUnit
  dependency-version: 1.61.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: Radzen.Blazor
  dependency-version: 11.0.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: Swashbuckle.AspNetCore
  dependency-version: 10.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Jul 3, 2026
@dependabot dependabot Bot added the .NET Pull requests that update .NET code label Jul 3, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants