Skip to content

chore(deps): update non-major #36

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

chore(deps): update non-major #36

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 1, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
AngleSharp (source) 1.0.4 -> 1.3.0 age adoption passing confidence
BenchmarkDotNet 0.13.9 -> 0.15.2 age adoption passing confidence
FluentAssertions (source) 6.11.0 -> 6.12.2 age adoption passing confidence
Microsoft.NET.Test.Sdk 17.6.3 -> 17.14.1 age adoption passing confidence
xunit 2.5.0 -> 2.9.3 age adoption passing confidence
xunit.runner.visualstudio 2.5.0 -> 2.8.2 age adoption passing confidence

Release Notes

AngleSharp/AngleSharp (AngleSharp)

v1.3.0

Compare Source

Released on Friday, April 18 2025.

v1.2.0

Compare Source

Released on Tuesday, December 31 2024.

v1.1.2

Released on Friday, March 8 2024.

  • Fixed exception when providing wrong response (#​1181)
  • Fixed handling of various inputs leading to timeouts (#​1180)

v1.1.1

Released on Friday, March 1 2024.

  • Fixed ISourceReference not using HtmlToken underneath
  • Fixed handling of replacement characters in escaped script blocks (#​1174)
  • Fixed handling of empty template element in SVG foreign mode (#​1176)
  • Fixed handling of <template> in foreign elements (#​1179)
  • Improved pre-release version to follow semver (#​1171) @​georg-jung
  • Improved NuGet package with link to repository (#​1168) @​thompson-tomo
  • Added PostAsMultipart helper for multipart/form-data to DocumentRequest (#​1173)

v1.1.0

Compare Source

Released on Thursday, January 18 2024.

  • Fixed priority calculations for selector lists (#​1161)
  • Fixed :where and :is selectors using forgiving lists
  • Added option for read only DOM (#​1154) @​dv00d00
  • Added more optimizations to reduce allocation rate (#​1159) @​dv00d00
  • Added support for nested selectors (&)

v1.0.7

Released on Friday, November 17 2023.

v1.0.6

Released on Saturday, November 11 2023.

v1.0.5

Released on Tuesday, October 3 2023.

dotnet/BenchmarkDotNet (BenchmarkDotNet)

v0.15.2: 0.15.2

Full changelog: https://benchmarkdotnet.org/changelog/v0.15.2.html

Highlights

  • The most significant update in this release is the enhanced accuracy of the memory diagnoser (#​2562). This improvement resolves the issue of incorrectly reported memory allocations (#​1542, #​2582).
  • We have introduced a new feature that allows users to sort benchmark jobs in numerical order (#​2768, #​2770).
  • Benchmark validation has been improved (#​2771).
  • An issue with non-persistent auto-generated JobId has been fixed (#​2777).

v0.15.1: 0.15.1

Full changelog: https://benchmarkdotnet.org/changelog/v0.15.1.html

Highlights

v0.15.0: 0.15.0

Full changelog: https://benchmarkdotnet.org/changelog/v0.15.0.html

v0.14.0: 0.14.0

Full changelog: https://benchmarkdotnet.org/changelog/v0.14.0.html

Highlights

  • Introduce BenchmarkDotNet.Diagnostics.dotMemory #​2549: memory allocation profile of your benchmarks using dotMemory, see @​BenchmarkDotNet.Samples.IntroDotMemoryDiagnoser
  • Introduce BenchmarkDotNet.Exporters.Plotting #​2560: plotting via ScottPlot (initial version)
  • Multiple bugfixes
  • The default build toolchains have been updated to pass IntermediateOutputPath, OutputPath, and OutDir properties to the dotnet build command. This change forces all build outputs to be placed in a new directory generated by BenchmarkDotNet, and fixes many issues that have been reported with builds. You can also access these paths in your own .csproj and .props from those properties if you need to copy custom files to the output.

Bug fixes

  • Fixed multiple build-related bugs including passing MsBuildArguments and .Net 8's UseArtifactsOutput.

Breaking Changes

  • DotNetCliBuilder removed retryFailedBuildWithNoDeps constructor option.
  • DotNetCliCommand removed RetryFailedBuildWithNoDeps property and BuildNoRestoreNoDependencies() and PublishNoBuildAndNoRestore() methods (replaced with PublishNoRestore()).

v0.13.12: 0.13.12

Full changelog: https://benchmarkdotnet.org/changelog/v0.13.12.html

Highlights

The biggest highlight of this release if our new VSTest Adapter, which allows to run benchmarks as unit tests in your favorite IDE!
The detailed guide can be found here.

This release also includes to a minor bug fix that caused incorrect job id generation: fixed job id generation (#​2491).

Also, the target framework in the BenchmarkDotNet templates was bumped to .NET 8.0.

v0.13.11: 0.13.11

Full changelog: https://benchmarkdotnet.org/changelog/v0.13.11.html

In the v0.13.11 scope, 4 issues were resolved and 8 pull requests were merged. This release includes 28 commits by 7 contributors.

Resolved issues (4)

  • #​2060 NativeAOT benchmark started from .Net Framework host doesn't have all intrinsics enabled (assignee: @​adamsitnik)
  • #​2233 Q: Include hardware counters in XML output (assignee: @​nazulg)
  • #​2388 Include AVX512 in listed HardwareIntrinsics
  • #​2463 Bug. Native AOT .NET 7.0 doesn't work. System.NotSupportedException: X86Serialize (assignee: @​adamsitnik)

Merged pull requests (8)

Commits (28)

Contributors (7)

Thank you very much!

v0.13.10: 0.13.10

Full changelog: https://benchmarkdotnet.org/changelog/v0.13.10.html

Highlights

Initial support of .NET 9 and minor bug fixes.

Details

In the v0.13.10 scope,
2 issues were resolved and 3 pull requests were merged.
This release includes 10 commits by 4 contributors.

Resolved issues (2)

Merged pull requests (3)

Commits (10)

Contributors (4)

Thank you very much!

fluentassertions/fluentassertions (FluentAssertions)

v6.12.2

Compare Source

What's Changed

Others

Full Changelog: fluentassertions/fluentassertions@6.12.1...6.12.2

v6.12.1

Compare Source

What's Changed

Improvements
  • Improve BeEmpty() and BeNullOrEmpty() performance for IEnumerable<T>, by materializing only the first item - #​2530
Fixes
  • Fixed formatting error when checking nullable DateTimeOffset with BeWithin(...).Before(...) - #​2312
  • BeEquivalentTo will now find and can map subject properties that are implemented through an explicitly-implemented interface - #​2152
  • Fixed that the because and becauseArgs were not passed down the equivalency tree - #​2318
  • BeEquivalentTo can again compare a non-generic IDictionary with a generic one - #​2358
  • Fixed that the FormattingOptions were not respected in inner AssertionScope - #​2329
  • Capitalize true and false in failure messages and make them formattable to a custom BooleanFormatter - #​2390, #​2393
  • Improved the failure message for NotBeOfType when wrapped in an AssertionScope and the subject is null - #​2399
  • Improved the failure message for BeWritable/BeReadable when wrapped in an AssertionScope and the subject is read-only/write-only - #​2399
  • Improved the failure message for ThrowExactly[Async] when wrapped in an AssertionScope and no exception is thrown - #​2398
  • Improved the failure message for [Not]HaveExplicitProperty when wrapped in an AssertionScope and not implementing the interface - #​2403
  • Improved the failure message for [Not]HaveExplicitMethod when wrapped in an AssertionScope and not implementing the interface - #​2403
  • Changed BeEquivalentTo to exclude private protected members from the comparison - #​2417
  • Fixed using BeEquivalentTo on an empty ArraySegment - #​2445, #​2511
  • BeEquivalentTo with a custom comparer can now handle null values - #​2489
  • Ensured that nested calls to AssertionScope(context) create a chained context - #​2607
  • One overload of the AssertionScope constructor would not create an actual scope associated with the thread - #​2607
  • Fixed ThrowWithinAsync not respecting OperationCanceledException - #​2614
  • Fixed using BeEquivalentTo with an IEqualityComparer targeting nullable types - #​2648

Full Changelog: fluentassertions/fluentassertions@6.12.0...6.12.1

v6.12.0

Compare Source

What's Changed

New features
Improvements
Fixes
Documentation
Others

New Contributors

Full Changelog: fluentassertions/fluentassertions@6.11.0...6.12.0

microsoft/vstest (Microsoft.NET.Test.Sdk)

v17.14.1

What's Changed

Full Changelog: microsoft/vstest@v17.14.0...v17.14.1

v17.14.0

What's Changed

.NET versions updated

This version of VS Test upgraded .NET to net8 and net9. All projects targeting net6.0 (or other end-of-life .NET target frameworks) should pin their version of Microsoft.NET.Test.SDK to 17.13.0, or update the projects to net8 or newer. We remain backwards compatible with previous versions of Microsoft.NET.Test.SDK. This change does NOT prevent you from:

  • Updating to the latest VS, and running tests from net6.0 test projects.
  • Updating to the latest .NET SDK, and running tests from net6.0 test projects.

It also has no impact on .NET Framework projects, where we continue targeting .NET Framework 4.6.2.

Changes
Internal version updates and fixes

New Contributors

Full Changelog: microsoft/vstest@v17.13.0...v17.14.0

v17.13.0

What's Changed


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 using a curated preset maintained by Sanity. View repository job log here

@renovate renovate bot changed the title chore(deps): update dependency benchmarkdotnet to v0.13.10 chore(deps): update non-major Nov 14, 2023
@renovate renovate bot force-pushed the renovate/non-major branch from c4026fc to f6aa0b8 Compare November 14, 2023 16:43
@renovate renovate bot force-pushed the renovate/non-major branch from f6aa0b8 to a350407 Compare December 6, 2023 12:18
@renovate renovate bot force-pushed the renovate/non-major branch from a350407 to 05e53cd Compare January 5, 2024 19:22
@renovate renovate bot changed the title chore(deps): update non-major chore(deps): update dependency benchmarkdotnet to v0.13.12 Jul 9, 2024
@renovate renovate bot force-pushed the renovate/non-major branch from 05e53cd to 222cf6c Compare August 6, 2024 15:38
@renovate renovate bot changed the title chore(deps): update dependency benchmarkdotnet to v0.13.12 chore(deps): update dependency benchmarkdotnet to v0.14.0 Aug 6, 2024
@renovate renovate bot changed the title chore(deps): update dependency benchmarkdotnet to v0.14.0 chore(deps): update dependency benchmarkdotnet to 0.14.0 Aug 28, 2024
@renovate renovate bot force-pushed the renovate/non-major branch from 222cf6c to 2df4d63 Compare September 16, 2024 09:16
@renovate renovate bot changed the title chore(deps): update dependency benchmarkdotnet to 0.14.0 chore(deps): update non-major Sep 16, 2024
@renovate renovate bot force-pushed the renovate/non-major branch 2 times, most recently from 9457062 to fe945b6 Compare September 27, 2024 08:06
@renovate renovate bot force-pushed the renovate/non-major branch from fe945b6 to 9da0af4 Compare November 8, 2024 12:56
@renovate renovate bot force-pushed the renovate/non-major branch from 9da0af4 to fb0077b Compare November 19, 2024 17:31
@renovate renovate bot force-pushed the renovate/non-major branch from fb0077b to c151109 Compare December 31, 2024 17:31
@renovate renovate bot force-pushed the renovate/non-major branch from c151109 to 8eeceff Compare January 8, 2025 18:38
@renovate renovate bot force-pushed the renovate/non-major branch from 8eeceff to c56ad90 Compare February 11, 2025 10:05
@renovate renovate bot force-pushed the renovate/non-major branch from c56ad90 to c559b19 Compare April 18, 2025 22:23
@renovate renovate bot force-pushed the renovate/non-major branch from c559b19 to c2249fd Compare May 20, 2025 13:04
Copy link

socket-security bot commented May 20, 2025

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updatedanglesharp@​1.0.4 ⏵ 1.3.093 +210089100100
Updatedfluentassertions@​6.11.0 ⏵ 6.12.29210089100100
Updatedxunit@​2.5.0 ⏵ 2.9.310010089100100
Updatedxunit.runner.visualstudio@​2.5.0 ⏵ 2.8.29210089100100
Updatedmicrosoft.net.test.sdk@​17.6.3 ⏵ 17.14.110010089100100 +10

View full report

@renovate renovate bot force-pushed the renovate/non-major branch from c2249fd to 32ae8fe Compare May 22, 2025 20:23
@renovate renovate bot force-pushed the renovate/non-major branch 2 times, most recently from a7589fa to eff57c0 Compare June 9, 2025 17:08
@renovate renovate bot force-pushed the renovate/non-major branch from eff57c0 to 87fdb61 Compare June 16, 2025 14:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants