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

chore(deps-dev): bump the development-dependencies group with 9 updates #112

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 12, 2023

Bumps the development-dependencies group with 9 updates:

Package From To
@playwright/test 1.38.1 1.39.0
@rollup/plugin-node-resolve 15.2.1 15.2.3
@rollup/plugin-replace 5.0.2 5.0.3
@rollup/plugin-terser 0.4.3 0.4.4
@types/google.maps 3.53.6 3.54.3
@types/jasmine 4.3.6 5.1.0
@types/react 18.2.24 18.2.28
@web/test-runner 0.17.1 0.17.2
rollup 3.29.4 4.0.2

Updates @playwright/test from 1.38.1 to 1.39.0

Release notes

Sourced from @​playwright/test's releases.

v1.39.0

Add custom matchers to your expect

You can extend Playwright assertions by providing custom matchers. These matchers will be available on the expect object.

import { expect as baseExpect } from '@playwright/test';
export const expect = baseExpect.extend({
  async toHaveAmount(locator: Locator, expected: number, options?: { timeout?: number }) {
    // ... see documentation for how to write matchers.
  },
});
test('pass', async ({ page }) => {
await expect(page.getByTestId('cart')).toHaveAmount(5);
});

See the documentation for a full example.

Merge test fixtures

You can now merge test fixtures from multiple files or modules:

import { mergeTests } from '@playwright/test';
import { test as dbTest } from 'database-test-utils';
import { test as a11yTest } from 'a11y-test-utils';
export const test = mergeTests(dbTest, a11yTest);

import { test } from './fixtures';
test('passes', async ({ database, page, a11y }) => {
// use database and a11y fixtures.
});

Merge custom expect matchers

You can now merge custom expect matchers from multiple files or modules:

import { mergeTests, mergeExpects } from '@playwright/test';
import { test as dbTest, expect as dbExpect } from 'database-test-utils';
import { test as a11yTest, expect as a11yExpect } from 'a11y-test-utils';
export const test = mergeTests(dbTest, a11yTest);
</tr></table>

... (truncated)

Commits

Updates @rollup/plugin-node-resolve from 15.2.1 to 15.2.3

Changelog

Sourced from @​rollup/plugin-node-resolve's changelog.

v15.2.3

2023-10-08

Bugfixes

  • fix: modulePaths default is not set #1534

v15.2.2

2023-10-05

Bugfixes

  • fix: ensure rollup 4 compatibility #1595
