ni / nimble

The NI Nimble Design System
https://nimble.ni.dev
MIT License
29 stars 8 forks source link

Ignored nuget update #2053

Closed renovate[bot] closed 2 months ago

renovate[bot] commented 2 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
Microsoft.AspNetCore.Components.Web (source) 6.0.28 -> 6.0.29 age adoption passing confidence
Microsoft.AspNetCore.Components.WebAssembly (source) 6.0.28 -> 6.0.29 age adoption passing confidence
Microsoft.AspNetCore.Components.WebAssembly.DevServer (source) 6.0.28 -> 6.0.29 age adoption passing confidence
Microsoft.AspNetCore.Mvc.Testing (source) 6.0.28 -> 6.0.29 age adoption passing confidence
Microsoft.Playwright 1.42.0 -> 1.43.0 age adoption passing confidence
NI.CSharp.Analyzers 2.0.21 -> 2.0.25 age adoption passing confidence
bunit (source) 1.27.17 -> 1.28.9 age adoption passing confidence
bunit.core (source) 1.27.17 -> 1.28.9 age adoption passing confidence
bunit.web (source) 1.27.17 -> 1.28.9 age adoption passing confidence
xunit 2.7.0 -> 2.8.0 age adoption passing confidence
xunit.extensibility.execution 2.7.0 -> 2.8.0 age adoption passing confidence
xunit.runner.visualstudio 2.5.7 -> 2.8.0 age adoption passing confidence

Release Notes

dotnet/aspnetcore (Microsoft.AspNetCore.Components.Web) ### [`v6.0.29`](https://togithub.com/dotnet/aspnetcore/releases/tag/v6.0.29): .NET 6.0.29 [Release](https://togithub.com/dotnet/core/releases/tag/v6.0.29)
microsoft/playwright-dotnet (Microsoft.Playwright) ### [`v1.43.0`](https://togithub.com/microsoft/playwright-dotnet/releases/tag/v1.43.0) #### New APIs - Method [BrowserContext.ClearCookiesAsync()](https://playwright.dev/dotnet/docs/api/class-browsercontext#browser-context-clear-cookies) now supports filters to remove only some cookies. ```csharp // Clear all cookies. await Context.ClearCookiesAsync(); // New: clear cookies with a particular name. await Context.ClearCookiesAsync(new() { Name = "session-id" }); // New: clear cookies for a particular domain. await Context.ClearCookiesAsync(new() { Domain = "my-origin.com" }); ``` - New property [Locator.ContentFrame](https://playwright.dev/dotnet/docs/api/class-locator#locator-content-frame) converts a [Locator](https://playwright.dev/dotnet/docs/api/class-locator) object to a [FrameLocator](https://playwright.dev/dotnet/docs/api/class-framelocator). This can be useful when you have a [Locator](https://playwright.dev/dotnet/docs/api/class-locator) object obtained somewhere, and later on would like to interact with the content inside the frame. ```csharp var locator = Page.Locator("iframe[name='embedded']"); // ... var frameLocator = locator.ContentFrame; await frameLocator.GetByRole(AriaRole.Button).ClickAsync(); ``` - New property [FrameLocator.Owner](https://playwright.dev/dotnet/docs/api/class-framelocator#frame-locator-owner) converts a [FrameLocator](https://playwright.dev/dotnet/docs/api/class-locatorframe) object to a [Locator](https://playwright.dev/dotnet/docs/api/class-locator). This can be useful when you have a [FrameLocator](https://playwright.dev/dotnet/docs/api/class-framelocator) object obtained somewhere, and later on would like to interact with the `iframe` element. ```csharp var frameLocator = page.FrameLocator("iframe[name='embedded']"); // ... var locator = frameLocator.Owner; await Expect(locator).ToBeVisibleAsync(); ``` #### Browser Versions - Chromium 124.0.6367.8 - Mozilla Firefox 124.0 - WebKit 17.4 This version was also tested against the following stable channels: - Google Chrome 123 - Microsoft Edge 123
bUnit-dev/bUnit (bunit) ### [`v1.28.9`](https://togithub.com/bUnit-dev/bUnit/blob/HEAD/CHANGELOG.md#1289---2024-04-19) ##### Fixed - bUnit's built-in HTML parser did not correctly parse full HTML documents that included a \ as the first element. Fixed by [@​egil](https://togithub.com/egil). - `@formname` directive led to an `InvalidOperationException` when used on a form element. Reported by [@​suzu2469](https://togithub.com/suzu2469) in [#​1438](https://togithub.com/bUnit-dev/bUnit/issues/1438). Fixed by [@​egil](https://togithub.com/egil)/[@​linkdotnet](https://togithub.com/linkdotnet). ##### Changed - `NavigationManager` is again registered as a singleton instead of scoped.
xunit/xunit (xunit) ### [`v2.8.0`](https://togithub.com/xunit/xunit/compare/2.7.1...2.8.0) [Compare Source](https://togithub.com/xunit/xunit/compare/2.7.1...2.8.0) ### [`v2.7.1`](https://togithub.com/xunit/xunit/compare/2.7.0...2.7.1) [Compare Source](https://togithub.com/xunit/xunit/compare/2.7.0...2.7.1)
xunit/visualstudio.xunit (xunit.runner.visualstudio) ### [`v2.8.0`](https://togithub.com/xunit/visualstudio.xunit/compare/2.5.8...2.8.0) [Compare Source](https://togithub.com/xunit/visualstudio.xunit/compare/2.5.8...2.8.0) ### [`v2.5.8`](https://togithub.com/xunit/visualstudio.xunit/compare/2.5.7...2.5.8) [Compare Source](https://togithub.com/xunit/visualstudio.xunit/compare/2.5.7...2.5.8)

Configuration

📅 Schedule: Branch creation - "monthly" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



This PR has been generated by Mend Renovate. View repository job log here.

rajsite commented 2 months ago

Waiting for the Spright Blazor refactor to merge and settle https://github.com/ni/nimble/pull/2036 Closing for now

rajsite commented 2 months ago

Gonna try and close again based on https://github.com/renovatebot/renovate/issues/17985#issuecomment-1470277857