Skip to content

Bump PuppeteerSharp from 21.1.1 to 25.3.3#320

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/CacheOGP.ApiService/PuppeteerSharp-25.3.3
Open

Bump PuppeteerSharp from 21.1.1 to 25.3.3#320
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/CacheOGP.ApiService/PuppeteerSharp-25.3.3

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 13, 2026

Copy link
Copy Markdown
Contributor

Updated PuppeteerSharp from 21.1.1 to 25.3.3.

Release notes

Sourced from PuppeteerSharp's releases.

25.3.3

What's Changed

Full Changelog: hardkoded/puppeteer-sharp@v25.3.2...v25.3.3

25.3.2

What's Changed

Full Changelog: hardkoded/puppeteer-sharp@v25.3.1...v25.3.2

25.3.1

What's Changed

Full Changelog: hardkoded/puppeteer-sharp@v25.3.0...v25.3.1

25.3.0

What's New

What's Changed

Full Changelog: hardkoded/puppeteer-sharp@v25.2.1...v25.3.0

25.2.1

What's New

What's Changed

Full Changelog: hardkoded/puppeteer-sharp@v25.1.2...v25.2.1

25.1.2

What's Changed

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

25.1.1

What's Changed

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

25.1.0

What's Changed

Full Changelog: hardkoded/puppeteer-sharp@v25.0.4...v25.1.0

25.0.4

What's New

What's Changed

Full Changelog: hardkoded/puppeteer-sharp@v24.42.0...v25.0.4

24.42.0

What's new!

What's Changed

New Contributors

Full Changelog: hardkoded/puppeteer-sharp@v24.40.0...v24.42.0

24.40.0

What's Changed

New Contributors

Full Changelog: hardkoded/puppeteer-sharp@v24.39.1...v24.40.0

24.39.1

What's New

What's Changed

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

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/compare/v21.1.1...v25.3.3).
</details>

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=PuppeteerSharp&package-manager=nuget&previous-version=21.1.1&new-version=25.3.3)](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: 25.3.3
  dependency-type: direct:production
  update-type: version-update:semver-major
...

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 Jul 13, 2026
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