Skip to content

Bump PuppeteerSharp from 24.38.0 to 24.39.0#157

Merged
stesee merged 1 commit intomainfrom
dependabot/nuget/Codeuctivity.HtmlRenderer/PuppeteerSharp-24.39.0
Mar 11, 2026
Merged

Bump PuppeteerSharp from 24.38.0 to 24.39.0#157
stesee merged 1 commit intomainfrom
dependabot/nuget/Codeuctivity.HtmlRenderer/PuppeteerSharp-24.39.0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 11, 2026

Updated PuppeteerSharp from 24.38.0 to 24.39.0.

Release notes

Sourced from PuppeteerSharp's releases.

24.39.0

What's Changed

Full Changelog: hardkoded/puppeteer-sharp@v24.38.8...v24.39.0

24.38.8

PuppeteerSharp v24.38.0

New Features

Browser updates

  • Roll to Chrome 146.0.7680.31 (#​3368)

P-Selector Support

Full support for Puppeteer pseudo-class selectors (::-p-text, ::-p-aria, deep combinators >>> and >>>>).

// Text selector
var element = await page.QuerySelectorAsync("button::-p-text(Submit)");

// ARIA selector
var element = await page.QuerySelectorAsync("div::-p-aria(Dialog)");

// Deep shadow DOM combinators
var elements = await page.QuerySelectorAllAsync("div >>> span"); // deep descendant
var element = await page.QuerySelectorAsync("div >>>> span");   // direct shadow child

Locator.Race

Race multiple locators and use whichever matches first.

await Locator.Race(
    page.Locator("#login-button"),
    page.Locator("#signup-button")
).ClickAsync();

Locator.Filter

Filter matched elements with a JavaScript predicate.

await page.Locator("button")
    .Filter("(element) => element.getAttribute('data-active') === 'true'")
    .ClickAsync();

Locator.Map

Transform locator values before consuming them.

 ... (truncated)

Commits viewable in [compare view](https://github.com/hardkoded/puppeteer-sharp/commits/v24.39.0).
</details>

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=PuppeteerSharp&package-manager=nuget&previous-version=24.38.0&new-version=24.39.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

---
updated-dependencies:
- dependency-name: PuppeteerSharp
  dependency-version: 24.39.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Mar 11, 2026
@dependabot dependabot bot requested a review from stesee as a code owner March 11, 2026 15:27
@dependabot dependabot bot added dependencies Pull requests that update a dependency file .NET Pull requests that update .net code labels Mar 11, 2026
@stesee stesee merged commit 3574eda into main Mar 11, 2026
6 checks passed
@stesee stesee deleted the dependabot/nuget/Codeuctivity.HtmlRenderer/PuppeteerSharp-24.39.0 branch March 11, 2026 16:56
@github-actions github-actions bot locked and limited conversation to collaborators Mar 11, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

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.

1 participant