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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jun 26, 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.2
@biomejs/biome 1.5.3 1.8.2
@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.16.0
@solidjs/meta 0.29.3 0.29.4
@solidjs/router 0.12.5 0.13.6
@vanilla-extract/integration 7.1.1 7.1.6
astro 4.4.15 4.11.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.16.0
solid-js 1.8.15 1.8.17
typescript 5.4.2 5.5.2
@types/node 20.11.25 20.14.9

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

Release notes

Sourced from @​astrojs/vercel's releases.

@​astrojs/vercel@​7.7.2

Patch Changes

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

Patch Changes

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

... (truncated)

Commits

Updates @biomejs/biome from 1.5.3 to 1.8.2

Release notes

Sourced from @​biomejs/biome's releases.

CLI v1.8.2

CLI

Bug fixes

  • Fix #3201 by correctly injecting the source code of the file when printing the diagnostics. Contributed by @​ematipico
  • Fix #3179 where comma separators are not correctly removed after running biome migrate and thus choke the parser. Contributed by @​Sec-ant
  • Fix #3232 by correctly using the colors set by the user. Contributed by @​ematipico

Enhancement

  • Reword the reporter message No fixes needed to No fixes applied.

    The former message is misleading when there're still errors or warnings in the files that should be taken care of manually. For example:

    Checked 2 files in <TIME>. No fixes needed.
    Found 2 errors.
    

    The new message suits better in these cases.

    Contributed by @​Sec-ant

Configuration

Bug fixes

  • Don't conceal previous overrides (#3176).

    Previously, each override inherited the unset configuration of the base configuration. This means that setting a configuration in an override can be concealed by a subsequent override that inherits of the value from the base configuration.

    For example, in the next example, noDebugger was disabled for the index.js file.

    {
      "linter": {
        "rules": {
          "suspicious": { "noDebugger": "off" }
        }
      },
      "overrides": [
        {
          "include": ["index.js"],
          "linter": {
            "rules": {
              "suspicious": { "noDebugger": "warn" }
            }
          }

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

v1.8.2 (2024-06-20)

CLI

Bug fixes

  • Fix #3201 by correctly injecting the source code of the file when printing the diagnostics. Contributed by @​ematipico
  • Fix #3179 where comma separators are not correctly removed after running biome migrate and thus choke the parser. Contributed by @​Sec-ant
  • Fix #3232 by correctly using the colors set by the user. Contributed by @​ematipico

Enhancement

  • Reword the reporter message No fixes needed to No fixes applied.

    The former message is misleading when there're still errors or warnings in the files that should be taken care of manually. For example:

    Checked 2 files in <TIME>. No fixes needed.
    Found 2 errors.
    

    The new message suits better in these cases.

    Contributed by @​Sec-ant

Configuration

Bug fixes

  • Don't conceal previous overrides (#3176).

    Previously, each override inherited the unset configuration of the base configuration. This means that setting a configuration in an override can be concealed by a subsequent override that inherits of the value from the base configuration.

    For example, in the next example, noDebugger was disabled for the index.js file.

    {
      "linter": {
        "rules": {
          "suspicious": { "noDebugger": "off" }
        }
      },
      "overrides": [
        {
          "include": ["index.js"],
          "linter": {
            "rules": {
              "suspicious": { "noDebugger": "warn" }
            }

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

Release notes

Sourced from @​prisma/client's releases.

5.16.0

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

Highlights

Omit model fields globally

With Prisma ORM 5.16.0 we’re more than happy to announce that we’re expanding the omitApi Preview feature to also include the ability to omit fields globally.

When the Preview feature is enabled, you’re able to define fields to omit when instantiating Prisma Client.

const prisma = new PrismaClient({
  omit: {
    user: {
      // make sure that password is never queried.
      password: true,
    },
  },
});

You’re also able to omit fields from multiple models and multiple fields from the same model

const prisma = new PrismaClient({
  omit: {
    user: { 
      // make sure that password and internalId are never queried.
      password: true,
      internalId: true,
    },
    post: {
      secretkey: true,
    },
  },
});

With both local and global omit, you now have the flexibility to completely remove sensitive fields while also tailoring individual queries. If you need the ability to generally omit a field except in a specific query, you can also overwrite a global omit locally

const prisma = new PrismaClient({
  omit: {
    user: { 
      // password is omitted globally.
      password: true,
    },
  },
});
</tr></table> 

... (truncated)

Commits
  • 1d34b5b chore(deps): update engines to 5.16.0-24.34ace0eb2704183d2c05b60b52fba5c43c13...
  • d433bb7 feat(client): provide a workaround for Vitest's struggles with "getQueryEngin...
  • 65e17a0 chore(deps): update engines to 5.16.0-23.d56fe2ee624826f693e591a3035694073d17...
  • c64e77f chore(deps): update engines to 5.16.0-21.9f3337c21c619aa48465f3766f6466c74ec7...
  • 6a6646c fix(cli): Always resolve output relatively to a file it defined in (#24598)
  • 617042d chore(deps): update engines to 5.16.0-20.bd07760d57443d11e2a958fd18bf524bbac1...
  • a1121f1 chore(deps): update dependency @​swc/core to v1.6.3 (#24546)
  • dbad2af chore(deps): update dependency wrangler to v3.61.0 (#24578)
  • 8808e17 feat(client): Implement global omit configuration (#24513)
  • d988aff chore(deps): update engines to 5.16.0-19.5e01b9388099d5c46de4969759ebb24b001a...
  • 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.6

Changelog

Sourced from @​solidjs/router's changelog.

0.13.6

Patch Changes

  • 7344f69: Handle absolute redirects within cache on server
  • 8263115: Forward absolute redirects inside cache from server to client
  • 8fbf74a: Treat window.location.hash as URI encoded
  • e9fd55d: fix #449 No JS submissions not working
  • f311f4a: fix #452 useSubmission types/references
  • 2f05f37: Make isRouting more reliable + other fixes
  • 618ef17: performance improvement leveraging redirects in loadfn
  • d81473a: usePreloadRoute method pre-release

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

... (truncated)

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

7.1.3

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.2` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `1.5.3` | `1.8.2` |
| [@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.16.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.6` |
| [@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.11.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.16.0` |
| [solid-js](https://github.com/solidjs/solid) | `1.8.15` | `1.8.17` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.4.2` | `5.5.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.11.25` | `20.14.9` |



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.2
- [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.2
- [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.2/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.16.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/5.16.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.6
- [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.11.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.16.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/5.16.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.5.2
- [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.5.2)

Updates `@types/node` from 20.11.25 to 20.14.9
- [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-minor
  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]>
Copy link

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

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