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

Update Patch Dependencies #603

Merged
merged 1 commit into from
Feb 6, 2025
Merged

Update Patch Dependencies #603

merged 1 commit into from
Feb 6, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 6, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@0no-co/graphql.web 1.0.9 -> 1.0.13 age adoption passing confidence
@ai-sdk/openai (source) ^1.1.0 -> ^1.1.9 age adoption passing confidence
@apollo/client (source) ^3.12.4 -> ^3.12.10 age adoption passing confidence
@eslint/compat ^1.2.4 -> ^1.2.6 age adoption passing confidence
@next/eslint-plugin-next (source) ^15.1.3 -> ^15.1.6 age adoption passing confidence
@prisma/adapter-neon (source) ^6.3.0 -> ^6.3.1 age adoption passing confidence
@prisma/client (source) 6.3.0 -> 6.3.1 age adoption passing confidence
@prisma/internals (source) 6.3.0 -> 6.3.1 age adoption passing confidence
@prisma/migrate (source) 6.3.0 -> 6.3.1 age adoption passing confidence
@radix-ui/react-avatar (source) ^1.1.2 -> ^1.1.3 age adoption passing confidence
@radix-ui/react-hover-card (source) ^1.1.4 -> ^1.1.6 age adoption passing confidence
@radix-ui/react-popover (source) ^1.1.4 -> ^1.1.6 age adoption passing confidence
@radix-ui/react-slot (source) ^1.1.1 -> ^1.1.2 age adoption passing confidence
@tailwindcss/forms ^0.5.9 -> ^0.5.10 age adoption passing confidence
@tailwindcss/typography ^0.5.15 -> ^0.5.16 age adoption passing confidence
@types/lodash (source) ^4.17.14 -> ^4.17.15 age adoption passing confidence
@types/node (source) ^22.13.0 -> ^22.13.1 age adoption passing confidence
@types/react (source) ^19.0.2 -> ^19.0.8 age adoption passing confidence
@types/react-dom (source) ^19.0.2 -> ^19.0.3 age adoption passing confidence
@types/ws (source) ^8.5.13 -> ^8.5.14 age adoption passing confidence
@vercel/blob (source) ^0.27.0 -> ^0.27.1 age adoption passing confidence
@whatwg-node/fetch (source) ^0.10.1 -> ^0.10.3 age adoption passing confidence
ai (source) ^4.1.0 -> ^4.1.24 age adoption passing confidence
aws-crt ^1.25.0 -> ^1.25.3 age adoption passing confidence
cspell (source) ^8.17.1 -> ^8.17.3 age adoption passing confidence
eslint-config-next (source) 15.1.3 -> 15.1.6 age adoption passing confidence
inngest (source) ^3.31.0 -> ^3.31.4 age adoption passing confidence
next (source) ^15.1.3 -> ^15.1.6 age adoption passing confidence
pnpm (source) 10.2.0 -> 10.2.1 age adoption passing confidence
prettier-plugin-tailwindcss ^0.6.9 -> ^0.6.11 age adoption passing confidence
prisma (source) 6.3.0 -> 6.3.1 age adoption passing confidence
react-day-picker (source) ^9.5.0 -> ^9.5.1 age adoption passing confidence
typescript (source) ^5.7.2 -> ^5.7.3 age adoption passing confidence

Release Notes

0no-co/graphql.web (@​0no-co/graphql.web)

v1.0.13

Compare Source

Patch Changes

v1.0.12

Compare Source

Patch Changes
  • ⚠️ Fix printing when a manually created AST node with an empty selection set array is passed to the printer
    Submitted by @​JoviDeCroock (See #​46)

v1.0.11

Patch Changes

v1.0.10

Patch Changes
  • Add loc getter to parsed DocumentNode fragment outputs to ensure that using fragments created by gql.tada's graphql() function with graphql-tag doesn't crash. graphql-tag does not treat the DocumentNode.loc property as optional on interpolations, which leads to intercompatibility issues
    Submitted by @​JoviDeCroock (See #​38)
  • Add missing exports to make apollo-client functional with this library
    Submitted by @​JoviDeCroock (See #​39)
vercel/ai (@​ai-sdk/openai)

v1.1.9

Compare Source

Patch Changes
  • c55b81a: fix (provider/openai): fix o3-mini streaming

v1.1.8

Compare Source

Patch Changes
  • 161be90: fix (provider/openai): fix model id typo

v1.1.7

Compare Source

Patch Changes
  • 0a2f026: feat (provider/openai): add o3-mini

v1.1.6

Compare Source

Patch Changes

v1.1.5

Compare Source

Patch Changes

v1.1.4

Compare Source

Patch Changes

v1.1.3

Compare Source

Patch Changes

v1.1.2

Compare Source

Patch Changes

v1.1.1

Compare Source

Patch Changes
apollographql/apollo-client (@​apollo/client)

v3.12.10

Compare Source

Patch Changes

v3.12.9

Compare Source

Patch Changes

v3.12.8

Compare Source

Patch Changes

v3.12.7

Compare Source

Patch Changes

v3.12.6

Compare Source

Patch Changes

v3.12.5

Compare Source

Patch Changes
  • #​12252 cb9cd4e Thanks @​jerelmiller! - Changes the default behavior of the MaybeMasked type to preserve types unless otherwise specified. This change makes it easier to upgrade from older versions of the client where types could have unexpectedly changed in the application due to the default of trying to unwrap types into unmasked types. This change also fixes the compilation performance regression experienced when simply upgrading the client since types are now preserved by default.

    A new mode option has now been introduced to allow for the old behavior. See the next section on migrating if you wish to maintain the old default behavior after upgrading to this version.

Migrating from <= v3.12.4

If you've adopted data masking and have opted in to using masked types by setting the enabled property to true, you can remove this configuration entirely:

-declare module "@&#8203;apollo/client" {
-  interface DataMasking {
-    mode: "unmask"
-  }
-}

If you prefer to specify the behavior explicitly, change the property from enabled: true, to mode: "preserveTypes":

declare module "@&#8203;apollo/client" {
  interface DataMasking {
-    enabled: true
+    mode: "preserveTypes"
  }
}

If you rely on the default behavior in 3.12.4 or below and would like to continue to use unmasked types by default, set the mode to unmask:

declare module "@&#8203;apollo/client" {
  interface DataMasking {
    mode: "unmask";
  }
}
eslint/rewrite (@​eslint/compat)

v1.2.6

Compare Source

v1.2.5

Compare Source

vercel/next.js (@​next/eslint-plugin-next)

v15.1.6

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • fix: don't memory-leak promises passed to waitUntil (#​75041)
  • backport: fix prerender issue with intercepting routes + generateStaticParams (#​75170)
Credits

Huge thanks to @​lubieowoce and @​ztanner for helping!

v15.1.5

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • Fix missing revalidate with notFound() (#​75009)
  • fix: when metadatabase is set we should not warn (#​74840)
  • Fix @​vercel/og license SPDX expression (#​74745)
  • fix: ts language server rule metadata should allow null (#​74704)
  • fix: eslint rule of using img in metadata routes (#​74864)
  • Fix presentation when onerror receives an event without error (#​74643)
  • fix fetch lock not being consistently released #​74623 (#​75028)
Credits

Huge thanks to @​ijjk, @​huozhi, @​matmannion and @​ztanner for helping!

v15.1.4

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • backport: force module format for virtual client-proxy (#​74608)
  • Fix prerender tags when notFound is called (#​74607)
  • Use provided waitUntil for pending revalidates (#​74604)
  • Feature: next/image: add support for images.qualities in next.config (#​74588)
  • Chore: docs: add missing search: '' on remotePatterns (#​74587)
  • Chore: docs: update version history of next/image (#​73923) (#​74570)
  • Chore: next/image: improve imgopt api bypass detection for unsupported images (#​74569)
Credits

Huge thanks to @​ and @​ for helping!

prisma/prisma (@​prisma/adapter-neon)

v6.3.1

Compare Source

This patch releases introduces improvements to the prisma init output when invoked to with the --db option.

Run npx prisma@latest init --db to get an instant Prisma Postgres database.

radix-ui/primitives (@​radix-ui/react-avatar)

v1.1.3

Compare Source

tailwindlabs/tailwindcss-forms (@​tailwindcss/forms)

v0.5.10

Compare Source

Fixed
  • Support installing with beta versions of Tailwind CSS v4 (#​163)
tailwindlabs/tailwindcss-typography (@​tailwindcss/typography)

v0.5.16

Compare Source

Fixed
  • Support installing with beta versions of Tailwind CSS v4 (#​365)
vercel/storage (@​vercel/blob)

v0.27.1

Compare Source

Patch Changes
  • 0c98feb: fix(blob): allow client uploads in web workers

    Before this change, we had guards so client uploads could only be used in
    browser environments, this prevented customers to use Vercel Blob in Web
    Workers, sometimes React Native or in general anywhere window is not really what
    we think it is.

ardatan/whatwg-node (@​whatwg-node/fetch)

v0.10.3

Compare Source

Patch Changes
  • #​1961
    2785c80
    Thanks @​ardatan! - ReadableStream's Symbol.asyncIterator now
    returns AsyncIterableIterator like before even if it is ok to return AsyncIterator right now.
    It is safer to return AsyncIterableIterator because it is a common mistake to use
    AsyncIterator as AsyncIterable.
  • Updated dependencies
    [2785c80]:

v0.10.2

Compare Source

Patch Changes
awslabs/aws-crt-nodejs (aws-crt)

v1.25.3

Compare Source

What's Changed

Full Changelog: awslabs/aws-crt-nodejs@v1.25.2...v1.25.3

v1.25.2: Fix segfaults -- CRC64NVME on machines with disabled AVX and uri parsing corner case.

Compare Source

What's Changed

Full Changelog: awslabs/aws-crt-nodejs@v1.25.1...v1.25.2

v1.25.1: Fix memory leak during signing

Compare Source

What's Changed

Full Changelog: awslabs/aws-crt-nodejs@v1.25.0...v1.25.1

streetsidesoftware/cspell (cspell)

v8.17.3

Compare Source

v8.17.2

Compare Source

inngest/inngest-js (inngest)

v3.31.4

Compare Source

Patch Changes

v3.31.3

Compare Source

Patch Changes

v3.31.2

Compare Source

Patch Changes

v3.31.1

Compare Source

Patch Changes
  • #​817 446be1b Thanks @​jpwilliams! - serve() and connect() now have looser typing for client and functions, resulting in easier use of multiple inngest packages in a single process

  • #​823 f1d2385 Thanks @​jpwilliams! - Allow wildcard event typing with .fromRecord()

    The following schema is now valid:

    export const schemas = new EventSchemas().fromRecord<{
      "app/blog.post.*":
        | {
            name: "app/blog.post.created";
            data: {
              postId: string;
              authorId: string;
              createdAt: string;
            };
          }
        | {
            name: "app/blog.post.published";
            data: {
              postId: string;
              authorId: string;
              publishedAt: string;
            };
          };
    }>();

    When creating a function, this allows you to appropriately type narrow the event to pull out the correct data:


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

vercel bot commented Jan 6, 2025

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

Name Status Preview Comments Updated (UTC)
on-the-hill-drama-club ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 6, 2025 9:17pm
1 Skipped Deployment
Name Status Preview Comments Updated (UTC)
on-the-hill-drama-club-keystone ⬜️ Ignored (Inspect) Visit Preview Feb 6, 2025 9:17pm

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2590956 to abddefb Compare January 6, 2025 11:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from abddefb to 3ada3e7 Compare January 6, 2025 12:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3ada3e7 to cbdaf0a Compare January 6, 2025 17:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cbdaf0a to 7d2c174 Compare January 6, 2025 20:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7d2c174 to dc6826b Compare January 7, 2025 06:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dc6826b to 008cd21 Compare January 7, 2025 09:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 008cd21 to 4b54e08 Compare January 8, 2025 08:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4b54e08 to 50ad931 Compare January 8, 2025 14:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 50ad931 to 8acc685 Compare January 8, 2025 22:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8acc685 to 9326c4d Compare January 9, 2025 09:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9326c4d to 3f4a2da Compare January 9, 2025 09:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3f4a2da to 8107b0a Compare January 9, 2025 14:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8107b0a to 7fbd48b Compare January 9, 2025 19:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7fbd48b to 846ff1f Compare January 10, 2025 02:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b0eb780 to d15160a Compare February 4, 2025 14:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d15160a to fb2d9fb Compare February 4, 2025 22:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fb2d9fb to 7daf494 Compare February 5, 2025 17:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7daf494 to b38ddbb Compare February 5, 2025 19:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b38ddbb to 51777c6 Compare February 5, 2025 20:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 51777c6 to d2a3fe5 Compare February 5, 2025 20:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d2a3fe5 to 0e40bd0 Compare February 6, 2025 01:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0e40bd0 to 9f9e944 Compare February 6, 2025 08:03
Copy link

vercel bot commented Feb 6, 2025

Deployment failed with the following error:

Resource is limited - try again in 2 hours (more than 100, code: "api-deployments-free-per-day").

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a88854d to d93c02a Compare February 6, 2025 20:48
@borisno2 borisno2 merged commit 0d37c64 into main Feb 6, 2025
5 checks passed
@borisno2 borisno2 deleted the renovate/all-minor-patch branch February 6, 2025 22:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant