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 all-node-dependencies group with 8 updates #497

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 27, 2025

Bumps the all-node-dependencies group with 8 updates:

Package From To
@grafana/plugin-ui 0.9.5 0.9.6
@babel/core 7.26.0 7.26.7
@grafana/plugin-e2e 1.15.0 1.16.3
@playwright/test 1.49.1 1.50.0
@swc/core 1.10.8 1.10.11
@testing-library/user-event 14.6.0 14.6.1
@types/node 22.10.7 22.10.10
lefthook 1.10.9 1.10.10

Updates @grafana/plugin-ui from 0.9.5 to 0.9.6

Changelog

Sourced from @​grafana/plugin-ui's changelog.

v0.9.6 - 2025-01-20

  • Fix Config type to be compatible with DataSourceSettings
Commits

Updates @babel/core from 7.26.0 to 7.26.7

Release notes

Sourced from @​babel/core's releases.

v7.26.7 (2025-01-24)

Thanks @​branchseer and @​tquetano-netflix for your first PRs!

🐛 Bug Fix

  • babel-helpers, babel-preset-env, babel-runtime-corejs3
  • babel-plugin-transform-typeof-symbol
  • babel-parser
  • babel-core
  • babel-plugin-transform-typescript
  • babel-plugin-transform-typescript, babel-traverse, babel-types

Committers: 6

v7.26.6 (2025-01-13)

🐛 Bug Fix

  • babel-plugin-transform-nullish-coalescing-operator

Committers: 1

v7.26.5 (2025-01-10)

👓 Spec Compliance

🐛 Bug Fix

... (truncated)

Changelog

Sourced from @​babel/core's changelog.

v7.26.7 (2025-01-24)

🐛 Bug Fix

  • babel-helpers, babel-preset-env, babel-runtime-corejs3
  • babel-plugin-transform-typeof-symbol
  • babel-parser
  • babel-core
  • babel-plugin-transform-typescript
  • babel-plugin-transform-typescript, babel-traverse, babel-types

v7.26.6 (2025-01-13)

🐛 Bug Fix

  • babel-plugin-transform-nullish-coalescing-operator

v7.26.5 (2025-01-10)

👓 Spec Compliance

🐛 Bug Fix

  • babel-plugin-transform-block-scoped-functions
  • babel-plugin-transform-typescript
  • babel-parser
  • babel-generator, babel-parser, babel-plugin-transform-flow-strip-types, babel-types
  • babel-compat-data, babel-preset-env
  • babel-generator, babel-parser, babel-types

🔬 Output optimization

  • babel-plugin-transform-nullish-coalescing-operator

v7.26.4 (2024-12-05)

↩️ Revert

  • babel-traverse
    • #17005 Revert "perf: Improve scope information collection performance" (@​JLHwung)

... (truncated)

Commits

Updates @grafana/plugin-e2e from 1.15.0 to 1.16.3

Changelog

Sourced from @​grafana/plugin-e2e's changelog.

v1.16.3 (Mon Jan 27 2025)

🐛 Bug Fix

Authors: 1


v1.16.2 (Fri Jan 24 2025)

🐛 Bug Fix

Authors: 1


v1.16.1 (Fri Jan 24 2025)

🐛 Bug Fix

Authors: 2


v1.16.0 (Wed Jan 22 2025)

🚀 Enhancement

  • E2E: Added missing APIs while writing tests for panel editor #1462 (@​mckn)

Authors: 1


Commits
  • b2e8333 Bump independent versions [skip ci]
  • bbfe66a Update CHANGELOG.md [skip ci]
  • 07064f1 Plugin E2E: Fix datasource picker root locator (#1483)
  • d49ac15 chore(deps): update auto-merged devdependencies (#1474)
  • bc43151 Bump independent versions [skip ci]
  • 9e79301 Update CHANGELOG.md [skip ci]
  • 072241e fix(deps): update dependency @​grafana/e2e-selectors to ^11.5.0-219238 (#1477)
  • fe33388 Bump independent versions [skip ci]
  • 571ac3d Update CHANGELOG.md [skip ci]
  • ac2fab7 fix(deps): update dependency @​grafana/e2e-selectors to ^11.5.0-218582 (#1469)
  • Additional commits viewable in compare view

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 @swc/core from 1.10.8 to 1.10.11

Changelog

Sourced from @​swc/core's changelog.

[1.10.11] - 2025-01-27

Bug Fixes

  • (es) Restore JSON config & Adjust feature renaming (#9967) (72e5455)

  • (es/minifier) Avoid paren when compressing ternary (#9920) (9d6fe37)

  • (es/parser) Parse yield<T> (v: T)=>v (#9915) (04333aa)

  • (ts/fast-strip) More robust generic arrow handling (#9913) (f7faa7c)

  • (typescript) Allow references to the global Symbol in computed property names under isolatedDeclarations (#9869) (e4c1e03)

Features

Miscellaneous Tasks

  • (es/minifier) Add a script for samply profiler (#9923) (8f8dcaa)

  • (preset-env) Update browserslist-rs (#9918) (606ffe5)

Performance

  • (es/react) Use proper string types for react configuration (#9949) (1bf837e)

... (truncated)

Commits
  • e68829c chore: Publish 1.10.11 with swc_core v11.0.1
  • 19e12f0 chore: Update changelog
  • d2b5dc4 chore: Publish 1.10.11-nightly-20250127.1 with swc_core v11.0.1
  • 31634ca chore: Publish crates with swc_core v11.0.1
  • 11df8e0 chore(ci): Disable graphql-yoga ecosystem test
  • 72e5455 fix(es): Restore JSON config & Adjust feature renaming (#9967)
  • afda34f chore: Publish 1.10.10-nightly-20250127.1 with swc_core v11.0.0
  • fbb946f chore: Publish crates with swc_core v11.0.0
  • 4b14eec refactor(swc): Remove typo feature (#9965)
  • 1c2f7e9 refactor: Apply all pending breaking changes (#9966)
  • Additional commits viewable in compare view

Updates @testing-library/user-event from 14.6.0 to 14.6.1

Release notes

Sourced from @​testing-library/user-event's releases.

v14.6.1

14.6.1 (2025-01-21)

Bug Fixes

  • correct description for delay option (#1175) (2edf14d)
  • keyboard: add ContextMenu to defaultKeyMap (#1079) (3e471d1)
  • keyboard: add brackets to defaultKeyMap (#1226) (543ecb0)
  • keyboard: walk through radio group per arrow keys (#1049) (bf8111c)
  • pointer: dispatch mouse events if pointerdown is defaultPrevented (#1121) (f681f7b)
  • pointer: set button and buttons properties on PointerEvent (#1219) (6614f72)
  • pointer: use 1 as default value for PointerEvent.width and PointerEvent.height (#1224) (f0468d0)
  • prevent click event loop on form-associated custom element (#1238) (465fc7e)
  • prevent click event on non-focusable control (#1130) (e429094)
  • upload: apply accept filter more leniently (#1064) (a344ad4)
Commits

Updates @types/node from 22.10.7 to 22.10.10

Commits

Updates lefthook from 1.10.9 to 1.10.10

Release notes

Sourced from lefthook's releases.

v1.10.10

Changelog

  • 8cc927f900015f703d4a60e31505f8e382211efa ci: update cname setting
  • f692bb59689324c500e860838b8c94781e9e0d18 feat: allow providing a list of globs (#937)
  • 678033fe1b304d7b014f31bd2b763054dc81fe27 fix: properly inherit exclude options when not overwritten (#936)
Changelog

Sourced from lefthook's changelog.

1.10.10 (2025-01-21)

  • feat: allow providing a list of globs (#937) by @​mrexox
  • fix: properly inherit exclude options when not overwritten (#936) by @​mrexox
Commits
  • f5e7084 1.10.10: allow providing a list of globs
  • f692bb5 feat: allow providing a list of globs (#937)
  • 8cc927f ci: update cname setting
  • fb50988 docs: update links to docs site
  • 678033f fix: properly inherit exclude options when not overwritten (#936)
  • 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 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 all-node-dependencies group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [@grafana/plugin-ui](https://github.com/grafana/plugin-ui) | `0.9.5` | `0.9.6` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.26.0` | `7.26.7` |
| [@grafana/plugin-e2e](https://github.com/grafana/plugin-tools/tree/HEAD/packages/plugin-e2e) | `1.15.0` | `1.16.3` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.49.1` | `1.50.0` |
| [@swc/core](https://github.com/swc-project/swc) | `1.10.8` | `1.10.11` |
| [@testing-library/user-event](https://github.com/testing-library/user-event) | `14.6.0` | `14.6.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.7` | `22.10.10` |
| [lefthook](https://github.com/evilmartians/lefthook) | `1.10.9` | `1.10.10` |


Updates `@grafana/plugin-ui` from 0.9.5 to 0.9.6
- [Release notes](https://github.com/grafana/plugin-ui/releases)
- [Changelog](https://github.com/grafana/plugin-ui/blob/main/CHANGELOG.md)
- [Commits](https://github.com/grafana/plugin-ui/commits)

Updates `@babel/core` from 7.26.0 to 7.26.7
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.26.7/packages/babel-core)

Updates `@grafana/plugin-e2e` from 1.15.0 to 1.16.3
- [Release notes](https://github.com/grafana/plugin-tools/releases)
- [Changelog](https://github.com/grafana/plugin-tools/blob/main/packages/plugin-e2e/CHANGELOG.md)
- [Commits](https://github.com/grafana/plugin-tools/commits/@grafana/[email protected]/packages/plugin-e2e)

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 `@swc/core` from 1.10.8 to 1.10.11
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.10.8...v1.10.11)

Updates `@testing-library/user-event` from 14.6.0 to 14.6.1
- [Release notes](https://github.com/testing-library/user-event/releases)
- [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md)
- [Commits](testing-library/user-event@v14.6...v14.6.1)

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

Updates `lefthook` from 1.10.9 to 1.10.10
- [Release notes](https://github.com/evilmartians/lefthook/releases)
- [Changelog](https://github.com/evilmartians/lefthook/blob/master/CHANGELOG.md)
- [Commits](evilmartians/lefthook@v1.10.9...v1.10.10)

---
updated-dependencies:
- dependency-name: "@grafana/plugin-ui"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-node-dependencies
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-node-dependencies
- dependency-name: "@grafana/plugin-e2e"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-node-dependencies
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-node-dependencies
- dependency-name: "@swc/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-node-dependencies
- dependency-name: "@testing-library/user-event"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-node-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-node-dependencies
- dependency-name: lefthook
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-node-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner January 27, 2025 16:17
@dependabot dependabot bot requested a review from kevinwcyu January 27, 2025 16:17
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 27, 2025
@dependabot dependabot bot requested a review from njvrzm January 27, 2025 16:17
@dependabot dependabot bot added the javascript Pull requests that update Javascript code label Jan 27, 2025
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