hcoona / OneDotNet

The DotNet mono repository for me
GNU General Public License v3.0
2 stars 1 forks source link

chore(deps): update third-party #151

Closed renovate[bot] closed 2 months ago

renovate[bot] commented 3 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
Google.OrTools (source) 9.9.3963 -> 9.10.4067 age adoption passing confidence
Google.Protobuf 3.26.1 -> 3.27.1 age adoption passing confidence
HtmlAgilityPack (source) 1.11.60 -> 1.11.61 age adoption passing confidence
MSTest.TestAdapter 3.3.1 -> 3.4.3 age adoption passing confidence
MSTest.TestFramework 3.3.1 -> 3.4.3 age adoption passing confidence
Microsoft.CodeCoverage 17.9.0 -> 17.10.0 age adoption passing confidence
Microsoft.EntityFrameworkCore.Design (source) 8.0.4 -> 8.0.6 age adoption passing confidence
Microsoft.EntityFrameworkCore.Sqlite (source) 8.0.4 -> 8.0.6 age adoption passing confidence
Microsoft.NET.Test.Sdk 17.9.0 -> 17.10.0 age adoption passing confidence
Microsoft.Playwright 1.43.0 -> 1.44.0 age adoption passing confidence
NuGet.Frameworks (source) 6.9.1 -> 6.10.0 age adoption passing confidence
NuGet.ProjectModel (source) 6.9.1 -> 6.10.0 age adoption passing confidence
Serilog.Settings.Configuration 8.0.0 -> 8.0.1 age adoption passing confidence
xunit 2.7.1 -> 2.8.1 age adoption passing confidence
xunit.analyzers 1.12.0 -> 1.14.0 age adoption passing confidence
xunit.assert 2.7.1 -> 2.8.1 age adoption passing confidence
xunit.core 2.7.1 -> 2.8.1 age adoption passing confidence
xunit.extensibility.core 2.7.1 -> 2.8.1 age adoption passing confidence
xunit.extensibility.execution 2.7.1 -> 2.8.1 age adoption passing confidence
xunit.runner.visualstudio 2.5.8 -> 2.8.1 age adoption passing confidence

Release Notes

protocolbuffers/protobuf (Google.Protobuf) ### [`v3.27.0`](https://togithub.com/protocolbuffers/protobuf/compare/v3.26.1...v3.27.0)
zzzprojects/html-agility-pack (HtmlAgilityPack) ### [`v1.11.61`](https://togithub.com/zzzprojects/html-agility-pack/releases/tag/v1.11.61) #### Download the library **[here](https://www.nuget.org/packages/HtmlAgilityPack/)** - **FIXED:** Set PackageLicenseExpression on nuget [#​544](https://togithub.com/zzzprojects/html-agility-pack/issues/544) - **FIXED:** Modify a #text node name causes a StackOverflowException [#​548](https://togithub.com/zzzprojects/html-agility-pack/issues/548)
microsoft/testfx (MSTest.TestAdapter) ### [`v3.4.3`](https://togithub.com/microsoft/testfx/releases/tag/v3.4.3) See the release notes [here](https://togithub.com/microsoft/testfx/blob/main/docs/Changelog.md#3.4.3) ### [`v3.4.2`](https://togithub.com/microsoft/testfx/releases/tag/v3.4.2): v.3.4.2 See the release notes [here](https://togithub.com/microsoft/testfx/blob/main/docs/Changelog.md#3.4.2) ### [`v3.4.1`](https://togithub.com/microsoft/testfx/releases/tag/v3.4.1) See the release notes [here](https://togithub.com/microsoft/testfx/blob/main/docs/Changelog.md#3.4.1) ### [`v3.4.0`](https://togithub.com/microsoft/testfx/releases/tag/v3.4.0) Here are the highlights of the current release, full change log is available below: ##### MSTest ##### New and improved analyzers We've added more code analyzers to help you prevent mistakes, and to ensure a consistent code style of your tests. One example of a new analyzer that was added in 3.4.0 is `MSTEST0024: Do not store TestContext in static members`. This analyzer has `info` severity by default, and will show a message, when you store `TestContext` in a static member in your class. This is not recommended, and you should be using a `TestContext` property instead: ![image](https://togithub.com/microsoft/testfx/assets/5735905/ab0f95c3-f83e-47b9-a995-87161cb6a61c) The other analyzers added in this release: - MSTEST0017: Assertion arguments should be passed in the correct order by [@​Evangelink](https://togithub.com/Evangelink) in [#​2256](https://togithub.com/microsoft/testfx/pull/2256) - MSTEST0019: Prefer TestInitialize over ctor by [@​Evangelink](https://togithub.com/Evangelink) in [#​2580](https://togithub.com/microsoft/testfx/pull/2580) - MSTEST0020: Prefer ctors over TestInitialize methods by [@​Evangelink](https://togithub.com/Evangelink) in [#​2582](https://togithub.com/microsoft/testfx/pull/2582) - MSTEST0021: Prefer Dispose over TestCleanup methods by [@​Evangelink](https://togithub.com/Evangelink) in [#​2585](https://togithub.com/microsoft/testfx/pull/2585) - MSTEST0022: Prefer 'TestCleanup' methods over Dispose by [@​Evangelink](https://togithub.com/Evangelink) in [#​2586](https://togithub.com/microsoft/testfx/pull/2586) - MSTEST0023: Do not negate boolean assertions by [@​Evangelink](https://togithub.com/Evangelink) in [#​2594](https://togithub.com/microsoft/testfx/pull/2594) - MSTEST0024: Do not store TestContext in static members by [@​Evangelink](https://togithub.com/Evangelink) in [#​2597](https://togithub.com/microsoft/testfx/pull/2597) - Add PreferAssertFailOverAlwaysFalseConditionsAnalyzer by [@​Youssef1313](https://togithub.com/Youssef1313) in [#​2799](https://togithub.com/microsoft/testfx/pull/2799) If you've just learned about MSTest analyzers, please also check out the [analyzers that were added in previous releases](https://learn.microsoft.com/dotnet/core/testing/mstest-analyzers/overview). They will help you ensure that your test classes and test methods are recognized by MSTest and are not accidentally ignored. The analyzers are automatically installed with the [MSTest](https://www.nuget.org/packages/MSTest/) NuGet meta-package. But can also be installed separately using the [MSTest.Analyzers](https://www.nuget.org/packages/MSTest.Analyzers/) NuGet package. ##### More timeout options Timeout can now be specified on all fixture methods, including ClassCleanup, AssemblyCleanup, TestCleanup and TestInitalize. In this case I want my `[ClassCleanup]` to time out after 1 second: ![image](https://togithub.com/microsoft/testfx/assets/5735905/517bd606-36f8-4096-9e30-e8b88580f46c) Alternatively timeouts can be specified through runsettings. For example like this: ```xml 1000 ``` ##### Better errors on data mismatch When you provide data that don't match your test method signature, the test will fail with an informative message, rather than just "Parameter count mismatch.". ![image](https://togithub.com/microsoft/testfx/assets/5735905/d44fd401-a0b9-4959-90ce-8ed24d236361) ![image](https://togithub.com/microsoft/testfx/assets/5735905/b7d478a7-414c-47c2-8322-5bd4c02da8bb) (There is also an analyzer that helps with the same while you are writing the code.) ##### MSTest SDK updates We've introduced MSTest project SDK in [this .NET Blog post](https://devblogs.microsoft.com/dotnet/introducing-mstest-sdk/). ##### Choosing version in global.json In this release we are promoting a way to define the `MSTest.Sdk` version in `global.json`. This makes it easier to specify the version in a single place, instead of in every project. ```json { "msbuild-sdks": { "MSTest.Sdk": "3.4.0" } } ``` ```xml net8.0 ``` ##### Playwright support We've added a property to enable Playwright, to simplify creating web tests: ```xml net8.0 true ``` ##### Aspire testing support Similarly we've added a property to enable Aspire testing: ```xml net8.0 true ``` ##### Central package management [NuGet central package management](https://learn.microsoft.com/nuget/consume-packages/central-package-management) can now be used together with `MSTest.Sdk`. ##### More examples of SDK projects To see more examples of projects using MSTest.Sdk: ##### MSTest runner ##### Simpler banner We've took inspiration from MSBuild and simplified the runner banner, to show the information, on a single line: .NET Testing Platform v1.2.0+3abae95b6 (UTC 2024/05/03) [win-x64 - .NET 8.0.4] ##### STA support and WinUI support The runner can be configured to run in STA (Single Thread Apartment) mode, which is required for running UI tests. And it also supports WinUI workloads. See [MSTestRunnerWinUI example](https://togithub.com/microsoft/testfx/tree/rel/3.4/samples/public/mstest-runner/MSTestRunnerWinUI) ##### And more And much more, see the complete change log here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#3.4.0 ##### New Contributors A special thank you to all our new contributors: - [@​mariam-abdulla](https://togithub.com/mariam-abdulla) made their first contribution in [#​2564](https://togithub.com/microsoft/testfx/pull/2564) - [@​Varorbc](https://togithub.com/Varorbc) made their first contribution in [#​2696](https://togithub.com/microsoft/testfx/pull/2696) - [@​skanda890](https://togithub.com/skanda890) made their first contribution in [#​2706](https://togithub.com/microsoft/testfx/pull/2706) - [@​SimonCropp](https://togithub.com/SimonCropp) made their first contribution in [#​2714](https://togithub.com/microsoft/testfx/pull/2714) - [@​Mrxx99](https://togithub.com/Mrxx99) made their first contribution in [#​2717](https://togithub.com/microsoft/testfx/pull/2717) - [@​dansiegel](https://togithub.com/dansiegel) made their first contribution in [#​2727](https://togithub.com/microsoft/testfx/pull/2727) - [@​thomhurst](https://togithub.com/thomhurst) made their first contribution in [#​2749](https://togithub.com/microsoft/testfx/pull/2749) - [@​Youssef1313](https://togithub.com/Youssef1313) made their first contribution in [#​2799](https://togithub.com/microsoft/testfx/pull/2799)
microsoft/vstest (Microsoft.CodeCoverage) ### [`v17.10.0`](https://togithub.com/microsoft/vstest/releases/tag/v17.10.0) ##### What's Changed - Add missing runtimeconfig.json file for 8.0 by [@​MarcoRossignoli](https://togithub.com/MarcoRossignoli) in [https://github.com/microsoft/vstest/pull/4792](https://togithub.com/microsoft/vstest/pull/4792) - Localized file check-in by OneLocBuild Task: Build definition ID 1222: Build ID [`2338548`](https://togithub.com/microsoft/vstest/commit/2338548) by [@​dotnet-bot](https://togithub.com/dotnet-bot) in [https://github.com/microsoft/vstest/pull/4794](https://togithub.com/microsoft/vstest/pull/4794) - Disable testhost prestart by [@​nohwnd](https://togithub.com/nohwnd) in [https://github.com/microsoft/vstest/pull/4833](https://togithub.com/microsoft/vstest/pull/4833) - Terminal logger fixes by [@​nohwnd](https://togithub.com/nohwnd) in [https://github.com/microsoft/vstest/pull/4834](https://togithub.com/microsoft/vstest/pull/4834) - Add RiscV64 by [@​nohwnd](https://togithub.com/nohwnd) in [https://github.com/microsoft/vstest/pull/4838](https://togithub.com/microsoft/vstest/pull/4838) - Add deterministic source mapping storing for Microsoft.CodeCoverage by [@​jakubch1](https://togithub.com/jakubch1) in [https://github.com/microsoft/vstest/pull/4849](https://togithub.com/microsoft/vstest/pull/4849) - Fix terminal logger encoding & error by [@​nohwnd](https://togithub.com/nohwnd) in [https://github.com/microsoft/vstest/pull/4853](https://togithub.com/microsoft/vstest/pull/4853) - Update sourcebuild configuration to build net previous and net current by [@​Evangelink](https://togithub.com/Evangelink) in [https://github.com/microsoft/vstest/pull/4856](https://togithub.com/microsoft/vstest/pull/4856) - Updating version of Microsoft.VisualStudio.Interop to 17.10 by [@​MSLukeWest](https://togithub.com/MSLukeWest) in [https://github.com/microsoft/vstest/pull/4866](https://togithub.com/microsoft/vstest/pull/4866) - Add VSTEST_DIAG_VERBOSITY to help by [@​nohwnd](https://togithub.com/nohwnd) in [https://github.com/microsoft/vstest/pull/4882](https://togithub.com/microsoft/vstest/pull/4882) - Fix feature flag name by [@​nohwnd](https://togithub.com/nohwnd) in [https://github.com/microsoft/vstest/pull/4885](https://togithub.com/microsoft/vstest/pull/4885) - Improve terminal logger by [@​nohwnd](https://togithub.com/nohwnd) in [https://github.com/microsoft/vstest/pull/4877](https://togithub.com/microsoft/vstest/pull/4877) - Remove PackageLicenseFile preventing PackageLicenseExpression from working by [@​lahma](https://togithub.com/lahma) in [https://github.com/microsoft/vstest/pull/4890](https://togithub.com/microsoft/vstest/pull/4890) - Add GitHub Actions logger by [@​martincostello](https://togithub.com/martincostello) in [https://github.com/microsoft/vstest/pull/4906](https://togithub.com/microsoft/vstest/pull/4906) - Ensure to send a session complete event by [@​drognanar](https://togithub.com/drognanar) in [https://github.com/microsoft/vstest/pull/4878](https://togithub.com/microsoft/vstest/pull/4878) - specify Win10 + maxversiontested to enable xaml APIs to be used in tests running under testhost.exe by [@​ChrisGuzak](https://togithub.com/ChrisGuzak) in [https://github.com/microsoft/vstest/pull/4888](https://togithub.com/microsoft/vstest/pull/4888) - Make VSTest repo buildable in VMR non-source-build by [@​ViktorHofer](https://togithub.com/ViktorHofer) in [https://github.com/microsoft/vstest/pull/4920](https://togithub.com/microsoft/vstest/pull/4920) - Migrate pipelines by [@​nohwnd](https://togithub.com/nohwnd) in [https://github.com/microsoft/vstest/pull/4921](https://togithub.com/microsoft/vstest/pull/4921) - Add test name to MSBuild where we have frame. by [@​nohwnd](https://togithub.com/nohwnd) in [https://github.com/microsoft/vstest/pull/4935](https://togithub.com/microsoft/vstest/pull/4935) - \[rel/17.10] Add list of known TestingPlatform dlls by [@​nohwnd](https://togithub.com/nohwnd) in [https://github.com/microsoft/vstest/pull/4982](https://togithub.com/microsoft/vstest/pull/4982) And many infrastructure related changes and updates. ##### New Contributors - [@​ellahathaway](https://togithub.com/ellahathaway) made their first contribution in [https://github.com/microsoft/vstest/pull/4785](https://togithub.com/microsoft/vstest/pull/4785) - [@​MSLukeWest](https://togithub.com/MSLukeWest) made their first contribution in [https://github.com/microsoft/vstest/pull/4866](https://togithub.com/microsoft/vstest/pull/4866) - [@​lahma](https://togithub.com/lahma) made their first contribution in [https://github.com/microsoft/vstest/pull/4890](https://togithub.com/microsoft/vstest/pull/4890) - [@​ChrisGuzak](https://togithub.com/ChrisGuzak) made their first contribution in [https://github.com/microsoft/vstest/pull/4888](https://togithub.com/microsoft/vstest/pull/4888) **Full Changelog**: https://github.com/microsoft/vstest/compare/v17.9.0...v17.10.0
dotnet/efcore (Microsoft.EntityFrameworkCore.Design) ### [`v8.0.6`](https://togithub.com/dotnet/efcore/releases/tag/v8.0.6): EF Core 8.0.6 This is a [patch release of EF Core 8.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/8.0.6) containing only updates to dependencies. There are no additional fixes in this release beyond those already shipped in EF Core 8.0.5. ### [`v8.0.5`](https://togithub.com/dotnet/efcore/releases/tag/v8.0.5): EF Core 8.0.5 This is a [patch release of EF Core 8.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/8.0.5) containing only updates to dependencies. There are no additional fixes in this release beyond those already shipped in EF Core 8.0.4.
microsoft/playwright-dotnet (Microsoft.Playwright) ### [`v1.44.0`](https://togithub.com/microsoft/playwright-dotnet/releases/tag/v1.44.0) #### New APIs **Accessibility assertions** - [Expect(locator).ToHaveAccessibleNameAsync()](https://playwright.dev/dotnet/docs/api/class-locatorassertions#locator-assertions-to-have-accessible-name) checks if the element has the specified accessible name: ```csharp var locator = Page.GetByRole(AriaRole.Button); await Expect(locator).ToHaveAccessibleNameAsync("Submit"); ``` - [Expect(locator).ToHaveAccessibleDescriptionAsync()](https://playwright.dev/dotnet/docs/api/class-locatorassertions#locator-assertions-to-have-accessible-description) checks if the element has the specified accessible description: ```csharp var locator = Page.GetByRole(AriaRole.Button); await Expect(locator).ToHaveAccessibleDescriptionAsync("Upload a photo"); ``` - [Expect(locator).ToHaveRoleAsync()](https://playwright.dev/dotnet/docs/api/class-locatorassertions#locator-assertions-to-have-role) checks if the element has the specified ARIA role: ```csharp var locator = Page.GetByTestId("save-button"); await Expect(locator).ToHaveRoleAsync(AriaRole.Button); ``` **Locator handler** - After executing the handler added with [page.AddLocatorHandlerAsync()](https://playwright.dev/dotnet/docs/api/class-page#page-add-locator-handler), Playwright will now wait until the overlay that triggered the handler is not visible anymore. You can opt-out of this behavior with the new `NoWaitAfter` option. - You can use new `Times` option in [page.AddLocatorHandlerAsync()](https://playwright.dev/dotnet/docs/api/class-page#page-add-locator-handler) to specify maximum number of times the handler should be run. - The handler in [page.AddLocatorHandlerAsync()](https://playwright.dev/dotnet/docs/api/class-page#page-add-locator-handler) now accepts the locator as argument. - New [page.RemoveLocatorHandlerAsync()](https://playwright.dev/dotnet/docs/api/class-page#page-remove-locator-handler) method for removing previously added locator handlers. ```csharp var locator = Page.GetByText("This interstitial covers the button"); await Page.AddLocatorHandlerAsync(locator, async (overlay) => { await overlay.Locator("#close").ClickAsync(); }, new() { Times = 3, NoWaitAfter = true }); // Run your tests that can be interrupted by the overlay. // ... await Page.RemoveLocatorHandlerAsync(locator); ``` **Miscellaneous options** - [`Multipart`](https://playwright.dev/dotnet/docs/api/class-apirequestcontext#api-request-context-fetch-option-multipart) option in `APIRequestContext.FetchAsync()` supports now repeating fields with the same name using [formData.append()](https://playwright.dev/dotnet/docs/api/class-formdata#form-data-append): ```csharp var formData = Context.APIRequest.CreateFormData(); formData.Append("file", new FilePayload() { Name = "f1.js", MimeType = "text/javascript", Buffer = System.Text.Encoding.UTF8.GetBytes("var x = 2024;") }); formData.Append("file", new FilePayload() { Name = "f2.txt", MimeType = "text/plain", Buffer = System.Text.Encoding.UTF8.GetBytes("hello") }); var response = await Context.APIRequest.PostAsync("https://example.com/uploadFiles", new() { Multipart = formData }); ``` - [Expect(page).ToHaveURLAsync()](https://playwright.dev/dotnet/docs/api/class-pageassertions#page-assertions-to-have-url) now supports `IgnoreCase` [option](https://playwright.dev/dotnet/docs/api/class-pageassertions#page-assertions-to-have-url-option-ignore-case). #### Browser Versions - Chromium 125.0.6422.14 - Mozilla Firefox 125.0.1 - WebKit 17.4 This version was also tested against the following stable channels: - Google Chrome 124 - Microsoft Edge 124
serilog/serilog-settings-configuration (Serilog.Settings.Configuration) ### [`v8.0.1`](https://togithub.com/serilog/serilog-settings-configuration/releases/tag/v8.0.1) - [#​405](https://togithub.com/serilog/serilog-settings-configuration/issues/405) - support for collections/arrays in constructor arguments ([@​ChristofferGersen](https://togithub.com/ChristofferGersen)) - [#​403](https://togithub.com/serilog/serilog-settings-configuration/issues/403) - restore parallel test execution 😅 ([@​0xced](https://togithub.com/0xced)) - [#​409](https://togithub.com/serilog/serilog-settings-configuration/issues/409) - improve tests for `ObjectArgumentValue` ([@​ChristofferGersen](https://togithub.com/ChristofferGersen)), reformat JSON using raw literal strings ([@​0xced](https://togithub.com/0xced)) - [#​412](https://togithub.com/serilog/serilog-settings-configuration/issues/412) - fix example in README.md ([@​erichiller](https://togithub.com/erichiller)) - [#​416](https://togithub.com/serilog/serilog-settings-configuration/issues/416) - clarify location of `"Serilog"` configuration section in README.md ([@​eleazarcelis](https://togithub.com/eleazarcelis))
xunit/xunit (xunit) ### [`v2.8.1`](https://togithub.com/xunit/xunit/compare/2.8.0...2.8.1) [Compare Source](https://togithub.com/xunit/xunit/compare/2.8.0...2.8.1) ### [`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)
xunit/xunit.analyzers (xunit.analyzers) ### [`v1.14.0`](https://togithub.com/xunit/xunit.analyzers/compare/1.13.0...1.14.0) [Compare Source](https://togithub.com/xunit/xunit.analyzers/compare/1.13.0...1.14.0) ### [`v1.13.0`](https://togithub.com/xunit/xunit.analyzers/compare/1.12.0...1.13.0) [Compare Source](https://togithub.com/xunit/xunit.analyzers/compare/1.12.0...1.13.0)
xunit/visualstudio.xunit (xunit.runner.visualstudio) ### [`v2.8.1`](https://togithub.com/xunit/visualstudio.xunit/compare/2.8.0...2.8.1) [Compare Source](https://togithub.com/xunit/visualstudio.xunit/compare/2.8.0...2.8.1) ### [`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)

Configuration

📅 Schedule: Branch creation - "before 4am on the first day of the month" in timezone Asia/Hong_Kong, 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.

semanticdiff-com[bot] commented 3 months ago

Review changes with SemanticDiff.

Analyzed 11 of 12 files.

Overall, the semantic diff is 67% smaller than the GitHub diff.

Filename Status
:grey_question: Directory.Packages.props Unsupported file format
:heavy_check_mark: codelab/TaskAssigner/packages.lock.json 64.65% smaller
:heavy_check_mark: srcs/private/DotNetLockFileLister/packages.lock.json 55.85% smaller
:heavy_check_mark: srcs/private/OxfordDictExtractor/packages.lock.json 71.98% smaller
:heavy_check_mark: srcs/private/OxfordWordlistExtractor/packages.lock.json 71.98% smaller
:heavy_check_mark: srcs/private/QiDianBookDownloader/packages.lock.json 72.14% smaller
:heavy_check_mark: tests/CircularList.UnitTest/packages.lock.json 60.17% smaller
:heavy_check_mark: tests/Memoization.Tests/packages.lock.json 72.59% smaller
:heavy_check_mark: tests/MicrosoftExtensions.Logging.Xunit.Tests/packages.lock.json 72.59% smaller
:heavy_check_mark: tests/OxfordDictExtractor.Tests/packages.lock.json 61.3% smaller
:heavy_check_mark: tests/PhiFailureDetector.UnitTest/packages.lock.json 60.17% smaller
:heavy_check_mark: tests/RateLimiter.Tests/packages.lock.json 72.59% smaller