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 #1479

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.9.0
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.9.0

Release notes

Sourced from astro's releases.

astro@4.9.0

Minor Changes

  • #11051 12a1bcc Thanks @​ematipico! - Introduces an experimental Container API to render .astro components in isolation.

    This API introduces three new functions to allow you to create a new container and render an Astro component returning either a string or a Response:

    • create(): creates a new instance of the container.
    • renderToString(): renders a component and return a string.
    • renderToResponse(): renders a component and returns the Response emitted by the rendering phase.

    The first supported use of this new API is to enable unit testing. For example, with vitest, you can create a container to render your component with test data and check the result:

    import { experimental_AstroContainer as AstroContainer } from 'astro/container';
    import { expect, test } from 'vitest';
    import Card from '../src/components/Card.astro';
    test('Card with slots', async () => {
    const container = await AstroContainer.create();
    const result = await container.renderToString(Card, {
    slots: {
    default: 'Card content',
    },
    });
    expect(result).toContain('This is a card');
    expect(result).toContain('Card content');
    });

    For a complete reference, see the Container API docs.

    For a feature overview, and to give feedback on this experimental API, see the Container API roadmap discussion.

  • #11021 2d4c8fa Thanks @​ematipico! - The CSRF protection feature that was introduced behind a flag in v4.6.0 is no longer experimental and is available for general use.

    To enable the stable version, add the new top-level security option in astro.config.mjs. If you were previously using the experimental version of this feature, also delete the experimental flag:

    export default defineConfig({
    -  experimental: {
    -    security: {
    -      csrfProtection: {
    -        origin: true
    -      }
    -    }
    -  },
    +  security: {
    +    checkOrigin: true

... (truncated)

Changelog

Sourced from astro's changelog.

4.9.0

Minor Changes

  • #11051 12a1bcc Thanks @​ematipico! - Introduces an experimental Container API to render .astro components in isolation.

    This API introduces three new functions to allow you to create a new container and render an Astro component returning either a string or a Response:

    • create(): creates a new instance of the container.
    • renderToString(): renders a component and return a string.
    • renderToResponse(): renders a component and returns the Response emitted by the rendering phase.

    The first supported use of this new API is to enable unit testing. For example, with vitest, you can create a container to render your component with test data and check the result:

    import { experimental_AstroContainer as AstroContainer } from 'astro/container';
    import { expect, test } from 'vitest';
    import Card from '../src/components/Card.astro';
    test('Card with slots', async () => {
    const container = await AstroContainer.create();
    const result = await container.renderToString(Card, {
    slots: {
    default: 'Card content',
    },
    });
    expect(result).toContain('This is a card');
    expect(result).toContain('Card content');
    });

    For a complete reference, see the Container API docs.

    For a feature overview, and to give feedback on this experimental API, see the Container API roadmap discussion.

  • #11021 2d4c8fa Thanks @​ematipico! - The CSRF protection feature that was introduced behind a flag in v4.6.0 is no longer experimental and is available for general use.

    To enable the stable version, add the new top-level security option in astro.config.mjs. If you were previously using the experimental version of this feature, also delete the experimental flag:

    export default defineConfig({
    -  experimental: {
    -    security: {
    -      csrfProtection: {
    -        origin: true
    -      }
    -    }
    -  },
    +  security: {

... (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

@dependabot dependabot bot requested review from a team as code owners May 23, 2024 10:19
@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: ab16abd

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
@sndrs
Copy link
Member

sndrs commented May 23, 2024

@dependabot recreate

…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.9.0` |
| [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.9.0
- [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.9.0/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 force-pushed the dependabot/npm_and_yarn/devdependencies-70926631c8 branch from 079b36a to ab16abd Compare May 23, 2024 14:23
Copy link
Contributor Author

dependabot bot commented on behalf of github May 23, 2024

The group that created this PR has been removed from your configuration.

@dependabot dependabot bot closed this May 23, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/devdependencies-70926631c8 branch May 23, 2024 15:09
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.

None yet

1 participant