Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Dependencies]: Bump the dependencies-dev group with 4 updates #75

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 12, 2024

Bumps the dependencies-dev group with 4 updates: @playwright/test, @stylistic/eslint-plugin-js, @types/node and globals.

Updates @playwright/test from 1.43.1 to 1.44.0

Release notes

Sourced from @​playwright/test's releases.

v1.44.0

New APIs

Accessibility assertions

  • expect(locator).toHaveAccessibleName() checks if the element has the specified accessible name:

    const locator = page.getByRole('button');
    await expect(locator).toHaveAccessibleName('Submit');
  • expect(locator).toHaveAccessibleDescription() checks if the element has the specified accessible description:

    const locator = page.getByRole('button');
    await expect(locator).toHaveAccessibleDescription('Upload a photo');
  • expect(locator).toHaveRole() checks if the element has the specified ARIA role:

    const locator = page.getByTestId('save-button');
    await expect(locator).toHaveRole('button');

Locator handler

  • After executing the handler added with page.addLocatorHandler(), Playwright will now wait until the overlay that triggered the handler is not visible anymore. You can opt-out of this behavior with the new noWaitAfter option.
  • You can use new times option in page.addLocatorHandler() to specify maximum number of times the handler should be run.
  • The handler in page.addLocatorHandler() now accepts the locator as argument.
  • New page.removeLocatorHandler() method for removing previously added locator handlers.
const locator = page.getByText('This interstitial covers the button');
await page.addLocatorHandler(locator, async overlay => {
  await overlay.locator('#close').click();
}, { times: 3, noWaitAfter: true });
// Run your tests that can be interrupted by the overlay.
// ...
await page.removeLocatorHandler(locator);

Miscellaneous options

  • multipart option in apiRequestContext.fetch() now accepts FormData and supports repeating fields with the same name.

    const formData = new FormData();
    formData.append('file', new File(['let x = 2024;'], 'f1.js', { type: 'text/javascript' }));
    formData.append('file', new File(['hello'], 'f2.txt', { type: 'text/plain' }));
    context.request.post('https://example.com/uploadFiles', {
      multipart: formData

... (truncated)

Commits

Updates @stylistic/eslint-plugin-js from 1.8.0 to 2.1.0

Release notes

Sourced from @​stylistic/eslint-plugin-js's releases.

v2.1.0

2.1.0 (2024-05-09)

Features

  • js: port multiline-comment-style and line-comment-position (#389) (e3212fe)

v2.0.0

2.0.0 (2024-05-08)

This is a health update, where we bump @typescript-eslint/* from v6 to v7 and use ESLint v9 for testing and development. This would help us have a more maintainable repo in the long term.

Inherited from them, we now require the same minimal node version of ^18.18.0 || ^20.9.0 || >=21.1.0. Other than that, there are no actual behavior changes between v1.8.1 and v2.0.0.

If you already use @typescript-eslint v7 or ESLint v9, you can safely bump the version without any migrations needed.

⚠ BREAKING CHANGES

  • requires Node ^18.18.0 || ^20.9.0 || >=21.1.0, bump deps (#337)

v1.8.1

1.8.1 (2024-05-07)

Bug Fixes

  • jsx-one-expression-per-line: only one line break has not been processed (#384) (a297f84)

Documentation

Changelog

Sourced from @​stylistic/eslint-plugin-js's changelog.

2.1.0 (2024-05-09)

Features

  • js: port multiline-comment-style and line-comment-position (#389) (e3212fe)

2.0.0 (2024-05-08)

⚠ BREAKING CHANGES

  • requires Node ^18.18.0 || ^20.9.0 || >=21.1.0, bump deps (#337)

Features

  • requires Node ^18.18.0 || ^20.9.0 || >=21.1.0, bump deps (#337) (300ce2c)

1.8.1 (2024-05-07)

Bug Fixes

  • jsx-one-expression-per-line: only one line break has not been processed (#384) (a297f84)

Documentation

Commits

Updates @types/node from 20.12.8 to 20.12.11

Commits

Updates globals from 15.1.0 to 15.2.0

Release notes

Sourced from globals's releases.

v15.2.0

  • Add AudioWorklet globals (#249) 7d163e3

sindresorhus/globals@v15.1.0...v15.2.0

Commits

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

Bumps the dependencies-dev group with 4 updates: [@playwright/test](https://github.com/microsoft/playwright), [@stylistic/eslint-plugin-js](https://github.com/eslint-stylistic/eslint-stylistic/tree/HEAD/packages/eslint-plugin-js), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [globals](https://github.com/sindresorhus/globals).


Updates `@playwright/test` from 1.43.1 to 1.44.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.43.1...v1.44.0)

Updates `@stylistic/eslint-plugin-js` from 1.8.0 to 2.1.0
- [Release notes](https://github.com/eslint-stylistic/eslint-stylistic/releases)
- [Changelog](https://github.com/eslint-stylistic/eslint-stylistic/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint-stylistic/eslint-stylistic/commits/v2.1.0/packages/eslint-plugin-js)

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

Updates `globals` from 15.1.0 to 15.2.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v15.1.0...v15.2.0)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies-dev
- dependency-name: "@stylistic/eslint-plugin-js"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies-dev
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies-dev
- dependency-name: globals
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies-dev
...

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

Coverage Status

coverage: 100.0%. remained the same
when pulling 3020542 on dependabot/npm_and_yarn/dependencies-dev-f373521bcc
into 8992f40 on master.

@elchininet elchininet merged commit d90f5bd into master May 16, 2024
4 checks passed
@elchininet elchininet deleted the dependabot/npm_and_yarn/dependencies-dev-f373521bcc branch May 16, 2024 07:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants