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): bump the astro group across 1 directory with 6 updates #146

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 Mar 1, 2025

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

Package From To
@astrojs/solid-js 4.4.1 5.0.5
@astrojs/tailwind 5.1.0 6.0.0
@astrojs/vercel 7.8.0 8.1.0
astro 4.15.1 5.4.1
@astrojs/ts-plugin 1.10.1 1.10.4
eslint-plugin-astro 1.2.3 1.3.1

Updates @astrojs/solid-js from 4.4.1 to 5.0.5

Release notes

Sourced from @​astrojs/solid-js's releases.

@​astrojs/solid-js@​5.0.5

Patch Changes

  • #13323 80926fa Thanks @​ematipico! - Updates esbuild and vite to the latest to avoid false positives audits warnings caused by esbuild.

@​astrojs/solid-js@​5.0.4

Patch Changes

@​astrojs/solid-js@​5.0.3

Patch Changes

  • #12887 ea603ae Thanks @​louisescher! - Adds a warning message when multiple JSX-based UI frameworks are being used without either the include or exclude property being set on the integration.

@​astrojs/solid-js@​5.0.2

Patch Changes

@​astrojs/solid-js@​5.0.1

Patch Changes

Changelog

Sourced from @​astrojs/solid-js's changelog.

5.0.5

Patch Changes

  • #13323 80926fa Thanks @​ematipico! - Updates esbuild and vite to the latest to avoid false positives audits warnings caused by esbuild.

5.0.4

Patch Changes

5.0.3

Patch Changes

  • #12887 ea603ae Thanks @​louisescher! - Adds a warning message when multiple JSX-based UI frameworks are being used without either the include or exclude property being set on the integration.

5.0.2

Patch Changes

5.0.1

Patch Changes

5.0.0

Major Changes

Minor Changes

Patch Changes

5.0.0-beta.1

Major Changes

... (truncated)

Commits

Updates @astrojs/tailwind from 5.1.0 to 6.0.0

Release notes

Sourced from @​astrojs/tailwind's releases.

@​astrojs/tailwind@​6.0.0

Major Changes

  • #13049 2ed4bd9 Thanks @​florian-lefebvre! - Deprecates the integration

    Tailwind CSS now offers a Vite plugin which is the preferred way to use Tailwind 4 in Astro. Please uninstall @astrojs/tailwind and follow the Tailwind documentation for manual installation.

    This updated major version is only provided as a convenience for existing projects until they are able to migrate to the new plugin. It offers no additional functionality and is no longer recommended, but may continue to be used in your projects until it is removed entirely.

@​astrojs/tailwind@​5.1.5

Patch Changes

@​astrojs/tailwind@​5.1.4

Patch Changes

Changelog

Sourced from @​astrojs/tailwind's changelog.

6.0.0

Major Changes

  • #13049 2ed4bd9 Thanks @​florian-lefebvre! - Deprecates the integration

    Tailwind CSS now offers a Vite plugin which is the preferred way to use Tailwind 4 in Astro. Please uninstall @astrojs/tailwind and follow the Tailwind documentation for manual installation.

    This updated major version is only provided as a convenience for existing projects until they are able to migrate to the new plugin. It offers no additional functionality and is no longer recommended, but may continue to be used in your projects until it is removed entirely.

5.1.5

Patch Changes

5.1.4

Patch Changes

5.1.3

Patch Changes

6.0.0-alpha.0

Patch Changes

5.1.2

Patch Changes

  • #12161 8e500f2 Thanks @​delucis! - Adds keywords to package.json to improve categorization in the Astro integrations catalog

6.0.0-alpha.0

Patch Changes

5.1.1

... (truncated)

Commits

Updates @astrojs/vercel from 7.8.0 to 8.1.0

Release notes

Sourced from @​astrojs/vercel's releases.

@​astrojs/vercel@​8.1.0

Minor Changes

  • #13211 7ea0aba Thanks @​slawekkolodziej! - Adds support for regular expressions in ISR exclude list

    Previously, excluding a page from ISR required explicitly listing it in isr.exclude. As websites grew larger, maintaining this list became increasingly difficult, especially for multiple API routes and pages that needed server-side rendering.

    To address this, ISR exclusions now support regular expressions, allowing for more flexible and scalable configurations.

    // astro.config.mjs
    import vercel from '@astrojs/vercel/serverless';
    export default defineConfig({
    output: 'server',
    adapter: vercel({
    isr: {
    exclude: [
    '/preview', // Excludes a specific route (e.g., pages/preview.astro)
    '/auth/[page]', // Excludes a dynamic route (e.g., pages/auth/[page].astro)
    /^/api/.+/, // Excludes all routes starting with /api/
    ],
    },
    }),
    });

Patch Changes

  • #13323 80926fa Thanks @​ematipico! - Updates esbuild and vite to the latest to avoid false positives audits warnings caused by esbuild.

  • Updated dependencies [1e11f5e]:

    • @​astrojs/internal-helpers@​0.6.0

@​astrojs/vercel@​8.0.8

Patch Changes

@​astrojs/vercel@​8.0.7

Patch Changes

Changelog

Sourced from @​astrojs/vercel's changelog.

8.1.0

Minor Changes

  • #13211 7ea0aba Thanks @​slawekkolodziej! - Adds support for regular expressions in ISR exclude list

    Previously, excluding a page from ISR required explicitly listing it in isr.exclude. As websites grew larger, maintaining this list became increasingly difficult, especially for multiple API routes and pages that needed server-side rendering.

    To address this, ISR exclusions now support regular expressions, allowing for more flexible and scalable configurations.

    // astro.config.mjs
    import vercel from '@astrojs/vercel/serverless';
    export default defineConfig({
    output: 'server',
    adapter: vercel({
    isr: {
    exclude: [
    '/preview', // Excludes a specific route (e.g., pages/preview.astro)
    '/auth/[page]', // Excludes a dynamic route (e.g., pages/auth/[page].astro)
    /^/api/.+/, // Excludes all routes starting with /api/
    ],
    },
    }),
    });

Patch Changes

  • #13323 80926fa Thanks @​ematipico! - Updates esbuild and vite to the latest to avoid false positives audits warnings caused by esbuild.

  • Updated dependencies [1e11f5e]:

    • @​astrojs/internal-helpers@​0.6.0

8.0.8

Patch Changes

8.0.7

Patch Changes

8.0.6

... (truncated)

Commits

Updates astro from 4.15.1 to 5.4.1

Release notes

Sourced from astro's releases.

[email protected]

Patch Changes

  • #13336 8f632ef Thanks @​ematipico! - Fixes a regression where some asset utilities were move across monorepo, and not re-exported anymore.

  • #13320 b5dabe9 Thanks @{! - Adds support for typing experimental session data

    You can add optional types to your session data by creating a src/env.d.ts file in your project that extends the global App.SessionData interface. For example:

    declare namespace App {
      interface SessionData {
      id: string;
      email: string;
    };
    lastLogin: Date;
    
    }
    }

    Any keys not defined in this interface will be treated as any.

    Then when you access Astro.session in your components, any defined keys will be typed correctly:

    ---
    const user = await Astro.session.get('user');
    //    ^? const: user: { id: string; email: string; } | undefined
    const something = await Astro.session.get('something');
    //    ^? const: something: any
    Astro.session.set('user', 1);
    //    ^? Argument of type 'number' is not assignable to parameter of type '{ id: string; email: string; }'.

    See the experimental session docs for more information.

  • #13330 5e7646e Thanks @​ematipico! - Fixes an issue with the conditional rendering of scripts.

    This change updates a v5.0 breaking change when experimental.directRenderScript became the default script handling behavior.

    If you have already successfully upgraded to Astro v5, you may need to review your script tags again and make sure they still behave as desired after this release. See the v5 Upgrade Guide for more details.

[email protected]

Minor Changes

... (truncated)

Changelog

Sourced from astro's changelog.

5.4.1

Patch Changes

  • #13336 8f632ef Thanks @​ematipico! - Fixes a regression where some asset utilities were move across monorepo, and not re-exported anymore.

  • #13320 b5dabe9 Thanks @{! - Adds support for typing experimental session data

    You can add optional types to your session data by creating a src/env.d.ts file in your project that extends the global App.SessionData interface. For example:

    declare namespace App {
      interface SessionData {
      id: string;
      email: string;
    };
    lastLogin: Date;
    
    }
    }

    Any keys not defined in this interface will be treated as any.

    Then when you access Astro.session in your components, any defined keys will be typed correctly:

    ---
    const user = await Astro.session.get('user');
    //    ^? const: user: { id: string; email: string; } | undefined
    const something = await Astro.session.get('something');
    //    ^? const: something: any
    Astro.session.set('user', 1);
    //    ^? Argument of type 'number' is not assignable to parameter of type '{ id: string; email: string; }'.

    See the experimental session docs for more information.

  • #13330 5e7646e Thanks @​ematipico! - Fixes an issue with the conditional rendering of scripts.

    This change updates a v5.0 breaking change when experimental.directRenderScript became the default script handling behavior.

    If you have already successfully upgraded to Astro v5, you may need to review your script tags again and make sure they still behave as desired after this release. See the v5 Upgrade Guide for more details.

5.4.0

Minor Changes

... (truncated)

Commits

Updates @astrojs/ts-plugin from 1.10.1 to 1.10.4

Release notes

Sourced from @​astrojs/ts-plugin's releases.

@​astrojs/ts-plugin@​1.10.4

Patch Changes

  • 128cf11: Improves performance when using TS 5.6. Performance is still degraded compared to 5.5, but should at least be usable.
  • Updated dependencies [128cf11]
    • @​astrojs/yaml2ts@​0.2.2

@​astrojs/ts-plugin@​1.10.3

Patch Changes

  • 8673fa5: Fixes certain cases where content schemas would not be reloaded properly when they were updated

@​astrojs/ts-plugin@​1.10.2

Patch Changes

  • af5bbc5: Fixes content intellisense not working inside Markdoc files using the markdoc language identifier
Changelog

Sourced from @​astrojs/ts-plugin's changelog.

1.10.4

Patch Changes

  • 128cf11: Improves performance when using TS 5.6. Performance is still degraded compared to 5.5, but should at least be usable.
  • Updated dependencies [128cf11]
    • @​astrojs/yaml2ts@​0.2.2

1.10.3

Patch Changes

  • 8673fa5: Fixes certain cases where content schemas would not be reloaded properly when they were updated

1.10.2

Patch Changes

  • af5bbc5: Fixes content intellisense not working inside Markdoc files using the markdoc language identifier
Commits

Updates eslint-plugin-astro from 1.2.3 to 1.3.1

Release notes

Sourced from eslint-plugin-astro's releases.

v1.3.1

Patch Changes

v1.3.0

Minor Changes

v1.2.4

Patch Changes

Changelog

Sourced from eslint-plugin-astro's changelog.

1.3.1

Patch Changes

1.3.0

Minor Changes

1.2.4

Patch Changes

Commits
  • 37a77ef chore: release eslint-plugin-astro (#446)
  • 1133962 fix: preserve whitespace between attributes in sort-attributes rule (#445)
  • 6ffa048 fix(deps): update dependency eslint-compat-utils to ^0.6.0 (#443)
  • db90a41 chore: add doc-renderer for generating & updating detailed rule docs (#442)
  • ae7c6a4 chore(deps): update dependency postcss-nested to v7 (#441)
  • 6579f49 chore(deps): update dependency @​types/node to v22 (#440)
  • b525f44 fix(deps): update dependency postcss-selector-parser to v7 (#435)
  • 5db7673 chore(deps): update coverallsapp/github-action action to v2.3.4 (#436)
  • 8d9e0a2 chore: move 'utils/rules.ts' to 'rules/index.ts' (#439)
  • fd8bc14 chore: remove redundant assignments & use "createRequire" (#437)
  • 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

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

| Package | From | To |
| --- | --- | --- |
| [@astrojs/solid-js](https://github.com/withastro/astro/tree/HEAD/packages/integrations/solid) | `4.4.1` | `5.0.5` |
| [@astrojs/tailwind](https://github.com/withastro/astro/tree/HEAD/packages/integrations/tailwind) | `5.1.0` | `6.0.0` |
| [@astrojs/vercel](https://github.com/withastro/astro/tree/HEAD/packages/integrations/vercel) | `7.8.0` | `8.1.0` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `4.15.1` | `5.4.1` |
| [@astrojs/ts-plugin](https://github.com/withastro/language-tools/tree/HEAD/packages/ts-plugin) | `1.10.1` | `1.10.4` |
| [eslint-plugin-astro](https://github.com/ota-meshi/eslint-plugin-astro) | `1.2.3` | `1.3.1` |



Updates `@astrojs/solid-js` from 4.4.1 to 5.0.5
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/solid/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/integrations/solid)

Updates `@astrojs/tailwind` from 5.1.0 to 6.0.0
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/tailwind/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/integrations/tailwind)

Updates `@astrojs/vercel` from 7.8.0 to 8.1.0
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/vercel/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/integrations/vercel)

Updates `astro` from 4.15.1 to 5.4.1
- [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/[email protected]/packages/astro)

Updates `@astrojs/ts-plugin` from 1.10.1 to 1.10.4
- [Release notes](https://github.com/withastro/language-tools/releases)
- [Changelog](https://github.com/withastro/language-tools/blob/main/packages/ts-plugin/CHANGELOG.md)
- [Commits](https://github.com/withastro/language-tools/commits/@astrojs/[email protected]/packages/ts-plugin)

Updates `eslint-plugin-astro` from 1.2.3 to 1.3.1
- [Release notes](https://github.com/ota-meshi/eslint-plugin-astro/releases)
- [Changelog](https://github.com/ota-meshi/eslint-plugin-astro/blob/main/CHANGELOG.md)
- [Commits](ota-meshi/eslint-plugin-astro@v1.2.3...v1.3.1)

---
updated-dependencies:
- dependency-name: "@astrojs/solid-js"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: astro
- dependency-name: "@astrojs/tailwind"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: astro
- dependency-name: "@astrojs/vercel"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: astro
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: astro
- dependency-name: "@astrojs/ts-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: astro
- dependency-name: eslint-plugin-astro
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: astro
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 1, 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