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 devdependencies group across 1 directory with 6 updates #1855

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 16, 2024

Bumps the devdependencies group with 6 updates in the / directory:

Package From To
sort-package-json 2.10.0 2.12.0
svelte 5.2.2 5.14.0
@testing-library/react 16.0.1 16.1.0
@playwright/test 1.48.0 1.49.1
@cobalt-ui/cli 1.11.0 1.12.0
@cobalt-ui/core 1.11.0 1.12.0

Updates sort-package-json from 2.10.0 to 2.12.0

Release notes

Sourced from sort-package-json's releases.

v2.12.0

2.12.0 (2024-11-23)

Features

v2.11.0

2.11.0 (2024-11-19)

Features

v2.10.2

2.10.2 (2024-11-19)

Bug Fixes

  • use locale-independent comparison for sorting of overrides (#327) (5213340)

v2.10.1

2.10.1 (2024-08-22)

Bug Fixes

Commits
  • 0bf1155 feat: added support for ignore pattern to cli (#329)
  • 57aebe2 feat: add dual CJS/ESM release support (#316)
  • 5213340 fix: use locale-independent comparison for sorting of overrides (#327)
  • 99a9760 chore: switch to tinyglobby (#326)
  • 2611d16 docs: document check/diff example for stdio usage (#325)
  • ae5ba5f build(deps): bump braces from 3.0.2 to 3.0.3 (#320)
  • b22b1fc build(deps): bump micromatch from 4.0.5 to 4.0.8 (#324)
  • 92de3ef chore: update release workflow, drop global npm install
  • 7e1dd1f fix: support for sorting dependenciesMeta in Yarn berry (#323)
  • d4bd8e2 Create LICENSE
  • Additional commits viewable in compare view

Updates svelte from 5.2.2 to 5.14.0

Release notes

Sourced from svelte's releases.

[email protected]

Minor Changes

  • feat: adds $inspect.trace rune (#14290)

[email protected]

Minor Changes

  • feat: add outro option to unmount (#14540)

  • feat: provide loose parser mode (#14691)

[email protected]

Minor Changes

  • feat: expose more AST types from "svelte/compiler" (#14601)

Patch Changes

  • fix: don't add parenthesis to media query if already present (#14699)

  • fix: ensure if block paths retain correct template namespacing (#14685)

[email protected]

Patch Changes

  • fix: allow unquoted slash in attributes (#14615)

  • fix: better handle hydration of script/style elements (#14683)

  • fix: make defaultValue work with spread (#14640)

  • fix: avoid mutation validation for invalidate_inner_signals (#14688)

[email protected]

Patch Changes

  • fix: correctly handle ssr for reactivity/window (#14681)

[email protected]

Patch Changes

  • fix: account for global block in is_empty (#14677)

  • fix: remove overzealous reactive_declaration_non_reactive_property warning (#14663)

[email protected]

Minor Changes

  • feat: add svelte/reactivity/window module (#14660)

... (truncated)

Changelog

Sourced from svelte's changelog.

5.14.0

Minor Changes

  • feat: adds $inspect.trace rune (#14290)

5.13.0

Minor Changes

  • feat: add outro option to unmount (#14540)

  • feat: provide loose parser mode (#14691)

5.12.0

Minor Changes

  • feat: expose more AST types from "svelte/compiler" (#14601)

Patch Changes

  • fix: don't add parenthesis to media query if already present (#14699)

  • fix: ensure if block paths retain correct template namespacing (#14685)

5.11.3

Patch Changes

  • fix: allow unquoted slash in attributes (#14615)

  • fix: better handle hydration of script/style elements (#14683)

  • fix: make defaultValue work with spread (#14640)

  • fix: avoid mutation validation for invalidate_inner_signals (#14688)

5.11.2

Patch Changes

  • fix: correctly handle ssr for reactivity/window (#14681)

5.11.1

Patch Changes

  • fix: account for global block in is_empty (#14677)

... (truncated)

Commits

Updates @testing-library/react from 16.0.1 to 16.1.0

Release notes

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

v16.1.0

16.1.0 (2024-12-05)

Features

Commits

Updates @playwright/test from 1.48.0 to 1.49.1

Release notes

Sourced from @​playwright/test's releases.

v1.49.1

Highlights

microsoft/playwright#33802 - [Bug]: Codegen's Clear button doesn't work if not recording microsoft/playwright#33806 - [Bug]: playwright hangs while waiting for pending navigations microsoft/playwright#33787 - [Bug]: VSC extension isn't capturing all entered text microsoft/playwright#33788 - [Regression]: Double clicking the steps in trace viewer doesn't filter actions microsoft/playwright#33772 - [Bug]: aria_snapshot generates invalid yaml when combined with an aria-label attribut microsoft/playwright#33791 - [Bug]: text input with number value raises "container is not iterable" with to_match_aria_snapshot microsoft/playwright#33644 - [Bug]: getByRole can't find element with the accessible name from label element when aria-labelledby is not valid microsoft/playwright#33660 - [Regression]: Unable to open Playwright UI in Dark Mode

Browser Versions

  • Chromium 131.0.6778.33
  • Mozilla Firefox 132.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 130
  • Microsoft Edge 130

v1.49.0

Aria snapshots

New assertion expect(locator).toMatchAriaSnapshot() verifies page structure by comparing to an expected accessibility tree, represented as YAML.

await page.goto('https://playwright.dev');
await expect(page.locator('body')).toMatchAriaSnapshot(`
  - banner:
    - heading /Playwright enables reliable/ [level=1]
    - link "Get started"
    - link "Star microsoft/playwright on GitHub"
  - main:
    - img "Browsers (Chromium, Firefox, WebKit)"
    - heading "Any browser • Any platform • One API"
`);

You can generate this assertion with Test Generator and update the expected snapshot with --update-snapshots command line flag.

Learn more in the aria snapshots guide.

Test runner

... (truncated)

Commits
  • 88bc8af chore: mark v1.49.1 (#33921)
  • 9e855d5 cherry-pick(#33821): fix(recorder): allow clearing when recording is disabled...
  • 9365eb5 cherry-pick(#33834): fix: do not stall waiting for pending navigations after ...
  • f92b233 cherry-pick(#33822): fix(codegen): do not reset current tool upon clearing hi...
  • 008722b cherry-pick(#33797): fix(trace): in indexTree check isVisible before addi...
  • 1dc8b3c cherry-pick(#33746): chore: pin typescript while vue-tsc is broken
  • fbc770c cherry-pick(#33793): fix(aria): escape even more yaml (#33795)
  • 1046fe0 cherry-pick(#33753): docs: update extensions doc for new headless
  • 1781bf3 cherry-pick(#33706): docs: release notes for languages v1.49
  • b52a210 cherry-pick(#33712): docs(python): add LocatorAssertions.NotToMatchAriaSnapshot
  • Additional commits viewable in compare view

Updates @cobalt-ui/cli from 1.11.0 to 1.12.0

Release notes

Sourced from @​cobalt-ui/cli's releases.

@​cobalt-ui/cli@​1.12.0

Minor Changes

Changelog

Sourced from @​cobalt-ui/cli's changelog.

1.12.0

Minor Changes

1.11.3

Patch Changes

  • Aliases don’t need $types

1.11.2

Patch Changes

Commits

Updates @cobalt-ui/core from 1.11.0 to 1.12.0

Release notes

Sourced from @​cobalt-ui/core's releases.

@​cobalt-ui/core@​1.12.0

Minor Changes

@​cobalt-ui/core@​1.11.3

Patch Changes

  • Aliases don’t need $types

@​cobalt-ui/core@​1.11.1

Patch Changes

Changelog

Sourced from @​cobalt-ui/core's changelog.

1.12.0

Minor Changes

1.11.3

Patch Changes

  • Aliases don’t need $types

1.11.2

Patch Changes

1.11.1

Patch Changes

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 devdependencies group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [sort-package-json](https://github.com/keithamus/sort-package-json) | `2.10.0` | `2.12.0` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `5.2.2` | `5.14.0` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `16.0.1` | `16.1.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.48.0` | `1.49.1` |
| [@cobalt-ui/cli](https://github.com/terrazzoapp/terrazzo/tree/HEAD/packages/cli) | `1.11.0` | `1.12.0` |
| [@cobalt-ui/core](https://github.com/terrazzoapp/terrazzo/tree/HEAD/packages/core) | `1.11.0` | `1.12.0` |



Updates `sort-package-json` from 2.10.0 to 2.12.0
- [Release notes](https://github.com/keithamus/sort-package-json/releases)
- [Commits](keithamus/sort-package-json@v2.10.0...v2.12.0)

Updates `svelte` from 5.2.2 to 5.14.0
- [Release notes](https://github.com/sveltejs/svelte/releases)
- [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/svelte/commits/[email protected]/packages/svelte)

Updates `@testing-library/react` from 16.0.1 to 16.1.0
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v16.0.1...v16.1.0)

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

Updates `@cobalt-ui/cli` from 1.11.0 to 1.12.0
- [Release notes](https://github.com/terrazzoapp/terrazzo/releases)
- [Changelog](https://github.com/terrazzoapp/terrazzo/blob/@cobalt-ui/[email protected]/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/terrazzoapp/terrazzo/commits/@cobalt-ui/[email protected]/packages/cli)

Updates `@cobalt-ui/core` from 1.11.0 to 1.12.0
- [Release notes](https://github.com/terrazzoapp/terrazzo/releases)
- [Changelog](https://github.com/terrazzoapp/terrazzo/blob/@cobalt-ui/[email protected]/packages/core/CHANGELOG.md)
- [Commits](https://github.com/terrazzoapp/terrazzo/commits/@cobalt-ui/[email protected]/packages/core)

---
updated-dependencies:
- dependency-name: sort-package-json
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: devdependencies
- dependency-name: svelte
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: devdependencies
- dependency-name: "@testing-library/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: devdependencies
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: devdependencies
- dependency-name: "@cobalt-ui/cli"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: devdependencies
- dependency-name: "@cobalt-ui/core"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: devdependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested review from a team as code owners December 16, 2024 10:10
@dependabot dependabot bot added dependencies javascript Pull requests that update Javascript code labels Dec 16, 2024
Copy link

changeset-bot bot commented Dec 16, 2024

⚠️ No Changeset found

Latest commit: 026c625

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor

Tip

Once this PR is ready to go, add the run_chromatic label to run the Chromatic tests.

This saves us a lot of money by not running the tests before we need them.

@github-actions github-actions bot added 📦 npm Affects a @guardian package on NPM @guardian/libs @guardian/ab-react labels Dec 16, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 23, 2024

Superseded by #1871.

1 similar comment
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 23, 2024

Superseded by #1871.

@dependabot dependabot bot closed this Dec 23, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/devdependencies-ae8626abe7 branch December 23, 2024 09:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies @guardian/ab-react @guardian/libs javascript Pull requests that update Javascript code 📦 npm Affects a @guardian package on NPM
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants