From a720d57f89a5231e2f65394e29e7966414b747ff Mon Sep 17 00:00:00 2001 From: Eddy Nguyen Date: Tue, 16 May 2023 20:00:28 +1000 Subject: [PATCH] Fix Scalars input/output scalars to be major --- .changeset/gold-frogs-explain.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.changeset/gold-frogs-explain.md b/.changeset/gold-frogs-explain.md index 03db5c6ed30..4c663b903f4 100644 --- a/.changeset/gold-frogs-explain.md +++ b/.changeset/gold-frogs-explain.md @@ -1,8 +1,8 @@ --- -'@graphql-codegen/visitor-plugin-common': minor -'@graphql-codegen/typescript-operations': minor -'@graphql-codegen/typescript': minor -'@graphql-codegen/typescript-resolvers': minor +'@graphql-codegen/visitor-plugin-common': major +'@graphql-codegen/typescript-operations': major +'@graphql-codegen/typescript': major +'@graphql-codegen/typescript-resolvers': major --- Implement Scalars with input/output types @@ -113,7 +113,7 @@ config: { } ``` -3. (Potential) BREAKING CHANGE: External module Scalar types need to be an object with input/output fields +3. BREAKING CHANGE: External module Scalar types need to be an object with input/output fields ```ts config: { @@ -136,4 +136,4 @@ export type Scalars = { --- -(Potential) BREAKING CHANGE: This changes Scalar types which could be referenced in other plugins. If you are a plugin maintainer and reference Scalar, please update your plugin to use the correct input/output types. +BREAKING CHANGE: This changes Scalar types which could be referenced in other plugins. If you are a plugin maintainer and reference Scalar, please update your plugin to use the correct input/output types.