Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 5, 2025

Updated BenchmarkDotNet from 0.14.0 to 0.15.2.

Release notes

Sourced from BenchmarkDotNet's releases.

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).

0.15.1

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

Highlights

0.15.0

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

Commits viewable in compare view.

Updated Microsoft.NET.Test.Sdk from 17.13.0 to 17.14.1.

Release notes

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

17.14.1

What's Changed

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

17.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

17.14.0-preview-25107-01

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

Will probably revert before release:

New Contributors

Full Changelog: microsoft/vstest@v17.13.0...v17.14.0-preview-25107-01

Commits viewable in compare view.

Updated PuppeteerSharp from 18.1.0 to 20.2.2.

Release notes

Sourced from PuppeteerSharp's releases.

20.2.2

What's Changed

Full Changelog: hardkoded/puppeteer-sharp@v20.2.1...v20.2.2

20.2.1

What's Changed

New Contributors

Full Changelog: hardkoded/puppeteer-sharp@v20.2.0...v20.2.1

20.2.0

What's new

What's Changed

Full Changelog: hardkoded/puppeteer-sharp@v20.1.3...v20.2.0

20.1.3

What's Changed

Full Changelog: hardkoded/puppeteer-sharp@v20.1.2...v20.1.3

20.1.2

What's Changed

Full Changelog: hardkoded/puppeteer-sharp@v20.1.1...v20.1.2

20.1.1

What's Changed

Full Changelog: hardkoded/puppeteer-sharp@v20.1.0...v20.1.1

20.1.0

What's new

What's Changed

Full Changelog: hardkoded/puppeteer-sharp@v20.0.5...v20.1.0

20.0.5

What's Changed

Full Changelog: hardkoded/puppeteer-sharp@v20.0.4...v20.0.5

20.0.4

What's new

What's Changed

New Contributors

Full Changelog: hardkoded/puppeteer-sharp@v20.0.3...v20.0.4

20.0.3

What's New

What's Changed

New Contributors

Full Changelog: hardkoded/puppeteer-sharp@v20.0.2...v20.0.3

20.0.2

What's Changed

New Contributors

Full Changelog: hardkoded/puppeteer-sharp@v20.0.0...v20.0.2

20.0.0

Breaking changes

There are, technically speaking, some breaking changes. I hope it's not a big deal for you.

Use byte array in message send

By @​campersau in hardkoded/puppeteer-sharp#2749
If you implemented a custom IConnectionTransport. The new signature of SendAsync is Task SendAsync(byte[] message);

IRequest.PostData is now a string

This matches the type in Puppeteer.

What's new

What's Changed

Full Changelog: hardkoded/puppeteer-sharp@v19.0.2...v20.0.0

19.0.2

What's Changed

Full Changelog: hardkoded/puppeteer-sharp@v19.0.1...v19.0.2

19.0.1

What's Changed

Full Changelog: hardkoded/puppeteer-sharp@v19.0.0...v19.0.1

19.0.0

Welcome System.Text.Json and AOT support!

What's new

Full AOT Support.

v19 comes with one of the most significant changes made to this library. We are moving away from Newtonsoft JSON in favor of System.Text.Json. The motivation behind this change is that it would get us closer to AOT support.

If you are using your own classes to interact with the browser through EvaluateFunctionAsync or similar, you will have to provide your own JsonSerializerContext to puppeteer using the static Puppeteer.ExtraJsonSerializerContext property.

For instance.

Puppeteer.ExtraJsonSerializerContext = DemoJsonSerializationContext.Default;
await using var browser = await Puppeteer.LaunchAsync();
await using var page = await browser.NewPageAsync();
var result = await page.EvaluateFunctionAsync<TestClass>("test => test", new TestClass { Name = "Dario"});
Console.WriteLine($"Name evaluated to {result.Name}");

The serializer would look like this:

public class TestClass
{
    public string Name { get; set; }
}

[JsonSerializable(typeof(TestClass))]
public partial class DemoJsonSerializationContext : JsonSerializerContext
{}

For more information about JsonSerializerContext see How to use source generation in System.Text.Json.

Breaking changes

JSON is critical for PuppeteerSharp. It's how we communicate with the browser, so changing the library used to perform this communication is quite risky.
Newtonsoft JSON classes were also used in our API, so your code might have some breaking changes.

Newtonsoft's JToken was replaced with JsonElement

JToken was the default type for functions like EvaluationFunctionAsync, EvaluateExpressionAsync or JsonAsync, when the generic function was not used.

Before:

var objectPopulated = await Page.EvaluateExpressionAsync("var obj = {a:1}; obj;");
Assert.AreEqual(1, objectPopulated["a"]);
 ... (truncated)

Commits viewable in [compare view](https://github.com/hardkoded/puppeteer-sharp/compare/v18.1.0...v20.2.2).
</details>

Updated [SixLabors.ImageSharp](https://github.com/SixLabors/ImageSharp) from 2.1.10 to 2.1.11.

<details>
<summary>Release notes</summary>

_Sourced from [SixLabors.ImageSharp's releases](https://github.com/SixLabors/ImageSharp/releases)._

## 2.1.11

## What's Changed
* Backport V2 - GIF: Check for end of stream when reading comments. by @​JimBobSquarePants in https://github.com/SixLabors/ImageSharp/pull/2971


**Full Changelog**: https://github.com/SixLabors/ImageSharp/compare/v2.1.10...v2.1.11

Commits viewable in [compare view](https://github.com/SixLabors/ImageSharp/compare/v2.1.10...v2.1.11).
</details>

Updated [Verify.Xunit](https://github.com/VerifyTests/Verify) from 29.2.0 to 30.5.0.

<details>
<summary>Release notes</summary>

_Sourced from [Verify.Xunit's releases](https://github.com/VerifyTests/Verify/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/VerifyTests/Verify/commits).
</details>

Updated [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) from 3.0.2 to 3.1.3.

<details>
<summary>Release notes</summary>

_Sourced from [xunit.runner.visualstudio's releases](https://github.com/xunit/visualstudio.xunit/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/xunit/visualstudio.xunit/commits).
</details>

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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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 merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Bumps BenchmarkDotNet from 0.14.0 to 0.15.2
Bumps Microsoft.NET.Test.Sdk from 17.13.0 to 17.14.1
Bumps PuppeteerSharp from 18.1.0 to 20.2.2
Bumps SixLabors.ImageSharp from 2.1.10 to 2.1.11
Bumps Verify.Xunit from 29.2.0 to 30.5.0
Bumps xunit.runner.visualstudio from 3.0.2 to 3.1.3

---
updated-dependencies:
- dependency-name: BenchmarkDotNet
  dependency-version: 0.15.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 17.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: PuppeteerSharp
  dependency-version: 20.2.2
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: SixLabors.ImageSharp
  dependency-version: 2.1.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Verify.Xunit
  dependency-version: 30.5.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: xunit.runner.visualstudio
  dependency-version: 3.1.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Aug 5, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 23, 2025

Looks like these dependencies are no longer a dependency, so this is no longer needed.

@dependabot dependabot bot closed this Aug 23, 2025
@dependabot dependabot bot deleted the dependabot/nuget/src/multi-e0219d654c branch August 23, 2025 23:26
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