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

build(deps-dev): bump the devdependencies group across 1 directory with 6 updates #1478

Closed

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Package From To
@astrojs/check 0.5.6 0.7.0
@astrojs/svelte 5.3.0 5.4.0
astro 4.5.16 4.8.7
cypress 13.7.1 13.10.0
lightningcss 1.24.0 1.25.0
tsx 4.7.1 4.11.0

Updates @astrojs/check from 0.5.6 to 0.7.0

Release notes

Sourced from @​astrojs/check's releases.

@​astrojs/check@​0.7.0

Minor Changes

  • c8af6db: Upgrades the language server to use the latest version of Volar. This changes should have no negative impacts on the experience.

Patch Changes

  • Updated dependencies [c8af6db]
    • @​astrojs/language-server@​2.10.0

@​astrojs/check@​0.6.0

Minor Changes

  • 65d3425: Upgrades the language server to use Volar 2.2. This changes should have no negative impacts on the experience.

Patch Changes

  • Updated dependencies [65d3425]
    • @​astrojs/language-server@​2.9.0

@​astrojs/check@​0.5.10

Patch Changes

  • 9ca368b: Update to the latest version of Volar. This release should fix some of the caching issues that has crept up recently
  • Updated dependencies [9ca368b]
  • Updated dependencies [d57daad]
  • Updated dependencies [b166787]
  • Updated dependencies [eb49fb2]
    • @​astrojs/language-server@​2.8.4

@​astrojs/check@​0.5.9

Patch Changes

  • f1447ef: chore: Update volar-service-prettier. This is only an internal refactor and there should be no visible changes.
  • Updated dependencies [f1447ef]
    • @​astrojs/language-server@​2.8.1

@​astrojs/check@​0.5.8

Patch Changes

  • 85b42dc: Update to the latest version of Volar. This release fixes a few issues such as missing Prettier crashing the language server in some cases, resolutions not working correctly inside TSX files, and more.
  • Updated dependencies [85b42dc]
    • @​astrojs/language-server@​2.8.0

@​astrojs/check@​0.5.7

Patch Changes

  • 1b68dfb: Improves descriptions for attributes specific to Astro (is:raw, set:html, etc.)
  • Updated dependencies [2bad6a8]
  • Updated dependencies [1b68dfb]

... (truncated)

Changelog

Sourced from @​astrojs/check's changelog.

0.7.0

Minor Changes

  • c8af6db: Upgrades the language server to use the latest version of Volar. This changes should have no negative impacts on the experience.

Patch Changes

  • Updated dependencies [c8af6db]
    • @​astrojs/language-server@​2.10.0

0.6.0

Minor Changes

  • 65d3425: Upgrades the language server to use Volar 2.2. This changes should have no negative impacts on the experience.

Patch Changes

  • Updated dependencies [65d3425]
    • @​astrojs/language-server@​2.9.0

0.5.10

Patch Changes

  • 9ca368b: Update to the latest version of Volar. This release should fix some of the caching issues that has crept up recently
  • Updated dependencies [9ca368b]
  • Updated dependencies [d57daad]
  • Updated dependencies [b166787]
  • Updated dependencies [eb49fb2]
    • @​astrojs/language-server@​2.8.4

0.5.9

Patch Changes

  • f1447ef: chore: Update volar-service-prettier. This is only an internal refactor and there should be no visible changes.
  • Updated dependencies [f1447ef]
    • @​astrojs/language-server@​2.8.1

0.5.8

Patch Changes

  • 85b42dc: Update to the latest version of Volar. This release fixes a few issues such as missing Prettier crashing the language server in some cases, resolutions not working correctly inside TSX files, and more.
  • Updated dependencies [85b42dc]
    • @​astrojs/language-server@​2.8.0

0.5.7

... (truncated)

Commits

Updates @astrojs/svelte from 5.3.0 to 5.4.0

Release notes

Sourced from @​astrojs/svelte's releases.

@​astrojs/svelte@​5.4.0

Minor Changes

Changelog

Sourced from @​astrojs/svelte's changelog.

5.4.0

Minor Changes

Commits

Updates astro from 4.5.16 to 4.8.7

Release notes

Sourced from astro's releases.

astro@4.8.7

Patch Changes

  • #11073 f5c8fee Thanks @​matthewp! - Prevent cache content from being left in dist folder

    When contentCollectionsCache is enabled temporary cached content is copied into the outDir for processing. This fixes it so that this content is cleaned out, along with the rest of the temporary build JS.

  • #11054 f6b171e Thanks @​bholmesdev! - Respect error status when handling Actions with a progressive fallback.

  • #11092 bfe9c73 Thanks @​duckycoding-dev! - Change slot attribute of IntrinsicAttributes to match the definition of HTMLAttributes's own slot attribute of type string | undefined | null

  • #10875 b5f95b2 Thanks @​W1M0R! - Fixes a typo in a JSDoc annotation

  • #11111 a5d79dd Thanks @​bholmesdev! - Fix unexpected headers warning on prerendered routes when using Astro Actions.

  • #11081 af42e05 Thanks @​V3RON! - Correctly position inspection tooltip in RTL mode

    When RTL mode is turned on, the inspection tooltip tend to overflow the window on the left side. Additional check has been added to prevent that.

astro@4.8.6

Patch Changes

astro@4.8.5

Patch Changes

astro@4.8.4

Patch Changes

  • #11026 8dfb1a2 Thanks @​bluwy! - Skips rendering script tags if it's inlined and empty when experimental.directRenderScript is enabled

  • #11043 d0d1710 Thanks @​bholmesdev! - Fixes minor type issues in actions component example

  • #10999 5f353e3 Thanks @​bluwy! - The prefetch feature is updated to better support different browsers and different cache headers setup, including:

... (truncated)

Changelog

Sourced from astro's changelog.

4.8.7

Patch Changes

  • #11073 f5c8fee Thanks @​matthewp! - Prevent cache content from being left in dist folder

    When contentCollectionsCache is enabled temporary cached content is copied into the outDir for processing. This fixes it so that this content is cleaned out, along with the rest of the temporary build JS.

  • #11054 f6b171e Thanks @​bholmesdev! - Respect error status when handling Actions with a progressive fallback.

  • #11092 bfe9c73 Thanks @​duckycoding-dev! - Change slot attribute of IntrinsicAttributes to match the definition of HTMLAttributes's own slot attribute of type string | undefined | null

  • #10875 b5f95b2 Thanks @​W1M0R! - Fixes a typo in a JSDoc annotation

  • #11111 a5d79dd Thanks @​bholmesdev! - Fix unexpected headers warning on prerendered routes when using Astro Actions.

  • #11081 af42e05 Thanks @​V3RON! - Correctly position inspection tooltip in RTL mode

    When RTL mode is turned on, the inspection tooltip tend to overflow the window on the left side. Additional check has been added to prevent that.

4.8.6

Patch Changes

4.8.5

Patch Changes

4.8.4

Patch Changes

  • #11026 8dfb1a2 Thanks @​bluwy! - Skips rendering script tags if it's inlined and empty when experimental.directRenderScript is enabled

... (truncated)

Commits

Updates cypress from 13.7.1 to 13.10.0

Release notes

Sourced from cypress's releases.

v13.10.0

Changelog: https://docs.cypress.io/guides/references/changelog#13-10-0

v13.9.0

Changelog: https://docs.cypress.io/guides/references/changelog#13-9-0

v13.8.1

Changelog: https://docs.cypress.io/guides/references/changelog#13-8-1

v13.8.0

Changelog: https://docs.cypress.io/guides/references/changelog#13-8-0

v13.7.3

Changelog: https://docs.cypress.io/guides/references/changelog#13-7-3

v13.7.2

Changelog: https://docs.cypress.io/guides/references/changelog#13-7-2

Commits

Updates lightningcss from 1.24.0 to 1.25.0

Release notes

Sourced from lightningcss's releases.

v1.25.0

This release adds more granular options for CSS modules, implements some new CSS properties, and fixes bugs.

Added

  • Add granular options to control which identifiers are scoped in CSS modules. You can turn off scoping for grid, animation, and custom_idents. This may be useful when migrating from other tools. See docs. Thanks @​timneutkens! 83839a98dbe0000acbdf039d968f33e1e8c50277
  • Optimize the all shorthand property to reset other properties except direction and unicode-bidi. d7aeff3db67ee9d15e0fefce9251cf41c0b8ec44
  • Implement animation-timeline property and add support for it in the animation shorthand f4408c7bdbbfa2c4cbdf5731b351811a0323fa8c

Fixed

  • Prevent simplifying translate: none and scale: none which are distinct from translate: 0 and scale: 1. Thanks @​RobinMalfait! a4cc0246d28c364c0f4e16552685bd911444bdc5
  • Fix crash on box-shadow with currentColor keyword. Thanks @​magic-akari! 06ba62f6d1af563cd8ad31dba13844f434345720
  • Fix minifier removing zero channels in color() function to follow spec change 445def9a77f89aa612fecb2f776261fc2c9d8f66
  • Fix CSS module scoping with variables in animation shorthand fb4b33488cbf54ba063de8babb42aec016a96ce8
  • Update browser compatibility data ec9da43eeb1a236f5fd8dc472b3fe060c3db9a79

v1.24.1

  • Disabled CSS transform optimizations using matrix(), which could break transitions and animations. – parcel-bundler/lightningcss#694
  • Merge @supports declarations with the same property (minus vendor prefix) and value – 6bd2761badb9d5434783acffcae35ef6c3311e06
Commits
  • 81d21b9 v1.25.0
  • f4408c7 Implement animation-timeline property and add to animation shorthand
  • ec9da43 update browser compat data
  • fb4b334 fix CSS module scoping with variables
  • 83839a9 Add granular CSS Modules options (#739)
  • 445def9 fix minifying predefined color spaces
  • 7c34ba5 Merge branch 'master' of github.com:parcel-bundler/lightningcss
  • 4a168e9 fixup ast
  • 06ba62f Fix box-shadow combination of oklch and currentColor (#722)
  • 029c88e fixup ast
  • Additional commits viewable in compare view

Updates tsx from 4.7.1 to 4.11.0

Release notes

Sourced from tsx's releases.

v4.11.0

4.11.0 (2024-05-23)

Bug Fixes

  • only error on invalid tsconfig if explicitly passed in (#30) (b6bf39b)

Features

  • esm api: configurable tsconfig (3f42ae3)

This release is also available on:

v4.10.5

4.10.5 (2024-05-18)

Bug Fixes


This release is also available on:

v4.10.4

4.10.4 (2024-05-17)

Bug Fixes


This release is also available on:

... (truncated)

Commits
  • b6bf39b fix: only error on invalid tsconfig if explicitly passed in (#30)
  • 3f42ae3 feat(esm api): configurable tsconfig
  • 52d696c docs: use .md extension in links
  • b54131c refactor: reuse tsconfig util
  • eeaefd6 test: separate tsconfig tests
  • 9cf2115 test: refactor organize fixtures
  • a71c437 chore: update tsconfig.json
  • 86cf87c fix: handle parsing variable of
  • 4a8a2dc fix(cjs): support file url (#18)
  • 942e9bc fix: V8 coverage support
  • 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

…th 6 updates

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

| Package | From | To |
| --- | --- | --- |
| [@astrojs/check](https://github.com/withastro/language-tools/tree/HEAD/packages/astro-check) | `0.5.6` | `0.7.0` |
| [@astrojs/svelte](https://github.com/withastro/astro/tree/HEAD/packages/integrations/svelte) | `5.3.0` | `5.4.0` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `4.5.16` | `4.8.7` |
| [cypress](https://github.com/cypress-io/cypress) | `13.7.1` | `13.10.0` |
| [lightningcss](https://github.com/parcel-bundler/lightningcss) | `1.24.0` | `1.25.0` |
| [tsx](https://github.com/privatenumber/tsx) | `4.7.1` | `4.11.0` |



Updates `@astrojs/check` from 0.5.6 to 0.7.0
- [Release notes](https://github.com/withastro/language-tools/releases)
- [Changelog](https://github.com/withastro/language-tools/blob/main/packages/astro-check/CHANGELOG.md)
- [Commits](https://github.com/withastro/language-tools/commits/@astrojs/check@0.7.0/packages/astro-check)

Updates `@astrojs/svelte` from 5.3.0 to 5.4.0
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/svelte/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/svelte@5.4.0/packages/integrations/svelte)

Updates `astro` from 4.5.16 to 4.8.7
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/astro@4.8.7/packages/astro)

Updates `cypress` from 13.7.1 to 13.10.0
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v13.7.1...v13.10.0)

Updates `lightningcss` from 1.24.0 to 1.25.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](parcel-bundler/lightningcss@v1.24.0...v1.25.0)

Updates `tsx` from 4.7.1 to 4.11.0
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.7.1...v4.11.0)

---
updated-dependencies:
- dependency-name: "@astrojs/check"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: devdependencies
- dependency-name: "@astrojs/svelte"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: devdependencies
- dependency-name: astro
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: devdependencies
- dependency-name: cypress
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: devdependencies
- dependency-name: lightningcss
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: devdependencies
- dependency-name: tsx
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: devdependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner May 23, 2024 09:05
@dependabot dependabot bot requested a review from a team May 23, 2024 09:05
@dependabot dependabot bot requested review from a team as code owners May 23, 2024 09:05
@dependabot dependabot bot added dependencies javascript Pull requests that update Javascript code labels May 23, 2024
Copy link

changeset-bot bot commented May 23, 2024

⚠️ No Changeset found

Latest commit: bf0ea54

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 labels May 23, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github May 23, 2024

Superseded by #1479.

@dependabot dependabot bot closed this May 23, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/devdependencies-45c66c1b87 branch May 23, 2024 10:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies @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