Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update nuget dependencies #2057

Merged
merged 11 commits into from
May 1, 2024
Merged

Update nuget dependencies #2057

merged 11 commits into from
May 1, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 1, 2024

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: .NET 6.0.29

Release

microsoft/playwright-dotnet (Microsoft.Playwright)

v1.43.0

New APIs

  • Method BrowserContext.ClearCookiesAsync() now supports filters to remove only some cookies.

    // 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 converts a Locator object to a FrameLocator. This can be useful when you have a Locator object obtained somewhere, and later on would like to interact with the content inside the frame.

    var locator = Page.Locator("iframe[name='embedded']");
    // ...
    var frameLocator = locator.ContentFrame;
    await frameLocator.GetByRole(AriaRole.Button).ClickAsync();
  • New property FrameLocator.Owner converts a FrameLocator object to a Locator. This can be useful when you have a FrameLocator object obtained somewhere, and later on would like to interact with the iframe element.

    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

Fixed
  • bUnit's built-in HTML parser did not correctly parse full HTML documents that included a <!DOCTYPE html> as the first element. Fixed by @​egil.
  • @formname directive led to an InvalidOperationException when used on a form element. Reported by @​suzu2469 in #​1438.
    Fixed by @​egil/@​linkdotnet.
Changed
  • NavigationManager is again registered as a singleton instead of scoped.
xunit/xunit (xunit)

v2.8.0

Compare Source

v2.7.1

Compare Source

xunit/visualstudio.xunit (xunit.runner.visualstudio)

v2.8.0

Compare Source

v2.5.8

Compare Source


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.


  • If you want to rebase/retry this PR, check this box

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

@renovate renovate bot force-pushed the renovate/nuget-dependencies branch from 4567a04 to 8a6f8cc Compare May 1, 2024 16:25
@renovate renovate bot requested review from rajsite and jattasNI as code owners May 1, 2024 20:52
Copy link
Contributor Author

renovate bot commented May 1, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@rajsite
Copy link
Member

rajsite commented May 1, 2024

@atmgrifter00 can you review the C# changes (small)?

@rajsite rajsite enabled auto-merge (squash) May 1, 2024 21:58
@rajsite rajsite merged commit 5d398fc into main May 1, 2024
11 checks passed
@rajsite rajsite deleted the renovate/nuget-dependencies branch May 1, 2024 22:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants