Skip to content

build(deps-dev): bump the development-minor-and-patch group across 1 directory with 8 updates - #65

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/main/development-minor-and-patch-4082215649
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/main/development-minor-and-patch-4082215649

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 30, 2026

Copy link
Copy Markdown
Contributor

Bumps the development-minor-and-patch group with 7 updates in the / directory:

Package From To
@playwright/test 1.19.1 1.62.1
@types/plist 3.0.2 3.0.5
aws-sdk 2.1076.0 2.1693.0
electron-rebuild 3.2.7 3.2.9
http-server 14.1.0 14.1.1
mailparser 3.4.0 3.9.20
minimist 1.2.6 1.2.8

Updates @playwright/test from 1.19.1 to 1.62.1

Release notes

Sourced from @​playwright/test's releases.

v1.62.1

Bug Fixes

  • #41989 [Regression]: tsconfig "extends" bare specifier isn't resolved via node_modules walk-up like tsc (fatal since 1.62)
  • #41998 [Regression]: directory-form tsconfig project references ("path": "../pkg") fail to resolve (fatal since 1.62)
  • #41985 Accessibility snapshot drops button name when text is nested inside spans with aria-hidden SVG
  • #42000 [Regression]: page.evaluate() arg of a branded primitive type (string & { brand }) no longer type-checks since 1.62
  • #42013 [BUG]Image-type actionable elements are not presented in the snapshot.

v1.62.0

🧱 New component testing model

Component testing moves to a stories and galleries model. A story wraps your component in one specific scenario — hard-coded props, mock data, providers — and a gallery page that you serve renders stories on demand. The new fixtures.mount() fixture navigates to the gallery, mounts a story by id, and returns a Locator scoped to the story's root element:

test('click should expand', async ({ mount }) => {
  const component = await mount('components/Expandable/Stateful');
  await component.getByRole('button').click();
  await expect(component.getByTestId('expanded')).toHaveValue('true');
});

Pass a story type as a template argument to type-check its props, and use update(props) / unmount() on the returned locator to re-render or tear down within a test.

🛑 Cancel operations with AbortSignal

Most operations and web-first assertions now accept a signal option that takes an AbortSignal, letting you cancel long-running actions, navigations, waits, and assertions:

const controller = new AbortController();
setTimeout(() => controller.abort(), 1000);
await page.getByRole('button', { name: 'Submit' }).click({ signal: controller.signal });
await expect(page.getByText('Done')).toBeVisible({ signal: controller.signal });

Providing a signal does not disable the default timeout; pass timeout: 0 to disable it.

🖼️ WebP screenshots

expect(page).toHaveScreenshot() and expect(locator).toHaveScreenshot() can now store snapshots in the WebP format — just give the snapshot a .webp name:

// Visual comparisons store the golden snapshot as lossless WebP.
await expect(page).toHaveScreenshot('homepage.webp');
// Standalone screenshots can trade quality for size with lossy WebP.
await page.screenshot({ path: 'homepage.webp', quality: 50 });
</tr></table>

... (truncated)

Commits
  • 26a9e47 cherry-pick(#42043): docs: release notes for v1.62 Python, Java, and .NET (#4...
  • 0a81d5d cherry-pick(#42040): docs(release-notes): mention the isolated headless clipb...
  • 8376826 cherry-pick(#42034): fix(aria): keep icon-only clickable elements in ai snaps...
  • 66c5cc9 chore: mark v1.62.1 (#42020)
  • 9672bc3 cherry-pick(#42009): fix(types): support branded primitives in evaluate argum...
  • 4325804 cherry-pick(#41988): fix(aria): preserve names from collapsed text contributors
  • 9632f8e cherry-pick(#42005): fix(tsconfig): do not throw when "extends"/"references" ...
  • e3950d9 chore: mark v1.62.0 (#41981)
  • f07e0f7 cherry-pick(#41940): docs: release notes for v1.62 (#41967)
  • 05a306c cherry-pick(#41964): Revert "feat(routeFromHar): add interceptAPIRequests opt...
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​playwright/test since your current version.


Updates @types/plist from 3.0.2 to 3.0.5

Commits

Updates aws-sdk from 2.1076.0 to 2.1693.0

Release notes

Sourced from aws-sdk's releases.

Release v2.1693.0

See changelog for more information.

Release v2.1692.0

See changelog for more information.

Release v2.1691.0

See changelog for more information.

Release v2.1690.0

See changelog for more information.

Release v2.1689.0

See changelog for more information.

Release v2.1688.0

See changelog for more information.

Release v2.1687.0

See changelog for more information.

Release v2.1686.0

See changelog for more information.

Release v2.1685.0

See changelog for more information.

Release v2.1684.0

See changelog for more information.

Release v2.1683.0

See changelog for more information.

Release v2.1682.0

See changelog for more information.

Release v2.1681.0

See changelog for more information.

Release v2.1680.0

See changelog for more information.

Release v2.1679.0

See changelog for more information.

Release v2.1678.0

See changelog for more information.

Release v2.1677.0

See changelog for more information.

... (truncated)

Commits
  • 9d3c66e Updates SDK to v2.1693.0
  • c039567 test(client-elastictranscoder): remove feature test (#4711)
  • f5b1a6f docs: end-of-support (#4706)
  • 657d6fe chore: use ssh private key for git sync (#4705)
  • c12585b chore: remove regression label management (#4699)
  • 966fa6c Updates SDK to v2.1692.0
  • 5d0e38a Delete EC2 launch configuration e2e tests (#4685)
  • b9ce346 chore: fix issue config (#4683)
  • c066681 Update issue template config and disable docs requests (#4682)
  • 163a7cf Modified bug issue template to add checkbox to report potential regression. (...
  • Additional commits viewable in compare view

Updates electron-rebuild from 3.2.7 to 3.2.9

Release notes

Sourced from electron-rebuild's releases.

v3.2.9

3.2.9 (2022-08-01)

Bug Fixes

  • add std=c++17 flag for e20+ (979361d)

v3.2.8

3.2.8 (2022-07-08)

Bug Fixes

  • ensure force-process-config is not passed to prerelease v20+ (#1023) (3f5ff99)
Commits
  • 6f94aaa Merge pull request #1022 from VerteDinde/add-std17-flag-for-e20
  • 3f5ff99 fix: ensure force-process-config is not passed to prerelease v20+ (#1023)
  • 979361d fix: add std=c++17 flag for e20+
  • 20107a8 Merge pull request #1015 from electron/dependabot/npm_and_yarn/typescript-4.6.4
  • 3108e3d chore(deps-dev): bump typescript from 4.6.2 to 4.6.4
  • 00e6ed3 Merge pull request #1014 from electron/dependabot/npm_and_yarn/types/node-17....
  • f9d77d2 chore(deps-dev): bump @​types/node from 17.0.33 to 17.0.34
  • f3342e2 Merge pull request #1003 from electron/dependabot/npm_and_yarn/yargs-17.4.1
  • 41fa566 Merge pull request #1013 from electron/dependabot/npm_and_yarn/types/node-17....
  • 9b3be7c chore(deps-dev): bump @​types/node from 17.0.21 to 17.0.33
  • Additional commits viewable in compare view

Updates http-server from 14.1.0 to 14.1.1

Release notes

Sourced from http-server's releases.

v14.1.1

Other changes

Commits

Updates mailparser from 3.4.0 to 3.9.20

Release notes

Sourced from mailparser's releases.

mailparser: v3.8.1

3.8.1 (2025-11-05)

Bug Fixes

mailparser: v3.8.0

3.8.0 (2025-11-04)

Bug Fixes

  • deps: Bumped Nodemailer to fix issue with long data URI's (d24f96e)
Changelog

Sourced from mailparser's changelog.

3.9.20 (2026-09-01)

Bug Fixes

  • deps: update nodemailer to 9.1.1 (36233e6)

3.9.19 (2026-08-31)

Bug Fixes

  • deps: update libmime and mailsplit for the CP932 extended areas (0bbe7a3)

3.9.18 (2026-08-31)

Bug Fixes

  • deps: update nodemailer to 9.1.0 (b812c54)

3.9.17 (2026-08-27)

Bug Fixes

  • deps: update nodemailer to 9.0.6 (26c7ccb)

3.9.16 (2026-08-24)

Bug Fixes

  • bound linkify-it scanning of untrusted text bodies (1910471)
  • deps: update html-to-text to 10.0.1 (308e1b2)

3.9.15 (2026-08-07)

Bug Fixes

  • update dependencies (@​zone-eu/mailsplit 5.4.15, libmime 5.4.2, nodemailer 9.0.5) (047379d)

3.9.14 (2026-07-05)

Bug Fixes

  • update dependencies (@​zone-eu/mailsplit 5.4.14) (595b150)

... (truncated)

Commits
  • c5390ac chore(master): release 3.9.20 [skip-ci] (#437)
  • 36233e6 fix(deps): update nodemailer to 9.1.1
  • c3583f4 chore(master): release 3.9.19 [skip-ci] (#436)
  • 0bbe7a3 fix(deps): update libmime and mailsplit for the CP932 extended areas
  • c79c47a chore(master): release 3.9.18 [skip-ci] (#435)
  • b812c54 fix(deps): update nodemailer to 9.1.0
  • d888213 chore(master): release 3.9.17 [skip-ci] (#434)
  • 26c7ccb fix(deps): update nodemailer to 9.0.6
  • 76f25fe chore(master): release 3.9.16 [skip-ci] (#431)
  • 308e1b2 fix(deps): update html-to-text to 10.0.1
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for mailparser since your current version.


Updates minimist from 1.2.6 to 1.2.8

Changelog

Sourced from minimist's changelog.

v1.2.8 - 2023-02-09

Merged

Fixed

Commits

  • Merge tag 'v0.2.3' a026794
  • [eslint] fix indentation and whitespace 5368ca4
  • [eslint] fix indentation and whitespace e5f5067
  • [eslint] more cleanup 62fde7d
  • [eslint] more cleanup 36ac5d0
  • [meta] add auto-changelog 73923d2
  • [actions] add reusable workflows d80727d
  • [eslint] add eslint; rules to enable later are warnings 48bc06a
  • [eslint] fix indentation 34b0f1c
  • [readme] rename and add badges 5df0fe4
  • [Dev Deps] switch from covert to nyc a48b128
  • [Dev Deps] update covert, tape; remove unnecessary tap f0fb958
  • [meta] create FUNDING.yml; add funding in package.json 3639e0c
  • [meta] use npmignore to autogenerate an npmignore file be2e038
  • Only apps should have lockfiles 282b570
  • isConstructorOrProto adapted from PR ef9153f
  • [Dev Deps] update @ljharb/eslint-config, aud 098873c
  • [Dev Deps] update @ljharb/eslint-config, aud 3124ed3
  • [meta] add safe-publish-latest 4b927de
  • [Tests] add aud in posttest b32d9bd
  • [meta] update repo URLs f9fdfc0
  • [actions] Avoid 0.6 tests due to build failures ba92fe6
  • [Dev Deps] update tape 950eaa7
  • [Dev Deps] add missing npmignore dev dep 3226afa
  • Merge tag 'v0.2.2' 980d7ac

v1.2.7 - 2022-10-10

Commits

... (truncated)

Commits
  • 6901ee2 v1.2.8
  • a026794 Merge tag 'v0.2.3'
  • c0b2661 v0.2.3
  • 63b8fee [Fix] Fix long option followed by single dash (#17)
  • 72239e6 [Tests] Remove duplicate test (#12)
  • 34b0f1c [eslint] fix indentation
  • 3226afa [Dev Deps] add missing npmignore dev dep
  • 098873c [Dev Deps] update @ljharb/eslint-config, aud
  • 9ec4d27 [Fix] Fix long option followed by single dash
  • ba92fe6 [actions] Avoid 0.6 tests due to build failures
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by ljharb, a new releaser for minimist since your current version.

Install script changes

This version adds prepublish script that runs during installation. Review the package contents before updating.


Updates playwright from 1.19.1 to 1.62.1

Release notes

Sourced from playwright's releases.

v1.62.1

Bug Fixes

  • #41989 [Regression]: tsconfig "extends" bare specifier isn't resolved via node_modules walk-up like tsc (fatal since 1.62)
  • #41998 [Regression]: directory-form tsconfig project references ("path": "../pkg") fail to resolve (fatal since 1.62)
  • #41985 Accessibility snapshot drops button name when text is nested inside spans with aria-hidden SVG
  • #42000 [Regression]: page.evaluate() arg of a branded primitive type (string & { brand }) no longer type-checks since 1.62
  • #42013 [BUG]Image-type actionable elements are not presented in the snapshot.

v1.62.0

🧱 New component testing model

Component testing moves to a stories and galleries model. A story wraps your component in one specific scenario — hard-coded props, mock data, providers — and a gallery page that you serve renders stories on demand. The new fixtures.mount() fixture navigates to the gallery, mounts a story by id, and returns a Locator scoped to the story's root element:

test('click should expand', async ({ mount }) => {
  const component = await mount('components/Expandable/Stateful');
  await component.getByRole('button').click();
  await expect(component.getByTestId('expanded')).toHaveValue('true');
});

Pass a story type as a template argument to type-check its props, and use update(props) / unmount() on the returned locator to re-render or tear down within a test.

🛑 Cancel operations with AbortSignal

Most operations and web-first assertions now accept a signal option that takes an AbortSignal, letting you cancel long-running actions, navigations, waits, and assertions:

const controller = new AbortController();
setTimeout(() => controller.abort(), 1000);
await page.getByRole('button', { name: 'Submit' }).click({ signal: controller.signal });
await expect(page.getByText('Done')).toBeVisible({ signal: controller.signal });

Providing a signal does not disable the default timeout; pass timeout: 0 to disable it.

🖼️ WebP screenshots

expect(page).toHaveScreenshot() and expect(locator).toHaveScreenshot() can now store snapshots in the WebP format — just give the snapshot a .webp name:

// Visual comparisons store the golden snapshot as lossless WebP.
await expect(page).toHaveScreenshot('homepage.webp');
// Standalone screenshots can trade quality for size with lossy WebP.
await page.screenshot({ path: 'homepage.webp', quality: 50 });
</tr></table>

... (truncated)

Commits
  • 26a9e47 cherry-pick(#42043): docs: release notes for v1.62 Python, Java, and .NET (#4...
  • 0a81d5d cherry-pick(#42040): docs(release-notes): mention the isolated headless clipb...
  • 8376826 cherry-pick(#42034): fix(aria): keep icon-only clickable elements in ai snaps...
  • 66c5cc9 chore: mark v1.62.1 (#42020)
  • 9672bc3 cherry-pick(#42009): fix(types): support branded primitives in evaluate argum...
  • 4325804 cherry-pick(#41988): fix(aria): preserve names from collapsed text contributors
  • 9632f8e cherry-pick(#42005): fix(tsconfig): do not throw when "extends"/"references" ...
  • e3950d9 chore: mark v1.62.0 (#41981)
  • f07e0f7 cherry-pick(#41940): docs: release notes for v1.62 (#41967)
  • 05a306c cherry-pick(#41964): Revert "feat(routeFromHar): add interceptAPIRequests opt...
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for playwright since your current version.


@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 30, 2026
@dependabot dependabot Bot changed the title build(deps-dev): bump the development-minor-and-patch group with 8 updates build(deps-dev): bump the development-minor-and-patch group across 1 directory with 8 updates Sep 3, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/main/development-minor-and-patch-4082215649 branch from 4e6824e to 15b0870 Compare September 3, 2026 15:45
…directory with 8 updates

Bumps the development-minor-and-patch group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.19.1` | `1.62.1` |
| [@types/plist](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/plist) | `3.0.2` | `3.0.5` |
| [aws-sdk](https://github.com/aws/aws-sdk-js) | `2.1076.0` | `2.1693.0` |
| [electron-rebuild](https://github.com/electron/electron-rebuild) | `3.2.7` | `3.2.9` |
| [http-server](https://github.com/http-party/http-server) | `14.1.0` | `14.1.1` |
| [mailparser](https://github.com/nodemailer/mailparser) | `3.4.0` | `3.9.20` |
| [minimist](https://github.com/minimistjs/minimist) | `1.2.6` | `1.2.8` |



Updates `@playwright/test` from 1.19.1 to 1.62.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.19.1...v1.62.1)

Updates `@types/plist` from 3.0.2 to 3.0.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/plist)

Updates `aws-sdk` from 2.1076.0 to 2.1693.0
- [Release notes](https://github.com/aws/aws-sdk-js/releases)
- [Commits](aws/aws-sdk-js@v2.1076.0...v2.1693.0)

Updates `electron-rebuild` from 3.2.7 to 3.2.9
- [Release notes](https://github.com/electron/electron-rebuild/releases)
- [Commits](electron/rebuild@v3.2.7...v3.2.9)

Updates `http-server` from 14.1.0 to 14.1.1
- [Release notes](https://github.com/http-party/http-server/releases)
- [Commits](http-party/http-server@v14.1.0...v14.1.1)

Updates `mailparser` from 3.4.0 to 3.9.20
- [Release notes](https://github.com/nodemailer/mailparser/releases)
- [Changelog](https://github.com/nodemailer/mailparser/blob/master/CHANGELOG.md)
- [Commits](nodemailer/mailparser@v3.4.0...v3.9.20)

Updates `minimist` from 1.2.6 to 1.2.8
- [Changelog](https://github.com/minimistjs/minimist/blob/main/CHANGELOG.md)
- [Commits](minimistjs/minimist@v1.2.6...v1.2.8)

Updates `playwright` from 1.19.1 to 1.62.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.19.1...v1.62.1)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-version: 1.62.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-minor-and-patch
- dependency-name: "@types/plist"
  dependency-version: 3.0.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-minor-and-patch
- dependency-name: aws-sdk
  dependency-version: 2.1693.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-minor-and-patch
- dependency-name: electron-rebuild
  dependency-version: 3.2.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-minor-and-patch
- dependency-name: http-server
  dependency-version: 14.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-minor-and-patch
- dependency-name: mailparser
  dependency-version: 3.9.17
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-minor-and-patch
- dependency-name: minimist
  dependency-version: 1.2.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-minor-and-patch
- dependency-name: playwright
  dependency-version: 1.62.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/main/development-minor-and-patch-4082215649 branch from 15b0870 to 4ef2f96 Compare September 6, 2026 19:06

This branch has not been deployed

No deployments
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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants