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 dependencies group across 1 directory with 21 updates #143

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jun 17, 2024

Bumps the dependencies group with 20 updates in the / directory:

Package From To
@astrojs/check 0.5.6 0.7.0
@astrojs/solid-js 4.0.1 4.4.0
@astrojs/vercel 7.3.5 7.7.1
@biomejs/biome 1.5.3 1.8.1
@fontsource/open-sans 5.0.25 5.0.28
@fontsource/pt-mono 5.0.12 5.0.13
@fortawesome/free-solid-svg-icons 6.5.1 6.5.2
@pandacss/dev 0.34.1 0.41.0
@prisma/client 5.10.2 5.15.0
@solidjs/meta 0.29.3 0.29.4
@solidjs/router 0.12.5 0.13.5
@vanilla-extract/integration 7.1.1 7.1.6
astro 4.4.15 4.10.3
babel-preset-solid 1.8.15 1.8.17
bungie-api-ts 5.0.0 5.1.0
npm-check-updates 16.14.15 16.14.20
prisma 5.10.2 5.15.0
solid-js 1.8.15 1.8.17
typescript 5.4.2 5.4.5
@types/node 20.11.25 20.14.2

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/solid-js from 4.0.1 to 4.4.0

Release notes

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

@​astrojs/solid-js@​4.4.0

Minor Changes

  • #11234 4385bf7 Thanks @​ematipico! - Adds a new function called addServerRenderer to the Container API. Use this function to manually store renderers inside the instance of your container.

    This new function should be preferred when using the Container API in environments like on-demand pages:

    import type { APIRoute } from 'astro';
    import { experimental_AstroContainer } from 'astro/container';
    import reactRenderer from '@astrojs/react/server.js';
    import vueRenderer from '@astrojs/vue/server.js';
    import ReactComponent from '../components/button.jsx';
    import VueComponent from '../components/button.vue';
    // MDX runtime is contained inside the Astro core
    import mdxRenderer from 'astro/jsx/server.js';
    // In case you need to import a custom renderer
    import customRenderer from '../renderers/customRenderer.js';
    export const GET: APIRoute = async (ctx) => {
    const container = await experimental_AstroContainer.create();
    container.addServerRenderer({ renderer: reactRenderer });
    container.addServerRenderer({ renderer: vueRenderer });
    container.addServerRenderer({ renderer: customRenderer });
    // You can pass a custom name too
    container.addServerRenderer({
    name: 'customRenderer',
    renderer: customRenderer,
    });
    const vueComponent = await container.renderToString(VueComponent);
    return await container.renderToResponse(Component);
    };

@​astrojs/solid-js@​4.3.0

Minor Changes

  • #11144 803dd80 Thanks @​ematipico! - The integration now exposes a function called getContainerRenderer, that can be used inside the Container APIs to load the relative renderer.

    import { experimental_AstroContainer as AstroContainer } from 'astro/container';
    import ReactWrapper from '../src/components/ReactWrapper.astro';
    import { loadRenderers } from 'astro:container';
    import { getContainerRenderer } from '@astrojs/react';
    test('ReactWrapper with react renderer', async () => {
    const renderers = await loadRenderers([getContainerRenderer()]);
    const container = await AstroContainer.create({

... (truncated)

Changelog

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

4.4.0

Minor Changes

  • #11234 4385bf7 Thanks @​ematipico! - Adds a new function called addServerRenderer to the Container API. Use this function to manually store renderers inside the instance of your container.

    This new function should be preferred when using the Container API in environments like on-demand pages:

    import type { APIRoute } from 'astro';
    import { experimental_AstroContainer } from 'astro/container';
    import reactRenderer from '@astrojs/react/server.js';
    import vueRenderer from '@astrojs/vue/server.js';
    import ReactComponent from '../components/button.jsx';
    import VueComponent from '../components/button.vue';
    // MDX runtime is contained inside the Astro core
    import mdxRenderer from 'astro/jsx/server.js';
    // In case you need to import a custom renderer
    import customRenderer from '../renderers/customRenderer.js';
    export const GET: APIRoute = async (ctx) => {
    const container = await experimental_AstroContainer.create();
    container.addServerRenderer({ renderer: reactRenderer });
    container.addServerRenderer({ renderer: vueRenderer });
    container.addServerRenderer({ renderer: customRenderer });
    // You can pass a custom name too
    container.addServerRenderer({
    name: 'customRenderer',
    renderer: customRenderer,
    });
    const vueComponent = await container.renderToString(VueComponent);
    return await container.renderToResponse(Component);
    };

4.3.0

Minor Changes

  • #11144 803dd80 Thanks @​ematipico! - The integration now exposes a function called getContainerRenderer, that can be used inside the Container APIs to load the relative renderer.

    import { experimental_AstroContainer as AstroContainer } from 'astro/container';
    import ReactWrapper from '../src/components/ReactWrapper.astro';
    import { loadRenderers } from 'astro:container';
    import { getContainerRenderer } from '@astrojs/react';
    test('ReactWrapper with react renderer', async () => {

... (truncated)

Commits

Updates @astrojs/vercel from 7.3.5 to 7.7.1

Release notes

Sourced from @​astrojs/vercel's releases.

@​astrojs/vercel@​7.7.1

Patch Changes

@​astrojs/vercel@​7.7.0

Minor Changes

@​astrojs/vercel@​7.6.0

Minor Changes

@​astrojs/vercel@​7.5.4

Patch Changes

@​astrojs/vercel@​7.5.3

Patch Changes

Changelog

Sourced from @​astrojs/vercel's changelog.

7.7.1

Patch Changes

7.7.0

Minor Changes

7.6.0

Minor Changes

7.5.4

Patch Changes

7.5.3

Patch Changes

7.5.2

Patch Changes

7.5.1

Patch Changes

7.5.0

Minor Changes

... (truncated)

Commits

Updates @biomejs/biome from 1.5.3 to 1.8.1

Release notes

Sourced from @​biomejs/biome's releases.

CLI v1.8.1

CLI

Bug fixes

  • Fix #3069, prevent overwriting paths when using --staged or --changed options. Contributed by @​unvalley
  • Fix a case where the file link inside a diagnostic wasn't correctly displayed inside a terminal run by VSCode. Contributed by @​uncenter

Configuration

Bug fixes

  • Fix #3067, by assigning the correct default value to indentWidth. Contributed by @​ematipico

Formatter

Bug fixes

  • Fix the bug where whitespace after the & character in CSS nesting was incorrectly trimmed, ensuring proper targeting of child classes #3061. Contributed by @​denbezrukov
  • Fix #3068 where the CSS formatter was inadvertently converting variable declarations and function calls to lowercase. Contributed by @​denbezrukov
  • Fix the formatting of CSS grid layout properties. Contributed by @​denbezrukov

Linter

Bug fixes

  • The noEmptyBlock css lint rule now treats empty blocks containing comments as valid ones. Contributed by @​Sec-ant

  • useLiteralKeys no longer reports quoted member names (#3085).

    Previously useLiteralKeys reported quoted member names that can be unquoted. For example, the rule suggested the following fix:

    - const x = { "prop": 0 };
    + const x = { prop: 0 };

    This conflicted with the option quoteProperties of our formatter.

    The rule now ignores quoted member names.

    Contributed by @​Conaclos

  • noEmptyInterface now ignores empty interfaces in ambient modules (#3110). Contributed by @​Conaclos

  • noUnusedVariables and noUnusedFunctionParameters no longer report the parameters of a constructor type (#3135).

    Previously, arg was reported as unused in a constructor type like:

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

v1.8.1 (2024-06-10)

Analyzer

CLI

Bug fixes

  • Fix #3069, prevent overwriting paths when using --staged or --changed options. Contributed by @​unvalley
  • Fix a case where the file link inside a diagnostic wasn't correctly displayed inside a terminal run by VSCode. Contributed by @​uncenter

Configuration

Bug fixes

  • Fix #3067, by assigning the correct default value to indentWidth. Contributed by @​ematipico

Editors

Formatter

Bug fixes

  • Fix the bug where whitespace after the & character in CSS nesting was incorrectly trimmed, ensuring proper targeting of child classes #3061. Contributed by @​denbezrukov
  • Fix #3068 where the CSS formatter was inadvertently converting variable declarations and function calls to lowercase. Contributed by @​denbezrukov
  • Fix the formatting of CSS grid layout properties. Contributed by @​denbezrukov

JavaScript APIs

Linter

Bug fixes

  • The noEmptyBlock css lint rule now treats empty blocks containing comments as valid ones. Contributed by @​Sec-ant

  • useLiteralKeys no longer reports quoted member names (#3085).

    Previously useLiteralKeys reported quoted member names that can be unquoted. For example, the rule suggested the following fix:

    - const x = { "prop": 0 };
    + const x = { prop: 0 };

    This conflicted with the option quoteProperties of our formatter.

    The rule now ignores quoted member names.

    Contributed by @​Conaclos

... (truncated)

Commits

Updates @fontsource/open-sans from 5.0.25 to 5.0.28

Commits

Updates @fontsource/pt-mono from 5.0.12 to 5.0.13

Commits

Updates @fortawesome/free-solid-svg-icons from 6.5.1 to 6.5.2

Release notes

Sourced from @​fortawesome/free-solid-svg-icons's releases.

Release 6.5.2

Change log available at https://fontawesome.com/docs/changelog/

Commits

Updates @pandacss/dev from 0.34.1 to 0.41.0

Release notes

Sourced from @​pandacss/dev's releases.

@​pandacss/dev@​0.41.0

Patch Changes

  • @​pandacss/node@​0.41.0
  • @​pandacss/types@​0.41.0
  • @​pandacss/postcss@​0.41.0
  • @​pandacss/config@​0.41.0
  • @​pandacss/logger@​0.41.0
  • @​pandacss/preset-panda@​0.41.0
  • @​pandacss/shared@​0.41.0
  • @​pandacss/token-dictionary@​0.41.0

@​pandacss/dev@​0.40.1

Patch Changes

  • 48ff2b8: Improve panda init --outdir=<x> command to reflect outdir in generated panda config file.
  • Updated dependencies [48ff2b8]
    • @​pandacss/node@​0.40.1
    • @​pandacss/postcss@​0.40.1
    • @​pandacss/config@​0.40.1
    • @​pandacss/logger@​0.40.1
    • @​pandacss/preset-panda@​0.40.1
    • @​pandacss/shared@​0.40.1
    • @​pandacss/token-dictionary@​0.40.1
    • @​pandacss/types@​0.40.1

@​pandacss/dev@​0.40.0

Minor Changes

  • 5dcdae4: Improve monorepo setup DX by exposing some cli flags

    panda init

    • Added new flag --no-codegen to skip codegen during initialization
    • Added new flag --outdir to specify the output directory for generated files

    panda emit-pkg

    • Added new --base flag to specify the base directory for the entrypoints in the generated package.json#exports field

Patch Changes

  • Updated dependencies [5dcdae4]
    • @​pandacss/node@​0.40.0
    • @​pandacss/postcss@​0.40.0
    • @​pandacss/config@​0.40.0
    • @​pandacss/logger@​0.40.0
    • @​pandacss/preset-panda@​0.40.0
    • @​pandacss/shared@​0.40.0

... (truncated)

Changelog

Sourced from @​pandacss/dev's changelog.

0.41.0

Patch Changes

  • @​pandacss/node@​0.41.0
  • @​pandacss/types@​0.41.0
  • @​pandacss/postcss@​0.41.0
  • @​pandacss/config@​0.41.0
  • @​pandacss/logger@​0.41.0
  • @​pandacss/preset-panda@​0.41.0
  • @​pandacss/shared@​0.41.0
  • @​pandacss/token-dictionary@​0.41.0

0.40.1

Patch Changes

  • 48ff2b8: Improve panda init --outdir=<x> command to reflect outdir in generated panda config file.
  • Updated dependencies [48ff2b8]
    • @​pandacss/node@​0.40.1
    • @​pandacss/postcss@​0.40.1
    • @​pandacss/config@​0.40.1
    • @​pandacss/logger@​0.40.1
    • @​pandacss/preset-panda@​0.40.1
    • @​pandacss/shared@​0.40.1
    • @​pandacss/token-dictionary@​0.40.1
    • @​pandacss/types@​0.40.1

0.40.0

Minor Changes

  • 5dcdae4: Improve monorepo setup DX by exposing some cli flags

    panda init

    • Added new flag --no-codegen to skip codegen during initialization
    • Added new flag --outdir to specify the output directory for generated files

    panda emit-pkg

    • Added new --base flag to specify the base directory for the entrypoints in the generated package.json#exports field

Patch Changes

  • Updated dependencies [5dcdae4]
    • @​pandacss/node@​0.40.0
    • @​pandacss/postcss@​0.40.0
    • @​pandacss/config@​0.40.0

... (truncated)

Commits

Updates @prisma/client from 5.10.2 to 5.15.0

Release notes

Sourced from @​prisma/client's releases.

5.15.0

Today, we are excited to share the 5.15.0 stable release 🎉

🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release. 🌟

Highlights

Multi-File Prisma Schema support

Prisma ORM 5.15.0 features support for multi-file Prisma Schema in Preview.

This closes a long standing issue and does so in a clean and easy to migrate way.

To get started:

  1. Enable the prismaSchemaFolder Preview feature by including it in the previewFeatures field of your generator.
    datasource db {
      provider = "postgresql"
      url      = env("DATABASE_URL")
    }
    generator client {
    provider        = "prisma-client-js"
    previewFeatures = ["prismaSchemaFolder"]
    }

  2. Create a schema subdirectory under your prisma directory.
  3. Move your schema.prisma into this directory.

You are now set up with a multi-file Prisma Schema! Add as many or as few .prisma files to the new prisma/schema directory.

When running commands where a Prisma Schema file is expected to be provided, you can now define a Prisma Schema directory. This includes Prisma CLI commands that use the --schema option as well as defining schema via package.json

Our tooling has also been updated to handle multiple Prisma Schema files. This includes our Visual Studio Code extension and tools like database introspection, which will deposit new models in a introspected.prisma file. Existing models will be updated in the file they are found.

To learn more, please refer to our official documentation and announcement blog post. If you try out prismaSchemaFolder, please let us know!

Interesting Bug Fixes

Fix for PostgreSQL prepared statement caching for raw queries

This release fixes a nasty bug with the caching of prepared statements in raw Prisma Client queries that affected PostgreSQL when you ran the same SQL statement with differently typed paramters. This should not fail any more.

Fix for SQL Server introspection of (deprecated) CREATE DEFAULT

Our Introspection logic crashed on encountering certain multi-line CREATE DEFAULT, a deprecated way to define defaults in SQL Server. As many SQL Server users are working with established databases, this happened frequently enough that we now explicitly ignore these defaults instead of crashing.

Fix for Cloudflare D1’s lower parameter limit

... (truncated)

Commits
  • 9dc475c chore(tests): Remove providerFeatures from functional test example and docs...
  • a39c5b9 chore(deps): update engines to 5.15.0-29.12e25d8d06f6ea5a0252864dd9a03b1bb51f...
  • 1d00bdd chore(deps): update engines to 5.15.0-28.7320bfae295254d9b1fefc5030ff162143c7...
  • 3b3d0c9 fix(adapter-d1): maxBoundValues (#24393)
  • a7bc5b9 chore(deps): update dependency @​libsql/client to v0.6.2 (#24391)
  • f3e827c chore(deps): update dependency wrangler to v3.58.0 (#24384)
  • d2beef0 chore(deps): update engines to 5.15.0-27.d99d360a45b6c8582f83deadf81b73054afa...
  • 79de5cf chore(deps): update dependency @​swc/core to v1.5.24 (#24364)
  • d781e87 feat(migrate): Add split schema support to db pull (#24337)
  • 729c664 chore(deps): update dependency @​libsql/client to v0.6.1 (#24363)
  • Additional commits viewable in compare view

Updates @solidjs/meta from 0.29.3 to 0.29.4

Commits

Updates @solidjs/router from 0.12.5 to 0.13.5

Changelog

Sourced from @​solidjs/router's changelog.

0.13.5

Patch Changes

  • bfb059f: types Route -> RouteDescription

0.13.4

Patch Changes

  • 00e37fd: Export all types used in public API
  • 2e90de5: Fix HashRouter state reset with replace: false
  • 75472d2: Fix useCurrentMatches a getter function

0.13.3

Patch Changes

  • 884b8be: fix #374, fix #399 - suppress cache errors in load function
  • 4a76e7d: Fix state updates detection on history back/forward
  • 5af3da8: fix #407 single flight without explicit keys
  • 1068f1b: fix #408 - accessing route information
  • 0c698ed: Allow rewriting url

0.13.2

Patch Changes

  • 0a34883: preserve original path on optional segments
  • 94797e1: Fix types for cache functions with all optional arguments
  • 8a547a8: don't submit form when submit event is defaultPrevented

0.13.1

Patch Changes

  • 8b766a9: restore params into root

0.13.0

Minor Changes

  • 7b1597b: Add errors to actions

Patch Changes

  • 83e827d: minimum types for submission flash
  • 6df4a7a: push root/rootLoad outside of route matching
Commits

Updates @vanilla-extract/integration from 7.1.1 to 7.1.6

Release notes

Sourced from @​vanilla-extract/integration's releases.

@​vanilla-extract/integration@​7.1.6

Patch Changes

@​vanilla-extract/integration@​7.1.5

Patch Changes

@​vanilla-extract/integration@​7.1.4

Patch Changes

@​vanilla-extract/integration@​7.1.3

Patch Changes

@​vanilla-extract/integration@​7.1.2

Patch Changes

Changelog

Sourced from @​vanilla-extract/integration's changelog.

7.1.6

Patch Changes

7.1.5

Patch Changes

7.1.4

Patch Changes

Bumps the dependencies group with 20 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/solid-js](https://github.com/withastro/astro/tree/HEAD/packages/integrations/solid) | `4.0.1` | `4.4.0` |
| [@astrojs/vercel](https://github.com/withastro/astro/tree/HEAD/packages/integrations/vercel) | `7.3.5` | `7.7.1` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `1.5.3` | `1.8.1` |
| [@fontsource/open-sans](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/open-sans) | `5.0.25` | `5.0.28` |
| [@fontsource/pt-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/pt-mono) | `5.0.12` | `5.0.13` |
| [@fortawesome/free-solid-svg-icons](https://github.com/FortAwesome/Font-Awesome) | `6.5.1` | `6.5.2` |
| [@pandacss/dev](https://github.com/chakra-ui/panda/tree/HEAD/packages/cli) | `0.34.1` | `0.41.0` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `5.10.2` | `5.15.0` |
| [@solidjs/meta](https://github.com/solidjs/solid-meta) | `0.29.3` | `0.29.4` |
| [@solidjs/router](https://github.com/solidjs/solid-router) | `0.12.5` | `0.13.5` |
| [@vanilla-extract/integration](https://github.com/vanilla-extract-css/vanilla-extract/tree/HEAD/packages/integration) | `7.1.1` | `7.1.6` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `4.4.15` | `4.10.3` |
| [babel-preset-solid](https://github.com/solidjs/solid) | `1.8.15` | `1.8.17` |
| [bungie-api-ts](https://github.com/DestinyItemManager/bungie-api-ts) | `5.0.0` | `5.1.0` |
| [npm-check-updates](https://github.com/raineorshine/npm-check-updates) | `16.14.15` | `16.14.20` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `5.10.2` | `5.15.0` |
| [solid-js](https://github.com/solidjs/solid) | `1.8.15` | `1.8.17` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.4.2` | `5.4.5` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.11.25` | `20.14.2` |



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/[email protected]/packages/astro-check)

Updates `@astrojs/solid-js` from 4.0.1 to 4.4.0
- [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/vercel` from 7.3.5 to 7.7.1
- [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 `@biomejs/biome` from 1.5.3 to 1.8.1
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/cli/v1.8.1/packages/@biomejs/biome)

Updates `@fontsource/open-sans` from 5.0.25 to 5.0.28
- [Changelog](https://github.com/fontsource/font-files/blob/main/fonts/google/open-sans/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/open-sans)

Updates `@fontsource/pt-mono` from 5.0.12 to 5.0.13
- [Changelog](https://github.com/fontsource/font-files/blob/main/fonts/google/pt-mono/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/pt-mono)

Updates `@fortawesome/free-solid-svg-icons` from 6.5.1 to 6.5.2
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases)
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md)
- [Commits](FortAwesome/Font-Awesome@6.5.1...6.5.2)

Updates `@pandacss/dev` from 0.34.1 to 0.41.0
- [Release notes](https://github.com/chakra-ui/panda/releases)
- [Changelog](https://github.com/chakra-ui/panda/blob/main/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/chakra-ui/panda/commits/@pandacss/[email protected]/packages/cli)

Updates `@prisma/client` from 5.10.2 to 5.15.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/5.15.0/packages/client)

Updates `@solidjs/meta` from 0.29.3 to 0.29.4
- [Commits](https://github.com/solidjs/solid-meta/commits)

Updates `@solidjs/router` from 0.12.5 to 0.13.5
- [Changelog](https://github.com/solidjs/solid-router/blob/main/CHANGELOG.md)
- [Commits](https://github.com/solidjs/solid-router/commits)

Updates `@vanilla-extract/integration` from 7.1.1 to 7.1.6
- [Release notes](https://github.com/vanilla-extract-css/vanilla-extract/releases)
- [Changelog](https://github.com/vanilla-extract-css/vanilla-extract/blob/master/packages/integration/CHANGELOG.md)
- [Commits](https://github.com/vanilla-extract-css/vanilla-extract/commits/@vanilla-extract/[email protected]/packages/integration)

Updates `astro` from 4.4.15 to 4.10.3
- [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 `babel-preset-solid` from 1.8.15 to 1.8.17
- [Release notes](https://github.com/solidjs/solid/releases)
- [Changelog](https://github.com/solidjs/solid/blob/main/CHANGELOG.md)
- [Commits](https://github.com/solidjs/solid/commits)

Updates `bungie-api-ts` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/DestinyItemManager/bungie-api-ts/releases)
- [Commits](https://github.com/DestinyItemManager/bungie-api-ts/commits)

Updates `npm-check-updates` from 16.14.15 to 16.14.20
- [Release notes](https://github.com/raineorshine/npm-check-updates/releases)
- [Changelog](https://github.com/raineorshine/npm-check-updates/blob/main/CHANGELOG.md)
- [Commits](raineorshine/npm-check-updates@v16.14.15...v16.14.20)

Updates `prisma` from 5.10.2 to 5.15.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/5.15.0/packages/cli)

Updates `solid-js` from 1.8.15 to 1.8.17
- [Release notes](https://github.com/solidjs/solid/releases)
- [Changelog](https://github.com/solidjs/solid/blob/main/CHANGELOG.md)
- [Commits](https://github.com/solidjs/solid/commits)

Updates `typescript` from 5.4.2 to 5.4.5
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.4.2...v5.4.5)

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

Updates `postcss` from 8.4.35 to 8.4.38
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.35...8.4.38)

---
updated-dependencies:
- dependency-name: "@astrojs/check"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@astrojs/solid-js"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@astrojs/vercel"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@biomejs/biome"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@fontsource/open-sans"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@fontsource/pt-mono"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@fortawesome/free-solid-svg-icons"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@pandacss/dev"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@prisma/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@solidjs/meta"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@solidjs/router"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@vanilla-extract/integration"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: babel-preset-solid
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: bungie-api-ts
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: npm-check-updates
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: prisma
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: solid-js
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jun 17, 2024
Copy link

vercel bot commented Jun 17, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
site ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 17, 2024 6:17pm

Copy link
Author

dependabot bot commented on behalf of github Jun 18, 2024

Superseded by #144.

@dependabot dependabot bot closed this Jun 18, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-aecb622b69 branch June 18, 2024 18:23
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants