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

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jun 6, 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.3.0
@astrojs/vercel 7.3.5 7.6.0
@biomejs/biome 1.5.3 1.8.0
@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.40.1
@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.5
astro 4.4.15 4.10.0
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.3.0

Release notes

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

@​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({
    renderers,
    });
    const result = await container.renderToString(ReactWrapper);
    expect(result).toContain('Counter');
    expect(result).toContain('Count: <!-- -->5');
    });

@​astrojs/solid-js@​4.2.0

Minor Changes

  • #10937 7179930 Thanks @​florian-lefebvre! - Adds a devtools option

    You can enable the official Solid Devtools while working in development mode by setting devtools: true in your solid() integration config and adding solid-devtools to your project dependencies:

    npm install solid-devtools
    # yarn add solid-devtools
    # pnpm add solid-devtools
    import { defineConfig } from 'astro/config';
    import solid from '@astrojs/solid-js';
    export default defineConfig({
    integrations: [solid({ devtools: true })],
    });

@​astrojs/solid-js@​4.1.0

Minor Changes

... (truncated)

Changelog

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

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({
    renderers,
    });
    const result = await container.renderToString(ReactWrapper);
    expect(result).toContain('Counter');
    expect(result).toContain('Count: <!-- -->5');
    });

4.2.0

Minor Changes

  • #10937 7179930 Thanks @​florian-lefebvre! - Adds a devtools option

    You can enable the official Solid Devtools while working in development mode by setting devtools: true in your solid() integration config and adding solid-devtools to your project dependencies:

    npm install solid-devtools
    # yarn add solid-devtools
    # pnpm add solid-devtools
    import { defineConfig } from 'astro/config';
    import solid from '@astrojs/solid-js';
    export default defineConfig({
    integrations: [solid({ devtools: true })],
    });

4.1.0

Minor Changes

... (truncated)

Commits

Updates @astrojs/vercel from 7.3.5 to 7.6.0

Release notes

Sourced from @​astrojs/vercel's releases.

@​astrojs/vercel@​7.6.0

Minor Changes

@​astrojs/vercel@​7.5.4

Patch Changes

@​astrojs/vercel@​7.5.3

Patch Changes

@​astrojs/vercel@​7.5.2

Patch Changes

@​astrojs/vercel@​7.5.1

Patch Changes

Changelog

Sourced from @​astrojs/vercel's changelog.

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

Release notes

Sourced from @​biomejs/biome's releases.

CLI v1.8.0

Analyzer

New features

  • Allow suppression comments to suppress individual instances of rules. This is used for the lint rule useExhaustiveDependencies, which is now able to suppress specific dependencies. Fixes #2509. Contributed by @​arendjr

Enhancements

  • Assume Astro object is always a global when processing .astro files. Contributed by @​minht11
  • Assume Vue compiler macros are globals when processing .vue files. (#2771) Contributed by @​dyc3

CLI

New features

  • New clean command. Use this new command to clean after the biome-logs directory, and remove all the log files.

    biome clean
  • Add two new options --only and --skip to the command biome lint (#58).

    The --only option allows you to run a given rule or rule group, For example, the following command runs only the style/useNamingConvention and style/noInferrableTypes rules. If the rule is disabled in the configuration, then its severity level is set to error for a recommended rule or warn otherwise.

    biome lint --only=style/useNamingConvention --only=style/noInferrableTypes

    Passing a group does not change the severity level of the rules in the group. All the disabled rules in the group will remain disabled. To ensure that the group is run, the recommended field of the group is enabled. The nursery group cannot be passed, as no rules are enabled by default in the nursery group.

    The --skip option allows you to skip the execution of a given group or a given rule. For example, the following command skips the style group and the suspicious/noExplicitAny rule.

    biome lint --skip=style --skip=suspicious/noExplicitAny

    You can also use --only and --skip together. --skip oevrrides --only. The following command executes only the rules from the style group, but the style/useNamingConvention rule.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

1.8.0 (2024-06-04)

Analyzer

New features

  • Allow suppression comments to suppress individual instances of rules. This is used for the lint rule useExhaustiveDependencies, which is now able to suppress specific dependencies. Fixes #2509. Contributed by @​arendjr

Enhancements

  • Assume Astro object is always a global when processing .astro files. Contributed by @​minht11
  • Assume Vue compiler macros are globals when processing .vue files. (#2771) Contributed by @​dyc3

CLI

New features

  • New clean command. Use this new command to clean after the biome-logs directory, and remove all the log files.

    biome clean
  • Add two new options --only and --skip to the command biome lint (#58).

    The --only option allows you to run a given rule or rule group, For example, the following command runs only the style/useNamingConvention and style/noInferrableTypes rules. If the rule is disabled in the configuration, then its severity level is set to error for a recommended rule or warn otherwise.

    biome lint --only=style/useNamingConvention --only=style/noInferrableTypes

    Passing a group does not change the severity level of the rules in the group. All the disabled rules in the group will remain disabled. To ensure that the group is run, the recommended field of the group is enabled. The nursery group cannot be passed, as no rules are enabled by default in the nursery group.

    The --skip option allows you to skip the execution of a given group or a given rule. For example, the following command skips the style group and the suspicious/noExplicitAny rule.

    biome lint --skip=style --skip=suspicious/noExplicitAny

    You can also use --only and --skip together. --skip oevrrides --only. The following command executes only the rules from the style group, but the style/useNamingConvention rule.

... (truncated)

Commits
  • 378c05e release: v1.8.0 (#3033)
  • 44b5c29 refactor(noEvolvingAny): rename into noEvolvingTypes (#2959)
  • bc30892 feat(noUnusedFunctionParameters): add lint for unused function parameters, in...
  • 9a7d790 feat: add noLabelWithoutControl rule (#2987)
  • 21e2512 feat: allow "info" severity for analyzer rules (#3014)
  • f793b72 feat(linter): implement useDateNow (#2925)
  • e52084a feat(css_parser): add parsing css modules @​value at rule (#2985)
  • fec262f feat(linter): implement useErrorMessage (#2978)
  • b3da3ae refactor(migrate/eslint): improve naming-convention migration (#2968)
  • 125f34b ci: fix nightly version and restore update of manifest (#2953)
  • Additional commits viewable in compare view

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

Release notes

Sourced from @​pandacss/dev's releases.

@​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
    • @​pandacss/token-dictionary@​0.40.0
    • @​pandacss/types@​0.40.0

@​pandacss/dev@​0.39.2

Patch Changes

  • Updated dependencies [2f63a4c]
  • Updated dependencies [1f636eb]
  • Updated dependencies [8b07cdf]
  • Updated dependencies [af15ae9]
    • @​pandacss/config@​0.39.2
    • @​pandacss/shared@​0.39.2

... (truncated)

Changelog

Sourced from @​pandacss/dev's changelog.

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
    • @​pandacss/logger@​0.40.0
    • @​pandacss/preset-panda@​0.40.0
    • @​pandacss/shared@​0.40.0
    • @​pandacss/token-dictionary@​0.40.0
    • @​pandacss/types@​0.40.0

0.39.2

Patch Changes

  • Updated dependencies [2f63a4c]
  • Updated dependencies [1f636eb]
  • Updated dependencies [8b07cdf]

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

Release notes

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

@​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.5

Patch Changes

7.1.4

Patch Changes

7.1.3

Patch Changes

7.1.2

Patch Changes

Commits
  • e7d79f2 Version Packages (#1413)
  • b8a99e4 Add types field to all package's package.json (#1335)
  • ...

    Description has been truncated

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.3.0` |
| [@astrojs/vercel](https://github.com/withastro/astro/tree/HEAD/packages/integrations/vercel) | `7.3.5` | `7.6.0` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `1.5.3` | `1.8.0` |
| [@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.40.1` |
| [@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.5` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `4.4.15` | `4.10.0` |
| [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.3.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.6.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 `@biomejs/biome` from 1.5.3 to 1.8.0
- [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.0/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.40.1
- [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.5
- [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.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/[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 6, 2024
Copy link

vercel bot commented Jun 6, 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 6, 2024 6:27pm

Copy link
Author

dependabot bot commented on behalf of github Jun 10, 2024

Superseded by #139.

@dependabot dependabot bot closed this Jun 10, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-c9c5c2b8a4 branch June 10, 2024 18:36
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