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

Bump the dependencies group across 1 directory with 9 updates #570

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 23, 2025

Bumps the dependencies group with 9 updates in the / directory:

Package From To
@bytecodealliance/jco 1.4.4 1.9.1
@playwright/test 1.49.1 1.50.0
@rollup/plugin-node-resolve 15.3.1 16.0.0
rollup 4.28.1 4.31.0
typedoc 0.27.5 0.27.6
@bjorn3/browser_wasi_shim 0.3.0 0.4.0
@types/node 22.10.1 22.10.10
typescript 5.7.2 5.7.3
vitest 2.1.8 3.0.4

Updates @bytecodealliance/jco from 1.4.4 to 1.9.1

Release notes

Sourced from @​bytecodealliance/jco's releases.

1.9.1

What's Changed

New Contributors

Full Changelog: bytecodealliance/jco@1.8.1...1.9.1

1.8.1

What's Changed

Full Changelog: bytecodealliance/jco@1.8.0...1.8.1

1.8.0

What's Changed

Full Changelog: bytecodealliance/jco@1.7.2...1.8.0

1.7.2

What's Changed

Full Changelog: bytecodealliance/jco@1.7.1...1.7.2

1.7.1

What's Changed

New Contributors

Full Changelog: bytecodealliance/jco@1.7.0...1.7.1

... (truncated)

Commits

Updates @playwright/test from 1.49.1 to 1.50.0

Release notes

Sourced from @​playwright/test's releases.

v1.50.0

Test runner

  • New option timeout allows specifying a maximum run time for an individual test step. A timed-out step will fail the execution of the test.

    test('some test', async ({ page }) => {
      await test.step('a step', async () => {
        // This step can time out separately from the test
      }, { timeout: 1000 });
    });
  • New method test.step.skip() to disable execution of a test step.

    test('some test', async ({ page }) => {
      await test.step('before running step', async () => {
        // Normal step
      });
    await test.step.skip('not yet ready', async () => {
    // This step is skipped
    });
    await test.step('after running step', async () => {
    // This step still runs even though the previous one was skipped
    });
    });

  • Expanded expect(locator).toMatchAriaSnapshot() to allow storing of aria snapshots in separate YAML files.

  • Added method expect(locator).toHaveAccessibleErrorMessage() to assert the Locator points to an element with a given aria errormessage.

  • Option testConfig.updateSnapshots added the configuration enum changed. changed updates only the snapshots that have changed, whereas all now updates all snapshots, regardless of whether there are any differences.

  • New option testConfig.updateSourceMethod defines the way source code is updated when testConfig.updateSnapshots is configured. Added overwrite and 3-way modes that write the changes into source code, on top of existing patch mode that creates a patch file.

    npx playwright test --update-snapshots=changed --update-source-method=3way
  • Option testConfig.webServer added a gracefulShutdown field for specifying a process kill signal other than the default SIGKILL.

  • Exposed testStep.attachments from the reporter API to allow retrieval of all attachments created by that step.

UI updates

  • Updated default HTML reporter to improve display of attachments.
  • New button for picking elements to produce aria snapshots.
  • Additional details (such as keys pressed) are now displayed alongside action API calls in traces.
  • Display of canvas content in traces is error-prone. Display is now disabled by default, and can be enabled via the Display canvas content UI setting.
  • Call and Network panels now display additional time information.

Breaking

... (truncated)

Commits
  • 9d22178 chore: mark v1.50.0 (#34447)
  • 5d6ac96 cherry-pick(#34442): fix(test runner): respect updateSourceMethod from the co...
  • 97b76b4 cherry-pick(#34440): chore(driver): roll driver to recent Node.js LTS version
  • 7bbcc3c cherry-pick(#34353): chore: move attachment link back to tree item, make it f...
  • 2811a1d cherry-pick(#34430): docs: switch gracefulShutdown to primarily mention SIGTE...
  • 2b8d1ce cherry-pick(#34380): docs: release notes for v1.50 js (#34425)
  • 715eb25 cherry-pick(#34409): fix(aria snapshot): make rebase work when options are sp...
  • 6106ef0 cherry-pick(#34410): fix(list reporter): do not break after output without tr...
  • 09cd74f cherry-pick(#34407): fix(step.skip): show a skipped indicator in UI mode (#34...
  • cc6eb09 cherry-pick(#34386): chore: step timeout improvements (#34387)
  • Additional commits viewable in compare view

Updates @rollup/plugin-node-resolve from 15.3.1 to 16.0.0

Changelog

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

v16.0.0

2024-12-15

Breaking Changes

  • feat!: set development or production condition (#1823)
Commits
  • 1459cf0 fix(node-resolve): do not ignore exceptions (#564)
  • 366380e fix(node-resolve)!: resolve hash in path (#588)
  • f87c442 chore(release): node-resolve v9.0.0
  • e4d21ba refactor(node-resolve): remove deep-freeze from dependencies (#529)
  • 621768b feat(commonjs)!: return the namespace by default when requiring ESM (#507)
  • e632469 chore(node-resolve): update dependencies
  • 84dfddb chore(node-resolve): clean up changelog
  • 3fa649d chore(release): node-resolve v8.4.0
  • a582b59 chore(release): node-resolve v8.3.0
  • a60cb76 chore(release): node-resolve v8.2.0
  • Additional commits viewable in compare view

Updates rollup from 4.28.1 to 4.31.0

Release notes

Sourced from rollup's releases.

v4.31.0

4.31.0

2025-01-19

Features

  • Do not immediately quit when trying to use watch mode from within non-TTY environments (#5803)

Bug Fixes

  • Handle files with more than one UTF-8 BOM header (#5806)

Pull Requests

v4.30.1

4.30.1

2025-01-07

Bug Fixes

  • Prevent invalid code when simplifying unary expressions in switch cases (#5786)

Pull Requests

v4.30.0

4.30.0

2025-01-06

Features

  • Inline values of resolvable unary expressions for improved tree-shaking (#5775)

Pull Requests

... (truncated)

Changelog

Sourced from rollup's changelog.

4.31.0

2025-01-19

Features

  • Do not immediately quit when trying to use watch mode from within non-TTY environments (#5803)

Bug Fixes

  • Handle files with more than one UTF-8 BOM header (#5806)

Pull Requests

4.30.1

2025-01-07

Bug Fixes

  • Prevent invalid code when simplifying unary expressions in switch cases (#5786)

Pull Requests

4.30.0

2025-01-06

Features

  • Inline values of resolvable unary expressions for improved tree-shaking (#5775)

Pull Requests

4.29.2

2025-01-05

... (truncated)

Commits

Updates typedoc from 0.27.5 to 0.27.6

Release notes

Sourced from typedoc's releases.

v0.27.6

Features

  • Added ignoredHighlightLanguages option to specify languages which will be allowed in code blocks but not highlighted, #2819.

Bug Fixes

  • @include and @includeCode now work in the readme file, #2814.
  • TypeDoc will now avoid making references to references, #2811.
  • Fixed output specific option specification, #2818.
  • Improved type reference conversion to avoid including defaulted type arguments, #2820.
  • Fixed parsing of declaration references which include a module and a local reference, #2810.
  • Improved link resolution logic to prioritize type alias properties with the same symbol over type literal properties within function parameters.
Changelog

Sourced from typedoc's changelog.

v0.27.6 (2024-12-26)

Features

  • Added ignoredHighlightLanguages option to specify languages which will be allowed in code blocks but not highlighted, #2819.

Bug Fixes

  • @include and @includeCode now work in the readme file, #2814.
  • TypeDoc will now avoid making references to references, #2811.
  • Fixed output specific option specification, #2818.
  • Improved type reference conversion to avoid including defaulted type arguments, #2820.
  • Fixed parsing of declaration references which include a module and a local reference, #2810.
  • Improved link resolution logic to prioritize type alias properties with the same symbol over type literal properties within function parameters.
Commits
  • 9a1a719 Update changelog for release
  • 44bffe8 Release v0.27.6
  • d626468 Fix @link with declaration reference using !~
  • 9e667d0 Add ignoredHighlightLanguages option
  • 9b62f09 Fix output specific option specification
  • 53fa22e Avoid including defaulted type arguments
  • b9177b4 Update contributing docs
  • 23008f6 Improve link resolution prioritization
  • 2c10f67 Avoid references to references
  • 016e6a1 Lock npm to 10 for CI
  • Additional commits viewable in compare view

Updates @bjorn3/browser_wasi_shim from 0.3.0 to 0.4.0

Commits
  • 29eea8c Avoid packaging the test and threads subdirectories
  • c9deb6d Bump to v0.4.0
  • 168313f Merge pull request #86 from kateinoigakukun/yt/issue-ino
  • a267bd6 Remove InoIssuer abstraction
  • c488d4b Return unique ino for each node for Filestat and Dirent
  • 94a5651 Merge pull request #85 from oligamiq/main
  • 9ac88bb rename SVG to svg
  • 6c8d7a0 Merge pull request #84 from oligamiq/main
  • aa7259e Update README.md with architecture details and add allocator diagram
  • e57e5ed Add RELEASE.md and update version to 0.1.1; enhance error handling in thread ...
  • Additional commits viewable in compare view

Updates @types/node from 22.10.1 to 22.10.10

Commits

Updates typescript from 5.7.2 to 5.7.3

Release notes

Sourced from typescript's releases.

TypeScript 5.7.3

For release notes, check out the release announcement.

Downloads are available on npm

Commits
  • a5e123d Update LKG
  • 8bc0204 🤖 Pick PR #60828 (Fix CodeQL configuration, releases) into release-5.7 (#60923)
  • 7aa63df 🤖 Pick PR #60393 (Don't try to add an implicit undefi...) into release-5.7 (#...
  • 9df7c36 Bump version to 5.7.3 and LKG
  • e167412 🤖 Pick PR #60794 (Harden sanitizeLog against incorr...) into release-5.7 (#...
  • 9ba364c Fix coverage build on release-5.7 (#60792)
  • 4b7441a 🤖 Pick PR #60680 (Mark the inherited any-based index ...) into release-5.7 (#...
  • e844dc3 Cherry-pick #60402, #60440, #60616 into release-5.7 (#60777)
  • 21b02a1 🤖 Pick PR #60749 (Do not require import attribute on ...) into release-5.7 (#...
  • b82fd16 🤖 Pick PR #60576 (Avoid incorrectly reusing assertion...) into release-5.7 (#...
  • Additional commits viewable in compare view

Updates vitest from 2.1.8 to 3.0.4

Release notes

Sourced from vitest's releases.

v3.0.4

   🐞 Bug Fixes

    View changes on GitHub

v3.0.3

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v3.0.2

   🐞 Bug Fixes

    View changes on GitHub

v3.0.1

   🐞 Bug Fixes

    View changes on GitHub

v3.0.0

Vitest 3 is here! There are a few breaking changes, but we expect the migration to be smooth. This release page lists all changes made to the project during the beta. For the migration guide, please refer to the documentation.

   🚨 Breaking Changes

... (truncated)

Commits
  • 9e40437 chore: release v3.0.4
  • ef1464f fix: apply development|production condition on Vite 6 (#7301)
  • 38ea8ea fix(deps): update all non-major dependencies (#7297)
  • dff4406 fix: filter projects eagerly during config resolution (#7313)
  • ce6af70 fix(types): fix public types (#7328)
  • bff70be fix(typechecking): support typechecking parsing with Vite 6 (#7335)
  • a8d123c chore(deps): update eslint packages (#7086)
  • 33ab8a2 chore: release v3.0.3
  • e43a8f5 fix(browser): don't fail when running --browser.headless if the browser proje...
  • fa4634b fix(browser): don't throw a validation error if v8 coverage is used with filt...
  • Additional commits viewable 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 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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 23, 2025
Bumps the dependencies group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@bytecodealliance/jco](https://github.com/bytecodealliance/jco) | `1.4.4` | `1.9.1` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.49.1` | `1.50.0` |
| [@rollup/plugin-node-resolve](https://github.com/rollup/plugins/tree/HEAD/packages/node-resolve) | `15.3.1` | `16.0.0` |
| [rollup](https://github.com/rollup/rollup) | `4.28.1` | `4.31.0` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.27.5` | `0.27.6` |
| [@bjorn3/browser_wasi_shim](https://github.com/bjorn3/browser_wasi_shim) | `0.3.0` | `0.4.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.1` | `22.10.10` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.2` | `5.7.3` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.1.8` | `3.0.4` |



Updates `@bytecodealliance/jco` from 1.4.4 to 1.9.1
- [Release notes](https://github.com/bytecodealliance/jco/releases)
- [Commits](bytecodealliance/jco@1.4.4...1.9.1)

Updates `@playwright/test` from 1.49.1 to 1.50.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.49.1...v1.50.0)

Updates `@rollup/plugin-node-resolve` from 15.3.1 to 16.0.0
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/node-resolve/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/commonjs-v16.0.0/packages/node-resolve)

Updates `rollup` from 4.28.1 to 4.31.0
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.28.1...v4.31.0)

Updates `typedoc` from 0.27.5 to 0.27.6
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.27.5...v0.27.6)

Updates `@bjorn3/browser_wasi_shim` from 0.3.0 to 0.4.0
- [Release notes](https://github.com/bjorn3/browser_wasi_shim/releases)
- [Commits](bjorn3/browser_wasi_shim@v0.3.0...v0.4.0)

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

Updates `typescript` from 5.7.2 to 5.7.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.7.2...v5.7.3)

Updates `vitest` from 2.1.8 to 3.0.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.0.4/packages/vitest)

---
updated-dependencies:
- dependency-name: "@bytecodealliance/jco"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@rollup/plugin-node-resolve"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: rollup
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typedoc
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@bjorn3/browser_wasi_shim"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dependencies-115040554d branch from 2947bee to a092a23 Compare January 23, 2025 21:25
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
Development

Successfully merging this pull request may close these issues.

0 participants