Commits
  • f7fb936 chore(release): node-resolve v15.2.3
  • ab3f45d fix(node-resolve): modulePaths default is not set (#1534)
  • cdf9113 chore(repo): manually update changelog and package versions after bad release...
  • 841a039 fix(alias,auto-install,babel,beep,buble,commonjs,data-uri,dsv,dynamic-import-...
  • 9bfc5d9 chore(release): node-resolve v15.2.1
  • See full diff in compare view

Updates @rollup/plugin-replace from 5.0.2 to 5.0.3

Changelog

Sourced from @​rollup/plugin-replace's changelog.

v5.0.3

2023-10-05

Bugfixes

  • fix: ensure rollup 4 compatibility #1595
Commits

Updates @rollup/plugin-terser from 0.4.3 to 0.4.4

Changelog

Sourced from @​rollup/plugin-terser's changelog.

v0.4.4

2023-10-05

Bugfixes

  • fix: ensure rollup 4 compatibility #1595
Commits
  • cdf9113 chore(repo): manually update changelog and package versions after bad release...
  • 841a039 fix(alias,auto-install,babel,beep,buble,commonjs,data-uri,dsv,dynamic-import-...
  • 62a5d56 chore(release): terser v0.4.3
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by lukastaegert, a new releaser for @​rollup/plugin-terser since your current version.


Updates @types/google.maps from 3.53.6 to 3.54.3

Commits

Updates @types/jasmine from 4.3.6 to 5.1.0

Commits

Updates @types/react from 18.2.24 to 18.2.28

Commits

Updates @web/test-runner from 0.17.1 to 0.17.2

Release notes

Sourced from @​web/test-runner's releases.

@​web/test-runner@​0.17.2

Patch Changes

  • d07fc49c: Add the selectOption plugin's exports and types correctly
  • Updated dependencies [d07fc49c]
  • Updated dependencies [d9996d2d]
    • @​web/test-runner-commands@​0.8.1
    • @​web/dev-server@​0.3.3
Changelog

Sourced from @​web/test-runner's changelog.

0.17.2

Patch Changes

  • d07fc49c: Add the selectOption plugin's exports and types correctly
  • Updated dependencies [d07fc49c]
  • Updated dependencies [d9996d2d]
    • @​web/test-runner-commands@​0.8.1
    • @​web/dev-server@​0.3.3
Commits

Updates rollup from 3.29.4 to 4.0.2

Release notes

Sourced from rollup's releases.

v4.0.2

4.0.2

2023-10-06

Bug Fixes

  • Fix annotation detection logic to not fail when a non-ASCII character precedes a double underscore (#5178)

Pull Requests

v4.0.1

4.0.1

2023-10-06

Bug Fixes

  • Do not panic on trailing semicolons after class methods (#5173)
  • Add artifact for arm64 linux musl target (#5176)

Pull Requests

v4.0.0

4.0.0

2023-10-05

BREAKING CHANGES

General Changes

  • The minimal required Node version is now 18.0.0 (#5142)
  • The browser build now relies on a WASM artifact that needs to be provided as well (#5073)
  • The NodeJS build now relies on an optional native binary; for unsupported platforms, users can use the @rollup/wasm-node package that has the same interface as Rollup but relies on WASM artifacts (#5073)
  • The "with" syntax for import attributes is not yet supported, awaiting support in SWC (#5073)
  • The INVALID_IMPORT_ASSERTION error code has been replaced with INVALID_IMPORT_ATTRIBUTE (#5073)
  • Rollup will now warn for @__PURE__ and @__NO_SIDE_EFFECTS__ annotations in invalid locations (#5165)
  • If an entry module starts with a shebang comment #!..., this comment will be prepended to the output for es and cjs formats (#5163)
  • File hashes will now use url-safe base64 encoded hashes (#5155)
  • The maximum hash length has been reduced to 22 characters (#5155)
  • The RollupWarning type has been removed in favor of the RollupLog type (#5147)

Changes to Rollup Options

... (truncated)

Changelog

Sourced from rollup's changelog.

4.0.2

2023-10-06

Bug Fixes

  • Fix annotation detection logic to not fail when a non-ASCII character precedes a double underscore (#5178)

Pull Requests

4.0.1

2023-10-06

Bug Fixes

  • Do not panic on trailing semicolons after class methods (#5173)
  • Add artifact for arm64 linux musl target (#5176)

Pull Requests

4.0.0

2023-10-05

BREAKING CHANGES

General Changes

  • The minimal required Node version is now 18.0.0 (#5142)
  • The browser build now relies on a WASM artifact that needs to be provided as well (#5073)
  • The NodeJS build now relies on an optional native binary; for unsupported platforms, users can use the @rollup/wasm-node package that has the same interface as Rollup but relies on WASM artifacts (#5073)
  • The INVALID_IMPORT_ASSERTION error code has been replaced with INVALID_IMPORT_ATTRIBUTE (#5073)
  • Rollup will now warn for @__PURE__ and @__NO_SIDE_EFFECTS__ annotations in invalid locations (#5165)
  • If an entry module starts with a shebang comment #!..., this comment will be prepended to the output for es and cjs formats (#5163)
  • File hashes will now use url-safe base64 encoded hashes (#5155)
  • The maximum hash length has been reduced to 22 characters (#5155)
  • The RollupWarning type has been removed in favor of the RollupLog type (#5147)

Changes to Rollup Options

  • Acorn plugins are no longer supported, the acornInjectPlugins option has been removed (#5073)
  • The acorn option has been removed (#5073)
  • output.externalImportAssertions has been deprecated in favor of output.externalImportAttributes (#5073)

... (truncated)

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 development-dependencies group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.38.1` | `1.39.0` |
| [@rollup/plugin-node-resolve](https://github.com/rollup/plugins/tree/HEAD/packages/node-resolve) | `15.2.1` | `15.2.3` |
| [@rollup/plugin-replace](https://github.com/rollup/plugins/tree/HEAD/packages/replace) | `5.0.2` | `5.0.3` |
| [@rollup/plugin-terser](https://github.com/rollup/plugins/tree/HEAD/packages/terser) | `0.4.3` | `0.4.4` |
| [@types/google.maps](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/google.maps) | `3.53.6` | `3.54.3` |
| [@types/jasmine](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jasmine) | `4.3.6` | `5.1.0` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.24` | `18.2.28` |
| [@web/test-runner](https://github.com/modernweb-dev/web/tree/HEAD/packages/test-runner) | `0.17.1` | `0.17.2` |
| [rollup](https://github.com/rollup/rollup) | `3.29.4` | `4.0.2` |


Updates `@playwright/test` from 1.38.1 to 1.39.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.38.1...v1.39.0)

Updates `@rollup/plugin-node-resolve` from 15.2.1 to 15.2.3
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/node-resolve/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/node-resolve-v15.2.3/packages/node-resolve)

Updates `@rollup/plugin-replace` from 5.0.2 to 5.0.3
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/replace/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/babel-v5.0.3/packages/replace)

Updates `@rollup/plugin-terser` from 0.4.3 to 0.4.4
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/terser/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/terser-v0.4.4/packages/terser)

Updates `@types/google.maps` from 3.53.6 to 3.54.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/google.maps)

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

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

Updates `@web/test-runner` from 0.17.1 to 0.17.2
- [Release notes](https://github.com/modernweb-dev/web/releases)
- [Changelog](https://github.com/modernweb-dev/web/blob/master/packages/test-runner/CHANGELOG.md)
- [Commits](https://github.com/modernweb-dev/web/commits/@web/[email protected]/packages/test-runner)

Updates `rollup` from 3.29.4 to 4.0.2
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v3.29.4...v4.0.2)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@rollup/plugin-node-resolve"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@rollup/plugin-replace"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@rollup/plugin-terser"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@types/google.maps"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@types/jasmine"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@web/test-runner"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: rollup
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 12, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 1, 2023

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Nov 1, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/development-dependencies-626b4a82de branch November 1, 2023 08:15
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