Skip to content

Bump the development-dependencies group across 2 directories with 4 updates - #1656

Open
dependabot[bot] wants to merge 1 commit into
developmentfrom
dependabot/npm_and_yarn/contentful/development/development-dependencies-ff07e46c27
Open

Bump the development-dependencies group across 2 directories with 4 updates#1656
dependabot[bot] wants to merge 1 commit into
developmentfrom
dependabot/npm_and_yarn/contentful/development/development-dependencies-ff07e46c27

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the development-dependencies group with 1 update in the /contentful directory: ts-jest.
Bumps the development-dependencies group with 3 updates in the /tests/Dfe.PlanTech.Web.E2ETests.Beta directory: @cucumber/cucumber, @playwright/test and multiple-cucumber-html-reporter.

Updates ts-jest from 29.4.11 to 29.4.12

Release notes

Sourced from ts-jest's releases.

v29.4.12

Please refer to CHANGELOG.md for details.

Changelog

Sourced from ts-jest's changelog.

29.4.12 (2026-07-22)

Features

  • compiler: support TypeScript 7 projects through compatibility aliases (#5386)
Commits
  • 3f05625 chore(release): 29.4.12
  • df28b27 docs: clarify TypeScript version prerequisites
  • c8a614a docs: mention TypeScript 7 setup in README
  • 06c79d4 fix: address TypeScript 7 review feedback
  • f107460 docs: explain TypeScript 7 compatibility setup
  • 3388227 test(e2e): add TypeScript compatibility matrix
  • 891dc73 fix(compiler): support TypeScript 7 compatibility aliases
  • eb135eb build(deps-dev): bump shell-quote from 1.8.4 to 1.10.0 in /examples
  • d5d80a3 ci: pin google osv scan action at v2.3.5
  • 6bf293f build(deps): bump shell-quote from 1.8.4 to 1.10.0 in /website
  • Additional commits viewable in compare view

Updates @cucumber/cucumber from 13.1.1 to 13.2.1

Release notes

Sourced from @​cucumber/cucumber's releases.

v13.2.1

Fixed

  • Fix hang in parallel runtime when there are no test cases to run (#2908)

v13.2.0

Added

  • Add option for where to run global hooks (#2880)
Changelog

Sourced from @​cucumber/cucumber's changelog.

[13.2.1] - 2026-08-04

Fixed

  • Fix hang in parallel runtime when there are no test cases to run (#2908)

[13.2.0] - 2026-07-20

Added

  • Add option for where to run global hooks (#2880)
Commits

Updates @playwright/test from 1.61.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

Updates multiple-cucumber-html-reporter from 4.1.0 to 4.2.0

Release notes

Sourced from multiple-cucumber-html-reporter's releases.

Release 4.2.0

🚀 New Feature

🐛 Bug Fix

  • #598 fix: 🐛 Stream report generation to avoid OOM on large suites and improve Liquid display (@​v-mwalk)

💅 Polish

Committers: 2

Changelog

Sourced from multiple-cucumber-html-reporter's changelog.

4.2.0 (2026-08-01)

🚀 New Feature

🐛 Bug Fix

  • #598 fix: 🐛 Stream report generation to avoid OOM on large suites and improve Liquid display (@​v-mwalk)

💅 Polish

Committers: 2

Commits
  • b635858 chore: release v4.2.0
  • fd1475e chore(deps): bump github/codeql-action in the dependencies group (#599)
  • a1d4b0f fix: stream report generation to avoid OOM on large suites, add attachment la...
  • e302d9f feat: ✨ added proper logging to the reporter (#594)
  • 9484885 refactor: ♻️ removed unnecessary console logs from the reporter (#593)
  • 96f0632 feat: ✨ introduced cli tool to generate report (#587)
  • 08f6eac chore(deps): bump the dependencies group with 23 updates (#592)
  • 420167b chore(deps): bump the dependencies group with 9 updates (#591)
  • 58aac1a chore(deps): bump the dependencies group across 1 directory with 13 updates (...
  • fae2621 feat: ✨ updated report images for new version
  • See full diff in compare view

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 commands and options

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…pdates

Bumps the development-dependencies group with 1 update in the /contentful directory: [ts-jest](https://github.com/kulshekhar/ts-jest).
Bumps the development-dependencies group with 3 updates in the /tests/Dfe.PlanTech.Web.E2ETests.Beta directory: [@cucumber/cucumber](https://github.com/cucumber/cucumber-js), [@playwright/test](https://github.com/microsoft/playwright) and [multiple-cucumber-html-reporter](https://github.com/WasiqB/multiple-cucumber-html-reporter).


Updates `ts-jest` from 29.4.11 to 29.4.12
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.4.11...v29.4.12)

Updates `@cucumber/cucumber` from 13.1.1 to 13.2.1
- [Release notes](https://github.com/cucumber/cucumber-js/releases)
- [Changelog](https://github.com/cucumber/cucumber-js/blob/main/CHANGELOG.md)
- [Commits](cucumber/cucumber-js@v13.1.1...v13.2.1)

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

Updates `multiple-cucumber-html-reporter` from 4.1.0 to 4.2.0
- [Release notes](https://github.com/WasiqB/multiple-cucumber-html-reporter/releases)
- [Changelog](https://github.com/WasiqB/multiple-cucumber-html-reporter/blob/main/CHANGELOG.md)
- [Commits](WasiqB/multiple-cucumber-html-reporter@v4.1.0...v4.2.0)

---
updated-dependencies:
- dependency-name: ts-jest
  dependency-version: 29.4.12
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@cucumber/cucumber"
  dependency-version: 13.2.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.62.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: multiple-cucumber-html-reporter
  dependency-version: 4.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: npm. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Aug 10, 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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants