From 59d8b82878bbef299a1e4ca58a22faa6e02d4363 Mon Sep 17 00:00:00 2001 From: Dimitri POSTOLOV Date: Thu, 25 May 2023 20:57:59 +0200 Subject: [PATCH 001/115] fix examples for generated docs (#9459) * temp * generate config.schema.json before manipulations * apply patch * it was fixed woohoo * this commit remove unneeded stuff, config was not changed, so it's safe * not it's safe remove exampleMarkdown from config.schema --- .../presets/graphql-modules/src/config.ts | 2 +- patches/typescript-json-schema+0.56.0.patch | 13 +++ website/public/config.schema.json | 86 ++++++++----------- website/src/lib/docs-generator.ts | 4 +- website/src/lib/plugin-get-static-props.ts | 4 +- website/src/lib/transform.ts | 43 +++------- website/src/pages/_app.mdx | 5 ++ website/src/pages/_app.tsx | 7 -- ...-server-apollo-yoga-with-server-preset.mdx | 2 +- yarn.lock | 48 +++++++++++ 10 files changed, 120 insertions(+), 94 deletions(-) create mode 100644 patches/typescript-json-schema+0.56.0.patch create mode 100644 website/src/pages/_app.mdx delete mode 100644 website/src/pages/_app.tsx diff --git a/packages/presets/graphql-modules/src/config.ts b/packages/presets/graphql-modules/src/config.ts index e51fb1e6235..a2088a162fb 100644 --- a/packages/presets/graphql-modules/src/config.ts +++ b/packages/presets/graphql-modules/src/config.ts @@ -113,7 +113,7 @@ export type ModulesConfig = { * @description Generate resolvers of root types (Query, Mutation and Subscription) as non-optional. * * @example - * ```yml + * ```yaml * generates: * src/: * preset: modules diff --git a/patches/typescript-json-schema+0.56.0.patch b/patches/typescript-json-schema+0.56.0.patch new file mode 100644 index 00000000000..5e0d32c83d2 --- /dev/null +++ b/patches/typescript-json-schema+0.56.0.patch @@ -0,0 +1,13 @@ +diff --git a/node_modules/typescript-json-schema/dist/typescript-json-schema.js b/node_modules/typescript-json-schema/dist/typescript-json-schema.js +index d5aa7f7..b5f0978 100644 +--- a/node_modules/typescript-json-schema/dist/typescript-json-schema.js ++++ b/node_modules/typescript-json-schema/dist/typescript-json-schema.js +@@ -302,6 +302,8 @@ var annotationKeywords = { + description: true, + default: true, + examples: true, ++ // https://github.com/YousefED/typescript-json-schema/issues/431 ++ exampleMarkdown: true, + $ref: true, + }; + var subDefinitions = { diff --git a/website/public/config.schema.json b/website/public/config.schema.json index 700dfc06f45..5d2f0cdcd64 100644 --- a/website/public/config.schema.json +++ b/website/public/config.schema.json @@ -1158,10 +1158,6 @@ "description": "Allow you to disable prefixing for generated enums, works in combination with `typesPrefix`.\nDefault value: \"true\"", "type": "boolean" }, - "enumSuffix": { - "description": "Allow you to disable suffixing for generated enums, works in combination with `typesSuffix`.\nDefault value: \"true\"", - "type": "boolean" - }, "fieldWrapperValue": { "description": "Allow you to add wrapper for field type, use T as the generic value. Make sure to set `wrapFieldDefinitions` to `true` in order to make this flag work.\nDefault value: \"T\"", "type": "string" @@ -1583,6 +1579,10 @@ "type": "boolean", "description": "Turning this flag to `true` will generate resolver signature that has only `resolveType` for interfaces, forcing developers to write inherited type resolvers in the type itself.\nDefault value: \"false\"" }, + "resolversNonOptionalTypename": { + "description": "Makes `__typename` of resolver mappings non-optional without affecting the base types.\nDefault value: \"false\"", + "anyOf": [{ "$ref": "#/definitions/ResolversNonOptionalTypenameConfig" }, { "type": "boolean" }] + }, "strictScalars": { "description": "Makes scalars strict.\n\nIf scalars are found in the schema that are not defined in `scalars`\nan error will be thrown during codegen.\nDefault value: \"false\"", "type": "boolean" @@ -2986,10 +2986,6 @@ "description": "Allow you to disable prefixing for generated enums, works in combination with `typesPrefix`.\nDefault value: \"true\"", "type": "boolean" }, - "enumSuffix": { - "description": "Allow you to disable suffixing for generated enums, works in combination with `typesSuffix`.\nDefault value: \"true\"", - "type": "boolean" - }, "fieldWrapperValue": { "description": "Allow you to add wrapper for field type, use T as the generic value. Make sure to set `wrapFieldDefinitions` to `true` in order to make this flag work.\nDefault value: \"T\"", "type": "string" @@ -3128,10 +3124,6 @@ "description": "Allow you to disable prefixing for generated enums, works in combination with `typesPrefix`.\nDefault value: \"true\"", "type": "boolean" }, - "enumSuffix": { - "description": "Allow you to disable suffixing for generated enums, works in combination with `typesSuffix`.\nDefault value: \"true\"", - "type": "boolean" - }, "optionalResolveType": { "description": "Sets the `__resolveType` field as optional field.\nDefault value: \"false\"", "type": "boolean" @@ -3275,10 +3267,6 @@ "description": "Allow you to disable prefixing for generated enums, works in combination with `typesPrefix`.\nDefault value: \"true\"", "type": "boolean" }, - "enumSuffix": { - "description": "Allow you to disable suffixing for generated enums, works in combination with `typesSuffix`.\nDefault value: \"true\"", - "type": "boolean" - }, "fieldWrapperValue": { "description": "Allow you to add wrapper for field type, use T as the generic value. Make sure to set `wrapFieldDefinitions` to `true` in order to make this flag work.\nDefault value: \"T\"", "type": "string" @@ -3536,23 +3524,6 @@ } } }, - "GqlTagConfig": { - "type": "object", - "properties": { - "augmentedModuleName": { - "description": "Instead of generating a `gql` function, this preset can also generate a `d.ts` that will enhance the `gql` function of your framework.\n\nE.g. `graphql-tag` or `@urql/core`.", - "type": "string" - }, - "fragmentMasking": { - "description": "Fragment masking hides data from components and only allows accessing the data by using a unmasking function.", - "anyOf": [{ "$ref": "#/definitions/FragmentMaskingConfig" }, { "type": "boolean" }] - }, - "gqlTagName": { - "description": "Specify the name of the \"graphql tag\" function to use\nDefault value: \"\"gql\"\n\nE.g. `graphql` or `gql`.\"", - "type": "string" - } - } - }, "Types.InstanceOrArray": { "anyOf": [ { "$ref": "#/definitions/Types.SchemaWithLoader" }, @@ -3560,6 +3531,7 @@ { "$ref": "#/definitions/Types.UrlSchemaWithOptions" }, { "$ref": "#/definitions/Types.LocalSchemaPathWithOptions" }, { "$ref": "#/definitions/Types.ApolloEngineSchemaOptions" }, + { "$ref": "#/definitions/Types.GitHubSchemaOptions" }, { "type": "array", "items": { "$ref": "#/definitions/Types.Schema" } }, { "type": "string" } ] @@ -3698,11 +3670,16 @@ "type": "boolean" }, "cwd": { "type": "string" }, - "ignore": { "anyOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "string" }] } + "ignore": { "anyOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "string" }] }, + "includeSources": { "type": "boolean" } } }, "__type": { "type": "object" }, "Record": { "$ref": "#/definitions/__type" }, + "Types.GitHubSchemaOptions": { + "type": "object", + "additionalProperties": { "type": "object", "properties": { "token": { "type": "string" } } } + }, "Types.Schema": { "description": "A URL to your GraphQL endpoint, a local path to `.graphql` file, a glob pattern to your GraphQL schema files, or a JavaScript file that exports the schema to generate code from. This can also be an array which specifies multiple schemas to generate code from. You can read more about the supported formats [here](schema-field#available-formats).", "anyOf": [ @@ -3711,6 +3688,7 @@ { "$ref": "#/definitions/Types.UrlSchemaWithOptions" }, { "$ref": "#/definitions/Types.LocalSchemaPathWithOptions" }, { "$ref": "#/definitions/Types.ApolloEngineSchemaOptions" }, + { "$ref": "#/definitions/Types.GitHubSchemaOptions" }, { "type": "string" } ] }, @@ -3804,6 +3782,7 @@ "client", "client-preset", "gql-tag-operations", + "gql-tag-operations-preset", "graphql-modules", "graphql-modules-preset", "import-types", @@ -3841,6 +3820,10 @@ "description": "DocumentTransform changes documents before executing plugins.", "type": "array", "items": { "$ref": "#/definitions/Types.OutputDocumentTransform" } + }, + "watchPattern": { + "description": ": Additional file pattern to watch when using watch mode", + "anyOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "string" }] } }, "allOf": [ @@ -4235,7 +4218,18 @@ "DirectiveArgumentAndInputFieldMappings": { "$ref": "#/definitions/__type_13" }, "ScalarsMap_1": { "description": "Scalars map or a string, a map between the GraphQL scalar name and the identifier that should be used", - "anyOf": [{ "type": "object", "additionalProperties": { "type": "string" } }, { "type": "string" }] + "anyOf": [ + { + "type": "object", + "additionalProperties": { + "anyOf": [ + { "type": "object", "properties": { "input": { "type": "string" }, "output": { "type": "string" } } }, + { "type": "string" } + ] + } + }, + { "type": "string" } + ] }, "NamingConvention_1": { "anyOf": [ @@ -4343,6 +4337,14 @@ }, "DirectiveArgumentAndInputFieldMappings_1": { "$ref": "#/definitions/__type_17" }, "Array_1": { "type": "array", "items": { "type": "string" } }, + "ResolversNonOptionalTypenameConfig": { + "type": "object", + "properties": { + "unionMember": { "type": "boolean" }, + "interfaceImplementingType": { "type": "boolean" }, + "excludeTypes": { "type": "array", "items": { "type": "string" } } + } + }, "ScalarsMap_3": { "description": "Scalars map or a string, a map between the GraphQL scalar name and the identifier that should be used", "anyOf": [{ "type": "object", "additionalProperties": { "type": "string" } }, { "type": "string" }] @@ -4404,20 +4406,6 @@ }, "__type_19": { "type": "object" }, "FragmentImportFromFn": { "$ref": "#/definitions/__type_19" }, - "__type_20": { - "type": "object", - "properties": { - "augmentedModuleName": { - "description": "The module name from which a augmented module should be imported from.", - "type": "string" - }, - "unmaskFunctionName": { - "description": "Name of the function that should be used for unmasking a masked fragment property.\nDefault value: \"`'useFragment'`\"", - "type": "string" - } - } - }, - "FragmentMaskingConfig": { "$ref": "#/definitions/__type_20" }, "GeneratedPluginsMap": { "anyOf": [ { diff --git a/website/src/lib/docs-generator.ts b/website/src/lib/docs-generator.ts index dedbd5e72bc..5fffb8fb2fc 100644 --- a/website/src/lib/docs-generator.ts +++ b/website/src/lib/docs-generator.ts @@ -31,11 +31,11 @@ function generateContentForSchema(schema: TJS.Definition): string { return `### \`${propName}\` type: \`${printType(prop)}\` - ${prop.default !== undefined ? `default: \`${prop.default === '' ? '(empty)' : prop.default}\`\n` : ''} + ${prop.default === undefined ? '' : `default: \`${prop.default === '' ? '(empty)' : prop.default}\`\n`} ${prop.description ? `${prop.description}\n` : ''} ${ (prop as any).exampleMarkdown - ? ` \n#### Usage Examples\n\n${(prop as any).exampleMarkdown.replace(/## /g, '##### ')}\n` + ? ` \n#### Usage Examples\n\n${(prop as any).exampleMarkdown.replaceAll('## ', '##### ')}\n` : '' }`; }) diff --git a/website/src/lib/plugin-get-static-props.ts b/website/src/lib/plugin-get-static-props.ts index 4c11fa87927..8c30eff19e2 100644 --- a/website/src/lib/plugin-get-static-props.ts +++ b/website/src/lib/plugin-get-static-props.ts @@ -22,7 +22,7 @@ export const pluginGetStaticProps = (fileName: string) => async () => { const [mdx, mdxHeader] = await Promise.all([ compileMdx(source, { - unstable_defaultShowCopyCode: true, + defaultShowCopyCode: true, }), compileMdx( ` @@ -47,7 +47,5 @@ export const pluginGetStaticProps = (fileName: string) => async () => { compiledHeader: mdxHeader.result, }, }, - // The page will be considered as stale and regenerated every 24 hours. - revalidate: 60 * 60 * 24, }; }; diff --git a/website/src/lib/transform.ts b/website/src/lib/transform.ts index a8694ec3eb1..19916d01ed5 100644 --- a/website/src/lib/transform.ts +++ b/website/src/lib/transform.ts @@ -1,36 +1,23 @@ -import { readFileSync } from 'node:fs'; -import path from 'node:path'; import * as TJS from 'typescript-json-schema'; import { generateDocs } from './docs-generator'; import { pluginsConfigurations, presetsConfigurations } from './plugins-docs'; - -const tsConfig = JSON.parse(readFileSync(path.join(process.cwd(), 'tsconfig.json'), 'utf8')); +import tsConfig from '../../tsconfig.json'; const ROOT_FILE = '../packages/utils/plugins-helpers/src/types.ts'; const ROOT_IDENTIFIER = 'Types.Config'; const MARKDOWN_JSDOC_KEY = 'exampleMarkdown'; export function transformDocs() { - const program = TJS.getProgramFromFiles( - [ROOT_FILE, ...[...pluginsConfigurations, ...presetsConfigurations].map(f => f.file)], - { - esModuleInterop: true, - baseUrl: '../../../', - paths: tsConfig.compilerOptions.paths, - module: 'esnext', - target: 'es2018', - skipLibCheck: true, - allowSyntheticDefaultImports: true, - importHelpers: true, - resolveJsonModule: true, - moduleResolution: 'node', - experimentalDecorators: true, - lib: ['es6', 'esnext', 'es2015', 'dom'], - } - ); + const pluginsAndPresets = [...pluginsConfigurations, ...presetsConfigurations]; + + const program = TJS.getProgramFromFiles([ROOT_FILE, ...pluginsAndPresets.map(f => f.file)], { + baseUrl: '../../../', + paths: tsConfig.compilerOptions.paths, + skipLibCheck: true, + allowSyntheticDefaultImports: true, + }); const generator = TJS.buildGenerator(program, { - topRef: true, aliasRef: true, validationKeywords: [MARKDOWN_JSDOC_KEY], }); @@ -39,10 +26,7 @@ export function transformDocs() { throw new Error(`Config-transform: failed to build TS generator...`); } - const schema = generator.getSchemaForSymbols( - [ROOT_IDENTIFIER, ...pluginsConfigurations.map(f => f.identifier), ...presetsConfigurations.map(f => f.identifier)], - true - ); + const schema = generator.getSchemaForSymbols([ROOT_IDENTIFIER, ...pluginsAndPresets.map(f => f.identifier)]); if (!schema.definitions) { throw new Error('Config-transform: "schema.definitions" is not defined'); @@ -80,10 +64,7 @@ export function transformDocs() { return [ ...prev, - { - const: p.name, - description, - }, + { const: p.name, description }, { const: `@graphql-codegen/${p.name}`, description, @@ -135,7 +116,7 @@ export function transformDocs() { // Point the root schema to the config root schema.$ref = `#/definitions/${ROOT_IDENTIFIER}`; - const docsMarkdown = generateDocs(schema, [...pluginsConfigurations, ...presetsConfigurations]); + const docsMarkdown = generateDocs(schema, pluginsAndPresets); return { docs: docsMarkdown, diff --git a/website/src/pages/_app.mdx b/website/src/pages/_app.mdx new file mode 100644 index 00000000000..e98f754d389 --- /dev/null +++ b/website/src/pages/_app.mdx @@ -0,0 +1,5 @@ +import '@theguild/components/style.css' + +export default function App({ Component, pageProps }) { + return +} diff --git a/website/src/pages/_app.tsx b/website/src/pages/_app.tsx deleted file mode 100644 index 77f3750ac66..00000000000 --- a/website/src/pages/_app.tsx +++ /dev/null @@ -1,7 +0,0 @@ -import { ReactElement } from 'react'; -import { AppProps } from 'next/app'; -import '@theguild/components/style.css'; - -export default function App({ Component, pageProps }: AppProps): ReactElement { - return ; -} diff --git a/website/src/pages/docs/guides/graphql-server-apollo-yoga-with-server-preset.mdx b/website/src/pages/docs/guides/graphql-server-apollo-yoga-with-server-preset.mdx index ccb67c663bc..924fbf85217 100644 --- a/website/src/pages/docs/guides/graphql-server-apollo-yoga-with-server-preset.mdx +++ b/website/src/pages/docs/guides/graphql-server-apollo-yoga-with-server-preset.mdx @@ -91,7 +91,7 @@ export default config -```yml filename="codegen.yml" +```yaml filename="codegen.yml" schema: '**/schema.graphql' generates: src/schema: diff --git a/yarn.lock b/yarn.lock index 952afd6c502..f1b1d4fb353 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2009,6 +2009,18 @@ lodash "~4.17.0" tslib "~2.4.0" +"@graphql-codegen/plugin-helpers@^4.0.0", "@graphql-codegen/plugin-helpers@^4.1.0", "@graphql-codegen/plugin-helpers@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@graphql-codegen/plugin-helpers/-/plugin-helpers-4.2.0.tgz#8324914d0f99162a223cfa01796cdd6be972d2ae" + integrity sha512-THFTCfg+46PXlXobYJ/OoCX6pzjI+9woQqCjdyKtgoI0tn3Xq2HUUCiidndxUpEYVrXb5pRiRXb7b/ZbMQqD0A== + dependencies: + "@graphql-tools/utils" "^9.0.0" + change-case-all "1.0.15" + common-tags "1.8.2" + import-from "4.0.0" + lodash "~4.17.0" + tslib "~2.5.0" + "@graphql-codegen/schema-ast@^2.5.0", "@graphql-codegen/schema-ast@^2.6.1": version "2.6.1" resolved "https://registry.yarnpkg.com/@graphql-codegen/schema-ast/-/schema-ast-2.6.1.tgz#8ba1b38827c034b51ecd3ce88622c2ae6cd3fe1a" @@ -2018,6 +2030,15 @@ "@graphql-tools/utils" "^9.0.0" tslib "~2.4.0" +"@graphql-codegen/schema-ast@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@graphql-codegen/schema-ast/-/schema-ast-3.0.1.tgz#37b458bb57b95715a9eb4259341c856dae2a461d" + integrity sha512-rTKTi4XiW4QFZnrEqetpiYEWVsOFNoiR/v3rY9mFSttXFbIwNXPme32EspTiGWmEEdHY8UuTDtZN3vEcs/31zw== + dependencies: + "@graphql-codegen/plugin-helpers" "^4.1.0" + "@graphql-tools/utils" "^9.0.0" + tslib "~2.5.0" + "@graphql-codegen/typescript-apollo-angular@3.5.6": version "3.5.6" resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript-apollo-angular/-/typescript-apollo-angular-3.5.6.tgz#0e84eb4b4160baf944b03f00e655e4c05f44d1af" @@ -2212,6 +2233,17 @@ auto-bind "~4.0.0" tslib "~2.4.0" +"@graphql-codegen/typescript@^3.0.0": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript/-/typescript-3.0.4.tgz#e12dc106a2722ebc7d18556980ccf47fa9d0805f" + integrity sha512-x4O47447DZrWNtE/l5CU9QzzW4m1RbmCEdijlA3s2flG/y1Ckqdemob4CWfilSm5/tZ3w1junVDY616RDTSvZw== + dependencies: + "@graphql-codegen/plugin-helpers" "^4.2.0" + "@graphql-codegen/schema-ast" "^3.0.1" + "@graphql-codegen/visitor-plugin-common" "3.1.1" + auto-bind "~4.0.0" + tslib "~2.5.0" + "@graphql-codegen/urql-introspection@2.2.1": version "2.2.1" resolved "https://registry.yarnpkg.com/@graphql-codegen/urql-introspection/-/urql-introspection-2.2.1.tgz#97baaf09bf91b044a21dd6715af22e0ba6d829ec" @@ -2269,6 +2301,22 @@ parse-filepath "^1.0.2" tslib "~2.4.0" +"@graphql-codegen/visitor-plugin-common@3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-3.1.1.tgz#50c2aa3c537a805ce68d2f115d0a9811b151428c" + integrity sha512-uAfp+zu/009R3HUAuTK2AamR1bxIltM6rrYYI6EXSmkM3rFtFsLTuJhjUDj98HcUCszJZrADppz8KKLGRUVlNg== + dependencies: + "@graphql-codegen/plugin-helpers" "^4.2.0" + "@graphql-tools/optimize" "^1.3.0" + "@graphql-tools/relay-operation-optimizer" "^6.5.0" + "@graphql-tools/utils" "^9.0.0" + auto-bind "~4.0.0" + change-case-all "1.0.15" + dependency-graph "^0.11.0" + graphql-tag "^2.11.0" + parse-filepath "^1.0.2" + tslib "~2.5.0" + "@graphql-tools/apollo-engine-loader@8.0.0", "@graphql-tools/apollo-engine-loader@^8.0.0": version "8.0.0" resolved "https://registry.yarnpkg.com/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-8.0.0.tgz#ac1f351cbe41508411784f25757f5557b0f27489" From ab94f192c64221230c7900ca85c62846a5633916 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 May 2023 18:59:55 +0000 Subject: [PATCH 002/115] Update algolia-lockfile.json --- website/algolia-lockfile.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/website/algolia-lockfile.json b/website/algolia-lockfile.json index a45beefbdb4..26442c0e7c6 100644 --- a/website/algolia-lockfile.json +++ b/website/algolia-lockfile.json @@ -11,6 +11,18 @@ "title": "Home", "type": "Documentation" }, + { + "objectID": "code-generator-_app", + "headings": [], + "toc": [], + "content": "f4ef1264bf701e221c7233d18748eff9", + "url": "https://www.the-guild.dev/graphql/codegen/_app", + "domain": "https://www.the-guild.dev/graphql/codegen", + "hierarchy": [], + "source": "Code Generator", + "title": "_app", + "type": "Documentation" + }, { "objectID": "code-generator-docs-advanced-document-transform", "headings": [ From 7abbe6eeec601ace58f650424c339c5b4ddf90a4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 25 May 2023 23:01:24 +0200 Subject: [PATCH 003/115] fix(deps): update dependency @monaco-editor/react to v4.5.1 (#9404) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- website/package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/website/package.json b/website/package.json index 11e84024ff0..e7f1dfa3e80 100644 --- a/website/package.json +++ b/website/package.json @@ -66,7 +66,7 @@ "@graphql-codegen/typescript-vue-urql": "2.3.6", "@graphql-codegen/urql-introspection": "2.2.1", "@graphql-codegen/client-preset": "4.0.0", - "@monaco-editor/react": "4.5.0", + "@monaco-editor/react": "4.5.1", "@theguild/components": "4.5.12", "classnames": "2.3.2", "date-fns": "2.29.3", diff --git a/yarn.lock b/yarn.lock index f1b1d4fb353..7e09e1b1e5f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3202,10 +3202,10 @@ dependencies: state-local "^1.0.6" -"@monaco-editor/react@4.5.0": - version "4.5.0" - resolved "https://registry.yarnpkg.com/@monaco-editor/react/-/react-4.5.0.tgz#5a581f1ce5af6597dd127ac2c0d22d15ca3f3928" - integrity sha512-VJMkp5Fe1+w8pLEq8tZPHZKu8zDXQIA1FtiDTSNccg1D3wg1YIZaH2es2Qpvop1k62g3c/YySRb3bnGXu2XwYQ== +"@monaco-editor/react@4.5.1": + version "4.5.1" + resolved "https://registry.yarnpkg.com/@monaco-editor/react/-/react-4.5.1.tgz#fbc76c692aee9a33b9ab24ae0c5f219b8f002fdb" + integrity sha512-NNDFdP+2HojtNhCkRfE6/D6ro6pBNihaOzMbGK84lNWzRu+CfBjwzGt4jmnqimLuqp5yE5viHS2vi+QOAnD5FQ== dependencies: "@monaco-editor/loader" "^1.3.3" From feaee103ea774e2309b181bf10c8ee880328ad4d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 25 May 2023 23:01:36 +0200 Subject: [PATCH 004/115] chore(deps): update dependency vite to v4.3.8 (#9429) Co-authored-by: Arda TANRIKULU Co-authored-by: Eddy Nguyen Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 7e09e1b1e5f..556b4ddfbd0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -14097,9 +14097,9 @@ villus@^2.1.0: integrity sha512-vnrY62rf5Yzfew0fZbHQ7b51NpcWKbNDxxmq98NNhBRXjt8gVtbbXsOpRatnKINxsZPPzH+zLJGnTj95F0InHQ== vite@^4.1.0: - version "4.3.5" - resolved "https://registry.yarnpkg.com/vite/-/vite-4.3.5.tgz#3871fe0f4b582ea7f49a85386ac80e84826367d9" - integrity sha512-0gEnL9wiRFxgz40o/i/eTBwm+NEbpUeTWhzKrZDSdKm6nplj+z4lKz8ANDgildxHm47Vg8EUia0aicKbawUVVA== + version "4.3.8" + resolved "https://registry.yarnpkg.com/vite/-/vite-4.3.8.tgz#70cd6a294ab52d7fb8f37f5bc63d117dd19e9918" + integrity sha512-uYB8PwN7hbMrf4j1xzGDk/lqjsZvCDbt/JC5dyfxc19Pg8kRm14LinK/uq+HSLNswZEoKmweGdtpbnxRtrAXiQ== dependencies: esbuild "^0.17.5" postcss "^8.4.23" From 1b26e8ae215e62c173a06435febbf0c34b02308f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 25 May 2023 23:01:47 +0200 Subject: [PATCH 005/115] fix(deps): update dependency react-select to v5.7.3 (#9408) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- website/package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/website/package.json b/website/package.json index e7f1dfa3e80..49175cf6459 100644 --- a/website/package.json +++ b/website/package.json @@ -79,7 +79,7 @@ "react": "18.2.0", "react-dom": "18.2.0", "react-markdown": "8.0.7", - "react-select": "5.7.2", + "react-select": "5.7.3", "typescript-json-schema": "0.56.0" }, "browserslist": { diff --git a/yarn.lock b/yarn.lock index 556b4ddfbd0..d34986565a0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12114,10 +12114,10 @@ react-refresh@^0.14.0: resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.0.tgz#4e02825378a5f227079554d4284889354e5f553e" integrity sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ== -react-select@5.7.2: - version "5.7.2" - resolved "https://registry.yarnpkg.com/react-select/-/react-select-5.7.2.tgz#ccd40071b9429277983bf15526e7a5773a060e09" - integrity sha512-cTlJkQ8YjV6T/js8wW0owTzht0hHGABh29vjLscY4HfZGkv7hc3FFTmRp9NzY/Ib1uQ36GieAKEjxpHdpCFpcA== +react-select@5.7.3: + version "5.7.3" + resolved "https://registry.yarnpkg.com/react-select/-/react-select-5.7.3.tgz#fa0dc9a23cad6ff3871ad3829f6083a4b54961a2" + integrity sha512-z8i3NCuFFWL3w27xq92rBkVI2onT0jzIIPe480HlBjXJ3b5o6Q+Clp4ydyeKrj9DZZ3lrjawwLC5NGl0FSvUDg== dependencies: "@babel/runtime" "^7.12.0" "@emotion/cache" "^11.4.0" From f6b32c1e105e628f80c446aa00476f5c1420c571 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 26 May 2023 02:02:50 +0200 Subject: [PATCH 006/115] fix(deps): update dependency @theguild/components to v4.6.0 (#9464) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- website/package.json | 2 +- yarn.lock | 455 +++++++++++++++++++++++-------------------- 2 files changed, 244 insertions(+), 213 deletions(-) diff --git a/website/package.json b/website/package.json index 49175cf6459..2150c78c244 100644 --- a/website/package.json +++ b/website/package.json @@ -67,7 +67,7 @@ "@graphql-codegen/urql-introspection": "2.2.1", "@graphql-codegen/client-preset": "4.0.0", "@monaco-editor/react": "4.5.1", - "@theguild/components": "4.5.12", + "@theguild/components": "4.6.0", "classnames": "2.3.2", "date-fns": "2.29.3", "dedent": "0.7.0", diff --git a/yarn.lock b/yarn.lock index d34986565a0..a8211260d8b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -55,114 +55,114 @@ resolved "https://registry.yarnpkg.com/@algolia/autocomplete-theme-classic/-/autocomplete-theme-classic-1.9.2.tgz#b04ce32d6994d885391b125d1adb5828514edfcb" integrity sha512-3yjFogH3p08Lo1aqjrIp71o/YqLNJivHtZJlZ32jZ7sC/p4Q7bte1GKvDoLloU+oWPyv+4awsl6EdnW4mfIAVQ== -"@algolia/cache-browser-local-storage@4.17.0": - version "4.17.0" - resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.17.0.tgz#4c54a9b1795dcc1cd9f9533144f7df3057984d39" - integrity sha512-myRSRZDIMYB8uCkO+lb40YKiYHi0fjpWRtJpR/dgkaiBlSD0plRyB6lLOh1XIfmMcSeBOqDE7y9m8xZMrXYfyQ== - dependencies: - "@algolia/cache-common" "4.17.0" - -"@algolia/cache-common@4.17.0": - version "4.17.0" - resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.17.0.tgz#bc3da15548df585b44d76c55e66b0056a2b3f917" - integrity sha512-g8mXzkrcUBIPZaulAuqE7xyHhLAYAcF2xSch7d9dABheybaU3U91LjBX6eJTEB7XVhEsgK4Smi27vWtAJRhIKQ== - -"@algolia/cache-in-memory@4.17.0": - version "4.17.0" - resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.17.0.tgz#eb55a92cb8eb8641903a2b23fd6d05ebdaca2010" - integrity sha512-PT32ciC/xI8z919d0oknWVu3kMfTlhQn3MKxDln3pkn+yA7F7xrxSALysxquv+MhFfNAcrtQ/oVvQVBAQSHtdw== - dependencies: - "@algolia/cache-common" "4.17.0" - -"@algolia/client-account@4.17.0": - version "4.17.0" - resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.17.0.tgz#4b13e5a8e50a06be1f3289d9db337096ebc66b73" - integrity sha512-sSEHx9GA6m7wrlsSMNBGfyzlIfDT2fkz2u7jqfCCd6JEEwmxt8emGmxAU/0qBfbhRSuGvzojoLJlr83BSZAKjA== - dependencies: - "@algolia/client-common" "4.17.0" - "@algolia/client-search" "4.17.0" - "@algolia/transporter" "4.17.0" - -"@algolia/client-analytics@4.17.0": - version "4.17.0" - resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.17.0.tgz#1b36ffbe913b7b4d8900bc15982ca431f47a473c" - integrity sha512-84ooP8QA3mQ958hQ9wozk7hFUbAO+81CX1CjAuerxBqjKIInh1fOhXKTaku05O/GHBvcfExpPLIQuSuLYziBXQ== - dependencies: - "@algolia/client-common" "4.17.0" - "@algolia/client-search" "4.17.0" - "@algolia/requester-common" "4.17.0" - "@algolia/transporter" "4.17.0" - -"@algolia/client-common@4.17.0": - version "4.17.0" - resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.17.0.tgz#67fd898006e3ac359ea3e3ed61abfc26147ffa53" - integrity sha512-jHMks0ZFicf8nRDn6ma8DNNsdwGgP/NKiAAL9z6rS7CymJ7L0+QqTJl3rYxRW7TmBhsUH40wqzmrG6aMIN/DrQ== - dependencies: - "@algolia/requester-common" "4.17.0" - "@algolia/transporter" "4.17.0" - -"@algolia/client-personalization@4.17.0": - version "4.17.0" - resolved "https://registry.yarnpkg.com/@algolia/client-personalization/-/client-personalization-4.17.0.tgz#428d9f4762c22856b6062bb54351eb31834db6c1" - integrity sha512-RMzN4dZLIta1YuwT7QC9o+OeGz2cU6eTOlGNE/6RcUBLOU3l9tkCOdln5dPE2jp8GZXPl2yk54b2nSs1+pAjqw== - dependencies: - "@algolia/client-common" "4.17.0" - "@algolia/requester-common" "4.17.0" - "@algolia/transporter" "4.17.0" - -"@algolia/client-search@4.17.0": - version "4.17.0" - resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.17.0.tgz#0053c682f5f588e006c20791c27e8bcb0aa5b53c" - integrity sha512-x4P2wKrrRIXszT8gb7eWsMHNNHAJs0wE7/uqbufm4tZenAp+hwU/hq5KVsY50v+PfwM0LcDwwn/1DroujsTFoA== - dependencies: - "@algolia/client-common" "4.17.0" - "@algolia/requester-common" "4.17.0" - "@algolia/transporter" "4.17.0" +"@algolia/cache-browser-local-storage@4.17.1": + version "4.17.1" + resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.17.1.tgz#b2f204a436893b4856165670ec4dda12cdc055b8" + integrity sha512-e91Jpu93X3t3mVdQwF3ZDjSFMFIfzSc+I76G4EX8nl9RYXgqcjframoL05VTjcD2YCsI18RIHAWVCBoCXVZnrw== + dependencies: + "@algolia/cache-common" "4.17.1" + +"@algolia/cache-common@4.17.1": + version "4.17.1" + resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.17.1.tgz#f4877f6fdc594a29ce6d032fae96f0517bf80b1d" + integrity sha512-fvi1WT8aSiGAKrcTw8Qg3RYgcwW8GZMHcqEm4AyDBEy72JZlFBSY80cTQ75MslINjCHXLDT+9EN8AGI9WVY7uA== + +"@algolia/cache-in-memory@4.17.1": + version "4.17.1" + resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.17.1.tgz#7b3ab5f6de897677d92db549f8228966c62966d5" + integrity sha512-NbBt6eBWlsXc5geSpfPRC5dkIB/0Ptthw8r0yM5Z7D3sPlYdnTZSO9y9XWXIptRMwmZe4cM8iBMN8y0tzbcBkA== + dependencies: + "@algolia/cache-common" "4.17.1" + +"@algolia/client-account@4.17.1": + version "4.17.1" + resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.17.1.tgz#81747c0828d2688af4a98bbed3d3b0aa7daa25f6" + integrity sha512-3rL/6ofJvyL+q8TiWM3qoM9tig+SY4gB1Vbsj+UeJPnJm8Khm+7OS+r+mFraqR6pTehYqN8yGYoE7x4diEn4aA== + dependencies: + "@algolia/client-common" "4.17.1" + "@algolia/client-search" "4.17.1" + "@algolia/transporter" "4.17.1" + +"@algolia/client-analytics@4.17.1": + version "4.17.1" + resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.17.1.tgz#d6ecc75fd792fb1dee67c01497098ce175f1c4c9" + integrity sha512-Bepr2w249vODqeBtM7i++tPmUsQ9B81aupUGbDWmjA/FX+jzQqOdhW8w1CFO5kWViNKTbz2WBIJ9U3x8hOa4bA== + dependencies: + "@algolia/client-common" "4.17.1" + "@algolia/client-search" "4.17.1" + "@algolia/requester-common" "4.17.1" + "@algolia/transporter" "4.17.1" + +"@algolia/client-common@4.17.1": + version "4.17.1" + resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.17.1.tgz#a8b561c1e3a19cce2c24e9a49bd822477c2f56d9" + integrity sha512-+r7kg4EgbFnGsDnoGSVNtXZO8xvZ0vzf1WAOV7sqV9PMf1bp6cpJP/3IuPrSk4t5w2KVl+pC8jfTM7HcFlfBEQ== + dependencies: + "@algolia/requester-common" "4.17.1" + "@algolia/transporter" "4.17.1" + +"@algolia/client-personalization@4.17.1": + version "4.17.1" + resolved "https://registry.yarnpkg.com/@algolia/client-personalization/-/client-personalization-4.17.1.tgz#26b2c8e13e9b69afd4e2c17879f538d408b708f3" + integrity sha512-gJku9DG/THJpfsSlG/az0a3QIn+VVff9kKh8PG8+7ZfxOHS+C+Y5YSeZVsC+c2cfoKLPo3CuHIiJ/p86erR3bA== + dependencies: + "@algolia/client-common" "4.17.1" + "@algolia/requester-common" "4.17.1" + "@algolia/transporter" "4.17.1" + +"@algolia/client-search@4.17.1": + version "4.17.1" + resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.17.1.tgz#defaf56083e613fb593a9a49837b6aa551ed38eb" + integrity sha512-Q5YfT5gVkx60PZDQBqp/zH9aUbBdC7HVvxupiHUgnCKqRQsRZjOhLest7AI6FahepuZLBZS62COrO7v+JvKY7w== + dependencies: + "@algolia/client-common" "4.17.1" + "@algolia/requester-common" "4.17.1" + "@algolia/transporter" "4.17.1" "@algolia/events@^4.0.1": version "4.0.1" resolved "https://registry.yarnpkg.com/@algolia/events/-/events-4.0.1.tgz#fd39e7477e7bc703d7f893b556f676c032af3950" integrity sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ== -"@algolia/logger-common@4.17.0": - version "4.17.0" - resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.17.0.tgz#0fcea39c9485554edb4cdbfd965c5748b0b837ac" - integrity sha512-DGuoZqpTmIKJFDeyAJ7M8E/LOenIjWiOsg1XJ1OqAU/eofp49JfqXxbfgctlVZVmDABIyOz8LqEoJ6ZP4DTyvw== +"@algolia/logger-common@4.17.1": + version "4.17.1" + resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.17.1.tgz#fe50f67a86276cebdfd8337bc5d925f7a3bf9e43" + integrity sha512-Us28Ot+fLEmX9M96sa65VZ8EyEEzhYPxfhV9aQyKDjfXbUdJlJxKt6wZpoEg9RAPSdO8IjK9nmuW2P8au3rRsg== -"@algolia/logger-console@4.17.0": - version "4.17.0" - resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.17.0.tgz#8ac56ef4259c4fa3eb9eb6586c7b4b4ed942e8da" - integrity sha512-zMPvugQV/gbXUvWBCzihw6m7oxIKp48w37QBIUu/XqQQfxhjoOE9xyfJr1KldUt5FrYOKZJVsJaEjTsu+bIgQg== +"@algolia/logger-console@4.17.1": + version "4.17.1" + resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.17.1.tgz#d9d6dc0bb6ad1321b66163491cc4618d27beb73d" + integrity sha512-iKGQTpOjHiE64W3JIOu6dmDvn+AfYIElI9jf/Nt6umRPmP/JI9rK+OHUoW4pKrBtdG0DPd62ppeNXzSnLxY6/g== dependencies: - "@algolia/logger-common" "4.17.0" + "@algolia/logger-common" "4.17.1" -"@algolia/requester-browser-xhr@4.17.0": - version "4.17.0" - resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.17.0.tgz#f52fdeeac2f3c531f00838920af33a73066a159b" - integrity sha512-aSOX/smauyTkP21Pf52pJ1O2LmNFJ5iHRIzEeTh0mwBeADO4GdG94cAWDILFA9rNblq/nK3EDh3+UyHHjplZ1A== +"@algolia/requester-browser-xhr@4.17.1": + version "4.17.1" + resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.17.1.tgz#8be50e4196cd9d1ec311970845a42f2aee35860e" + integrity sha512-W5mGfGDsyfVR+r4pUFrYLGBEM18gs38+GNt5PE5uPULy4uVTSnnVSkJkWeRkmLBk9zEZ/Nld8m4zavK6dtEuYg== dependencies: - "@algolia/requester-common" "4.17.0" + "@algolia/requester-common" "4.17.1" -"@algolia/requester-common@4.17.0": - version "4.17.0" - resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.17.0.tgz#746020d2cbc829213e7cede8eef2182c7a71e32b" - integrity sha512-XJjmWFEUlHu0ijvcHBoixuXfEoiRUdyzQM6YwTuB8usJNIgShua8ouFlRWF8iCeag0vZZiUm4S2WCVBPkdxFgg== +"@algolia/requester-common@4.17.1": + version "4.17.1" + resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.17.1.tgz#3b3912c8df1e05f0fd49f4c9a7caa3fe45d2d995" + integrity sha512-HggXdjvVFQR0I5l7hM5WdHgQ1tqcRWeyXZz8apQ7zPWZhirmY2E9D6LVhDh/UnWQNEm7nBtM+eMFONJ3bZccIQ== -"@algolia/requester-node-http@4.17.0": - version "4.17.0" - resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.17.0.tgz#262276d94c25a4ec2128b1bdfb9471529528d8b9" - integrity sha512-bpb/wDA1aC6WxxM8v7TsFspB7yBN3nqCGs2H1OADolQR/hiAIjAxusbuMxVbRFOdaUvAIqioIIkWvZdpYNIn8w== +"@algolia/requester-node-http@4.17.1": + version "4.17.1" + resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.17.1.tgz#f4eeee985833ad2b51ac9ff757be5c1a786ff80a" + integrity sha512-NzFWecXT6d0PPsQY9L+/qoK2deF74OLcpvqCH+Vh3mh+QzPsFafcBExdguAjZsAWDn1R6JEeFW7/fo/p0SE57w== dependencies: - "@algolia/requester-common" "4.17.0" + "@algolia/requester-common" "4.17.1" -"@algolia/transporter@4.17.0": - version "4.17.0" - resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.17.0.tgz#6aabdbc20c475d72d83c8e6519f1191f1a51fb37" - integrity sha512-6xL6H6fe+Fi0AEP3ziSgC+G04RK37iRb4uUUqVAH9WPYFI8g+LYFq6iv5HS8Cbuc5TTut+Bwj6G+dh/asdb9uA== +"@algolia/transporter@4.17.1": + version "4.17.1" + resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.17.1.tgz#9508e08e984e110603ec66a19362017c1df59e05" + integrity sha512-ZM+qhX47Vh46mWH8/U9ihvy98HdTYpYQDSlqBD7IbiUbbyoCMke+qmdSX2MGhR2FCcXBSxejsJKKVAfbpaLVgg== dependencies: - "@algolia/cache-common" "4.17.0" - "@algolia/logger-common" "4.17.0" - "@algolia/requester-common" "4.17.0" + "@algolia/cache-common" "4.17.1" + "@algolia/logger-common" "4.17.1" + "@algolia/requester-common" "4.17.1" "@ampproject/remapping@^2.2.0": version "2.2.0" @@ -3130,6 +3130,13 @@ "@jridgewell/resolve-uri" "3.1.0" "@jridgewell/sourcemap-codec" "1.4.14" +"@khanacademy/simple-markdown@^0.8.6": + version "0.8.6" + resolved "https://registry.yarnpkg.com/@khanacademy/simple-markdown/-/simple-markdown-0.8.6.tgz#9c9aef1f5ce2ce60292d13849165965a57c26f25" + integrity sha512-mAUlR9lchzfqunR89pFvNI51jQKsMpJeWYsYWw0DQcUXczn/T/V6510utgvm7X0N3zN87j1SvuKk8cMbl9IAFw== + dependencies: + "@types/react" ">=16.0.0" + "@lit-labs/ssr-dom-shim@^1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.0.0.tgz#427e19a2765681fd83411cd72c55ba80a01e0523" @@ -3720,10 +3727,10 @@ lodash.sortby "^4.7.0" remove-markdown "^0.5.0" -"@theguild/components@4.5.12": - version "4.5.12" - resolved "https://registry.yarnpkg.com/@theguild/components/-/components-4.5.12.tgz#a4d4481b1b3ddca7ebc021504936ebc465a93c01" - integrity sha512-LcRvfriNw+ft4ufUa8vXGlhplGcqn9DZ61mNeoj4v5WqoaCN8XIxOLiuYB5caPOr/iwYc3U2rQ/tz6nRQJv59g== +"@theguild/components@4.6.0": + version "4.6.0" + resolved "https://registry.yarnpkg.com/@theguild/components/-/components-4.6.0.tgz#1a8455fb341722063570a68833ab998a1c962711" + integrity sha512-SmVznT4s6Q92MPO5kB5blY7IKBhEdm95CJT5us7c9vcFOM3lRiUX84CwGpleIEnFvLiixyBxyU9O+LiM+G1auw== dependencies: "@algolia/autocomplete-js" "1.9.2" "@algolia/autocomplete-plugin-algolia-insights" "1.9.2" @@ -3732,15 +3739,15 @@ "@giscus/react" "2.2.8" "@next/bundle-analyzer" "13.4.2" "@radix-ui/react-navigation-menu" "1.1.2" - algoliasearch "4.17.0" + algoliasearch "4.17.1" clsx "1.2.1" - focus-trap-react "10.1.2" + focus-trap-react "10.1.4" fuzzy "^0.1.3" - mermaid "10.0.2" + mermaid "10.1.0" next-videos "1.5.0" - nextra "2.5.2" - nextra-theme-docs "2.5.2" - react-instantsearch-dom "6.39.1" + nextra "2.6.1" + nextra-theme-docs "2.6.1" + react-instantsearch-dom "6.40.0" react-paginate "8.2.0" react-player "2.12.0" remark-mdx-disable-explicit-jsx "0.1.0" @@ -3994,6 +4001,11 @@ resolved "https://registry.yarnpkg.com/@types/katex/-/katex-0.11.1.tgz#34de04477dcf79e2ef6c8d23b41a3d81f9ebeaf5" integrity sha512-DUlIj2nk0YnJdlWgsFuVKcX27MLW0KbKmGVoUHmFr+74FYYNUDAaj9ZqTADvsbE8rfxuVmSFc7KczYn5Y09ozg== +"@types/katex@^0.14.0": + version "0.14.0" + resolved "https://registry.yarnpkg.com/@types/katex/-/katex-0.14.0.tgz#b84c0afc3218069a5ad64fe2a95321881021b5fe" + integrity sha512-+2FW2CcT0K3P+JMR8YG846bmDwplKUTsWgT2ENwdQ1UdVfRk3GQrh6Mi4sTopy30gI8Uau5CEqHTDZ6YvWIUPA== + "@types/lz-string@1.3.34": version "1.3.34" resolved "https://registry.yarnpkg.com/@types/lz-string/-/lz-string-1.3.34.tgz#69bfadde419314b4a374bf2c8e58659c035ed0a5" @@ -4089,7 +4101,7 @@ dependencies: "@types/react" "*" -"@types/react@*", "@types/react@18.2.6", "@types/react@>=16", "@types/react@^18.0.15", "@types/react@^18.0.17", "@types/react@^18.0.27": +"@types/react@*", "@types/react@18.2.6", "@types/react@>=16", "@types/react@>=16.0.0", "@types/react@^18.0.15", "@types/react@^18.0.17", "@types/react@^18.0.27": version "18.2.6" resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.6.tgz#5cd53ee0d30ffc193b159d3516c8c8ad2f19d571" integrity sha512-wRZClXn//zxCFW+ye/D2qY65UsYP1Fpex2YXorHc8awoNamkMZSvBxwxdYVInsHOZZd2Ppq8isnSzJL5Mpf8OA== @@ -4633,32 +4645,32 @@ ajv@^6.10.0, ajv@^6.12.2, ajv@^6.12.4: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -algoliasearch-helper@^3.11.3: - version "3.11.3" - resolved "https://registry.yarnpkg.com/algoliasearch-helper/-/algoliasearch-helper-3.11.3.tgz#6e7af8afe6f9a9e55186abffb7b6cf7ca8de3301" - integrity sha512-TbaEvLwiuGygHQIB8y+OsJKQQ40+JKUua5B91X66tMUHyyhbNHvqyr0lqd3wCoyKx7WybyQrC0WJvzoIeh24Aw== +algoliasearch-helper@^3.13.0: + version "3.13.0" + resolved "https://registry.yarnpkg.com/algoliasearch-helper/-/algoliasearch-helper-3.13.0.tgz#1ccca7056fd27c2b0b5c92dd5c0abf4314bec3b8" + integrity sha512-kV3c1jMQCvkARtGsSDvAwuht4PAMSsQILqPiH4WFiARoa3jXJ/r1TQoBWAjWyWF48rsNYCv7kzxgB4LTxrvvuw== dependencies: "@algolia/events" "^4.0.1" -algoliasearch@4.17.0, algoliasearch@^4.14.3: - version "4.17.0" - resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.17.0.tgz#46ed58b2b99509d041f11cd1ea83623edf84355f" - integrity sha512-JMRh2Mw6sEnVMiz6+APsi7lx9a2jiDFF+WUtANaUVCv6uSU9UOLdo5h9K3pdP6frRRybaM2fX8b1u0nqICS9aA== - dependencies: - "@algolia/cache-browser-local-storage" "4.17.0" - "@algolia/cache-common" "4.17.0" - "@algolia/cache-in-memory" "4.17.0" - "@algolia/client-account" "4.17.0" - "@algolia/client-analytics" "4.17.0" - "@algolia/client-common" "4.17.0" - "@algolia/client-personalization" "4.17.0" - "@algolia/client-search" "4.17.0" - "@algolia/logger-common" "4.17.0" - "@algolia/logger-console" "4.17.0" - "@algolia/requester-browser-xhr" "4.17.0" - "@algolia/requester-common" "4.17.0" - "@algolia/requester-node-http" "4.17.0" - "@algolia/transporter" "4.17.0" +algoliasearch@4.17.1, algoliasearch@^4.14.3: + version "4.17.1" + resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.17.1.tgz#23926448b815bbf9a921bc6077abc1ce8d3224b2" + integrity sha512-4GDQ1RhP2qUR3x8PevFRbEdqZqIARNViZYjgTJmA1T7wRNtFA3W4Aqc/RsODqa1J8IO/QDla5x4tWuUS8NV8wA== + dependencies: + "@algolia/cache-browser-local-storage" "4.17.1" + "@algolia/cache-common" "4.17.1" + "@algolia/cache-in-memory" "4.17.1" + "@algolia/client-account" "4.17.1" + "@algolia/client-analytics" "4.17.1" + "@algolia/client-common" "4.17.1" + "@algolia/client-personalization" "4.17.1" + "@algolia/client-search" "4.17.1" + "@algolia/logger-common" "4.17.1" + "@algolia/logger-console" "4.17.1" + "@algolia/requester-browser-xhr" "4.17.1" + "@algolia/requester-common" "4.17.1" + "@algolia/requester-node-http" "4.17.1" + "@algolia/transporter" "4.17.1" ansi-align@^3.0.1: version "3.0.1" @@ -5716,7 +5728,7 @@ commander@^6.2.1: resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== -commander@^8.0.0: +commander@^8.0.0, commander@^8.3.0: version "8.3.0" resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== @@ -6291,10 +6303,10 @@ d3@^7.4.0, d3@^7.8.2: d3-transition "3" d3-zoom "3" -dagre-d3-es@7.0.9: - version "7.0.9" - resolved "https://registry.yarnpkg.com/dagre-d3-es/-/dagre-d3-es-7.0.9.tgz#aca12fccd9d09955a4430029ba72ee6934542a8d" - integrity sha512-rYR4QfVmy+sR44IBDvVtcAmOReGBvRCWDpO2QjYwqgh9yijw6eSHBqaPG/LIOEy7aBsniLvtMW6pg19qJhq60w== +dagre-d3-es@7.0.10: + version "7.0.10" + resolved "https://registry.yarnpkg.com/dagre-d3-es/-/dagre-d3-es-7.0.10.tgz#19800d4be674379a3cd8c86a8216a2ac6827cadc" + integrity sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A== dependencies: d3 "^7.8.2" lodash-es "^4.17.21" @@ -6571,10 +6583,10 @@ domhandler@^4.2.0, domhandler@^4.3.1: dependencies: domelementtype "^2.2.0" -dompurify@2.4.3: - version "2.4.3" - resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-2.4.3.tgz#f4133af0e6a50297fc8874e2eaedc13a3c308c03" - integrity sha512-q6QaLcakcRjebxjg8/+NP+h0rPfatOgOzc46Fst9VAA3jF2ApfKBNKMzdP4DYTqtUMXSCd5pRS/8Po/OmoCHZQ== +dompurify@2.4.5: + version "2.4.5" + resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-2.4.5.tgz#0e89a27601f0bad978f9a924e7a05d5d2cccdd87" + integrity sha512-jggCCd+8Iqp4Tsz0nIvpcb22InKEBrGz5dw3EQJMs8HPJDsKbFIO3STYtAvCfDx26Muevn1MHVI0XxjgFfmiSA== domutils@^2.8.0: version "2.8.0" @@ -6683,6 +6695,11 @@ entities@^2.0.0: resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== +entities@^4.4.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" + integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== + error-ex@^1.3.1: version "1.3.2" resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" @@ -7602,18 +7619,18 @@ flexsearch@^0.7.21: resolved "https://registry.yarnpkg.com/flexsearch/-/flexsearch-0.7.31.tgz#065d4110b95083110b9b6c762a71a77cc52e4702" integrity sha512-XGozTsMPYkm+6b5QL3Z9wQcJjNYxp0CYn3U1gO7dwD6PAqU1SVWZxI9CCg3z+ml3YfqdPnrBehaBrnH2AGKbNA== -focus-trap-react@10.1.2: - version "10.1.2" - resolved "https://registry.yarnpkg.com/focus-trap-react/-/focus-trap-react-10.1.2.tgz#88ab35c73c1de4fa003ebe447caa065607b8c3b9" - integrity sha512-E419LzaENAxp95bXKvGmatPzuPQtAQ6l2o576shXV82u53WvnjogcotgcD5d9veYoqXvPZI303RP6ZysXLGVsg== +focus-trap-react@10.1.4: + version "10.1.4" + resolved "https://registry.yarnpkg.com/focus-trap-react/-/focus-trap-react-10.1.4.tgz#bab7ea87aecfa2f7eb6f2fcc4be1e7311893ca17" + integrity sha512-vLUQRXI6SUJD8YLYTBa1DlCYRmTKFDxRvc4TEe2nq8S1aj+YKsucuNxqZUOf0+RZ01Yoiwtk/6rD9xqSvawIvQ== dependencies: - focus-trap "^7.4.1" + focus-trap "^7.4.3" tabbable "^6.1.2" -focus-trap@^7.4.1: - version "7.4.1" - resolved "https://registry.yarnpkg.com/focus-trap/-/focus-trap-7.4.1.tgz#321cd8313c75f6c22ed3c472e04b913e5ee2eb5a" - integrity sha512-rnXP5ERIjlo1gEZp7hQb4ekYqUxRuSDQeyWvxhahH3/GkWtd8h8g1C8Eu/KGpuvbUWNVeogK0kuzzrM4u2Z9jA== +focus-trap@^7.4.3: + version "7.4.3" + resolved "https://registry.yarnpkg.com/focus-trap/-/focus-trap-7.4.3.tgz#a3dae73d44df359eb92bbf37b18e173e813b16c5" + integrity sha512-BgSSbK4GPnS2VbtZ50VtOv1Sti6DIkj3+LkVjiWMNjLeAp1SH1UlLx3ULu/DCu4vq5R4/uvTm+zrvsMsuYmGLg== dependencies: tabbable "^6.1.2" @@ -7957,10 +7974,10 @@ gopd@^1.0.1: dependencies: get-intrinsic "^1.1.3" -graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.5, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.10, graceful-fs@^4.2.4, graceful-fs@^4.2.9: - version "4.2.10" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" - integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== +graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.5, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.9: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== grapheme-splitter@^1.0.4: version "1.0.4" @@ -8183,6 +8200,35 @@ hash-obj@^4.0.0: sort-keys "^5.0.0" type-fest "^1.0.2" +hast-util-from-dom@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/hast-util-from-dom/-/hast-util-from-dom-4.2.0.tgz#25836ddecc3cc0849d32749c2a7aec03e94b59a7" + integrity sha512-t1RJW/OpJbCAJQeKi3Qrj1cAOLA0+av/iPFori112+0X7R3wng+jxLA+kXec8K4szqPRGI8vPxbbpEYvvpwaeQ== + dependencies: + hastscript "^7.0.0" + web-namespaces "^2.0.0" + +hast-util-from-html-isomorphic@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/hast-util-from-html-isomorphic/-/hast-util-from-html-isomorphic-1.0.0.tgz#592b2bea880d476665b76ca1cf7d1a94925c80ec" + integrity sha512-Yu480AKeOEN/+l5LA674a+7BmIvtDj24GvOt7MtQWuhzUwlaaRWdEPXAh3Qm5vhuthpAipFb2vTetKXWOjmTvw== + dependencies: + "@types/hast" "^2.0.0" + hast-util-from-dom "^4.0.0" + hast-util-from-html "^1.0.0" + unist-util-remove-position "^4.0.0" + +hast-util-from-html@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/hast-util-from-html/-/hast-util-from-html-1.0.2.tgz#2482fd701b2d8270b912b3909d6fb645d4a346cf" + integrity sha512-LhrTA2gfCbLOGJq2u/asp4kwuG0y6NhWTXiPKP+n0qNukKy7hc10whqqCFfyvIA1Q5U5d0sp9HhNim9gglEH4A== + dependencies: + "@types/hast" "^2.0.0" + hast-util-from-parse5 "^7.0.0" + parse5 "^7.0.0" + vfile "^5.0.0" + vfile-message "^3.0.0" + hast-util-from-parse5@^7.0.0: version "7.1.1" resolved "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-7.1.1.tgz#1887b4dd4e19f29d9c48c2e1c8bfeaac13a1f3a0" @@ -9547,19 +9593,12 @@ katex@^0.13.0: dependencies: commander "^8.0.0" -katex@^0.15.0: - version "0.15.6" - resolved "https://registry.yarnpkg.com/katex/-/katex-0.15.6.tgz#c4e2f6ced2ac4de1ef6f737fe7c67d3026baa0e5" - integrity sha512-UpzJy4yrnqnhXvRPhjEuLA4lcPn6eRngixW7Q3TJErjg3Aw2PuLFBzTkdUb89UtumxjhHTqL3a5GDGETMSwgJA== +katex@^0.16.0, katex@^0.16.7: + version "0.16.7" + resolved "https://registry.yarnpkg.com/katex/-/katex-0.16.7.tgz#36be1d4ed96e8afdc5863407e70f8fb250aeafd5" + integrity sha512-Xk9C6oGKRwJTfqfIbtr0Kes9OSv6IFsuhFGc7tW4urlpMJtuh+7YhzU6YEG9n8gmWKcMAFzkp7nr+r69kV0zrA== dependencies: - commander "^8.0.0" - -katex@^0.16.4: - version "0.16.4" - resolved "https://registry.yarnpkg.com/katex/-/katex-0.16.4.tgz#87021bc3bbd80586ef715aeb476794cba6a49ad4" - integrity sha512-WudRKUj8yyBeVDI4aYMNxhx5Vhh2PjpzQw1GRu/LVGqL4m1AxwD1GcUp0IMbdJaf5zsjtj8ghP0DOQRYhroNkw== - dependencies: - commander "^8.0.0" + commander "^8.3.0" khroma@^2.0.0: version "2.0.0" @@ -10227,19 +10266,20 @@ merge2@^1.3.0, merge2@^1.4.1: resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== -mermaid@10.0.2: - version "10.0.2" - resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-10.0.2.tgz#8e294ea4890fe86ca7f5a4cd3c10362ec8d3ed98" - integrity sha512-slwoB9WdNUT+/W9VhxLYRLZ0Ey12fIE+cAZjm3FmHTD+0F1uoJETfsNbVS1POnvQZhFYzfT6/z6hJZXgecqVBA== +mermaid@10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-10.1.0.tgz#6e40d5250174f4750ca6548e4ee00f6ae210855a" + integrity sha512-LYekSMNJygI1VnMizAPUddY95hZxOjwZxr7pODczILInO0dhQKuhXeu4sargtnuTwCilSuLS7Uiq/Qn7HTVrmA== dependencies: "@braintree/sanitize-url" "^6.0.0" + "@khanacademy/simple-markdown" "^0.8.6" cytoscape "^3.23.0" cytoscape-cose-bilkent "^4.1.0" cytoscape-fcose "^2.1.0" d3 "^7.4.0" - dagre-d3-es "7.0.9" + dagre-d3-es "7.0.10" dayjs "^1.11.7" - dompurify "2.4.3" + dompurify "2.4.5" elkjs "^0.8.2" khroma "^2.0.0" lodash-es "^4.17.21" @@ -10881,10 +10921,10 @@ next@13.4.2, next@^13.3.0: "@next/swc-win32-ia32-msvc" "13.4.2" "@next/swc-win32-x64-msvc" "13.4.2" -nextra-theme-docs@2.5.2: - version "2.5.2" - resolved "https://registry.yarnpkg.com/nextra-theme-docs/-/nextra-theme-docs-2.5.2.tgz#a42ead64f138e3ce61ce7832d05e88ac11def050" - integrity sha512-DLrAtMtlUx3y3QsHcnIHhkb8b/VUFSvU5Cgb0Tzm7VlngKJW8ftPg9IxgoRZouqgQvkvvxbMLTPgBw+8n0VZTw== +nextra-theme-docs@2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/nextra-theme-docs/-/nextra-theme-docs-2.6.1.tgz#74847cacc03889cebe562ef0dde013d7d527b8d2" + integrity sha512-25Va2D5bzFRIE7uIZ75QfmvsdurXI+xzoWBNMQTnG+ONv9yiQSWRYjfw/Yep1OXF6ahDaaNqbCb8HmRoX7sqRg== dependencies: "@headlessui/react" "^1.7.10" "@popperjs/core" "^2.11.6" @@ -10899,22 +10939,23 @@ nextra-theme-docs@2.5.2: scroll-into-view-if-needed "^3.0.0" zod "^3.20.2" -nextra@2.5.2: - version "2.5.2" - resolved "https://registry.yarnpkg.com/nextra/-/nextra-2.5.2.tgz#c98353e2ec6a6a18234e52d5934e568a9bf5163b" - integrity sha512-22kw8s2OShvA625cKi3P9JioUybL5hEcCn1txXyQh+Mn3jmQXlXdbzmuT4BdYRNWo5lGqmYwm2h73igXjbssRQ== +nextra@2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/nextra/-/nextra-2.6.1.tgz#0d950d21515012eff62f317b1a7c73b00b9aa114" + integrity sha512-5NN+aTFzW17/42AWp3qAvBTlgZvSQVpHOUb2MdHI6gnslpjik6z7DS1gZJ9zJ/I8veVxdLhdE70TfksAZ9tgxQ== dependencies: "@mdx-js/mdx" "^2.3.0" "@mdx-js/react" "^2.3.0" "@napi-rs/simple-git" "^0.1.8" + clsx "^1.2.1" github-slugger "^2.0.0" - graceful-fs "^4.2.10" + graceful-fs "^4.2.11" gray-matter "^4.0.3" - katex "^0.16.4" + katex "^0.16.7" lodash.get "^4.4.2" next-mdx-remote "^4.2.1" p-limit "^3.1.0" - rehype-katex "^6.0.2" + rehype-katex "^6.0.3" rehype-pretty-code "0.9.4" remark-gfm "^3.0.1" remark-math "^5.1.1" @@ -11372,10 +11413,12 @@ parse-url@^8.1.0: dependencies: parse-path "^7.0.0" -parse5@^6.0.0: - version "6.0.1" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" - integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== +parse5@^7.0.0: + version "7.1.2" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.1.2.tgz#0736bebbfd77793823240a23b7fc5e010b7f8e32" + integrity sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw== + dependencies: + entities "^4.4.0" pascal-case@^3.1.2: version "3.1.2" @@ -12033,27 +12076,27 @@ react-fast-compare@^3.0.0, react-fast-compare@^3.0.1: resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.0.tgz#641a9da81b6a6320f270e89724fb45a0b39e43bb" integrity sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA== -react-instantsearch-core@6.39.1: - version "6.39.1" - resolved "https://registry.yarnpkg.com/react-instantsearch-core/-/react-instantsearch-core-6.39.1.tgz#3c2948d3cfea3c58b2e9902b6fcc245aaa0bae7b" - integrity sha512-rvzOoNGBT2O28mmcpXfcN4pVF+p07jlDMbEKB1TRdW3jE9dm8U6uCS/X6DWqigYLr8svVRcG/Ez+wzYK+yuPZw== +react-instantsearch-core@6.40.0: + version "6.40.0" + resolved "https://registry.yarnpkg.com/react-instantsearch-core/-/react-instantsearch-core-6.40.0.tgz#a818083d2085d050c2eb25a082f9665b85c18dcb" + integrity sha512-YCLEtW5ar+h6fQbo03KYUJq/G2BFIuwvD482JqqZ3FhSDzQSgM0ShsfrPgU3AotfZvml4rePyBKyJw6U/O0MIQ== dependencies: "@babel/runtime" "^7.1.2" - algoliasearch-helper "^3.11.3" + algoliasearch-helper "^3.13.0" prop-types "^15.6.2" react-fast-compare "^3.0.0" -react-instantsearch-dom@6.39.1: - version "6.39.1" - resolved "https://registry.yarnpkg.com/react-instantsearch-dom/-/react-instantsearch-dom-6.39.1.tgz#103af882415d427325330102379a02e66e5d7bc8" - integrity sha512-lfTHQZ3ILwlQeDsd+GqvVCVLyOzK8FYMtICJvc0PXANhcXXMM+7WvqJGlDclcnujPPSDuQl6MmKTHcTNVapQoA== +react-instantsearch-dom@6.40.0: + version "6.40.0" + resolved "https://registry.yarnpkg.com/react-instantsearch-dom/-/react-instantsearch-dom-6.40.0.tgz#b9bb6a79cb46d0fa1310938cbff5f698e3697777" + integrity sha512-bD+xIi05DeQ47svD4bMgv7rKpl2eKoDOjBU2rcQNBz9N9ryE1IOe6NWAHaDZWBd99eWX9Opwa1JHr3KtNtv2yA== dependencies: "@babel/runtime" "^7.1.2" - algoliasearch-helper "^3.11.3" + algoliasearch-helper "^3.13.0" classnames "^2.2.5" prop-types "^15.6.2" react-fast-compare "^3.0.0" - react-instantsearch-core "6.39.1" + react-instantsearch-core "6.40.0" react-is@^16.13.1, react-is@^16.7.0: version "16.13.1" @@ -12288,30 +12331,18 @@ regjsparser@^0.9.1: dependencies: jsesc "~0.5.0" -rehype-katex@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/rehype-katex/-/rehype-katex-6.0.2.tgz#20197bbc10bdf79f6b999bffa6689d7f17226c35" - integrity sha512-C4gDAlS1+l0hJqctyiU64f9CvT00S03qV1T6HiMzbSuLBgWUtcqydWHY9OpKrm0SpkK16FNd62CDKyWLwV2ppg== +rehype-katex@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/rehype-katex/-/rehype-katex-6.0.3.tgz#83e5b929b0967978e9491c02117f55be3594d7e1" + integrity sha512-ByZlRwRUcWegNbF70CVRm2h/7xy7jQ3R9LaY4VVSvjnoVWwWVhNL60DiZsBpC5tSzYQOCvDbzncIpIjPZWodZA== dependencies: "@types/hast" "^2.0.0" - "@types/katex" "^0.11.0" + "@types/katex" "^0.14.0" + hast-util-from-html-isomorphic "^1.0.0" hast-util-to-text "^3.1.0" - katex "^0.15.0" - rehype-parse "^8.0.0" - unified "^10.0.0" - unist-util-remove-position "^4.0.0" + katex "^0.16.0" unist-util-visit "^4.0.0" -rehype-parse@^8.0.0: - version "8.0.4" - resolved "https://registry.yarnpkg.com/rehype-parse/-/rehype-parse-8.0.4.tgz#3d17c9ff16ddfef6bbcc8e6a25a99467b482d688" - integrity sha512-MJJKONunHjoTh4kc3dsM1v3C9kGrrxvA3U8PxZlP2SjH8RNUSrb+lF7Y0KVaUDnGH2QZ5vAn7ulkiajM9ifuqg== - dependencies: - "@types/hast" "^2.0.0" - hast-util-from-parse5 "^7.0.0" - parse5 "^6.0.0" - unified "^10.0.0" - rehype-pretty-code@0.9.4: version "0.9.4" resolved "https://registry.yarnpkg.com/rehype-pretty-code/-/rehype-pretty-code-0.9.4.tgz#ab214026b530890c7a2e14c4f0881483e39e9cbc" From e608b64ab50f21ff77840f666d0c7ae4a924d703 Mon Sep 17 00:00:00 2001 From: Aleksandra Date: Fri, 26 May 2023 12:50:16 +0100 Subject: [PATCH 007/115] Update docs around client-preset (#9461) --- website/src/components/index-page.tsx | 2 +- website/src/components/plugins-page.tsx | 4 ++-- website/src/lib/plugins.ts | 4 ++-- .../docs/getting-started/installation.mdx | 21 ++++++++++--------- .../pages/plugins/presets/preset-client.mdx | 5 +++++ 5 files changed, 21 insertions(+), 15 deletions(-) diff --git a/website/src/components/index-page.tsx b/website/src/components/index-page.tsx index 31ec3831ada..1e7643f1123 100644 --- a/website/src/components/index-page.tsx +++ b/website/src/components/index-page.tsx @@ -14,7 +14,7 @@ export function IndexPage(): ReactElement { title="Generate code from your GraphQL schema" description="Generate code from your GraphQL schema and operations with a simple CLI" link={{ - href: '/docs/getting-started', + href: '/docs/getting-started/installation', children: 'Try It Now', title: 'Get started with GraphQL Code Generator', }} diff --git a/website/src/components/plugins-page.tsx b/website/src/components/plugins-page.tsx index 5bbf607d329..97825f0bb87 100644 --- a/website/src/components/plugins-page.tsx +++ b/website/src/components/plugins-page.tsx @@ -95,9 +95,9 @@ export function PluginsPage() { return ( = { /* eslint-disable */ export const ALL_TAGS = [ + 'preset', + 'plugin', 'typescript', 'csharp', 'dart', @@ -96,8 +98,6 @@ export const ALL_TAGS = [ 'relay', 'jsdoc', 'resolvers', - 'plugin', - 'preset', 'hasura', 'validation', 'yup', diff --git a/website/src/pages/docs/getting-started/installation.mdx b/website/src/pages/docs/getting-started/installation.mdx index 1667777655a..04c9b7f795a 100644 --- a/website/src/pages/docs/getting-started/installation.mdx +++ b/website/src/pages/docs/getting-started/installation.mdx @@ -1,10 +1,11 @@ --- -description: 'GraphQL Code Generator is a tool for generating code from GraphQL schema and operations. It can generate code for various platforms, such as React, Angular, Node, and more.' +title: Quick Start +description: GraphQL Code Generator is a plugin-based tool that helps you get the best out of your GraphQL stack. From back-end to front-end, GraphQL Code Generator automates the generation of typed Queries, Mutations and, Subscriptions for React, Vue, Angular, Next.js, Svelte, whether you are using Apollo Client, URQL or, React Query. --- -import { Callout, PackageCmd } from '@theguild/components' +import { Tabs, Tab, Callout, PackageCmd } from '@theguild/components' -# Installation +# Quick Start Make sure that you add both the `graphql` and `@graphql-codegen/cli` packages in your project's dependencies: @@ -51,17 +52,17 @@ Once GraphQL Code Generator is installed and added to your project's development If you are looking for the **best way to leverage GraphQL Code Generator on your stack**, you should read one of our _Guides_. -On top of each plugin documentation, we provide one Guide for the most famous framework such as [React](/docs/guides/react) or [Apollo Server](/docs/guides/graphql-server-apollo-yoga). Each guide exposes the best plugins and configurations available for each framework and stack (React with Apollo / URQL / React Query, Angular with Apollo, …). +#### Client -Otherwise, if you **prefer exploring plugins and skipping the high-level explanations**, the go-to resource will be the [plugins documentation](/plugins) and the [`codegen.yaml` API reference documentation](/docs/config-reference/codegen-config). +We recommend using [a `client` preset](/plugins/presets/preset-client) that has a recommended configuration for the client applications. You can follow one of the following guides: -## What's next? - -Get started with our guides: - -- [React and Vue](/docs/guides/react-vue) +- [React](/docs/guides/react-vue) +- [Vue](/docs/guides/react-vue) - [Angular](/docs/guides/angular) - [Svelte](/docs/guides/svelte) + +#### Server + - [Apollo and Yoga server](/docs/guides/graphql-server-apollo-yoga) - [Apollo and Yoga server with Server Preset](/docs/guides/graphql-server-apollo-yoga-with-server-preset) - [GraphQL Modules](/docs/guides/graphql-modules) diff --git a/website/src/pages/plugins/presets/preset-client.mdx b/website/src/pages/plugins/presets/preset-client.mdx index 4eae1bee83d..e5e607bbcb1 100644 --- a/website/src/pages/plugins/presets/preset-client.mdx +++ b/website/src/pages/plugins/presets/preset-client.mdx @@ -38,6 +38,11 @@ For step-by-step instructions, please [refer to our dedicated guide](/docs/guide ## Config API + + The `client` preset only exposes a set of underlying plugin's config options. The preset is somewhat opinionated and + crafted carefully for an optimal developer experience. + + The `client` preset allows the following `config` options: - [`scalars`](/plugins/typescript/typescript#scalars): Extends or overrides the built-in scalars and custom GraphQL scalars to a custom type. From c0477812e9929fe7506a851c81e2f326533f31d4 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 May 2023 11:57:49 +0000 Subject: [PATCH 008/115] Update algolia-lockfile.json --- website/algolia-lockfile.json | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/website/algolia-lockfile.json b/website/algolia-lockfile.json index 26442c0e7c6..c26e6bc07ed 100644 --- a/website/algolia-lockfile.json +++ b/website/algolia-lockfile.json @@ -882,8 +882,7 @@ "headings": [ "Global Installation", "Monorepo Project", - "Setup", - "What's next?" + "Setup" ], "toc": [ { @@ -912,14 +911,9 @@ ], "title": "Setup", "anchor": "setup" - }, - { - "children": [], - "title": "What's next?", - "anchor": "whats-next" } ], - "content": "e031466d35030d94eec5fc12cbb61246", + "content": "c74506f1b257355da489b79ad5c2e8ec", "url": "https://www.the-guild.dev/graphql/codegen/docs/getting-started/installation", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ From 3b252328eda307de8810e299ab67f4dce1228bdf Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 27 May 2023 11:24:58 -0400 Subject: [PATCH 009/115] fix(deps): update dependency @tanstack/react-query to v4.29.11 (#9405) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .../react/tanstack-react-query/package.json | 2 +- yarn.lock | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/examples/react/tanstack-react-query/package.json b/examples/react/tanstack-react-query/package.json index 05bb53e53dc..d742d23954e 100644 --- a/examples/react/tanstack-react-query/package.json +++ b/examples/react/tanstack-react-query/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "private": true, "dependencies": { - "@tanstack/react-query": "4.29.3", + "@tanstack/react-query": "4.29.11", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/yarn.lock b/yarn.lock index a8211260d8b..7dd92b154a8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3701,17 +3701,17 @@ dependencies: tslib "^2.4.0" -"@tanstack/query-core@4.29.1": - version "4.29.1" - resolved "https://registry.yarnpkg.com/@tanstack/query-core/-/query-core-4.29.1.tgz#62a4bc120b85e6bb3c6c0aca96346e643e232248" - integrity sha512-vkPewLEG8ua0efo3SsVT0BcBtkq5RZX8oPhDAyKL+k/rdOYSQTEocfGEXSaBwIwsXeOGBUpfKqI+UmHvNqdWXg== +"@tanstack/query-core@4.29.11": + version "4.29.11" + resolved "https://registry.yarnpkg.com/@tanstack/query-core/-/query-core-4.29.11.tgz#fa338f7d6897c6be5de6d8dabd603d9b78ee48c7" + integrity sha512-8C+hF6SFAb/TlFZyS9FItgNwrw4PMa7YeX+KQYe2ZAiEz6uzg6yIr+QBzPkUwZ/L0bXvGd1sufTm3wotoz+GwQ== -"@tanstack/react-query@4.29.3": - version "4.29.3" - resolved "https://registry.yarnpkg.com/@tanstack/react-query/-/react-query-4.29.3.tgz#037205560784ed4a5e3fd605a2143e325b6189fa" - integrity sha512-FPQrMu7PbCgBcVzoRJm7WmQnAFv+LUgZM9KBZ7Vk/+yERH2BDLvQRuAgczQd5Tb1s3HbOktECRDaOkUxdyBAjw== +"@tanstack/react-query@4.29.11": + version "4.29.11" + resolved "https://registry.yarnpkg.com/@tanstack/react-query/-/react-query-4.29.11.tgz#053bd6e9d63ce07a523976263ae78a5e130eb2ad" + integrity sha512-aLaOAhBnCr12YKPjDsZOc0fAtkyaW7f9KfVfw49oYpfe0H9EPXBUgDBIKJ8qdHF3uGzTVSMcmpiw1Za41BLZlw== dependencies: - "@tanstack/query-core" "4.29.1" + "@tanstack/query-core" "4.29.11" use-sync-external-store "^1.2.0" "@theguild/algolia@1.1.7": From 20ea6d45e4b803e0ab91fb698a8de8d64e5d055d Mon Sep 17 00:00:00 2001 From: Yuku Kotani Date: Mon, 29 May 2023 05:17:04 +0900 Subject: [PATCH 010/115] Fix link in contributing.mdx (#9468) --- website/src/pages/docs/custom-codegen/contributing.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/pages/docs/custom-codegen/contributing.mdx b/website/src/pages/docs/custom-codegen/contributing.mdx index 931db32393b..3854d117b82 100644 --- a/website/src/pages/docs/custom-codegen/contributing.mdx +++ b/website/src/pages/docs/custom-codegen/contributing.mdx @@ -9,7 +9,7 @@ import { Callout } from '@theguild/components' When your new plugin is ready, you can either: - maintain it in your repo and npm package -- contribute and make it part of the GraphQL Code Generator community repo ([`dotansimha/graphql-code-generator-community`](dotansimha/graphql-code-generator-community)) +- contribute and make it part of the GraphQL Code Generator community repo ([`dotansimha/graphql-code-generator-community`](https://github.com/dotansimha/graphql-code-generator-community)) The GraphQL Code Generator community repository contains plugins for all languages and platforms. If your plugin could be helpful for others, please consider creating a PR and maintaining it in our repo. From d38298890873601aab5c331a0a0a826d5349f282 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 28 May 2023 22:17:12 +0200 Subject: [PATCH 011/115] chore(deps): update dependency @types/react to v18.2.7 (#9467) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- examples/react/apollo-client-swc-plugin/package.json | 2 +- website/package.json | 2 +- yarn.lock | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/react/apollo-client-swc-plugin/package.json b/examples/react/apollo-client-swc-plugin/package.json index f7088fdf0e6..df47cb768d9 100644 --- a/examples/react/apollo-client-swc-plugin/package.json +++ b/examples/react/apollo-client-swc-plugin/package.json @@ -12,7 +12,7 @@ "@graphql-codegen/client-preset": "^4.0.0", "@graphql-codegen/cli": "^4.0.0", "@vitejs/plugin-react-swc": "^3.3.0", - "@types/react": "18.2.6", + "@types/react": "18.2.7", "@types/react-dom": "18.2.4", "typescript": "5.0.4", "vite": "^4.1.0" diff --git a/website/package.json b/website/package.json index 2150c78c244..1c23683b226 100644 --- a/website/package.json +++ b/website/package.json @@ -15,7 +15,7 @@ "@types/dedent": "0.7.0", "@types/jsonpath": "0.2.0", "@types/node": "18.16.13", - "@types/react": "18.2.6", + "@types/react": "18.2.7", "fast-xml-parser": "4.2.2", "jsonpath": "1.1.1", "prettier-plugin-tailwindcss": "0.2.8" diff --git a/yarn.lock b/yarn.lock index 7dd92b154a8..3abf5177289 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4101,10 +4101,10 @@ dependencies: "@types/react" "*" -"@types/react@*", "@types/react@18.2.6", "@types/react@>=16", "@types/react@>=16.0.0", "@types/react@^18.0.15", "@types/react@^18.0.17", "@types/react@^18.0.27": - version "18.2.6" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.6.tgz#5cd53ee0d30ffc193b159d3516c8c8ad2f19d571" - integrity sha512-wRZClXn//zxCFW+ye/D2qY65UsYP1Fpex2YXorHc8awoNamkMZSvBxwxdYVInsHOZZd2Ppq8isnSzJL5Mpf8OA== +"@types/react@*", "@types/react@18.2.7", "@types/react@>=16", "@types/react@>=16.0.0", "@types/react@^18.0.15", "@types/react@^18.0.17", "@types/react@^18.0.27": + version "18.2.7" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.7.tgz#dfb4518042a3117a045b8c222316f83414a783b3" + integrity sha512-ojrXpSH2XFCmHm7Jy3q44nXDyN54+EYKP2lBhJ2bqfyPj6cIUW/FZW/Csdia34NQgq7KYcAlHi5184m4X88+yw== dependencies: "@types/prop-types" "*" "@types/scheduler" "*" From 9e7af0d41f02f8872d51047a13777f8be535e8af Mon Sep 17 00:00:00 2001 From: Dimitri POSTOLOV Date: Mon, 29 May 2023 12:44:21 +0200 Subject: [PATCH 012/115] Update contributing.mdx (#9471) --- .../src/pages/docs/custom-codegen/contributing.mdx | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/website/src/pages/docs/custom-codegen/contributing.mdx b/website/src/pages/docs/custom-codegen/contributing.mdx index 3854d117b82..e6eb6143849 100644 --- a/website/src/pages/docs/custom-codegen/contributing.mdx +++ b/website/src/pages/docs/custom-codegen/contributing.mdx @@ -21,7 +21,7 @@ To be able to clone, build and develop codegen, you'll need to have the followin - [GitHub Account](https://github.com) - [Git](https://git-scm.com/downloads) -- [Node.js](https://nodejs.org/en) (v14+) +- [Node.js](https://nodejs.org/en) (v16+) - [Yarn](https://yarnpkg.com) (v1) - Any code editor (we recommend [VSCode](https://code.visualstudio.com)) @@ -102,6 +102,7 @@ Make sure to follow the following instructions: "lint": "eslint **/*.ts", "test": "jest --no-watchman --config ../../../../jest.config.js" } +} ``` This will make sure that your plugin is compatible with our build and test system. @@ -121,7 +122,7 @@ Make sure to follow the following instructions: ``` -`graphql` must be a devDependency in order to allow developers to choose their own version. +`graphql` must be a `devDependency` in order to allow developers to choose their own version. `tslib` is required to compile plugins. @@ -168,7 +169,7 @@ You can follow the plugin tips in [Write Your Plugin](./write-your-plugin), [Val ## 7. Test your plugin -To test your plugin, create a test file - `tests/plugin.spec.ts` with the following content: +To test your plugin, create a test file `tests/plugin.spec.ts` with the following content: ```ts filename="plugin.spec.ts" import { plugin } from '../src' @@ -271,18 +272,12 @@ Please find the proper category for your plugin (usually based on the target lan For example, the `@graphql-codegen/typescript-react-apollo` plugin has a page at `website/src/pages/plugins/typescript/typescript-react-apollo.mdx`. -
- 2. Add your plugin's package as a dependency of the `website/package.json` and run `yarn install` at the root of the repository. -
- 3. Update the `website/src/lib/plugins-docs.ts` file by adding your plugin to the `pluginsConfigurations` array. You must provide the relative link to your plugin typing definition. You will find examples with the existing plugins. -
- 4. Each plugin belongs to a category (ex: `@graphql-codegen/typescript-react-apollo` belongs to the `typescript` category). Make sure that your plugin is assigned to the proper category by updating the `website/src/category-to-packages.mjs` file: Go ahead to `website` directory and run the website using `yarn dev`. From ec60dd6ddcae2747d04272af8d30473b096e4762 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 29 May 2023 12:44:32 +0200 Subject: [PATCH 013/115] chore(deps): update dependency @types/node to v18.16.16 (#9466) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- examples/programmatic-typescript/package.json | 2 +- website/package.json | 2 +- yarn.lock | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/programmatic-typescript/package.json b/examples/programmatic-typescript/package.json index 6b6a977b136..a2a22f2f829 100644 --- a/examples/programmatic-typescript/package.json +++ b/examples/programmatic-typescript/package.json @@ -24,7 +24,7 @@ "prettier": "2.8.8" }, "devDependencies": { - "@types/node": "18.16.13", + "@types/node": "18.16.16", "tsup": "6.7.0" } } diff --git a/website/package.json b/website/package.json index 1c23683b226..85700e0644b 100644 --- a/website/package.json +++ b/website/package.json @@ -14,7 +14,7 @@ "@theguild/tailwind-config": "0.2.1", "@types/dedent": "0.7.0", "@types/jsonpath": "0.2.0", - "@types/node": "18.16.13", + "@types/node": "18.16.16", "@types/react": "18.2.7", "fast-xml-parser": "4.2.2", "jsonpath": "1.1.1", diff --git a/yarn.lock b/yarn.lock index 3abf5177289..50a5a0f5018 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4047,10 +4047,10 @@ resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz#31b7ca6407128a3d2bbc27fe2d21b345397f6197" integrity sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA== -"@types/node@*", "@types/node@18.16.13", "@types/node@^18.11.18": - version "18.16.13" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.13.tgz#984c48275c718b5b3e47371938f3cff482790598" - integrity sha512-uZRomboV1vBL61EBXneL4j9/hEn+1Yqa4LQdpGrKmXFyJmVfWc9JV9+yb2AlnOnuaDnb2PDO3hC6/LKmzJxP1A== +"@types/node@*", "@types/node@18.16.16", "@types/node@^18.11.18": + version "18.16.16" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.16.tgz#3b64862856c7874ccf7439e6bab872d245c86d8e" + integrity sha512-NpaM49IGQQAUlBhHMF82QH80J08os4ZmyF9MkpCzWAGuOHqE4gTEbhzd7L3l5LmWuZ6E0OiC1FweQ4tsiW35+g== "@types/node@^12.7.1": version "12.20.55" From a7f7e56dfa24db7b4d46bc8e6b19ee853ad54388 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 29 May 2023 12:44:40 +0200 Subject: [PATCH 014/115] chore(deps): update dependency prettier-plugin-svelte to v2.10.1 (#9470) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 8089bbe9920..1d89ab72d0e 100644 --- a/package.json +++ b/package.json @@ -62,7 +62,7 @@ "lint-staged": "13.2.2", "patch-package": "6.5.1", "prettier": "2.8.8", - "prettier-plugin-svelte": "2.10.0", + "prettier-plugin-svelte": "2.10.1", "rimraf": "4.4.1", "ts-jest": "28.0.8", "ts-node": "10.9.1", diff --git a/yarn.lock b/yarn.lock index 50a5a0f5018..6a86545f881 100644 --- a/yarn.lock +++ b/yarn.lock @@ -11896,10 +11896,10 @@ prettier-plugin-sh@^0.12.8: sh-syntax "^0.3.6" synckit "^0.8.1" -prettier-plugin-svelte@2.10.0: - version "2.10.0" - resolved "https://registry.yarnpkg.com/prettier-plugin-svelte/-/prettier-plugin-svelte-2.10.0.tgz#ce8f641f97cfe085fa093cb2beb13e64c5e7f9de" - integrity sha512-GXMY6t86thctyCvQq+jqElO+MKdB09BkL3hexyGP3Oi8XLKRFaJP1ud/xlWCZ9ZIa2BxHka32zhHfcuU+XsRQg== +prettier-plugin-svelte@2.10.1: + version "2.10.1" + resolved "https://registry.yarnpkg.com/prettier-plugin-svelte/-/prettier-plugin-svelte-2.10.1.tgz#e1abbe5689e8a926c60b8bc42e61233556ca90d1" + integrity sha512-Wlq7Z5v2ueCubWo0TZzKc9XHcm7TDxqcuzRuGd0gcENfzfT4JZ9yDlCbEgxWgiPmLHkBjfOtpAWkcT28MCDpUQ== prettier-plugin-tailwindcss@0.2.8: version "0.2.8" From bca6ef15d9d86b66840dc7fa604bde1e98eb0085 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 May 2023 10:48:24 +0000 Subject: [PATCH 015/115] Update algolia-lockfile.json --- website/algolia-lockfile.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/algolia-lockfile.json b/website/algolia-lockfile.json index c26e6bc07ed..d0480397c6e 100644 --- a/website/algolia-lockfile.json +++ b/website/algolia-lockfile.json @@ -637,7 +637,7 @@ "anchor": "10-feature-your-plugin-on-the-plugins-hub" } ], - "content": "9f56712abf7cf75627f776620c5f491c", + "content": "957fe4fa2b0372369eb2b7381d883beb", "url": "https://www.the-guild.dev/graphql/codegen/docs/custom-codegen/contributing", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ From e3147efb342cd90fcdf15e774849318545d1a51b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 29 May 2023 16:48:28 +0200 Subject: [PATCH 016/115] chore(deps): update dependency vite to v4.3.9 (#9473) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 6a86545f881..f19e14ff553 100644 --- a/yarn.lock +++ b/yarn.lock @@ -14128,9 +14128,9 @@ villus@^2.1.0: integrity sha512-vnrY62rf5Yzfew0fZbHQ7b51NpcWKbNDxxmq98NNhBRXjt8gVtbbXsOpRatnKINxsZPPzH+zLJGnTj95F0InHQ== vite@^4.1.0: - version "4.3.8" - resolved "https://registry.yarnpkg.com/vite/-/vite-4.3.8.tgz#70cd6a294ab52d7fb8f37f5bc63d117dd19e9918" - integrity sha512-uYB8PwN7hbMrf4j1xzGDk/lqjsZvCDbt/JC5dyfxc19Pg8kRm14LinK/uq+HSLNswZEoKmweGdtpbnxRtrAXiQ== + version "4.3.9" + resolved "https://registry.yarnpkg.com/vite/-/vite-4.3.9.tgz#db896200c0b1aa13b37cdc35c9e99ee2fdd5f96d" + integrity sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg== dependencies: esbuild "^0.17.5" postcss "^8.4.23" From feb50ceccc9c5cf76c3f96b17dd640bfd3932972 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 29 May 2023 16:48:37 +0200 Subject: [PATCH 017/115] chore(deps): update dependency tslib to v2.5.2 (#9472) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 1d89ab72d0e..a19008db8ca 100644 --- a/package.json +++ b/package.json @@ -66,7 +66,7 @@ "rimraf": "4.4.1", "ts-jest": "28.0.8", "ts-node": "10.9.1", - "tslib": "2.5.0", + "tslib": "2.5.2", "tsx": "3.12.7", "typescript": "5.0.4" }, diff --git a/yarn.lock b/yarn.lock index f19e14ff553..6ae53c3cd5d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -13616,10 +13616,10 @@ tsconfig-paths@^3.14.1: minimist "^1.2.6" strip-bom "^3.0.0" -tslib@2.5.0, tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.4.1, tslib@^2.5.0, tslib@~2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" - integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== +tslib@2.5.2, tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.4.1, tslib@^2.5.0, tslib@~2.5.0: + version "2.5.2" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.2.tgz#1b6f07185c881557b0ffa84b111a0106989e8338" + integrity sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA== tslib@^1.8.1: version "1.14.1" From 260eece257bcdf2b5a59c20efabf1a8d06c817db Mon Sep 17 00:00:00 2001 From: gilgardosh Date: Wed, 31 May 2023 13:09:23 +0300 Subject: [PATCH 018/115] typo fix --- website/src/pages/docs/guides/react-vue.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/src/pages/docs/guides/react-vue.mdx b/website/src/pages/docs/guides/react-vue.mdx index fd2bc314535..359ee682500 100644 --- a/website/src/pages/docs/guides/react-vue.mdx +++ b/website/src/pages/docs/guides/react-vue.mdx @@ -549,7 +549,7 @@ Then write type-safe code like the following: ```ts filename="Application Code" import { useGraphQL } from './use-graphql.js' -import { gql } from './generated/grahql.js' +import { gql } from './generated/graphql.js' const allFilmsWithVariablesQueryDocument = gql(/* GraphQL */ ` query allFilmsWithVariablesQuery($first: Int!) { @@ -633,7 +633,7 @@ Then write type-safe code like the following: ```ts filename="Application Code" import { useGraphQL } from './use-graphql.js' -import { gql } from './generated/grahql.js' +import { gql } from './generated/graphql.js' const allFilmsWithVariablesQueryDocument = gql(/* GraphQL */ ` query allFilmsWithVariablesQuery($first: Int!) { From 0aa444b5d092565c321643a55fb05c7301e303bf Mon Sep 17 00:00:00 2001 From: Gil Gardosh Date: Thu, 1 Jun 2023 17:15:23 +0300 Subject: [PATCH 019/115] chore(deps): update graphql-config to v^5.0.2 (#9479) Bump graphql-config --- .changeset/@graphql-codegen_cli-9479-dependencies.md | 5 +++++ .changeset/brown-jobs-fail.md | 5 +++++ packages/graphql-codegen-cli/package.json | 2 +- yarn.lock | 8 ++++---- 4 files changed, 15 insertions(+), 5 deletions(-) create mode 100644 .changeset/@graphql-codegen_cli-9479-dependencies.md create mode 100644 .changeset/brown-jobs-fail.md diff --git a/.changeset/@graphql-codegen_cli-9479-dependencies.md b/.changeset/@graphql-codegen_cli-9479-dependencies.md new file mode 100644 index 00000000000..12c49f4f740 --- /dev/null +++ b/.changeset/@graphql-codegen_cli-9479-dependencies.md @@ -0,0 +1,5 @@ +--- +"@graphql-codegen/cli": patch +--- +dependencies updates: + - Updated dependency [`graphql-config@^5.0.2` ↗︎](https://www.npmjs.com/package/graphql-config/v/5.0.2) (from `^5.0.1`, in `dependencies`) diff --git a/.changeset/brown-jobs-fail.md b/.changeset/brown-jobs-fail.md new file mode 100644 index 00000000000..7e457aa93c2 --- /dev/null +++ b/.changeset/brown-jobs-fail.md @@ -0,0 +1,5 @@ +--- +'@graphql-codegen/cli': patch +--- + +Update graphql-config to v^5.0.2 diff --git a/packages/graphql-codegen-cli/package.json b/packages/graphql-codegen-cli/package.json index 37a7b3eb52f..b0c9c462d5b 100644 --- a/packages/graphql-codegen-cli/package.json +++ b/packages/graphql-codegen-cli/package.json @@ -61,7 +61,7 @@ "cosmiconfig": "^8.1.3", "debounce": "^1.2.0", "detect-indent": "^6.0.0", - "graphql-config": "^5.0.1", + "graphql-config": "^5.0.2", "inquirer": "^8.0.0", "is-glob": "^4.0.1", "jiti": "^1.17.1", diff --git a/yarn.lock b/yarn.lock index 6ae53c3cd5d..218b4c21382 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8001,10 +8001,10 @@ graphql-config@^4.1.0: string-env-interpolation "1.0.1" tslib "^2.4.0" -graphql-config@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/graphql-config/-/graphql-config-5.0.1.tgz#4a0d2d3db0b6b3bd856e4db7627e5c8970e10a8d" - integrity sha512-cOi5RUK1QOoqwfzCeyVxRn6nsFqzjq7rs93ZvqT+gNxTgmhpROg3ZetgdbhC/yUWnguDM4S9GoHak+Xh9jLZeA== +graphql-config@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/graphql-config/-/graphql-config-5.0.2.tgz#7e962f94ccddcc2ee0aa71d75cf4491ec5092bdb" + integrity sha512-7TPxOrlbiG0JplSZYCyxn2XQtqVhXomEjXUmWJVSS5ET1nPhOJSsIb/WTwqWhcYX6G0RlHXSj9PLtGTKmxLNGg== dependencies: "@graphql-tools/graphql-file-loader" "^8.0.0" "@graphql-tools/json-file-loader" "^8.0.0" From 8bdcc6612eac9c345332a3b0acc8dddf22e42973 Mon Sep 17 00:00:00 2001 From: TheGuildBot <59414373+theguild-bot@users.noreply.github.com> Date: Thu, 1 Jun 2023 17:53:23 +0300 Subject: [PATCH 020/115] chore(release): update monorepo packages versions (#9480) Co-authored-by: github-actions[bot] --- .changeset/@graphql-codegen_cli-9479-dependencies.md | 5 ----- .changeset/brown-jobs-fail.md | 5 ----- examples/persisted-documents-string-mode/package.json | 2 +- examples/persisted-documents/package.json | 2 +- examples/react/apollo-client-defer/package.json | 2 +- examples/react/apollo-client-swc-plugin/package.json | 2 +- examples/react/apollo-client/package.json | 2 +- examples/react/http-executor/package.json | 2 +- examples/react/nextjs-swr/package.json | 2 +- examples/react/tanstack-react-query/package.json | 2 +- examples/react/urql/package.json | 2 +- examples/typescript-esm/package.json | 2 +- examples/typescript-graphql-request/package.json | 2 +- examples/typescript-resolvers/package.json | 2 +- examples/vite/vite-react-cts/package.json | 2 +- examples/vite/vite-react-mts/package.json | 2 +- examples/vite/vite-react-ts/package.json | 2 +- examples/vue/apollo-composable/package.json | 2 +- examples/vue/urql/package.json | 2 +- examples/vue/villus/package.json | 2 +- examples/yoga-tests/package.json | 2 +- packages/graphql-codegen-cli/CHANGELOG.md | 10 ++++++++++ packages/graphql-codegen-cli/package.json | 2 +- website/package.json | 2 +- 24 files changed, 31 insertions(+), 31 deletions(-) delete mode 100644 .changeset/@graphql-codegen_cli-9479-dependencies.md delete mode 100644 .changeset/brown-jobs-fail.md diff --git a/.changeset/@graphql-codegen_cli-9479-dependencies.md b/.changeset/@graphql-codegen_cli-9479-dependencies.md deleted file mode 100644 index 12c49f4f740..00000000000 --- a/.changeset/@graphql-codegen_cli-9479-dependencies.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@graphql-codegen/cli": patch ---- -dependencies updates: - - Updated dependency [`graphql-config@^5.0.2` ↗︎](https://www.npmjs.com/package/graphql-config/v/5.0.2) (from `^5.0.1`, in `dependencies`) diff --git a/.changeset/brown-jobs-fail.md b/.changeset/brown-jobs-fail.md deleted file mode 100644 index 7e457aa93c2..00000000000 --- a/.changeset/brown-jobs-fail.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@graphql-codegen/cli': patch ---- - -Update graphql-config to v^5.0.2 diff --git a/examples/persisted-documents-string-mode/package.json b/examples/persisted-documents-string-mode/package.json index 49a941c5231..55c5edf1e66 100644 --- a/examples/persisted-documents-string-mode/package.json +++ b/examples/persisted-documents-string-mode/package.json @@ -10,7 +10,7 @@ "@graphql-typed-document-node/core": "3.2.0", "jest": "28.1.3", "babel-jest": "28.1.3", - "@graphql-codegen/cli": "4.0.0", + "@graphql-codegen/cli": "4.0.1", "@graphql-codegen/client-preset": "4.0.0", "@babel/core": "7.21.8", "@babel/preset-env": "7.21.5", diff --git a/examples/persisted-documents/package.json b/examples/persisted-documents/package.json index 140ea3184c0..ecc44944e0a 100644 --- a/examples/persisted-documents/package.json +++ b/examples/persisted-documents/package.json @@ -10,7 +10,7 @@ "@graphql-typed-document-node/core": "3.2.0", "jest": "28.1.3", "babel-jest": "28.1.3", - "@graphql-codegen/cli": "4.0.0", + "@graphql-codegen/cli": "4.0.1", "@graphql-codegen/client-preset": "4.0.0", "@babel/core": "7.21.8", "@babel/preset-env": "7.21.5", diff --git a/examples/react/apollo-client-defer/package.json b/examples/react/apollo-client-defer/package.json index bedef2c7c7f..423badd8cd0 100644 --- a/examples/react/apollo-client-defer/package.json +++ b/examples/react/apollo-client-defer/package.json @@ -11,7 +11,7 @@ "graphql-yoga": "3.9.1" }, "devDependencies": { - "@graphql-codegen/cli": "^4.0.0", + "@graphql-codegen/cli": "^4.0.1", "@graphql-codegen/client-preset": "^4.0.0", "@types/jest": "^27.5.2", "@types/node": "^18.11.18", diff --git a/examples/react/apollo-client-swc-plugin/package.json b/examples/react/apollo-client-swc-plugin/package.json index df47cb768d9..0064abefd4b 100644 --- a/examples/react/apollo-client-swc-plugin/package.json +++ b/examples/react/apollo-client-swc-plugin/package.json @@ -10,7 +10,7 @@ "devDependencies": { "@graphql-codegen/client-preset-swc-plugin": "0.2.0", "@graphql-codegen/client-preset": "^4.0.0", - "@graphql-codegen/cli": "^4.0.0", + "@graphql-codegen/cli": "^4.0.1", "@vitejs/plugin-react-swc": "^3.3.0", "@types/react": "18.2.7", "@types/react-dom": "18.2.4", diff --git a/examples/react/apollo-client/package.json b/examples/react/apollo-client/package.json index e56c68515b7..81521a0d499 100644 --- a/examples/react/apollo-client/package.json +++ b/examples/react/apollo-client/package.json @@ -9,7 +9,7 @@ "react-dom": "^18.2.0" }, "devDependencies": { - "@graphql-codegen/cli": "^4.0.0", + "@graphql-codegen/cli": "^4.0.1", "@graphql-codegen/client-preset": "^4.0.0", "@vitejs/plugin-react": "^3.1.0", "@types/jest": "^27.5.2", diff --git a/examples/react/http-executor/package.json b/examples/react/http-executor/package.json index 2f481c0f660..ef8139aa2c9 100644 --- a/examples/react/http-executor/package.json +++ b/examples/react/http-executor/package.json @@ -8,7 +8,7 @@ "react-dom": "^18.2.0" }, "devDependencies": { - "@graphql-codegen/cli": "^4.0.0", + "@graphql-codegen/cli": "^4.0.1", "@graphql-codegen/client-preset": "^4.0.0", "@vitejs/plugin-react": "^3.1.0", "@types/jest": "^27.5.2", diff --git a/examples/react/nextjs-swr/package.json b/examples/react/nextjs-swr/package.json index 3010450e694..5e889b89648 100644 --- a/examples/react/nextjs-swr/package.json +++ b/examples/react/nextjs-swr/package.json @@ -19,7 +19,7 @@ "swr": "^1.3.0" }, "devDependencies": { - "@graphql-codegen/cli": "^4.0.0", + "@graphql-codegen/cli": "^4.0.1", "@graphql-codegen/client-preset": "^4.0.0", "@graphql-codegen/schema-ast": "4.0.0", "@graphql-codegen/client-preset-swc-plugin": "0.2.0", diff --git a/examples/react/tanstack-react-query/package.json b/examples/react/tanstack-react-query/package.json index d742d23954e..737c028e45d 100644 --- a/examples/react/tanstack-react-query/package.json +++ b/examples/react/tanstack-react-query/package.json @@ -8,7 +8,7 @@ "react-dom": "^18.2.0" }, "devDependencies": { - "@graphql-codegen/cli": "^4.0.0", + "@graphql-codegen/cli": "^4.0.1", "@graphql-codegen/client-preset": "^4.0.0", "@vitejs/plugin-react": "^3.1.0", "@types/jest": "^27.5.2", diff --git a/examples/react/urql/package.json b/examples/react/urql/package.json index 4d32fd1b928..ab0d17e0804 100644 --- a/examples/react/urql/package.json +++ b/examples/react/urql/package.json @@ -10,7 +10,7 @@ "devDependencies": { "@types/react": "^18.0.17", "@types/react-dom": "^18.0.10", - "@graphql-codegen/cli": "^4.0.0", + "@graphql-codegen/cli": "^4.0.1", "@graphql-codegen/client-preset": "^4.0.0", "@vitejs/plugin-react": "^3.1.0", "typescript": "5.0.4", diff --git a/examples/typescript-esm/package.json b/examples/typescript-esm/package.json index ffd85414149..e732ef03ba8 100644 --- a/examples/typescript-esm/package.json +++ b/examples/typescript-esm/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "devDependencies": { - "@graphql-codegen/cli": "4.0.0", + "@graphql-codegen/cli": "4.0.1", "@graphql-codegen/client-preset": "4.0.0" }, "dependencies": { diff --git a/examples/typescript-graphql-request/package.json b/examples/typescript-graphql-request/package.json index 888f2213f90..f9502248d6b 100644 --- a/examples/typescript-graphql-request/package.json +++ b/examples/typescript-graphql-request/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "devDependencies": { - "@graphql-codegen/cli": "4.0.0", + "@graphql-codegen/cli": "4.0.1", "@graphql-codegen/client-preset": "4.0.0", "babel-jest": "28.1.3", "jest": "28.1.3" diff --git a/examples/typescript-resolvers/package.json b/examples/typescript-resolvers/package.json index b55e48dfc2b..d264da73090 100644 --- a/examples/typescript-resolvers/package.json +++ b/examples/typescript-resolvers/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "devDependencies": { - "@graphql-codegen/cli": "4.0.0", + "@graphql-codegen/cli": "4.0.1", "@graphql-codegen/typescript": "4.0.0", "@graphql-codegen/typescript-resolvers": "4.0.0" }, diff --git a/examples/vite/vite-react-cts/package.json b/examples/vite/vite-react-cts/package.json index a9cb9cbebf0..4499731831d 100644 --- a/examples/vite/vite-react-cts/package.json +++ b/examples/vite/vite-react-cts/package.json @@ -21,7 +21,7 @@ "vite": "^4.1.0" }, "devDependencies": { - "@graphql-codegen/cli": "4.0.0", + "@graphql-codegen/cli": "4.0.1", "@graphql-codegen/client-preset": "4.0.0", "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", diff --git a/examples/vite/vite-react-mts/package.json b/examples/vite/vite-react-mts/package.json index d5407457be7..bd5219d2b86 100644 --- a/examples/vite/vite-react-mts/package.json +++ b/examples/vite/vite-react-mts/package.json @@ -21,7 +21,7 @@ "vite": "^4.1.0" }, "devDependencies": { - "@graphql-codegen/cli": "4.0.0", + "@graphql-codegen/cli": "4.0.1", "@graphql-codegen/client-preset": "4.0.0", "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", diff --git a/examples/vite/vite-react-ts/package.json b/examples/vite/vite-react-ts/package.json index 0449ef71333..3c64b5e55d1 100644 --- a/examples/vite/vite-react-ts/package.json +++ b/examples/vite/vite-react-ts/package.json @@ -21,7 +21,7 @@ "vite": "^4.1.0" }, "devDependencies": { - "@graphql-codegen/cli": "4.0.0", + "@graphql-codegen/cli": "4.0.1", "@graphql-codegen/client-preset": "4.0.0", "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", diff --git a/examples/vue/apollo-composable/package.json b/examples/vue/apollo-composable/package.json index a340c422187..a025953d8fc 100644 --- a/examples/vue/apollo-composable/package.json +++ b/examples/vue/apollo-composable/package.json @@ -17,7 +17,7 @@ "vue": "^3.2.37" }, "devDependencies": { - "@graphql-codegen/cli": "^4.0.0", + "@graphql-codegen/cli": "^4.0.1", "@graphql-codegen/client-preset": "^4.0.0", "@vitejs/plugin-vue": "^4.0.0", "typescript": "^5.0.0", diff --git a/examples/vue/urql/package.json b/examples/vue/urql/package.json index b17afe515bc..c23df880f01 100644 --- a/examples/vue/urql/package.json +++ b/examples/vue/urql/package.json @@ -16,7 +16,7 @@ "vue": "^3.2.45" }, "devDependencies": { - "@graphql-codegen/cli": "^4.0.0", + "@graphql-codegen/cli": "^4.0.1", "@graphql-codegen/client-preset": "^4.0.0", "@vitejs/plugin-vue": "^4.0.0", "typescript": "^5.0.0", diff --git a/examples/vue/villus/package.json b/examples/vue/villus/package.json index 11542a03593..61af095d5e9 100644 --- a/examples/vue/villus/package.json +++ b/examples/vue/villus/package.json @@ -16,7 +16,7 @@ "vue": "^3.2.37" }, "devDependencies": { - "@graphql-codegen/cli": "^4.0.0", + "@graphql-codegen/cli": "^4.0.1", "@graphql-codegen/client-preset": "^4.0.0", "@vitejs/plugin-vue": "^4.0.0", "typescript": "^5.0.0", diff --git a/examples/yoga-tests/package.json b/examples/yoga-tests/package.json index 00850163332..abb2512e3e7 100644 --- a/examples/yoga-tests/package.json +++ b/examples/yoga-tests/package.json @@ -9,7 +9,7 @@ "@graphql-typed-document-node/core": "3.2.0", "jest": "28.1.3", "babel-jest": "28.1.3", - "@graphql-codegen/cli": "4.0.0", + "@graphql-codegen/cli": "4.0.1", "@graphql-codegen/client-preset": "4.0.0", "@babel/core": "7.21.8", "@babel/preset-env": "7.21.5", diff --git a/packages/graphql-codegen-cli/CHANGELOG.md b/packages/graphql-codegen-cli/CHANGELOG.md index 98fa1ae28bd..36b6314e8ff 100644 --- a/packages/graphql-codegen-cli/CHANGELOG.md +++ b/packages/graphql-codegen-cli/CHANGELOG.md @@ -1,5 +1,15 @@ # @graphql-codegen/cli +## 4.0.1 + +### Patch Changes + +- [#9479](https://github.com/dotansimha/graphql-code-generator/pull/9479) [`0aa444b5d`](https://github.com/dotansimha/graphql-code-generator/commit/0aa444b5d092565c321643a55fb05c7301e303bf) Thanks [@gilgardosh](https://github.com/gilgardosh)! - dependencies updates: + + - Updated dependency [`graphql-config@^5.0.2` ↗︎](https://www.npmjs.com/package/graphql-config/v/5.0.2) (from `^5.0.1`, in `dependencies`) + +- [#9479](https://github.com/dotansimha/graphql-code-generator/pull/9479) [`0aa444b5d`](https://github.com/dotansimha/graphql-code-generator/commit/0aa444b5d092565c321643a55fb05c7301e303bf) Thanks [@gilgardosh](https://github.com/gilgardosh)! - Update graphql-config to v^5.0.2 + ## 4.0.0 ### Major Changes diff --git a/packages/graphql-codegen-cli/package.json b/packages/graphql-codegen-cli/package.json index b0c9c462d5b..4795b7c04df 100644 --- a/packages/graphql-codegen-cli/package.json +++ b/packages/graphql-codegen-cli/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-codegen/cli", - "version": "4.0.0", + "version": "4.0.1", "license": "MIT", "bin": { "gql-gen": "dist/cjs/bin.js", diff --git a/website/package.json b/website/package.json index 85700e0644b..b4267501dea 100644 --- a/website/package.json +++ b/website/package.json @@ -24,7 +24,7 @@ "@graphql-codegen/add": "5.0.0", "@graphql-codegen/c-sharp": "4.3.1", "@graphql-codegen/c-sharp-operations": "2.3.1", - "@graphql-codegen/cli": "4.0.0", + "@graphql-codegen/cli": "4.0.1", "@graphql-codegen/core": "4.0.0", "@graphql-codegen/flow": "2.3.6", "@graphql-codegen/flow-operations": "2.3.6", From 10f9e8fbe822c957d9e80dc8290a23d0b524b440 Mon Sep 17 00:00:00 2001 From: Aleksandra Date: Fri, 2 Jun 2023 00:50:40 +0200 Subject: [PATCH 021/115] Add gpt docs support (#9419) Co-authored-by: Dimitri POSTOLOV --- .github/workflows/website.yml | 1 + website/package.json | 3 ++- website/src/components/Search.tsx | 27 +++++++++++++++++++++++++++ website/theme.config.tsx | 5 +++++ yarn.lock | 25 +++++++++++++++++++++++++ 5 files changed, 60 insertions(+), 1 deletion(-) create mode 100644 website/src/components/Search.tsx diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index b4cdda3bc68..e5edffce282 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -29,6 +29,7 @@ jobs: env: NEXT_BASE_PATH: ${{ github.ref == 'refs/heads/master' && '/graphql/codegen' || '' }} SITE_URL: ${{ github.ref == 'refs/heads/master' && 'https://the-guild.dev/graphql/codegen' || '' }} + NEXT_PUBLIC_MENDABLE_ANON_KEY: ${{ secrets.NEXT_PUBLIC_MENDABLE_ANON_KEY }} with: cloudflareApiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} cloudflareAccountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} diff --git a/website/package.json b/website/package.json index b4267501dea..8742a4b3970 100644 --- a/website/package.json +++ b/website/package.json @@ -52,6 +52,7 @@ "@graphql-codegen/typescript-graphql-request": "4.5.8", "@graphql-codegen/typescript-mongodb": "2.4.6", "@graphql-codegen/typescript-msw": "1.1.6", + "@graphql-codegen/typescript-nhost": "0.0.1", "@graphql-codegen/typescript-operations": "4.0.0", "@graphql-codegen/typescript-react-apollo": "3.3.7", "@graphql-codegen/typescript-react-query": "4.1.0", @@ -59,13 +60,13 @@ "@graphql-codegen/typescript-rtk-query": "2.4.1", "@graphql-codegen/typescript-stencil-apollo": "2.3.6", "@graphql-codegen/typescript-type-graphql": "2.3.6", - "@graphql-codegen/typescript-nhost": "0.0.1", "@graphql-codegen/typescript-urql": "3.7.3", "@graphql-codegen/typescript-vue-apollo": "3.3.7", "@graphql-codegen/typescript-vue-apollo-smart-ops": "2.3.6", "@graphql-codegen/typescript-vue-urql": "2.3.6", "@graphql-codegen/urql-introspection": "2.2.1", "@graphql-codegen/client-preset": "4.0.0", + "@mendable/search": "0.0.108", "@monaco-editor/react": "4.5.1", "@theguild/components": "4.6.0", "classnames": "2.3.2", diff --git a/website/src/components/Search.tsx b/website/src/components/Search.tsx new file mode 100644 index 00000000000..3f4a0a37e1f --- /dev/null +++ b/website/src/components/Search.tsx @@ -0,0 +1,27 @@ +import { MendableSearchBar } from '@mendable/search'; +import { useTheme, useMounted } from '@theguild/components'; + +export function Search() { + const { resolvedTheme } = useTheme(); + const isMounted = useMounted(); + return ( +
+ 🤖} + userIcon={🧑‍💻} + messageSettings={{ + openSourcesInNewTab: false, + prettySources: true, + }} + welcomeMessage="Hi, I'm your AI assistant. How can I help you?" + /> +
+ ); +} diff --git a/website/theme.config.tsx b/website/theme.config.tsx index c1e049975ba..5a2fa0919b9 100644 --- a/website/theme.config.tsx +++ b/website/theme.config.tsx @@ -2,9 +2,14 @@ /* eslint sort-keys: error */ import { useRouter } from 'next/router'; import { defineConfig, Giscus, useTheme } from '@theguild/components'; +import { Search } from './src/components/Search'; export default defineConfig({ docsRepositoryBase: 'https://github.com/dotansimha/graphql-code-generator/tree/master/website', + search: { + component: Search, + }, + main({ children }) { const { resolvedTheme } = useTheme(); const { route } = useRouter(); diff --git a/yarn.lock b/yarn.lock index 218b4c21382..835e1865695 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3202,6 +3202,13 @@ "@types/mdx" "^2.0.0" "@types/react" ">=16" +"@mendable/search@0.0.108": + version "0.0.108" + resolved "https://registry.yarnpkg.com/@mendable/search/-/search-0.0.108.tgz#248d0e932c39a6db12bb834d4c01d74a5e3972cf" + integrity sha512-TsnbH9Fz93YKIYpaGpYW8GzkYOC4FINxRbMZwZU3mr7cl23yQHzk9ghD0vATh7BtjfcrDiq9FlXtwBO2VVukig== + dependencies: + posthog-js "^1.45.1" + "@monaco-editor/loader@^1.3.3": version "1.3.3" resolved "https://registry.yarnpkg.com/@monaco-editor/loader/-/loader-1.3.3.tgz#7f1742bd3cc21c0362a46a4056317f6e5215cfca" @@ -7536,6 +7543,11 @@ fd-slicer@~1.1.0: dependencies: pend "~1.2.0" +fflate@^0.4.1: + version "0.4.8" + resolved "https://registry.yarnpkg.com/fflate/-/fflate-0.4.8.tgz#f90b82aefbd8ac174213abb338bd7ef848f0f5ae" + integrity sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA== + figures@^3.0.0, figures@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" @@ -11862,6 +11874,14 @@ postcss@^8.0.9, postcss@^8.1.10, postcss@^8.4.16, postcss@^8.4.23: picocolors "^1.0.0" source-map-js "^1.0.2" +posthog-js@^1.45.1: + version "1.57.3" + resolved "https://registry.yarnpkg.com/posthog-js/-/posthog-js-1.57.3.tgz#91cd3497b93e74b38352d8fc27fd4986be7872d6" + integrity sha512-IOF+j+BMGp2zx7Gx71PbT36J4TEtyPcIO+8zcaY84JJAxFU2bQ0DwFp2c/Fz8RnIw+dELuBu4RbnGkuiyaOWgA== + dependencies: + fflate "^0.4.1" + rrweb-snapshot "^1.1.14" + preact@^10.13.2: version "10.13.2" resolved "https://registry.yarnpkg.com/preact/-/preact-10.13.2.tgz#2c40c73d57248b57234c4ae6cd9ab9d8186ebc0a" @@ -12583,6 +12603,11 @@ rollup@^3.2.5, rollup@^3.21.0: optionalDependencies: fsevents "~2.3.2" +rrweb-snapshot@^1.1.14: + version "1.1.14" + resolved "https://registry.yarnpkg.com/rrweb-snapshot/-/rrweb-snapshot-1.1.14.tgz#9d4d9be54a28a893373428ee4393ec7e5bd83fcc" + integrity sha512-eP5pirNjP5+GewQfcOQY4uBiDnpqxNRc65yKPW0eSoU1XamDfc4M8oqpXGMyUyvLyxFDB0q0+DChuxxiU2FXBQ== + run-async@^2.4.0: version "2.4.1" resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" From 6f590f7c769fe9f934e80329e24c8737b4fd7a81 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 2 Jun 2023 00:50:55 +0200 Subject: [PATCH 022/115] fix(deps): update dependency @theguild/components to v4.6.3 (#9474) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- website/package.json | 2 +- yarn.lock | 230 +++++++++++++++++++++---------------------- 2 files changed, 116 insertions(+), 116 deletions(-) diff --git a/website/package.json b/website/package.json index 8742a4b3970..4c2687361a1 100644 --- a/website/package.json +++ b/website/package.json @@ -68,7 +68,7 @@ "@graphql-codegen/client-preset": "4.0.0", "@mendable/search": "0.0.108", "@monaco-editor/react": "4.5.1", - "@theguild/components": "4.6.0", + "@theguild/components": "4.6.3", "classnames": "2.3.2", "date-fns": "2.29.3", "dedent": "0.7.0", diff --git a/yarn.lock b/yarn.lock index 835e1865695..44687c58b32 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3439,155 +3439,155 @@ resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.6.tgz#cee20bd55e68a1720bdab363ecf0c821ded4cd45" integrity sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw== -"@radix-ui/primitive@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/primitive/-/primitive-1.0.0.tgz#e1d8ef30b10ea10e69c76e896f608d9276352253" - integrity sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA== +"@radix-ui/primitive@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/primitive/-/primitive-1.0.1.tgz#e46f9958b35d10e9f6dc71c497305c22e3e55dbd" + integrity sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw== dependencies: "@babel/runtime" "^7.13.10" -"@radix-ui/react-collection@1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@radix-ui/react-collection/-/react-collection-1.0.2.tgz#d50da00bfa2ac14585319efdbbb081d4c5a29a97" - integrity sha512-s8WdQQ6wNXpaxdZ308KSr8fEWGrg4un8i4r/w7fhiS4ElRNjk5rRcl0/C6TANG2LvLOGIxtzo/jAg6Qf73TEBw== +"@radix-ui/react-collection@1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@radix-ui/react-collection/-/react-collection-1.0.3.tgz#9595a66e09026187524a36c6e7e9c7d286469159" + integrity sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA== dependencies: "@babel/runtime" "^7.13.10" - "@radix-ui/react-compose-refs" "1.0.0" - "@radix-ui/react-context" "1.0.0" - "@radix-ui/react-primitive" "1.0.2" - "@radix-ui/react-slot" "1.0.1" + "@radix-ui/react-compose-refs" "1.0.1" + "@radix-ui/react-context" "1.0.1" + "@radix-ui/react-primitive" "1.0.3" + "@radix-ui/react-slot" "1.0.2" -"@radix-ui/react-compose-refs@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.0.tgz#37595b1f16ec7f228d698590e78eeed18ff218ae" - integrity sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA== +"@radix-ui/react-compose-refs@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz#7ed868b66946aa6030e580b1ffca386dd4d21989" + integrity sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw== dependencies: "@babel/runtime" "^7.13.10" -"@radix-ui/react-context@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-context/-/react-context-1.0.0.tgz#f38e30c5859a9fb5e9aa9a9da452ee3ed9e0aee0" - integrity sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg== +"@radix-ui/react-context@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-context/-/react-context-1.0.1.tgz#fe46e67c96b240de59187dcb7a1a50ce3e2ec00c" + integrity sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg== dependencies: "@babel/runtime" "^7.13.10" -"@radix-ui/react-direction@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-direction/-/react-direction-1.0.0.tgz#a2e0b552352459ecf96342c79949dd833c1e6e45" - integrity sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ== +"@radix-ui/react-direction@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-direction/-/react-direction-1.0.1.tgz#9cb61bf2ccf568f3421422d182637b7f47596c9b" + integrity sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA== dependencies: "@babel/runtime" "^7.13.10" -"@radix-ui/react-dismissable-layer@1.0.3": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.3.tgz#63844d8e6bbcd010a513e7176d051c3c4044e09e" - integrity sha512-nXZOvFjOuHS1ovumntGV7NNoLaEp9JEvTht3MBjP44NSW5hUKj/8OnfN3+8WmB+CEhN44XaGhpHoSsUIEl5P7Q== +"@radix-ui/react-dismissable-layer@1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.4.tgz#883a48f5f938fa679427aa17fcba70c5494c6978" + integrity sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg== dependencies: "@babel/runtime" "^7.13.10" - "@radix-ui/primitive" "1.0.0" - "@radix-ui/react-compose-refs" "1.0.0" - "@radix-ui/react-primitive" "1.0.2" - "@radix-ui/react-use-callback-ref" "1.0.0" - "@radix-ui/react-use-escape-keydown" "1.0.2" + "@radix-ui/primitive" "1.0.1" + "@radix-ui/react-compose-refs" "1.0.1" + "@radix-ui/react-primitive" "1.0.3" + "@radix-ui/react-use-callback-ref" "1.0.1" + "@radix-ui/react-use-escape-keydown" "1.0.3" -"@radix-ui/react-id@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-id/-/react-id-1.0.0.tgz#8d43224910741870a45a8c9d092f25887bb6d11e" - integrity sha512-Q6iAB/U7Tq3NTolBBQbHTgclPmGWE3OlktGGqrClPozSw4vkQ1DfQAOtzgRPecKsMdJINE05iaoDUG8tRzCBjw== +"@radix-ui/react-id@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-id/-/react-id-1.0.1.tgz#73cdc181f650e4df24f0b6a5b7aa426b912c88c0" + integrity sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ== dependencies: "@babel/runtime" "^7.13.10" - "@radix-ui/react-use-layout-effect" "1.0.0" + "@radix-ui/react-use-layout-effect" "1.0.1" -"@radix-ui/react-navigation-menu@1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@radix-ui/react-navigation-menu/-/react-navigation-menu-1.1.2.tgz#ca5ee35ddbc4e57a9403be92f9573435173e35c8" - integrity sha512-1fSjOAGTThYSgJ5pENG2V8we7+6KDbfbiyt66HmLTeo0W3PAmmciclm0o97VlcVZW7q5Vg2hN7Cbj4XKo5u2sw== +"@radix-ui/react-navigation-menu@1.1.3": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@radix-ui/react-navigation-menu/-/react-navigation-menu-1.1.3.tgz#4b0f078226971b56b0fe2a9e4dde3cc2abfa731f" + integrity sha512-x4Uv0N47ABx3/frJazYXxvMpZeKJe0qmRIgQ2o3lhTqnTVg+CaZfVVO4nQLn3QJcDkTz8icElKffhFng47XIBA== dependencies: "@babel/runtime" "^7.13.10" - "@radix-ui/primitive" "1.0.0" - "@radix-ui/react-collection" "1.0.2" - "@radix-ui/react-compose-refs" "1.0.0" - "@radix-ui/react-context" "1.0.0" - "@radix-ui/react-direction" "1.0.0" - "@radix-ui/react-dismissable-layer" "1.0.3" - "@radix-ui/react-id" "1.0.0" - "@radix-ui/react-presence" "1.0.0" - "@radix-ui/react-primitive" "1.0.2" - "@radix-ui/react-use-callback-ref" "1.0.0" - "@radix-ui/react-use-controllable-state" "1.0.0" - "@radix-ui/react-use-layout-effect" "1.0.0" - "@radix-ui/react-use-previous" "1.0.0" - "@radix-ui/react-visually-hidden" "1.0.2" - -"@radix-ui/react-presence@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-presence/-/react-presence-1.0.0.tgz#814fe46df11f9a468808a6010e3f3ca7e0b2e84a" - integrity sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w== + "@radix-ui/primitive" "1.0.1" + "@radix-ui/react-collection" "1.0.3" + "@radix-ui/react-compose-refs" "1.0.1" + "@radix-ui/react-context" "1.0.1" + "@radix-ui/react-direction" "1.0.1" + "@radix-ui/react-dismissable-layer" "1.0.4" + "@radix-ui/react-id" "1.0.1" + "@radix-ui/react-presence" "1.0.1" + "@radix-ui/react-primitive" "1.0.3" + "@radix-ui/react-use-callback-ref" "1.0.1" + "@radix-ui/react-use-controllable-state" "1.0.1" + "@radix-ui/react-use-layout-effect" "1.0.1" + "@radix-ui/react-use-previous" "1.0.1" + "@radix-ui/react-visually-hidden" "1.0.3" + +"@radix-ui/react-presence@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-presence/-/react-presence-1.0.1.tgz#491990ba913b8e2a5db1b06b203cb24b5cdef9ba" + integrity sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg== dependencies: "@babel/runtime" "^7.13.10" - "@radix-ui/react-compose-refs" "1.0.0" - "@radix-ui/react-use-layout-effect" "1.0.0" + "@radix-ui/react-compose-refs" "1.0.1" + "@radix-ui/react-use-layout-effect" "1.0.1" -"@radix-ui/react-primitive@1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@radix-ui/react-primitive/-/react-primitive-1.0.2.tgz#54e22f49ca59ba88d8143090276d50b93f8a7053" - integrity sha512-zY6G5Qq4R8diFPNwtyoLRZBxzu1Z+SXMlfYpChN7Dv8gvmx9X3qhDqiLWvKseKVJMuedFeU/Sa0Sy/Ia+t06Dw== +"@radix-ui/react-primitive@1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@radix-ui/react-primitive/-/react-primitive-1.0.3.tgz#d49ea0f3f0b2fe3ab1cb5667eb03e8b843b914d0" + integrity sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g== dependencies: "@babel/runtime" "^7.13.10" - "@radix-ui/react-slot" "1.0.1" + "@radix-ui/react-slot" "1.0.2" -"@radix-ui/react-slot@1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@radix-ui/react-slot/-/react-slot-1.0.1.tgz#e7868c669c974d649070e9ecbec0b367ee0b4d81" - integrity sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw== +"@radix-ui/react-slot@1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@radix-ui/react-slot/-/react-slot-1.0.2.tgz#a9ff4423eade67f501ffb32ec22064bc9d3099ab" + integrity sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg== dependencies: "@babel/runtime" "^7.13.10" - "@radix-ui/react-compose-refs" "1.0.0" + "@radix-ui/react-compose-refs" "1.0.1" -"@radix-ui/react-use-callback-ref@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.0.tgz#9e7b8b6b4946fe3cbe8f748c82a2cce54e7b6a90" - integrity sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg== +"@radix-ui/react-use-callback-ref@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.1.tgz#f4bb1f27f2023c984e6534317ebc411fc181107a" + integrity sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ== dependencies: "@babel/runtime" "^7.13.10" -"@radix-ui/react-use-controllable-state@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.0.0.tgz#a64deaafbbc52d5d407afaa22d493d687c538b7f" - integrity sha512-FohDoZvk3mEXh9AWAVyRTYR4Sq7/gavuofglmiXB2g1aKyboUD4YtgWxKj8O5n+Uak52gXQ4wKz5IFST4vtJHg== +"@radix-ui/react-use-controllable-state@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.0.1.tgz#ecd2ced34e6330caf89a82854aa2f77e07440286" + integrity sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA== dependencies: "@babel/runtime" "^7.13.10" - "@radix-ui/react-use-callback-ref" "1.0.0" + "@radix-ui/react-use-callback-ref" "1.0.1" -"@radix-ui/react-use-escape-keydown@1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.0.2.tgz#09ab6455ab240b4f0a61faf06d4e5132c4d639f6" - integrity sha512-DXGim3x74WgUv+iMNCF+cAo8xUHHeqvjx8zs7trKf+FkQKPQXLk2sX7Gx1ysH7Q76xCpZuxIJE7HLPxRE+Q+GA== +"@radix-ui/react-use-escape-keydown@1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.0.3.tgz#217b840c250541609c66f67ed7bab2b733620755" + integrity sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg== dependencies: "@babel/runtime" "^7.13.10" - "@radix-ui/react-use-callback-ref" "1.0.0" + "@radix-ui/react-use-callback-ref" "1.0.1" -"@radix-ui/react-use-layout-effect@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.0.tgz#2fc19e97223a81de64cd3ba1dc42ceffd82374dc" - integrity sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ== +"@radix-ui/react-use-layout-effect@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.1.tgz#be8c7bc809b0c8934acf6657b577daf948a75399" + integrity sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ== dependencies: "@babel/runtime" "^7.13.10" -"@radix-ui/react-use-previous@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-use-previous/-/react-use-previous-1.0.0.tgz#e48a69c3a7d8078a967084038df66d0d181c56ac" - integrity sha512-RG2K8z/K7InnOKpq6YLDmT49HGjNmrK+fr82UCVKT2sW0GYfVnYp4wZWBooT/EYfQ5faA9uIjvsuMMhH61rheg== +"@radix-ui/react-use-previous@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-previous/-/react-use-previous-1.0.1.tgz#b595c087b07317a4f143696c6a01de43b0d0ec66" + integrity sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw== dependencies: "@babel/runtime" "^7.13.10" -"@radix-ui/react-visually-hidden@1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.0.2.tgz#29b117a59ef09a984bdad12cb98d81e8350be450" - integrity sha512-qirnJxtYn73HEk1rXL12/mXnu2rwsNHDID10th2JGtdK25T9wX+mxRmGt7iPSahw512GbZOc0syZX1nLQGoEOg== +"@radix-ui/react-visually-hidden@1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.0.3.tgz#51aed9dd0fe5abcad7dee2a234ad36106a6984ac" + integrity sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA== dependencies: "@babel/runtime" "^7.13.10" - "@radix-ui/react-primitive" "1.0.2" + "@radix-ui/react-primitive" "1.0.3" "@repeaterjs/repeater@3.0.4", "@repeaterjs/repeater@^3.0.4": version "3.0.4" @@ -3734,10 +3734,10 @@ lodash.sortby "^4.7.0" remove-markdown "^0.5.0" -"@theguild/components@4.6.0": - version "4.6.0" - resolved "https://registry.yarnpkg.com/@theguild/components/-/components-4.6.0.tgz#1a8455fb341722063570a68833ab998a1c962711" - integrity sha512-SmVznT4s6Q92MPO5kB5blY7IKBhEdm95CJT5us7c9vcFOM3lRiUX84CwGpleIEnFvLiixyBxyU9O+LiM+G1auw== +"@theguild/components@4.6.3": + version "4.6.3" + resolved "https://registry.yarnpkg.com/@theguild/components/-/components-4.6.3.tgz#a5453ee3637cc46155eb73bb7905bf793f72917a" + integrity sha512-zY5MS2xdpihlwwIQ6qhH1FCxXW76EWEVgf9Lb3R0vXecwuhxe18AH+JWQ+w1a3UlUB+KFvvkv6CbsjLNi23Zog== dependencies: "@algolia/autocomplete-js" "1.9.2" "@algolia/autocomplete-plugin-algolia-insights" "1.9.2" @@ -3745,15 +3745,15 @@ "@algolia/autocomplete-theme-classic" "1.9.2" "@giscus/react" "2.2.8" "@next/bundle-analyzer" "13.4.2" - "@radix-ui/react-navigation-menu" "1.1.2" + "@radix-ui/react-navigation-menu" "1.1.3" algoliasearch "4.17.1" clsx "1.2.1" focus-trap-react "10.1.4" fuzzy "^0.1.3" mermaid "10.1.0" next-videos "1.5.0" - nextra "2.6.1" - nextra-theme-docs "2.6.1" + nextra "2.6.2" + nextra-theme-docs "2.6.2" react-instantsearch-dom "6.40.0" react-paginate "8.2.0" react-player "2.12.0" @@ -10933,10 +10933,10 @@ next@13.4.2, next@^13.3.0: "@next/swc-win32-ia32-msvc" "13.4.2" "@next/swc-win32-x64-msvc" "13.4.2" -nextra-theme-docs@2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/nextra-theme-docs/-/nextra-theme-docs-2.6.1.tgz#74847cacc03889cebe562ef0dde013d7d527b8d2" - integrity sha512-25Va2D5bzFRIE7uIZ75QfmvsdurXI+xzoWBNMQTnG+ONv9yiQSWRYjfw/Yep1OXF6ahDaaNqbCb8HmRoX7sqRg== +nextra-theme-docs@2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/nextra-theme-docs/-/nextra-theme-docs-2.6.2.tgz#fd3b19d775110a64b1e3277e76b1f571345ab6d1" + integrity sha512-yvoLSf6rzeD3f6GA/vQabgEkwX3db7DOy87XhtwmqVip2O2XsW3DoMDuU7rzlCtCUmrsC583vymhd3YS6KKehg== dependencies: "@headlessui/react" "^1.7.10" "@popperjs/core" "^2.11.6" @@ -10951,10 +10951,10 @@ nextra-theme-docs@2.6.1: scroll-into-view-if-needed "^3.0.0" zod "^3.20.2" -nextra@2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/nextra/-/nextra-2.6.1.tgz#0d950d21515012eff62f317b1a7c73b00b9aa114" - integrity sha512-5NN+aTFzW17/42AWp3qAvBTlgZvSQVpHOUb2MdHI6gnslpjik6z7DS1gZJ9zJ/I8veVxdLhdE70TfksAZ9tgxQ== +nextra@2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/nextra/-/nextra-2.6.2.tgz#02db284c0eb246e51a28e5ded2ab278031a69ae7" + integrity sha512-1Rxb04AB9eIieJZq7LQTlcTUdXZcJ4g5rjPBnQ2EGUA8d7jCBhGyQoqDuZtblr8lDTRjIeMnJXCZo2HxIAtWhA== dependencies: "@mdx-js/mdx" "^2.3.0" "@mdx-js/react" "^2.3.0" From 72d1c1a22be239008daf888adf933c342236155c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 2 Jun 2023 10:56:01 -0400 Subject: [PATCH 023/115] fix(deps): update dependency @urql/vue to v1.1.2 (#9255) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- yarn.lock | 33 +++++++++++++++++++++++---------- 1 file changed, 23 insertions(+), 10 deletions(-) diff --git a/yarn.lock b/yarn.lock index 44687c58b32..af10951c849 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,6 +2,11 @@ # yarn lockfile v1 +"@0no-co/graphql.web@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@0no-co/graphql.web/-/graphql.web-1.0.1.tgz#db3da0d2cd41548b50f0583c0d2f4743c767e56b" + integrity sha512-6Yaxyv6rOwRkLIvFaL0NrLDgfNqC/Ng9QOPmTmlqW4mORXMEKmh5NYGkIvvt5Yw8fZesnMAqkj8cIqTj8f40cQ== + "@algolia/autocomplete-core@1.9.2": version "1.9.2" resolved "https://registry.yarnpkg.com/@algolia/autocomplete-core/-/autocomplete-core-1.9.2.tgz#1c9ffcfac7fc4733fe97356247b25d9d7a83538c" @@ -4279,13 +4284,21 @@ "@typescript-eslint/types" "5.52.0" eslint-visitor-keys "^3.3.0" -"@urql/core@^3.0.3", "@urql/core@^3.2.0": +"@urql/core@^3.0.3": version "3.2.2" resolved "https://registry.yarnpkg.com/@urql/core/-/core-3.2.2.tgz#2a44015b536d72981822f715c96393d8e0ddc576" integrity sha512-i046Cz8cZ4xIzGMTyHZrbdgzcFMcKD7+yhCAH5FwWBRjcKrc+RjEOuR9X5AMuBvr8c6IAaE92xAqa4wmlGfWTQ== dependencies: wonka "^6.1.2" +"@urql/core@^4.0.0": + version "4.0.8" + resolved "https://registry.yarnpkg.com/@urql/core/-/core-4.0.8.tgz#acd13c0b319b71f982840f8b348d2820703b2131" + integrity sha512-8aKNAAqKqnzcE6lcUA48JepghXZC72hZePXz5sYZ//oCPodQPRcBpj+eO1QTq2t0QM32B+grzYj8xEGukgBiXQ== + dependencies: + "@0no-co/graphql.web" "^1.0.1" + wonka "^6.3.2" + "@urql/introspection@^0.3.2": version "0.3.3" resolved "https://registry.yarnpkg.com/@urql/introspection/-/introspection-0.3.3.tgz#5bcedfebd515161eecf9b193169c2765bf5674f1" @@ -4297,12 +4310,12 @@ integrity sha512-LV4MNqslkGqdlmAjpmVuyewQ6sQZ1CAaHXsiP7IaNKWKKlnpluxjiQnhLy3V1uhqIcJe/Ni/+sHIq78EvpkJNw== "@urql/vue@^1.0.0": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@urql/vue/-/vue-1.0.5.tgz#f3ba91c81ac97476fa001abd366999ac4f304122" - integrity sha512-RiXiINAr/tBJTIRcbA+TPCwRvK/z3NJy7+NOQvXHV/c9nCDrmUgu7HqdVMtAmlh5jUIw3HR8nI8IrRUoJqchHw== + version "1.1.2" + resolved "https://registry.yarnpkg.com/@urql/vue/-/vue-1.1.2.tgz#9456f1b4a16b6a4c77546d290c54cc4f04288ac9" + integrity sha512-ixfV0PTXcOl4KrZK24X+9B4rX9KSxqq1xhHZ0SOkAxgxMkomjJhtUl+9PuRL+LEzGWVr91OCEo68VPQ8uc5rBA== dependencies: - "@urql/core" "^3.2.0" - wonka "^6.0.0" + "@urql/core" "^4.0.0" + wonka "^6.3.2" "@vercel/ncc@^0.36.0": version "0.36.1" @@ -14371,10 +14384,10 @@ widest-line@^4.0.1: dependencies: string-width "^5.0.1" -wonka@^6.0.0, wonka@^6.1.2: - version "6.2.3" - resolved "https://registry.yarnpkg.com/wonka/-/wonka-6.2.3.tgz#88f7852a23a3d53bca7411c70d66e9ce8f93a366" - integrity sha512-EFOYiqDeYLXSzGYt2X3aVe9Hq1XJG+Hz/HjTRRT4dZE9q95khHl5+7pzUSXI19dbMO1/2UMrTf7JT7/7JrSQSQ== +wonka@^6.0.0, wonka@^6.1.2, wonka@^6.3.2: + version "6.3.2" + resolved "https://registry.yarnpkg.com/wonka/-/wonka-6.3.2.tgz#6f32992b332251d7b696b038990f4dc284b3b33d" + integrity sha512-2xXbQ1LnwNS7egVm1HPhW2FyKrekolzhpM3mCwXdQr55gO+tAiY76rhb32OL9kKsW8taj++iP7C6hxlVzbnvrw== word-wrap@^1.2.3, word-wrap@~1.2.3: version "1.2.3" From f9c413843dcc0811988c071860b99aade1e0f56a Mon Sep 17 00:00:00 2001 From: Igor Gassmann Date: Tue, 6 Jun 2023 09:01:37 +0200 Subject: [PATCH 024/115] docs: make `react-query`/`graphql-request` recommendation clearer (#9488) --- website/src/pages/docs/guides/react-vue.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/src/pages/docs/guides/react-vue.mdx b/website/src/pages/docs/guides/react-vue.mdx index 359ee682500..0275ddc0ae9 100644 --- a/website/src/pages/docs/guides/react-vue.mdx +++ b/website/src/pages/docs/guides/react-vue.mdx @@ -129,7 +129,8 @@ export default config **Usage with `@tanstack/react-query`** -For the best developer experience, we recommend using `@tanstack/react-query` with `graphql-request@^5.0.0`.
+If you are using `@tanstack/react-query`, we recommend using it with `graphql-request@^5.0.0` to get the best developer experience. +
If you are willing to provide your own fetcher, you can directly jump to the ["Appendix I: React Query with a custom fetcher setup"](#appendix-i-react-query-with-a-custom-fetcher-setup) and continue the guide once React Query is properly setup.
From 2139f1db5704aa34a0cd89342736bf67ec556da3 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 6 Jun 2023 07:03:24 +0000 Subject: [PATCH 025/115] Update algolia-lockfile.json --- website/algolia-lockfile.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/algolia-lockfile.json b/website/algolia-lockfile.json index d0480397c6e..82e796d5157 100644 --- a/website/algolia-lockfile.json +++ b/website/algolia-lockfile.json @@ -1306,7 +1306,7 @@ "anchor": "appendix-ii-compatibility" } ], - "content": "7c566cdc5e544b5b4f9cc549dbeade33", + "content": "b6a454e01725062a5931d03b8d5753d4", "url": "https://www.the-guild.dev/graphql/codegen/docs/guides/react-vue", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ From bbd1848d06fb579ceaabc1e8eafe15e8ca9bd210 Mon Sep 17 00:00:00 2001 From: Eddy Nguyen Date: Tue, 13 Jun 2023 20:30:10 +1000 Subject: [PATCH 026/115] Fix CI/CD issues (#9499) * Fix a doc prettier issue * Fix @urql/vue e2e test regression --- examples/vue/urql/src/main.ts | 3 ++- website/src/pages/docs/guides/react-vue.mdx | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/examples/vue/urql/src/main.ts b/examples/vue/urql/src/main.ts index b9ed2e2f344..a74062abb03 100644 --- a/examples/vue/urql/src/main.ts +++ b/examples/vue/urql/src/main.ts @@ -1,11 +1,12 @@ import { createApp } from 'vue'; -import urql from '@urql/vue'; +import urql, { cacheExchange, fetchExchange } from '@urql/vue'; import App from './App.vue'; const app = createApp(App); app.use(urql, { url: 'https://swapi-graphql.netlify.app/.netlify/functions/index', + exchanges: [cacheExchange, fetchExchange], }); app.mount('#app'); diff --git a/website/src/pages/docs/guides/react-vue.mdx b/website/src/pages/docs/guides/react-vue.mdx index 0275ddc0ae9..817649dde9b 100644 --- a/website/src/pages/docs/guides/react-vue.mdx +++ b/website/src/pages/docs/guides/react-vue.mdx @@ -130,8 +130,9 @@ export default config **Usage with `@tanstack/react-query`** If you are using `@tanstack/react-query`, we recommend using it with `graphql-request@^5.0.0` to get the best developer experience. -
-If you are willing to provide your own fetcher, you can directly jump to the ["Appendix I: React Query with a custom fetcher setup"](#appendix-i-react-query-with-a-custom-fetcher-setup) and continue the guide once React Query is properly setup. + +If you are willing to provide your own fetcher, you can directly jump to the ["Appendix I: React Query with a custom fetcher +setup"](#appendix-i-react-query-with-a-custom-fetcher-setup) and continue the guide once React Query is properly setup. From 2276708d0ea2aab4942136923651226de4aabe5a Mon Sep 17 00:00:00 2001 From: Eddy Nguyen Date: Tue, 13 Jun 2023 21:06:01 +1000 Subject: [PATCH 027/115] Revert default ID scalar input type to string (#9497) --- .changeset/empty-grapes-care.md | 11 +++++++ dev-test/githunt/typed-document-nodes.ts | 2 +- dev-test/githunt/types.avoidOptionals.ts | 2 +- dev-test/githunt/types.d.ts | 2 +- dev-test/githunt/types.enumsAsTypes.ts | 2 +- .../githunt/types.flatten.preResolveTypes.ts | 2 +- dev-test/githunt/types.immutableTypes.ts | 2 +- ...ypes.preResolveTypes.onlyOperationTypes.ts | 2 +- dev-test/githunt/types.preResolveTypes.ts | 2 +- dev-test/githunt/types.ts | 2 +- .../gql-tag-operations-masking/gql/graphql.ts | 2 +- .../gql-tag-operations-urql/gql/graphql.ts | 2 +- dev-test/gql-tag-operations/gql/graphql.ts | 2 +- .../gql-tag-operations/graphql/graphql.ts | 2 +- dev-test/modules/types.ts | 2 +- dev-test/star-wars/types.avoidOptionals.ts | 2 +- dev-test/star-wars/types.d.ts | 2 +- dev-test/star-wars/types.excludeQueryAlpha.ts | 2 +- dev-test/star-wars/types.excludeQueryBeta.ts | 2 +- .../star-wars/types.globallyAvailable.d.ts | 2 +- dev-test/star-wars/types.immutableTypes.ts | 2 +- ...ypes.preResolveTypes.onlyOperationTypes.ts | 2 +- dev-test/star-wars/types.preResolveTypes.ts | 2 +- dev-test/star-wars/types.skipSchema.ts | 2 +- dev-test/star-wars/types.ts | 2 +- dev-test/test-schema/env.types.ts | 2 +- dev-test/test-schema/resolvers-federation.ts | 2 +- dev-test/test-schema/resolvers-root.ts | 2 +- dev-test/test-schema/resolvers-stitching.ts | 2 +- dev-test/test-schema/resolvers-types.ts | 2 +- ...ypes.preResolveTypes.onlyOperationTypes.ts | 2 +- dev-test/test-schema/types.preResolveTypes.ts | 2 +- .../test-schema/typings.avoidOptionals.ts | 2 +- dev-test/test-schema/typings.enum.ts | 2 +- .../test-schema/typings.immutableTypes.ts | 2 +- dev-test/test-schema/typings.ts | 2 +- dev-test/test-schema/typings.wrapped.ts | 2 +- .../src/gql/graphql.ts | 2 +- .../persisted-documents/src/gql/graphql.ts | 2 +- .../apollo-client-defer/src/gql/graphql.ts | 2 +- .../src/gql/graphql.ts | 2 +- .../react/apollo-client/src/gql/graphql.ts | 2 +- .../react/http-executor/src/gql/graphql.ts | 2 +- examples/react/nextjs-swr/gql/graphql.ts | 2 +- .../tanstack-react-query/src/gql/graphql.ts | 2 +- examples/react/urql/src/gql/graphql.ts | 2 +- examples/typescript-esm/src/gql/graphql.ts | 2 +- .../src/gql/graphql.ts | 2 +- .../typescript-resolvers/src/type-defs.d.ts | 2 +- .../vite/vite-react-cts/src/gql/graphql.ts | 2 +- .../vite/vite-react-mts/src/gql/graphql.ts | 2 +- .../vite/vite-react-ts/src/gql/graphql.ts | 2 +- .../vue/apollo-composable/src/gql/graphql.ts | 2 +- examples/vue/urql/src/gql/graphql.ts | 2 +- examples/vue/villus/src/gql/graphql.ts | 2 +- examples/yoga-tests/src/gql/graphql.ts | 2 +- .../graphql-codegen-cli/tests/codegen.spec.ts | 2 +- .../visitor-plugin-common/src/scalars.ts | 2 +- .../__snapshots__/ts-documents.spec.ts.snap | 8 ++--- .../operations/tests/ts-documents.spec.ts | 6 ++-- .../__snapshots__/ts-resolvers.spec.ts.snap | 4 +-- .../__snapshots__/typescript.spec.ts.snap | 2 +- .../typescript/tests/typescript.spec.ts | 20 ++++++------- .../client/tests/client-preset.spec.ts | 30 +++++++++---------- .../pages/docs/advanced/how-does-it-work.mdx | 2 +- 65 files changed, 104 insertions(+), 93 deletions(-) create mode 100644 .changeset/empty-grapes-care.md diff --git a/.changeset/empty-grapes-care.md b/.changeset/empty-grapes-care.md new file mode 100644 index 00000000000..9eb4d8b2b1f --- /dev/null +++ b/.changeset/empty-grapes-care.md @@ -0,0 +1,11 @@ +--- +'@graphql-codegen/visitor-plugin-common': patch +'@graphql-codegen/typescript-operations': patch +'@graphql-codegen/typescript': patch +'@graphql-codegen/typescript-resolvers': patch +'@graphql-codegen/client-preset': patch +--- + +Revert default ID scalar input type to string + +We changed the ID Scalar input type from `string` to `string | number` in the latest major version of `typescript` plugin. This causes issues for server plugins (e.g. typescript-resolvers) that depends on `typescript` plugin. This is because the scalar type needs to be manually inverted on setup which is confusing. diff --git a/dev-test/githunt/typed-document-nodes.ts b/dev-test/githunt/typed-document-nodes.ts index 02fb126e323..5d66b82c399 100644 --- a/dev-test/githunt/typed-document-nodes.ts +++ b/dev-test/githunt/typed-document-nodes.ts @@ -8,7 +8,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/githunt/types.avoidOptionals.ts b/dev-test/githunt/types.avoidOptionals.ts index addb8eb4649..fae92412f8c 100644 --- a/dev-test/githunt/types.avoidOptionals.ts +++ b/dev-test/githunt/types.avoidOptionals.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/githunt/types.d.ts b/dev-test/githunt/types.d.ts index 020e8fbadd6..a3214fa9248 100644 --- a/dev-test/githunt/types.d.ts +++ b/dev-test/githunt/types.d.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/githunt/types.enumsAsTypes.ts b/dev-test/githunt/types.enumsAsTypes.ts index 020e8fbadd6..a3214fa9248 100644 --- a/dev-test/githunt/types.enumsAsTypes.ts +++ b/dev-test/githunt/types.enumsAsTypes.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/githunt/types.flatten.preResolveTypes.ts b/dev-test/githunt/types.flatten.preResolveTypes.ts index 9377847e5c6..4e7d49bf1eb 100644 --- a/dev-test/githunt/types.flatten.preResolveTypes.ts +++ b/dev-test/githunt/types.flatten.preResolveTypes.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/githunt/types.immutableTypes.ts b/dev-test/githunt/types.immutableTypes.ts index 236b7b7ddd0..df6b6d82851 100644 --- a/dev-test/githunt/types.immutableTypes.ts +++ b/dev-test/githunt/types.immutableTypes.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/githunt/types.preResolveTypes.onlyOperationTypes.ts b/dev-test/githunt/types.preResolveTypes.onlyOperationTypes.ts index 4dac6f7d163..cdda2177e51 100644 --- a/dev-test/githunt/types.preResolveTypes.onlyOperationTypes.ts +++ b/dev-test/githunt/types.preResolveTypes.onlyOperationTypes.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/githunt/types.preResolveTypes.ts b/dev-test/githunt/types.preResolveTypes.ts index deb381b4377..91e23917b8c 100644 --- a/dev-test/githunt/types.preResolveTypes.ts +++ b/dev-test/githunt/types.preResolveTypes.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/githunt/types.ts b/dev-test/githunt/types.ts index deb381b4377..91e23917b8c 100644 --- a/dev-test/githunt/types.ts +++ b/dev-test/githunt/types.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/gql-tag-operations-masking/gql/graphql.ts b/dev-test/gql-tag-operations-masking/gql/graphql.ts index ba81b9e621e..750eb2d88cd 100644 --- a/dev-test/gql-tag-operations-masking/gql/graphql.ts +++ b/dev-test/gql-tag-operations-masking/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/gql-tag-operations-urql/gql/graphql.ts b/dev-test/gql-tag-operations-urql/gql/graphql.ts index c12acc6d8ed..bd2bb802314 100644 --- a/dev-test/gql-tag-operations-urql/gql/graphql.ts +++ b/dev-test/gql-tag-operations-urql/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/gql-tag-operations/gql/graphql.ts b/dev-test/gql-tag-operations/gql/graphql.ts index c12acc6d8ed..bd2bb802314 100644 --- a/dev-test/gql-tag-operations/gql/graphql.ts +++ b/dev-test/gql-tag-operations/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/gql-tag-operations/graphql/graphql.ts b/dev-test/gql-tag-operations/graphql/graphql.ts index c12acc6d8ed..bd2bb802314 100644 --- a/dev-test/gql-tag-operations/graphql/graphql.ts +++ b/dev-test/gql-tag-operations/graphql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/modules/types.ts b/dev-test/modules/types.ts index 1101f0a16d6..893f0c452f1 100644 --- a/dev-test/modules/types.ts +++ b/dev-test/modules/types.ts @@ -10,7 +10,7 @@ export type Omit = Pick>; export type RequireFields = Omit & { [P in K]-?: NonNullable }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/star-wars/types.avoidOptionals.ts b/dev-test/star-wars/types.avoidOptionals.ts index 63b07dc7ef9..02b567a168e 100644 --- a/dev-test/star-wars/types.avoidOptionals.ts +++ b/dev-test/star-wars/types.avoidOptionals.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/star-wars/types.d.ts b/dev-test/star-wars/types.d.ts index 0eec301b4ad..74b3623a681 100644 --- a/dev-test/star-wars/types.d.ts +++ b/dev-test/star-wars/types.d.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/star-wars/types.excludeQueryAlpha.ts b/dev-test/star-wars/types.excludeQueryAlpha.ts index 9d07ac14bb2..c74b2d6c85e 100644 --- a/dev-test/star-wars/types.excludeQueryAlpha.ts +++ b/dev-test/star-wars/types.excludeQueryAlpha.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/star-wars/types.excludeQueryBeta.ts b/dev-test/star-wars/types.excludeQueryBeta.ts index 44cd86ce9e7..4a8b70efeaa 100644 --- a/dev-test/star-wars/types.excludeQueryBeta.ts +++ b/dev-test/star-wars/types.excludeQueryBeta.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/star-wars/types.globallyAvailable.d.ts b/dev-test/star-wars/types.globallyAvailable.d.ts index 17c513699c1..4a40839de60 100644 --- a/dev-test/star-wars/types.globallyAvailable.d.ts +++ b/dev-test/star-wars/types.globallyAvailable.d.ts @@ -7,7 +7,7 @@ type MakeEmpty = { [_ i type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/star-wars/types.immutableTypes.ts b/dev-test/star-wars/types.immutableTypes.ts index d05e295a233..b058821dbb1 100644 --- a/dev-test/star-wars/types.immutableTypes.ts +++ b/dev-test/star-wars/types.immutableTypes.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/star-wars/types.preResolveTypes.onlyOperationTypes.ts b/dev-test/star-wars/types.preResolveTypes.onlyOperationTypes.ts index 5db843a2cf6..7ec1e20377e 100644 --- a/dev-test/star-wars/types.preResolveTypes.onlyOperationTypes.ts +++ b/dev-test/star-wars/types.preResolveTypes.onlyOperationTypes.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/star-wars/types.preResolveTypes.ts b/dev-test/star-wars/types.preResolveTypes.ts index b375f71575b..d580beb2eb5 100644 --- a/dev-test/star-wars/types.preResolveTypes.ts +++ b/dev-test/star-wars/types.preResolveTypes.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/star-wars/types.skipSchema.ts b/dev-test/star-wars/types.skipSchema.ts index b375f71575b..d580beb2eb5 100644 --- a/dev-test/star-wars/types.skipSchema.ts +++ b/dev-test/star-wars/types.skipSchema.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/star-wars/types.ts b/dev-test/star-wars/types.ts index b375f71575b..d580beb2eb5 100644 --- a/dev-test/star-wars/types.ts +++ b/dev-test/star-wars/types.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/test-schema/env.types.ts b/dev-test/test-schema/env.types.ts index ed24257b957..a21f1f2cd58 100644 --- a/dev-test/test-schema/env.types.ts +++ b/dev-test/test-schema/env.types.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/test-schema/resolvers-federation.ts b/dev-test/test-schema/resolvers-federation.ts index 5dff237b8fb..d2c05ac9d13 100644 --- a/dev-test/test-schema/resolvers-federation.ts +++ b/dev-test/test-schema/resolvers-federation.ts @@ -8,7 +8,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/test-schema/resolvers-root.ts b/dev-test/test-schema/resolvers-root.ts index 3c59b544755..ca4941f0f61 100644 --- a/dev-test/test-schema/resolvers-root.ts +++ b/dev-test/test-schema/resolvers-root.ts @@ -9,7 +9,7 @@ export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | export type RequireFields = Omit & { [P in K]-?: NonNullable }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/test-schema/resolvers-stitching.ts b/dev-test/test-schema/resolvers-stitching.ts index d312d4982c5..8954a721b9a 100644 --- a/dev-test/test-schema/resolvers-stitching.ts +++ b/dev-test/test-schema/resolvers-stitching.ts @@ -9,7 +9,7 @@ export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | export type RequireFields = Omit & { [P in K]-?: NonNullable }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/test-schema/resolvers-types.ts b/dev-test/test-schema/resolvers-types.ts index 4fd6f9fca4d..6bb026ac0c8 100644 --- a/dev-test/test-schema/resolvers-types.ts +++ b/dev-test/test-schema/resolvers-types.ts @@ -9,7 +9,7 @@ export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | export type RequireFields = Omit & { [P in K]-?: NonNullable }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/test-schema/types.preResolveTypes.onlyOperationTypes.ts b/dev-test/test-schema/types.preResolveTypes.onlyOperationTypes.ts index 0491645185e..8c580b61f78 100644 --- a/dev-test/test-schema/types.preResolveTypes.onlyOperationTypes.ts +++ b/dev-test/test-schema/types.preResolveTypes.onlyOperationTypes.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/test-schema/types.preResolveTypes.ts b/dev-test/test-schema/types.preResolveTypes.ts index ce938578b61..472613688cf 100644 --- a/dev-test/test-schema/types.preResolveTypes.ts +++ b/dev-test/test-schema/types.preResolveTypes.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/test-schema/typings.avoidOptionals.ts b/dev-test/test-schema/typings.avoidOptionals.ts index 008269cb61d..43e966058f7 100644 --- a/dev-test/test-schema/typings.avoidOptionals.ts +++ b/dev-test/test-schema/typings.avoidOptionals.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/test-schema/typings.enum.ts b/dev-test/test-schema/typings.enum.ts index 676c3ed87a0..491b66ac691 100644 --- a/dev-test/test-schema/typings.enum.ts +++ b/dev-test/test-schema/typings.enum.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/test-schema/typings.immutableTypes.ts b/dev-test/test-schema/typings.immutableTypes.ts index ef1938a114d..c8a55b067b5 100644 --- a/dev-test/test-schema/typings.immutableTypes.ts +++ b/dev-test/test-schema/typings.immutableTypes.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/test-schema/typings.ts b/dev-test/test-schema/typings.ts index 74c936a8484..707d55a9502 100644 --- a/dev-test/test-schema/typings.ts +++ b/dev-test/test-schema/typings.ts @@ -9,7 +9,7 @@ export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | export type RequireFields = Omit & { [P in K]-?: NonNullable }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/dev-test/test-schema/typings.wrapped.ts b/dev-test/test-schema/typings.wrapped.ts index 402545ac2da..a17ae3d1de2 100644 --- a/dev-test/test-schema/typings.wrapped.ts +++ b/dev-test/test-schema/typings.wrapped.ts @@ -8,7 +8,7 @@ declare namespace GraphQL { export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/examples/persisted-documents-string-mode/src/gql/graphql.ts b/examples/persisted-documents-string-mode/src/gql/graphql.ts index 0730ee3334f..1e014d4061d 100644 --- a/examples/persisted-documents-string-mode/src/gql/graphql.ts +++ b/examples/persisted-documents-string-mode/src/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/examples/persisted-documents/src/gql/graphql.ts b/examples/persisted-documents/src/gql/graphql.ts index d2e3ec627ce..6b7a4ca84f4 100644 --- a/examples/persisted-documents/src/gql/graphql.ts +++ b/examples/persisted-documents/src/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/examples/react/apollo-client-defer/src/gql/graphql.ts b/examples/react/apollo-client-defer/src/gql/graphql.ts index 99a00b13567..990b301a152 100644 --- a/examples/react/apollo-client-defer/src/gql/graphql.ts +++ b/examples/react/apollo-client-defer/src/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/examples/react/apollo-client-swc-plugin/src/gql/graphql.ts b/examples/react/apollo-client-swc-plugin/src/gql/graphql.ts index 7c619f06073..08a4e82ceef 100644 --- a/examples/react/apollo-client-swc-plugin/src/gql/graphql.ts +++ b/examples/react/apollo-client-swc-plugin/src/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/examples/react/apollo-client/src/gql/graphql.ts b/examples/react/apollo-client/src/gql/graphql.ts index 7c619f06073..08a4e82ceef 100644 --- a/examples/react/apollo-client/src/gql/graphql.ts +++ b/examples/react/apollo-client/src/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/examples/react/http-executor/src/gql/graphql.ts b/examples/react/http-executor/src/gql/graphql.ts index 7c619f06073..08a4e82ceef 100644 --- a/examples/react/http-executor/src/gql/graphql.ts +++ b/examples/react/http-executor/src/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/examples/react/nextjs-swr/gql/graphql.ts b/examples/react/nextjs-swr/gql/graphql.ts index fbd1809a391..98a06071016 100644 --- a/examples/react/nextjs-swr/gql/graphql.ts +++ b/examples/react/nextjs-swr/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/examples/react/tanstack-react-query/src/gql/graphql.ts b/examples/react/tanstack-react-query/src/gql/graphql.ts index 468724b5057..132329d5eac 100644 --- a/examples/react/tanstack-react-query/src/gql/graphql.ts +++ b/examples/react/tanstack-react-query/src/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/examples/react/urql/src/gql/graphql.ts b/examples/react/urql/src/gql/graphql.ts index 5accc591bf9..3018c7e762b 100644 --- a/examples/react/urql/src/gql/graphql.ts +++ b/examples/react/urql/src/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/examples/typescript-esm/src/gql/graphql.ts b/examples/typescript-esm/src/gql/graphql.ts index 146255fc41b..c3de60651c9 100644 --- a/examples/typescript-esm/src/gql/graphql.ts +++ b/examples/typescript-esm/src/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/examples/typescript-graphql-request/src/gql/graphql.ts b/examples/typescript-graphql-request/src/gql/graphql.ts index 5901e1fee79..2d6abccbc4f 100644 --- a/examples/typescript-graphql-request/src/gql/graphql.ts +++ b/examples/typescript-graphql-request/src/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/examples/typescript-resolvers/src/type-defs.d.ts b/examples/typescript-resolvers/src/type-defs.d.ts index bd309a8b918..7ac21289be1 100644 --- a/examples/typescript-resolvers/src/type-defs.d.ts +++ b/examples/typescript-resolvers/src/type-defs.d.ts @@ -9,7 +9,7 @@ export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | export type RequireFields = Omit & { [P in K]-?: NonNullable }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/examples/vite/vite-react-cts/src/gql/graphql.ts b/examples/vite/vite-react-cts/src/gql/graphql.ts index fbd1809a391..98a06071016 100644 --- a/examples/vite/vite-react-cts/src/gql/graphql.ts +++ b/examples/vite/vite-react-cts/src/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/examples/vite/vite-react-mts/src/gql/graphql.ts b/examples/vite/vite-react-mts/src/gql/graphql.ts index fbd1809a391..98a06071016 100644 --- a/examples/vite/vite-react-mts/src/gql/graphql.ts +++ b/examples/vite/vite-react-mts/src/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/examples/vite/vite-react-ts/src/gql/graphql.ts b/examples/vite/vite-react-ts/src/gql/graphql.ts index fbd1809a391..98a06071016 100644 --- a/examples/vite/vite-react-ts/src/gql/graphql.ts +++ b/examples/vite/vite-react-ts/src/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/examples/vue/apollo-composable/src/gql/graphql.ts b/examples/vue/apollo-composable/src/gql/graphql.ts index b4dfb1e7039..1826496b745 100644 --- a/examples/vue/apollo-composable/src/gql/graphql.ts +++ b/examples/vue/apollo-composable/src/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/examples/vue/urql/src/gql/graphql.ts b/examples/vue/urql/src/gql/graphql.ts index b4dfb1e7039..1826496b745 100644 --- a/examples/vue/urql/src/gql/graphql.ts +++ b/examples/vue/urql/src/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/examples/vue/villus/src/gql/graphql.ts b/examples/vue/villus/src/gql/graphql.ts index b4dfb1e7039..1826496b745 100644 --- a/examples/vue/villus/src/gql/graphql.ts +++ b/examples/vue/villus/src/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/examples/yoga-tests/src/gql/graphql.ts b/examples/yoga-tests/src/gql/graphql.ts index ac3374a6dfc..db6761f132f 100644 --- a/examples/yoga-tests/src/gql/graphql.ts +++ b/examples/yoga-tests/src/gql/graphql.ts @@ -9,7 +9,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string }; + ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; diff --git a/packages/graphql-codegen-cli/tests/codegen.spec.ts b/packages/graphql-codegen-cli/tests/codegen.spec.ts index 99d7e662192..da14f60b5a8 100644 --- a/packages/graphql-codegen-cli/tests/codegen.spec.ts +++ b/packages/graphql-codegen-cli/tests/codegen.spec.ts @@ -719,7 +719,7 @@ describe('Codegen Executor', () => { expect(output.length).toBe(1); expect(output[0].content).toBeSimilarStringTo(`export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } diff --git a/packages/plugins/other/visitor-plugin-common/src/scalars.ts b/packages/plugins/other/visitor-plugin-common/src/scalars.ts index a5e8a242129..e58f82790ed 100644 --- a/packages/plugins/other/visitor-plugin-common/src/scalars.ts +++ b/packages/plugins/other/visitor-plugin-common/src/scalars.ts @@ -2,7 +2,7 @@ import { NormalizedScalarsMap } from './types.js'; export const DEFAULT_SCALARS: NormalizedScalarsMap = { ID: { - input: 'string | number', + input: 'string', output: 'string', }, String: { diff --git a/packages/plugins/typescript/operations/tests/__snapshots__/ts-documents.spec.ts.snap b/packages/plugins/typescript/operations/tests/__snapshots__/ts-documents.spec.ts.snap index 8345468ea6c..b363ec0e715 100644 --- a/packages/plugins/typescript/operations/tests/__snapshots__/ts-documents.spec.ts.snap +++ b/packages/plugins/typescript/operations/tests/__snapshots__/ts-documents.spec.ts.snap @@ -73,7 +73,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -364,7 +364,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -482,7 +482,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -577,7 +577,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } diff --git a/packages/plugins/typescript/operations/tests/ts-documents.spec.ts b/packages/plugins/typescript/operations/tests/ts-documents.spec.ts index 7060d7e576c..edb7603924f 100644 --- a/packages/plugins/typescript/operations/tests/ts-documents.spec.ts +++ b/packages/plugins/typescript/operations/tests/ts-documents.spec.ts @@ -4105,7 +4105,7 @@ describe('TypeScript Operations Plugin', () => { export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -4215,7 +4215,7 @@ describe('TypeScript Operations Plugin', () => { export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -4303,7 +4303,7 @@ describe('TypeScript Operations Plugin', () => { export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } diff --git a/packages/plugins/typescript/resolvers/tests/__snapshots__/ts-resolvers.spec.ts.snap b/packages/plugins/typescript/resolvers/tests/__snapshots__/ts-resolvers.spec.ts.snap index 0f901a5986c..f2ab6d709f2 100644 --- a/packages/plugins/typescript/resolvers/tests/__snapshots__/ts-resolvers.spec.ts.snap +++ b/packages/plugins/typescript/resolvers/tests/__snapshots__/ts-resolvers.spec.ts.snap @@ -13,7 +13,7 @@ export type Omit = Pick>; export type RequireFields = Omit & { [P in K]-?: NonNullable }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -617,7 +617,7 @@ export type Omit = Pick>; export type RequireFields = Omit & { [P in K]-?: NonNullable }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } diff --git a/packages/plugins/typescript/typescript/tests/__snapshots__/typescript.spec.ts.snap b/packages/plugins/typescript/typescript/tests/__snapshots__/typescript.spec.ts.snap index 824f8f15dcf..d617ff6338c 100644 --- a/packages/plugins/typescript/typescript/tests/__snapshots__/typescript.spec.ts.snap +++ b/packages/plugins/typescript/typescript/tests/__snapshots__/typescript.spec.ts.snap @@ -3,7 +3,7 @@ exports[`TypeScript should use implementing types as node type - issue #5126 1`] = ` "/** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } diff --git a/packages/plugins/typescript/typescript/tests/typescript.spec.ts b/packages/plugins/typescript/typescript/tests/typescript.spec.ts index e72cf4d81ce..88383bd5840 100644 --- a/packages/plugins/typescript/typescript/tests/typescript.spec.ts +++ b/packages/plugins/typescript/typescript/tests/typescript.spec.ts @@ -23,7 +23,7 @@ describe('TypeScript', () => { expect(result.content).toBeSimilarStringTo(` /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -336,7 +336,7 @@ describe('TypeScript', () => { expect(result.content).not.toBeSimilarStringTo(`/** My custom scalar */`); expect(result.content).toBeSimilarStringTo(` export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -1891,7 +1891,7 @@ describe('TypeScript', () => { expect(result.content).toBeSimilarStringTo(` export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -1933,7 +1933,7 @@ describe('TypeScript', () => { expect(result.prepend).toContain(`import { Boolean } from '../../scalars';`); expect(result.content).toBeSimilarStringTo(` export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: String['input']; output: String['output']; } Boolean: { input: Boolean['input']; output: Boolean['output']; } Int: { input: number; output: number; } @@ -2001,7 +2001,7 @@ describe('TypeScript', () => { expect(result.prepend).toContain(`import { OrgOtherScalar as OrgAliasedScalar } from '@org/scalars';`); expect(result.content).toBeSimilarStringTo(` export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -2101,7 +2101,7 @@ describe('TypeScript', () => { expect(result.prepend).toContain(`import { OrgOtherScalar as OrgAliasedScalarOutput } from '@org/scalars';`); expect(result.content).toBeSimilarStringTo(` export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -2147,7 +2147,7 @@ describe('TypeScript', () => { expect(result.content).toBeSimilarStringTo(` export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -2188,7 +2188,7 @@ describe('TypeScript', () => { expect(result.content).toBeSimilarStringTo(` export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -2229,7 +2229,7 @@ describe('TypeScript', () => { expect(result.content).toBeSimilarStringTo(` export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -2285,7 +2285,7 @@ describe('TypeScript', () => { expect(result.content).toBeSimilarStringTo(` export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } diff --git a/packages/presets/client/tests/client-preset.spec.ts b/packages/presets/client/tests/client-preset.spec.ts index 4e074a72f0e..fdf897883b5 100644 --- a/packages/presets/client/tests/client-preset.spec.ts +++ b/packages/presets/client/tests/client-preset.spec.ts @@ -347,7 +347,7 @@ export * from "./gql";`); export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -477,7 +477,7 @@ export * from "./gql";`); export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -590,7 +590,7 @@ export * from "./gql";`); export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -1256,7 +1256,7 @@ export * from "./gql.js";`); export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -1334,7 +1334,7 @@ export * from "./gql.js";`); export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -1415,7 +1415,7 @@ export * from "./gql.js";`); export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -1496,7 +1496,7 @@ export * from "./gql.js";`); export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -1579,7 +1579,7 @@ export * from "./gql.js";`); export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -1658,7 +1658,7 @@ export * from "./gql.js";`); export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -1750,7 +1750,7 @@ export * from "./gql.js";`); export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -1829,7 +1829,7 @@ export * from "./gql.js";`); export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -1914,7 +1914,7 @@ export * from "./gql.js";`); export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -1999,7 +1999,7 @@ export * from "./gql.js";`); export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -2140,7 +2140,7 @@ export * from "./gql.js";`); export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } @@ -2279,7 +2279,7 @@ export * from "./gql.js";`); export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } diff --git a/website/src/pages/docs/advanced/how-does-it-work.mdx b/website/src/pages/docs/advanced/how-does-it-work.mdx index 20614bb2be6..c723b219b39 100644 --- a/website/src/pages/docs/advanced/how-does-it-work.mdx +++ b/website/src/pages/docs/advanced/how-does-it-work.mdx @@ -112,7 +112,7 @@ export default config; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; }; + ID: { input: string; output: string; }; String: { input: string; output: string; }; Boolean: { input: boolean; output: boolean; }; Int: { input: number; output: number; }; From be412e2e309167a9abef93533562a9bad1f1c5dd Mon Sep 17 00:00:00 2001 From: Ricky Chon Date: Thu, 15 Jun 2023 04:16:46 -0400 Subject: [PATCH 028/115] docs: remove duplicate package to install in api-testing.mdx (#9503) --- website/src/pages/docs/guides/api-testing.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/pages/docs/guides/api-testing.mdx b/website/src/pages/docs/guides/api-testing.mdx index 9f565bf0634..7b9b8ba25b2 100644 --- a/website/src/pages/docs/guides/api-testing.mdx +++ b/website/src/pages/docs/guides/api-testing.mdx @@ -28,7 +28,7 @@ Install the following development dependencies: From e0a749f37ab03537483a3ec001de3e4272c7b30b Mon Sep 17 00:00:00 2001 From: Dimitri POSTOLOV Date: Thu, 15 Jun 2023 12:05:20 +0200 Subject: [PATCH 029/115] update to components v5 (#9505) --- website/package.json | 2 +- website/src/components/client-note.mdx | 9 -- website/src/components/file-tree.tsx | 130 ------------------ website/src/components/plugin.tsx | 24 +--- website/src/lib/plugin-get-static-props.ts | 94 ++++++++----- .../advanced/generated-files-colocation.mdx | 10 +- website/src/pages/docs/advanced/profiler.mdx | 8 +- .../docs/config-reference/codegen-config.mdx | 6 +- .../src/pages/docs/getting-started/index.mdx | 7 +- .../docs/getting-started/installation.mdx | 20 +-- website/src/pages/docs/guides/angular.mdx | 24 ++-- website/src/pages/docs/guides/api-testing.mdx | 18 +-- .../src/pages/docs/guides/flutter-freezed.mdx | 9 +- .../src/pages/docs/guides/graphql-modules.mdx | 14 +- ...-server-apollo-yoga-with-server-preset.mdx | 14 +- .../guides/graphql-server-apollo-yoga.mdx | 10 +- website/src/pages/docs/guides/react-vue.mdx | 2 +- website/src/pages/docs/guides/svelte.mdx | 23 ++-- .../src/pages/docs/migration/from-0-18.mdx | 6 +- .../src/pages/docs/migration/graphql-cli.mdx | 2 +- .../plugins/c-sharp/c-sharp-operations.mdx | 4 +- .../pages/plugins/dart/flutter-freezed.mdx | 2 +- .../pages/plugins/flow/flow-operations.mdx | 4 +- .../plugins/java/java-apollo-android.mdx | 8 +- website/src/pages/plugins/java/kotlin.mdx | 8 +- .../pages/plugins/presets/preset-client.mdx | 27 ++-- .../typescript/typed-document-node.mdx | 4 +- .../typescript/typescript-apollo-angular.mdx | 4 +- .../typescript/typescript-apollo-next.mdx | 4 +- .../typescript/typescript-generic-sdk.mdx | 4 +- .../typescript/typescript-graphql-request.mdx | 4 +- .../plugins/typescript/typescript-mongodb.mdx | 4 +- .../plugins/typescript/typescript-msw.mdx | 4 +- .../plugins/typescript/typescript-nhost.mdx | 4 +- .../plugins/typescript/typescript-oclif.mdx | 4 +- .../typescript/typescript-operations.mdx | 4 +- .../typescript/typescript-react-apollo.mdx | 4 +- .../typescript/typescript-react-query.mdx | 4 +- .../typescript/typescript-resolvers.mdx | 4 +- .../typescript/typescript-rtk-query.mdx | 4 +- .../typescript/typescript-stencil-apollo.mdx | 4 +- .../plugins/typescript/typescript-urql.mdx | 4 +- .../typescript-vue-apollo-smart-ops.mdx | 4 +- .../typescript/typescript-vue-apollo.mdx | 4 +- .../typescript/typescript-vue-urql.mdx | 4 +- yarn.lock | 115 ++++++++++------ 46 files changed, 312 insertions(+), 364 deletions(-) delete mode 100644 website/src/components/client-note.mdx delete mode 100644 website/src/components/file-tree.tsx diff --git a/website/package.json b/website/package.json index 4c2687361a1..23cdb483a4e 100644 --- a/website/package.json +++ b/website/package.json @@ -68,7 +68,7 @@ "@graphql-codegen/client-preset": "4.0.0", "@mendable/search": "0.0.108", "@monaco-editor/react": "4.5.1", - "@theguild/components": "4.6.3", + "@theguild/components": "5.0.0", "classnames": "2.3.2", "date-fns": "2.29.3", "dedent": "0.7.0", diff --git a/website/src/components/client-note.mdx b/website/src/components/client-note.mdx deleted file mode 100644 index c55736e81a7..00000000000 --- a/website/src/components/client-note.mdx +++ /dev/null @@ -1,9 +0,0 @@ -import { Callout } from '@theguild/components' - - -**Usage Requirements** -In order to use this GraphQL Codegen plugin, please make sure that you have GraphQL operations (`query` / `mutation` / `subscription` and `fragment`) set as `documents: …` in your `codegen.yml`. - -Without loading your GraphQL operations (`query`, `mutation`, `subscription` and `fragment`), you won't see any change in the generated output. - - diff --git a/website/src/components/file-tree.tsx b/website/src/components/file-tree.tsx deleted file mode 100644 index 45ed346bc17..00000000000 --- a/website/src/components/file-tree.tsx +++ /dev/null @@ -1,130 +0,0 @@ -import React, { useState, useCallback, createContext, useContext } from 'react'; -import cn from 'clsx'; -import type { ReactElement } from 'react'; - -const ctx = createContext(0); - -export const { Provider, Consumer } = ctx; - -export function useIndent() { - return useContext(ctx) || 0; -} - -export default ctx; - -interface FolderProps { - name: string; - label?: ReactElement; - open?: boolean; - defaultOpen?: boolean; - onToggle?: (open: boolean) => void; - children: ReactElement | ReactElement[]; -} - -interface FileProps { - name: string; - label?: ReactElement; - active?: boolean; - children: ReactElement | ReactElement[]; -} - -const Tree: React.FC<{ - children: ReactElement | ReactElement[]; -}> = ({ children }) => ( -
-
{children}
-
-); - -function Ident() { - const indent = useIndent(); - - return ( - <> - {[...Array(indent)].map((_, i) => ( - - ))} - - ); -} - -const Folder: React.FC = React.memo(({ label, name, open, children, defaultOpen, onToggle }) => { - const indent = useIndent(); - - const [isOpen, setIsOpen] = useState(defaultOpen || false); - - const toggle = useCallback(() => { - onToggle?.(!isOpen); - setIsOpen(!isOpen); - }, [isOpen, onToggle]); - - const isFolderOpen = open === undefined ? isOpen : open; - - return ( -
  • - - - - {isFolderOpen ? ( - - - - ) : ( - - - - )} - - {label ?? name} - - {isFolderOpen ? ( -
      - {children} -
    - ) : null} -
  • - ); -}); - -Folder.displayName = 'Folder'; - -const File: React.FC = React.memo(({ label, name, active, ...props }) => { - return ( -
  • - - - - - - - - {label ?? name} - -
  • - ); -}); - -File.displayName = 'File'; - -export { Tree, Folder, File }; diff --git a/website/src/components/plugin.tsx b/website/src/components/plugin.tsx index e306a9b77c8..b7c7705229f 100644 --- a/website/src/components/plugin.tsx +++ b/website/src/components/plugin.tsx @@ -1,26 +1,12 @@ import { ReactElement } from 'react'; -import { PackageCmd, useSSG } from '@theguild/components'; +import { useSSG, Tab, Tabs, Callout } from '@theguild/components'; import { MDXRemote } from 'next-mdx-remote'; -import ClientNote from './client-note.mdx'; -export const PluginHeader = ({ - isDev = true, - hasOperationsNote = false, -}: { - isDev?: boolean; - hasOperationsNote?: boolean; -}): ReactElement => { +export function PluginHeader(): ReactElement { // Get the data from SSG, and render it as a component. - const { npmPackage, compiledHeader } = useSSG(); - - return ( - <> - - - {hasOperationsNote && } - - ); -}; + const { compiledHeader } = useSSG(); + return ; +} export const PluginApiDocs = (): ReactElement => { // Get the data from SSG, and render it as a component. diff --git a/website/src/lib/plugin-get-static-props.ts b/website/src/lib/plugin-get-static-props.ts index 8c30eff19e2..a8247b0da00 100644 --- a/website/src/lib/plugin-get-static-props.ts +++ b/website/src/lib/plugin-get-static-props.ts @@ -1,5 +1,6 @@ import { parse } from 'node:path'; import { fetchPackageInfo } from '@theguild/components'; +import { defaultRemarkPlugins } from '@theguild/components/next.config'; import { format } from 'date-fns'; import { compileMdx } from 'nextra/compile'; import { PACKAGES } from '@/lib/plugins'; @@ -7,45 +8,72 @@ import { transformDocs } from '@/lib/transform'; // Can't be used in plugin.tsx due incorrect tree shaking: // Module not found: Can't resolve 'fs' -export const pluginGetStaticProps = (fileName: string) => async () => { - const identifier = parse(fileName).name; - const plugin = PACKAGES[identifier]; - if (!plugin) { - throw new Error(`Unknown "${identifier}" plugin identifier`); - } - const { npmPackage } = plugin; - const { readme, updatedAt } = await fetchPackageInfo(npmPackage); - - const generatedDocs = transformDocs(); - const source = generatedDocs.docs[identifier] || readme.replaceAll('```yml', '```yaml') || ''; - const title = plugin.title ?? ''; - - const [mdx, mdxHeader] = await Promise.all([ - compileMdx(source, { - defaultShowCopyCode: true, - }), - compileMdx( - ` +export const pluginGetStaticProps = + (fileName: string, { isDev = true, hasOperationsNote = false, ...rest } = {}) => + async () => { + const unknownOptions = Object.keys(rest); + if (unknownOptions.length) { + throw new Error(`Unknown options "${unknownOptions}"`); + } + const identifier = parse(fileName).name; + const plugin = PACKAGES[identifier]; + if (!plugin) { + throw new Error(`Unknown "${identifier}" plugin identifier`); + } + const { npmPackage } = plugin; + const { readme, updatedAt } = await fetchPackageInfo(npmPackage); + + const generatedDocs = transformDocs(); + const source = generatedDocs.docs[identifier] || readme.replaceAll('```yml', '```yaml') || ''; + const title = plugin.title ?? ''; + + const [mdx, mdxHeader] = await Promise.all([ + compileMdx(source, { + defaultShowCopyCode: true, + }), + compileMdx( + ` # ${title} |Package name|Weekly Downloads|Version|License|Updated| |-|-|-|-|-| |[\`${npmPackage}\`](https://npmjs.com/package/${npmPackage})|![Downloads](https://badgen.net/npm/dw/${npmPackage} "Downloads")|![Version](https://badgen.net/npm/v/${npmPackage} "Version")|![License](https://badgen.net/npm/license/${npmPackage} "License")|${format( - new Date(updatedAt), - 'MMM do, yyyy' - )}| + new Date(updatedAt), + 'MMM do, yyyy' + )}| ## Installation + +\`\`\`sh npm2yarn +npm i ${isDev ? '-D ' : ''}${npmPackage} +\`\`\` + +${ + hasOperationsNote + ? ` + +**Usage Requirements** +In order to use this GraphQL Codegen plugin, please make sure that you have GraphQL operations (\`query\` / \`mutation\` / \`subscription\` and \`fragment\`) set as \`documents: …\` in your \`codegen.yml\`. + +Without loading your GraphQL operations (\`query\`, \`mutation\`, \`subscription\` and \`fragment\`), you won't see any change in the generated output. + ` - ), - ]); - - return { - props: { - ssg: { - npmPackage, - compiledSource: mdx.result, - compiledHeader: mdxHeader.result, + : '' +} +`, + { + mdxOptions: { + remarkPlugins: defaultRemarkPlugins, + }, + } + ), + ]); + + return { + props: { + ssg: { + compiledSource: mdx.result, + compiledHeader: mdxHeader.result, + }, }, - }, + }; }; -}; diff --git a/website/src/pages/docs/advanced/generated-files-colocation.mdx b/website/src/pages/docs/advanced/generated-files-colocation.mdx index a229f269b84..fbe6053bf52 100644 --- a/website/src/pages/docs/advanced/generated-files-colocation.mdx +++ b/website/src/pages/docs/advanced/generated-files-colocation.mdx @@ -1,7 +1,7 @@ --- description: Generate types near your GraphQL operations. Colocate your generated files with your original GraphQL operations. --- -import { PackageCmd, Callout } from '@theguild/components' +import { Callout } from '@theguild/components' # Generated files colocation @@ -52,7 +52,9 @@ Just a few configuration steps are required to get this structure of colocated g ### Install - +```sh npm2yarn +npm i -D @graphql-codegen/near-operation-file-preset +``` ### Configure the preset @@ -110,6 +112,8 @@ Assuming that, as recommended, your `package.json` has the following script: Running the following generates the colocated `.generated.tsx` file. - +```sh npm2yarn +npm run generate +``` For more advanced configuration, please refer to the [`@graphql-codegen/near-operation-file-preset` documentation](/plugins/near-operation-file-preset). diff --git a/website/src/pages/docs/advanced/profiler.mdx b/website/src/pages/docs/advanced/profiler.mdx index 2523c074054..66604ffd54c 100644 --- a/website/src/pages/docs/advanced/profiler.mdx +++ b/website/src/pages/docs/advanced/profiler.mdx @@ -2,15 +2,13 @@ description: GraphQL Code Generator CLI provides a flag that enables the profiler mode. This allows you to identify performance bottlenecks in your codegen configuration. --- -import { PackageCmd } from '@theguild/components' - # GraphQL Code Generator Profiler GraphQL Code Generator CLI provides a flag that enables the profiler mode, as follows: - +```sh +npx graphql-code-generator --config graphql-codegen.ts --profile +``` GraphQL Code Generator operates as usual (generating your files) but also generates a `codegen-[timestamp].json` profile file. diff --git a/website/src/pages/docs/config-reference/codegen-config.mdx b/website/src/pages/docs/config-reference/codegen-config.mdx index cf0de2fa325..0e75e154da7 100644 --- a/website/src/pages/docs/config-reference/codegen-config.mdx +++ b/website/src/pages/docs/config-reference/codegen-config.mdx @@ -2,7 +2,7 @@ description: Learn how to configure GraphQL Code Generator to generate code from your GraphQL schema and documents. --- -import { PackageCmd, Callout } from '@theguild/components' +import { Callout } from '@theguild/components' # `codegen.ts` file @@ -14,7 +14,9 @@ The CLI automatically detects the defined config file and generates code accordi In addition, you can also define a path to your config file with the `--config` options, like so: - +```sh +npx graphql-code-generator --config ./path/to/codegen.ts +``` ## Configuration file format diff --git a/website/src/pages/docs/getting-started/index.mdx b/website/src/pages/docs/getting-started/index.mdx index 435bf3056f7..c728a668a61 100644 --- a/website/src/pages/docs/getting-started/index.mdx +++ b/website/src/pages/docs/getting-started/index.mdx @@ -3,7 +3,7 @@ title: Introduction description: GraphQL Code Generator is a plugin-based tool that helps you get the best out of your GraphQL stack. From back-end to front-end, GraphQL Code Generator automates the generation of typed Queries, Mutations and, Subscriptions for React, Vue, Angular, Next.js, Svelte, whether you are using Apollo Client, URQL or, React Query. --- -import { Tabs, Tab, Callout, PackageCmd } from '@theguild/components' +import { Tabs, Tab, Callout } from '@theguild/components' # Introduction to GraphQL Code Generator @@ -258,7 +258,10 @@ experience and stability of your stack. After installing 3 packages: - +```sh npm2yarn +npm i graphql +npm i -D typescript @graphql-codegen/cli @graphql-codegen/client-preset +``` and providing a simple configuration: diff --git a/website/src/pages/docs/getting-started/installation.mdx b/website/src/pages/docs/getting-started/installation.mdx index 04c9b7f795a..fdbdcfbadf7 100644 --- a/website/src/pages/docs/getting-started/installation.mdx +++ b/website/src/pages/docs/getting-started/installation.mdx @@ -3,13 +3,16 @@ title: Quick Start description: GraphQL Code Generator is a plugin-based tool that helps you get the best out of your GraphQL stack. From back-end to front-end, GraphQL Code Generator automates the generation of typed Queries, Mutations and, Subscriptions for React, Vue, Angular, Next.js, Svelte, whether you are using Apollo Client, URQL or, React Query. --- -import { Tabs, Tab, Callout, PackageCmd } from '@theguild/components' +import { Callout } from '@theguild/components' # Quick Start Make sure that you add both the `graphql` and `@graphql-codegen/cli` packages in your project's dependencies: - +```sh npm2yarn +npm i graphql +npm i -D typescript @graphql-codegen/cli +``` ## Global Installation @@ -37,12 +40,13 @@ Otherwise, you can start exploring the [plugins](/plugins) and [setting up them Once installed, GraphQL Code Generator CLI can help you configure your project based on some popular flows: - +```sh +npx graphql-code-generator init +``` + +```sh npm2yarn +npm install # install the chosen packages +``` Question by question, it will guide you through the whole process of setting up a schema, selecting and installing plugins, picking a destination to where your files are generated, and a lot more. diff --git a/website/src/pages/docs/guides/angular.mdx b/website/src/pages/docs/guides/angular.mdx index 15b482e3a73..68fbdd792c8 100644 --- a/website/src/pages/docs/guides/angular.mdx +++ b/website/src/pages/docs/guides/angular.mdx @@ -2,7 +2,7 @@ description: GraphQL Code Generator provides the @graphql-codegen/typescript-apollo-angular plugin that generates full-typed Apollo GraphQL services. --- -import { PackageCmd, Callout } from '@theguild/components' +import { Callout } from '@theguild/components' # Guide: Angular @@ -93,16 +93,14 @@ Just a few configuration steps are required to get those Apollo services: ### Install - +```sh npm2yarn +npm i graphql +npm i -D typescript +npm i -D @graphql-codegen/cli +npm i -D @graphql-codegen/typescript +npm i -D @graphql-codegen/typescript-operations +npm i -D @graphql-codegen/typescript-apollo-angular +``` ### Configure the plugin @@ -146,7 +144,9 @@ Assuming that, as recommended, your `package.json` has the following script: Running the following generates the `graphql/generated.ts` file. - +```sh npm2yarn +npm run generate +``` We can now update our code as follows: diff --git a/website/src/pages/docs/guides/api-testing.mdx b/website/src/pages/docs/guides/api-testing.mdx index 7b9b8ba25b2..59ab7e076b8 100644 --- a/website/src/pages/docs/guides/api-testing.mdx +++ b/website/src/pages/docs/guides/api-testing.mdx @@ -2,7 +2,7 @@ description: GraphQL Code Generator can generate typed results for your GraphQL operations. This tutorial uses GraphQL Yoga, but the practices are applicable to testing any GraphQL server. --- -import { Callout, PackageCmd } from '@theguild/components' +import { Callout } from '@theguild/components' # Guide: API Testing @@ -22,15 +22,15 @@ Refer to [GraphQL Codegen - Yoga example](https://github.com/dotansimha/graphql- Install the following dependencies: - +```sh npm2yarn +npm i graphql-yoga +``` Install the following development dependencies: - +```sh npm2yarn +npm i -D typescript ts-node @graphql-codegen/cli @graphql-codegen/client-preset jest @babel/core @babel/preset-env @babel/preset-typescript babel-jest @graphql-typed-document-node/core +``` ## Setup @@ -185,7 +185,7 @@ describe('Yoga Tests', () => { We can then generate the types for the referenced GraphQL operation using the GraphQL Code Generator CLI. -```bash +```sh npx graphql-codegen ``` @@ -193,7 +193,7 @@ As the command was run, the TypeScript errors within the test file should have d For convenience and writing tests it is recommended to run GraphQL Code Generator in watch mode. -```bash +```sh npx graphql-codegen --watch ``` diff --git a/website/src/pages/docs/guides/flutter-freezed.mdx b/website/src/pages/docs/guides/flutter-freezed.mdx index aa78116ee17..23425ad760e 100644 --- a/website/src/pages/docs/guides/flutter-freezed.mdx +++ b/website/src/pages/docs/guides/flutter-freezed.mdx @@ -2,13 +2,11 @@ description: Boost 🚀 your development of Dart/Flutter apps using a GraphQL API by generating models directly from your GraphQL Schema. --- -import { PackageCmd, Callout } from '@theguild/components' - # Guide: Dart/Flutter Boost 🚀 your development of Dart/Flutter apps using a GraphQL API by generating models directly from your GraphQL Schema. -Currently this plugin only generates [Freezed](https://pub.dev/packages/freezed) models but work is ongoing to make it way easier to work with GraphQL by scaffolding an entire GraphQL client with support for Queries, Mutations and Subscriptions taking huge inspiration from [KitQL](https://www.kitql.dev/) +Currently, this plugin only generates [Freezed](https://pub.dev/packages/freezed) models but work is ongoing to make it way easier to work with GraphQL by scaffolding an entire GraphQL client with support for Queries, Mutations and Subscriptions taking huge inspiration from [KitQL](https://www.kitql.dev/) ## TL;DR @@ -177,7 +175,10 @@ node_modules/ 6. Install the `graphql-code-generator` and the `flutter-freezed` plugin - +```sh npm2yarn +npm i graphql +npm i -D typescript @graphql-codegen/cli @graphql-codegen/flutter-freezed +``` 7. Create a `codegen.ts` file at the root of the Flutter project with the following: diff --git a/website/src/pages/docs/guides/graphql-modules.mdx b/website/src/pages/docs/guides/graphql-modules.mdx index f25944d8771..948338c7ee7 100644 --- a/website/src/pages/docs/guides/graphql-modules.mdx +++ b/website/src/pages/docs/guides/graphql-modules.mdx @@ -2,8 +2,6 @@ description: GraphQL Code Generator's `@graphql-codegen/graphql-modules-preset` plugin helps to generate resolvers type for each module of a GraphQL Modules GraphQL API. --- -import { PackageCmd } from '@theguild/components' - # Guide: GraphQL Modules GraphQL Code Generator's `@graphql-codegen/graphql-modules-preset` plugin helps to @@ -28,11 +26,9 @@ Just a few configuration steps are required to get the resolvers types generated ### Install - +```sh npm2yarn +npm i -D @graphql-codegen/graphql-modules-preset @graphql-codegen/typescript-resolvers @graphql-codegen/typescript +``` ### Configure the plugin @@ -79,7 +75,9 @@ Assuming that, as recommended, your `package.json` has the following script: Running the following generates the `graphql/generated.tsx` file. - +```sh npm2yarn +npm run generate +``` The User module resolvers would be: diff --git a/website/src/pages/docs/guides/graphql-server-apollo-yoga-with-server-preset.mdx b/website/src/pages/docs/guides/graphql-server-apollo-yoga-with-server-preset.mdx index 924fbf85217..7b7a4a8c89a 100644 --- a/website/src/pages/docs/guides/graphql-server-apollo-yoga-with-server-preset.mdx +++ b/website/src/pages/docs/guides/graphql-server-apollo-yoga-with-server-preset.mdx @@ -2,7 +2,7 @@ description: GraphQL Code Generator's server preset, `@eddeee888/gcg-typescript-resolver-files`, helps GraphQL APIs work at any scale by enforcing best practices such as type-safety and schema module conventions. --- -import { PackageCmd, Callout, Tabs, Tab } from '@theguild/components' +import { Callout, Tabs, Tab } from '@theguild/components' # Guide: GraphQL Yoga / Apollo Server with Server Preset @@ -64,7 +64,9 @@ type Book { #### 2. Install Server Preset - +```sh npm2yarn +npm i -D @graphql-codegen/cli @eddeee888/gcg-typescript-resolver-files +``` #### 3. Configure Codegen Config @@ -115,7 +117,9 @@ The server preset comes with these plugins built-in with stricter defaults. You Now, run codegen: - +```sh +npx graphql-codegen +``` This results in the following structure: @@ -273,7 +277,9 @@ The server preset automatically uses scalar implementation from `graphql-scalars First, install `graphql-scalars`: - +```sh npm2yarn +npm i graphql-scalars +``` Then, add a scalar to your schema: diff --git a/website/src/pages/docs/guides/graphql-server-apollo-yoga.mdx b/website/src/pages/docs/guides/graphql-server-apollo-yoga.mdx index d7745c11f6d..b675c6ac679 100644 --- a/website/src/pages/docs/guides/graphql-server-apollo-yoga.mdx +++ b/website/src/pages/docs/guides/graphql-server-apollo-yoga.mdx @@ -1,7 +1,7 @@ --- description: GraphQL Code Generator's `@graphql-codegen/typescript-resolvers` plugin generates TypeScript types for your GraphQL API's resolvers. --- -import { PackageCmd, Tabs, Tab, Callout } from '@theguild/components' +import { Tabs, Tab, Callout } from '@theguild/components' # Guide: GraphQL Yoga / Apollo Server @@ -61,7 +61,9 @@ type Query { **2. Install the `@graphql-codegen/typescript-resolvers` plugin** - +```sh npm2yarn +npm i -D @graphql-codegen/cli @graphql-codegen/typescript-resolvers @graphql-codegen/typescript +``` **3. Configure the plugin** @@ -118,7 +120,9 @@ Assuming that, as recommended, your `package.json` has the following script: Running the following generates the `graphql/generated.tsx` file. - +```sh npm2yarn +npm run generate +``` We can now write/migrate our GraphQL API implementation as follows: diff --git a/website/src/pages/docs/guides/react-vue.mdx b/website/src/pages/docs/guides/react-vue.mdx index 817649dde9b..767e28418f7 100644 --- a/website/src/pages/docs/guides/react-vue.mdx +++ b/website/src/pages/docs/guides/react-vue.mdx @@ -2,7 +2,7 @@ description: GraphQL Code Generator is a tool that generates code from your GraphQL schema and operations. It can generate TypeScript, Flow, Swift, Kotlin, and more. --- -import { Tabs, Tab, Callout, PackageCmd } from '@theguild/components' +import { Tabs, Tab, Callout } from '@theguild/components' # Guide: React and Vue diff --git a/website/src/pages/docs/guides/svelte.mdx b/website/src/pages/docs/guides/svelte.mdx index ff0342aa871..8b032628a2a 100644 --- a/website/src/pages/docs/guides/svelte.mdx +++ b/website/src/pages/docs/guides/svelte.mdx @@ -2,7 +2,7 @@ description: Generate typed code for SvelteKit and Apollo. GraphQL Code Generator and the community provide typed code generation for Apollo, SvelteKit _native_, and other clients. --- -import { Callout, PackageCmd } from '@theguild/components' +import { Callout } from '@theguild/components' # Guide: Svelte / Kit @@ -69,11 +69,9 @@ Just a few configuration steps are required to get observable Apollo queries wit **1. Install the `graphql-codegen-svelte-apollo` plugin** - +```sh npm2yarn +npm i -D graphql-codegen-svelte-apollo @graphql-codegen/typescript @graphql-codegen/typescript-operations @graphql-codegen/cli typescript graphql +``` **2. Configure the plugin** @@ -120,7 +118,9 @@ Assuming that, as recommended, your `package.json` has the following script: Running the following generates the `graphql/generated.ts` file. - +```sh npm2yarn +npm run generate +``` We can now update our code as follows: @@ -150,7 +150,10 @@ Just a few configuration steps are required to get SvelteKit stores fully typed **1. Install the plugin** - +```sh npm2yarn +npm i @kitql/client +npm i -D @kitql/graphql-codegen +``` **2. Configure the plugin** @@ -185,7 +188,9 @@ Assuming that, as recommended, your `package.json` has the following script: Running the following generates the `graphql/generated.ts` file. - +```sh npm2yarn +npm run generate +``` We can now update our code as follows: diff --git a/website/src/pages/docs/migration/from-0-18.mdx b/website/src/pages/docs/migration/from-0-18.mdx index cf1736206c7..809f30e4af2 100644 --- a/website/src/pages/docs/migration/from-0-18.mdx +++ b/website/src/pages/docs/migration/from-0-18.mdx @@ -2,7 +2,7 @@ description: Migrating to 1.0.0. What has changed? How to migrate? What are the new features? --- -import { Callout, Tabs, Tab, PackageCmd } from '@theguild/components' +import { Callout, Tabs, Tab } from '@theguild/components' # Migration to 1.0.0 @@ -127,7 +127,9 @@ It will generates for you types that are pointing to the new form of types. It s To use it, start by installing from NPM: - +```sh npm2yarn +npm i -D @graphql-codegen/typescript-compatibility +``` Then, add it to your codegen configuration: diff --git a/website/src/pages/docs/migration/graphql-cli.mdx b/website/src/pages/docs/migration/graphql-cli.mdx index c1a6e7f09dc..888fcd30942 100644 --- a/website/src/pages/docs/migration/graphql-cli.mdx +++ b/website/src/pages/docs/migration/graphql-cli.mdx @@ -1,4 +1,4 @@ -import { Callout, PackageCmd } from '@theguild/components' +import { Callout } from '@theguild/components' # GraphQL-CLI Deprecation diff --git a/website/src/pages/plugins/c-sharp/c-sharp-operations.mdx b/website/src/pages/plugins/c-sharp/c-sharp-operations.mdx index 8d76b695c32..b96f5462b97 100644 --- a/website/src/pages/plugins/c-sharp/c-sharp-operations.mdx +++ b/website/src/pages/plugins/c-sharp/c-sharp-operations.mdx @@ -5,9 +5,9 @@ description: C# operations plugin. Generates C# methods for the resolvers' signa import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) - + The `c-sharp-operations` plugin generates C# methods for the resolvers' signature. diff --git a/website/src/pages/plugins/dart/flutter-freezed.mdx b/website/src/pages/plugins/dart/flutter-freezed.mdx index 2ecdb8bdcce..b3fce60218a 100644 --- a/website/src/pages/plugins/dart/flutter-freezed.mdx +++ b/website/src/pages/plugins/dart/flutter-freezed.mdx @@ -11,6 +11,6 @@ export const getStaticProps = pluginGetStaticProps(__filename) The `flutter-freezed` plugin generates [Freezed] models using a GraphQL Schema. -Please refer the the [Flutter Freezed Guide](/docs/guides/flutter-freezed) for how to get started with this plugin. +Please refer the [Flutter Freezed Guide](/docs/guides/flutter-freezed) for how to get started with this plugin. diff --git a/website/src/pages/plugins/flow/flow-operations.mdx b/website/src/pages/plugins/flow/flow-operations.mdx index 74db4c783d0..d557131b08e 100644 --- a/website/src/pages/plugins/flow/flow-operations.mdx +++ b/website/src/pages/plugins/flow/flow-operations.mdx @@ -5,7 +5,7 @@ description: Flow Operations plugin. This plugin allows you to create and manage import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) - + diff --git a/website/src/pages/plugins/java/java-apollo-android.mdx b/website/src/pages/plugins/java/java-apollo-android.mdx index 9ad1bc56ec2..e1f717ca35b 100644 --- a/website/src/pages/plugins/java/java-apollo-android.mdx +++ b/website/src/pages/plugins/java/java-apollo-android.mdx @@ -3,7 +3,7 @@ title: java-apollo-android description: GraphQL Code Generator plugin for generating Java code for Apollo Android. --- -import { Callout, PackageCmd } from '@theguild/components' +import { Callout } from '@theguild/components' import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' export const getStaticProps = pluginGetStaticProps(__filename) @@ -19,7 +19,11 @@ To get started with these plugins and preset, make sure you have the following i Run the following in your Android project: - +```sh npm2yarn +npm init --yes +npm install graphql +npm install -D @graphql-codegen/cli @graphql-codegen/java-apollo-android +``` Then, create `codegen.yml` with the following configuration: diff --git a/website/src/pages/plugins/java/kotlin.mdx b/website/src/pages/plugins/java/kotlin.mdx index 29a4b640731..354a69c5a2e 100644 --- a/website/src/pages/plugins/java/kotlin.mdx +++ b/website/src/pages/plugins/java/kotlin.mdx @@ -3,7 +3,7 @@ title: kotlin description: Kotlin plugin for GraphQL Code Generator. Generate Kotlin classes for Enums and Input types. --- -import { Callout, PackageCmd } from '@theguild/components' +import { Callout } from '@theguild/components' import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' export const getStaticProps = pluginGetStaticProps(__filename) @@ -23,7 +23,11 @@ To get started with these plugins and preset, make sure you have the following i Run the following in your Android project: - +```sh npm2yarn +npm init --yes +npm install graphql +npm install -D @graphql-codegen/cli @graphql-codegen/kotlin +``` Then, create `codegen.yml` with the following configuration: diff --git a/website/src/pages/plugins/presets/preset-client.mdx b/website/src/pages/plugins/presets/preset-client.mdx index e5e607bbcb1..78e88cc3dac 100644 --- a/website/src/pages/plugins/presets/preset-client.mdx +++ b/website/src/pages/plugins/presets/preset-client.mdx @@ -3,10 +3,9 @@ title: client-preset description: The client preset provides typed GraphQL operations (Query, Mutation and Subscription) by perfectly integrating with your favorite GraphQL clients. --- -import { Callout, PackageCmd } from '@theguild/components' -import { PluginApiDocs, PluginHeader } from '@/components/plugin' +import { Callout, FileTree } from '@theguild/components' +import { PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -import { Tree, File, Folder } from '../../../components/file-tree' export const getStaticProps = pluginGetStaticProps(__filename) @@ -420,15 +419,15 @@ const config: CodegenConfig = { By enabling this option GraphQL Code Generator will generate an additional file `persisted-documents.json` within your artifacts location. - - - - - - - - - + + + + + + + + + This file contains a mapping of the document's hash to the document's content. @@ -530,7 +529,9 @@ thread '' panicked at 'failed to invoke plugin: failed to invoke plugin The SWC plugin is not bundled in the `client-preset` package, so you will need to install it separately: - +```sh npm2yarn +npm i -D @graphql-codegen/client-preset-swc-plugin +``` #### General diff --git a/website/src/pages/plugins/typescript/typed-document-node.mdx b/website/src/pages/plugins/typescript/typed-document-node.mdx index 2b7115219ef..4759f3604d9 100644 --- a/website/src/pages/plugins/typescript/typed-document-node.mdx +++ b/website/src/pages/plugins/typescript/typed-document-node.mdx @@ -6,14 +6,14 @@ description: Generate TypedDocumentNode for GraphQL operations. This plugin is a import { Callout } from '@theguild/components' import { PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) For new projects, we recommend using the [`client-preset`](/plugins/presets/preset-client), which uses `typed-document-node` under the hood. - + These plugins generate a ready-to-use `TypedDocumentNode` (a combination of pre-compiled `DocumentNode` and the TypeScript signature it represents). diff --git a/website/src/pages/plugins/typescript/typescript-apollo-angular.mdx b/website/src/pages/plugins/typescript/typescript-apollo-angular.mdx index f4d8923db0c..0f9ea8af33d 100644 --- a/website/src/pages/plugins/typescript/typescript-apollo-angular.mdx +++ b/website/src/pages/plugins/typescript/typescript-apollo-angular.mdx @@ -6,9 +6,9 @@ description: GraphQL Code Generator plugin for Angular services using Apollo Ang import { Callout } from '@theguild/components' import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) - + ## How to use? diff --git a/website/src/pages/plugins/typescript/typescript-apollo-next.mdx b/website/src/pages/plugins/typescript/typescript-apollo-next.mdx index 27f95290873..576dddbb9dc 100644 --- a/website/src/pages/plugins/typescript/typescript-apollo-next.mdx +++ b/website/src/pages/plugins/typescript/typescript-apollo-next.mdx @@ -5,9 +5,9 @@ description: Apollo Client plugin for GraphQL Code Generator. Generates React Ap import { PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) - + This plugin generates: diff --git a/website/src/pages/plugins/typescript/typescript-generic-sdk.mdx b/website/src/pages/plugins/typescript/typescript-generic-sdk.mdx index 990eb21823b..0c31bf13a0e 100644 --- a/website/src/pages/plugins/typescript/typescript-generic-sdk.mdx +++ b/website/src/pages/plugins/typescript/typescript-generic-sdk.mdx @@ -6,9 +6,9 @@ description: Generate TypeScript SDK for GraphQL APIs. Supports Apollo Client, R import { Callout } from '@theguild/components' import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) - + Make sure you have `typescript` plugin and `typescript-operations` as well in your configuration: diff --git a/website/src/pages/plugins/typescript/typescript-graphql-request.mdx b/website/src/pages/plugins/typescript/typescript-graphql-request.mdx index b7b533e359c..f8a38669a3f 100644 --- a/website/src/pages/plugins/typescript/typescript-graphql-request.mdx +++ b/website/src/pages/plugins/typescript/typescript-graphql-request.mdx @@ -6,9 +6,9 @@ description: GraphQL Code Generator plugin for generating TypeScript code using import { Callout } from '@theguild/components' import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) - + Make sure you have `typescript` plugin and `typescript-operations` as well in your configuration: diff --git a/website/src/pages/plugins/typescript/typescript-mongodb.mdx b/website/src/pages/plugins/typescript/typescript-mongodb.mdx index 3fad44b0ad0..dd02315ce2c 100644 --- a/website/src/pages/plugins/typescript/typescript-mongodb.mdx +++ b/website/src/pages/plugins/typescript/typescript-mongodb.mdx @@ -6,9 +6,9 @@ description: GraphQL Code Generator plugin for generating TypeScript types for M import { Callout } from '@theguild/components' import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { isDev: false }) - + Don't install this plugin as `devDependency`, because you need to import the directives from it. diff --git a/website/src/pages/plugins/typescript/typescript-msw.mdx b/website/src/pages/plugins/typescript/typescript-msw.mdx index 711bd33e559..f6be3fd4f3c 100644 --- a/website/src/pages/plugins/typescript/typescript-msw.mdx +++ b/website/src/pages/plugins/typescript/typescript-msw.mdx @@ -6,9 +6,9 @@ description: TypeScript-MSW - Mock GraphQL requests with MSW. import { Callout } from '@theguild/components' import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) - + Make sure you have `typescript` plugin and `typescript-operations` as well in your configuration: diff --git a/website/src/pages/plugins/typescript/typescript-nhost.mdx b/website/src/pages/plugins/typescript/typescript-nhost.mdx index 9fdbc21b54f..6ee1927dfd9 100644 --- a/website/src/pages/plugins/typescript/typescript-nhost.mdx +++ b/website/src/pages/plugins/typescript/typescript-nhost.mdx @@ -5,9 +5,9 @@ description: GraphQL Code Generator plugin for Nhost Typescript SDK. It generate import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) - + This plugin generates the schema for the [`Typescript Nhost SDK`](https://docs.nhost.io/reference/javascript). diff --git a/website/src/pages/plugins/typescript/typescript-oclif.mdx b/website/src/pages/plugins/typescript/typescript-oclif.mdx index efc820b2d03..03d41791c4c 100644 --- a/website/src/pages/plugins/typescript/typescript-oclif.mdx +++ b/website/src/pages/plugins/typescript/typescript-oclif.mdx @@ -5,9 +5,9 @@ description: Generate a Typescript Oclif CLI. This plugin is based on the offici import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) - + This plugin generates [`oclif`](https://npmjs.com/package/oclif) CLI commands. diff --git a/website/src/pages/plugins/typescript/typescript-operations.mdx b/website/src/pages/plugins/typescript/typescript-operations.mdx index 59c9f140e0c..7d3af01022a 100644 --- a/website/src/pages/plugins/typescript/typescript-operations.mdx +++ b/website/src/pages/plugins/typescript/typescript-operations.mdx @@ -5,7 +5,7 @@ description: Generate TypeScript operations from GraphQL queries. This plugin is import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) - + diff --git a/website/src/pages/plugins/typescript/typescript-react-apollo.mdx b/website/src/pages/plugins/typescript/typescript-react-apollo.mdx index 1f1099390f2..e71f218f89e 100644 --- a/website/src/pages/plugins/typescript/typescript-react-apollo.mdx +++ b/website/src/pages/plugins/typescript/typescript-react-apollo.mdx @@ -6,7 +6,7 @@ description: GraphQL Code Generator plugin for TypeScript and React Apollo. Gene import { Callout } from '@theguild/components' import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) @@ -16,7 +16,7 @@ We now recommend using the `client-preset` package for a **better developer expe - + ## Usage Example diff --git a/website/src/pages/plugins/typescript/typescript-react-query.mdx b/website/src/pages/plugins/typescript/typescript-react-query.mdx index aea4f7c3793..3c3bdcab9b2 100644 --- a/website/src/pages/plugins/typescript/typescript-react-query.mdx +++ b/website/src/pages/plugins/typescript/typescript-react-query.mdx @@ -6,7 +6,7 @@ description: GraphQL Code Generator plugin for generating React Query hooks. Sup import { Callout } from '@theguild/components' import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) @@ -16,7 +16,7 @@ We now recommend using the `client-preset` package for a **better developer expe - + ## Usage Examples diff --git a/website/src/pages/plugins/typescript/typescript-resolvers.mdx b/website/src/pages/plugins/typescript/typescript-resolvers.mdx index d7de0b87943..e024b9e20d9 100644 --- a/website/src/pages/plugins/typescript/typescript-resolvers.mdx +++ b/website/src/pages/plugins/typescript/typescript-resolvers.mdx @@ -6,9 +6,9 @@ description: Generate TypeScript resolvers types. Works with graphql-tools and a import { Callout } from '@theguild/components' import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) - + Watch [Episode #26 of `graphql.wtf`](https://graphql.wtf/episodes/26-type-safe-resolvers-with-graphql-code-generator) diff --git a/website/src/pages/plugins/typescript/typescript-rtk-query.mdx b/website/src/pages/plugins/typescript/typescript-rtk-query.mdx index 03450c5488d..21952d2d6db 100644 --- a/website/src/pages/plugins/typescript/typescript-rtk-query.mdx +++ b/website/src/pages/plugins/typescript/typescript-rtk-query.mdx @@ -6,9 +6,9 @@ description: RTK Query codegen plugin for GraphQL. Generates React Hooks for Gra import { Callout } from '@theguild/components' import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) - + ## Usage Examples diff --git a/website/src/pages/plugins/typescript/typescript-stencil-apollo.mdx b/website/src/pages/plugins/typescript/typescript-stencil-apollo.mdx index a0843aed272..8b713031e00 100644 --- a/website/src/pages/plugins/typescript/typescript-stencil-apollo.mdx +++ b/website/src/pages/plugins/typescript/typescript-stencil-apollo.mdx @@ -5,9 +5,9 @@ description: A Stencil plugin for generating TypeScript code from GraphQL querie import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) - + ## Usage Example diff --git a/website/src/pages/plugins/typescript/typescript-urql.mdx b/website/src/pages/plugins/typescript/typescript-urql.mdx index 2baa2e5a03e..fadc811d9f0 100644 --- a/website/src/pages/plugins/typescript/typescript-urql.mdx +++ b/website/src/pages/plugins/typescript/typescript-urql.mdx @@ -6,7 +6,7 @@ description: GraphQL codegen plugin for generating TypeScript code using urql. T import { Callout } from '@theguild/components' import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) @@ -16,7 +16,7 @@ We now recommend using the `client-preset` package for a **better developer expe - + ## Usage Example diff --git a/website/src/pages/plugins/typescript/typescript-vue-apollo-smart-ops.mdx b/website/src/pages/plugins/typescript/typescript-vue-apollo-smart-ops.mdx index f8945804921..89189b62791 100644 --- a/website/src/pages/plugins/typescript/typescript-vue-apollo-smart-ops.mdx +++ b/website/src/pages/plugins/typescript/typescript-vue-apollo-smart-ops.mdx @@ -5,9 +5,9 @@ description: A Vue plugin for Apollo GraphQL with smart operations. It generates import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) - + ## Examples diff --git a/website/src/pages/plugins/typescript/typescript-vue-apollo.mdx b/website/src/pages/plugins/typescript/typescript-vue-apollo.mdx index 53e734fd6eb..a5294925cb5 100644 --- a/website/src/pages/plugins/typescript/typescript-vue-apollo.mdx +++ b/website/src/pages/plugins/typescript/typescript-vue-apollo.mdx @@ -6,7 +6,7 @@ description: GraphQL Code Generator plugin for Vue Apollo. It generates Vue Apol import { Callout } from '@theguild/components' import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) @@ -16,7 +16,7 @@ We now recommend using the `client-preset` package for a **better developer expe - + diff --git a/website/src/pages/plugins/typescript/typescript-vue-urql.mdx b/website/src/pages/plugins/typescript/typescript-vue-urql.mdx index 5e21cec4bb4..29d8f5d3508 100644 --- a/website/src/pages/plugins/typescript/typescript-vue-urql.mdx +++ b/website/src/pages/plugins/typescript/typescript-vue-urql.mdx @@ -6,7 +6,7 @@ description: GraphQL Code Generator plugin for Vue.js and urql. It generates Vue import { Callout } from '@theguild/components' import { PluginApiDocs, PluginHeader } from '@/components/plugin' import { pluginGetStaticProps } from '@/lib/plugin-get-static-props' -export const getStaticProps = pluginGetStaticProps(__filename) +export const getStaticProps = pluginGetStaticProps(__filename, { hasOperationsNote: true }) @@ -16,7 +16,7 @@ We now recommend using the `client-preset` package for a **better developer expe - + ## Usage Example diff --git a/yarn.lock b/yarn.lock index af10951c849..4f748ae5e9a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1228,7 +1228,7 @@ resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== -"@braintree/sanitize-url@^6.0.0": +"@braintree/sanitize-url@^6.0.2": version "6.0.2" resolved "https://registry.yarnpkg.com/@braintree/sanitize-url/-/sanitize-url-6.0.2.tgz#6110f918d273fe2af8ea1c4398a88774bb9fc12f" integrity sha512-Tbsj02wXCbqGmzdnXNk0SOF19ChhRU70BsroIi4Pm6Ehp56in6vch94mfbdQ17DozxkL3BAVjbZ4Qc1a0HFRAg== @@ -3135,13 +3135,6 @@ "@jridgewell/resolve-uri" "3.1.0" "@jridgewell/sourcemap-codec" "1.4.14" -"@khanacademy/simple-markdown@^0.8.6": - version "0.8.6" - resolved "https://registry.yarnpkg.com/@khanacademy/simple-markdown/-/simple-markdown-0.8.6.tgz#9c9aef1f5ce2ce60292d13849165965a57c26f25" - integrity sha512-mAUlR9lchzfqunR89pFvNI51jQKsMpJeWYsYWw0DQcUXczn/T/V6510utgvm7X0N3zN87j1SvuKk8cMbl9IAFw== - dependencies: - "@types/react" ">=16.0.0" - "@lit-labs/ssr-dom-shim@^1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.0.0.tgz#427e19a2765681fd83411cd72c55ba80a01e0523" @@ -3739,10 +3732,10 @@ lodash.sortby "^4.7.0" remove-markdown "^0.5.0" -"@theguild/components@4.6.3": - version "4.6.3" - resolved "https://registry.yarnpkg.com/@theguild/components/-/components-4.6.3.tgz#a5453ee3637cc46155eb73bb7905bf793f72917a" - integrity sha512-zY5MS2xdpihlwwIQ6qhH1FCxXW76EWEVgf9Lb3R0vXecwuhxe18AH+JWQ+w1a3UlUB+KFvvkv6CbsjLNi23Zog== +"@theguild/components@5.0.0": + version "5.0.0" + resolved "https://registry.yarnpkg.com/@theguild/components/-/components-5.0.0.tgz#ac631f42ce042686a6a75e7aa46eac579255484a" + integrity sha512-DyFuxkuFSCHkfof48WbYe8Ak3OAxVBDAlZ9OBLlshmyEaBCg5ymfroTlyP0yCl6sXzaNnAspIG8Ql+ZeYnpLQg== dependencies: "@algolia/autocomplete-js" "1.9.2" "@algolia/autocomplete-plugin-algolia-insights" "1.9.2" @@ -3751,21 +3744,20 @@ "@giscus/react" "2.2.8" "@next/bundle-analyzer" "13.4.2" "@radix-ui/react-navigation-menu" "1.1.3" + "@theguild/remark-npm2yarn" "0.0.1" algoliasearch "4.17.1" clsx "1.2.1" focus-trap-react "10.1.4" fuzzy "^0.1.3" - mermaid "10.1.0" next-videos "1.5.0" - nextra "2.6.2" - nextra-theme-docs "2.6.2" + nextra "2.7.1" + nextra-theme-docs "2.7.1" react-instantsearch-dom "6.40.0" react-paginate "8.2.0" react-player "2.12.0" remark-mdx-disable-explicit-jsx "0.1.0" search-insights "2.6.0" semver "^7.3.8" - unist-util-visit "4.1.2" use-debounce "9.0.4" "@theguild/eslint-config@0.9.0": @@ -3797,6 +3789,22 @@ dependencies: prettier-plugin-sh "^0.12.8" +"@theguild/remark-mermaid@^0.0.1": + version "0.0.1" + resolved "https://registry.yarnpkg.com/@theguild/remark-mermaid/-/remark-mermaid-0.0.1.tgz#984f0f03bee4809cde02abbe4dbdbc192c806109" + integrity sha512-MbLi7CIn25r0MypN1yaTrvuQHBE/UXy/DKfVjaLlXx5ut4PasOwzGIJihzM4d9kqNADJKilHpQWcd66ivbvJEQ== + dependencies: + mermaid "10.2.1" + unist-util-visit "4.1.2" + +"@theguild/remark-npm2yarn@0.0.1": + version "0.0.1" + resolved "https://registry.yarnpkg.com/@theguild/remark-npm2yarn/-/remark-npm2yarn-0.0.1.tgz#fcfc3ba46324110e8dae5881ff7dab6e49abaf0b" + integrity sha512-pm++IBZoVU4yWgtXsMEsBXsGEtsJVNfP2eBCO6pp3T27dYy0dS/gevLkSnvkGKFKo2PHTfYvoEsk9vgxmZXs8Q== + dependencies: + npm-to-yarn "^2.0.0" + unist-util-visit "^4.1.2" + "@theguild/tailwind-config@0.2.1": version "0.2.1" resolved "https://registry.yarnpkg.com/@theguild/tailwind-config/-/tailwind-config-0.2.1.tgz#efb57366f42603e8eb462b050498f1bef8e449a2" @@ -4113,7 +4121,7 @@ dependencies: "@types/react" "*" -"@types/react@*", "@types/react@18.2.7", "@types/react@>=16", "@types/react@>=16.0.0", "@types/react@^18.0.15", "@types/react@^18.0.17", "@types/react@^18.0.27": +"@types/react@*", "@types/react@18.2.7", "@types/react@>=16", "@types/react@^18.0.15", "@types/react@^18.0.17", "@types/react@^18.0.27": version "18.2.7" resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.7.tgz#dfb4518042a3117a045b8c222316f83414a783b3" integrity sha512-ojrXpSH2XFCmHm7Jy3q44nXDyN54+EYKP2lBhJ2bqfyPj6cIUW/FZW/Csdia34NQgq7KYcAlHi5184m4X88+yw== @@ -6603,10 +6611,10 @@ domhandler@^4.2.0, domhandler@^4.3.1: dependencies: domelementtype "^2.2.0" -dompurify@2.4.5: - version "2.4.5" - resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-2.4.5.tgz#0e89a27601f0bad978f9a924e7a05d5d2cccdd87" - integrity sha512-jggCCd+8Iqp4Tsz0nIvpcb22InKEBrGz5dw3EQJMs8HPJDsKbFIO3STYtAvCfDx26Muevn1MHVI0XxjgFfmiSA== +dompurify@3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.0.3.tgz#4b115d15a091ddc96f232bcef668550a2f6f1430" + integrity sha512-axQ9zieHLnAnHh0sfAamKYiqXMJAVwu+LM/alQ7WDagoWessyWvMSFyW65CqF3owufNu8HBcE4cM2Vflu7YWcQ== domutils@^2.8.0: version "2.8.0" @@ -10083,6 +10091,24 @@ mdast-util-from-markdown@^1.0.0, mdast-util-from-markdown@^1.1.0: unist-util-stringify-position "^3.0.0" uvu "^0.5.0" +mdast-util-from-markdown@^1.3.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz#9421a5a247f10d31d2faed2a30df5ec89ceafcf0" + integrity sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww== + dependencies: + "@types/mdast" "^3.0.0" + "@types/unist" "^2.0.0" + decode-named-character-reference "^1.0.0" + mdast-util-to-string "^3.1.0" + micromark "^3.0.0" + micromark-util-decode-numeric-character-reference "^1.0.0" + micromark-util-decode-string "^1.0.0" + micromark-util-normalize-identifier "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + unist-util-stringify-position "^3.0.0" + uvu "^0.5.0" + mdast-util-gfm-autolink-literal@^1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-1.0.3.tgz#67a13abe813d7eba350453a5333ae1bc0ec05c06" @@ -10291,25 +10317,25 @@ merge2@^1.3.0, merge2@^1.4.1: resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== -mermaid@10.1.0: - version "10.1.0" - resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-10.1.0.tgz#6e40d5250174f4750ca6548e4ee00f6ae210855a" - integrity sha512-LYekSMNJygI1VnMizAPUddY95hZxOjwZxr7pODczILInO0dhQKuhXeu4sargtnuTwCilSuLS7Uiq/Qn7HTVrmA== +mermaid@10.2.1: + version "10.2.1" + resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-10.2.1.tgz#5183c956a64e1ed9cf0122cec6c6cb4900521966" + integrity sha512-gziwXLuAidRxPJxcA0LqPhToirGZ2J2gD+UrDEtGNeKb98BtcQde28UUcCUCmNplkQOwE7oynrzKcMe9i29AMw== dependencies: - "@braintree/sanitize-url" "^6.0.0" - "@khanacademy/simple-markdown" "^0.8.6" + "@braintree/sanitize-url" "^6.0.2" cytoscape "^3.23.0" cytoscape-cose-bilkent "^4.1.0" cytoscape-fcose "^2.1.0" d3 "^7.4.0" dagre-d3-es "7.0.10" dayjs "^1.11.7" - dompurify "2.4.5" + dompurify "3.0.3" elkjs "^0.8.2" khroma "^2.0.0" lodash-es "^4.17.21" + mdast-util-from-markdown "^1.3.0" non-layered-tidy-tree-layout "^2.0.2" - stylis "^4.1.2" + stylis "^4.1.3" ts-dedent "^2.2.0" uuid "^9.0.0" web-worker "^1.2.0" @@ -10946,10 +10972,10 @@ next@13.4.2, next@^13.3.0: "@next/swc-win32-ia32-msvc" "13.4.2" "@next/swc-win32-x64-msvc" "13.4.2" -nextra-theme-docs@2.6.2: - version "2.6.2" - resolved "https://registry.yarnpkg.com/nextra-theme-docs/-/nextra-theme-docs-2.6.2.tgz#fd3b19d775110a64b1e3277e76b1f571345ab6d1" - integrity sha512-yvoLSf6rzeD3f6GA/vQabgEkwX3db7DOy87XhtwmqVip2O2XsW3DoMDuU7rzlCtCUmrsC583vymhd3YS6KKehg== +nextra-theme-docs@2.7.1: + version "2.7.1" + resolved "https://registry.yarnpkg.com/nextra-theme-docs/-/nextra-theme-docs-2.7.1.tgz#d92827af26a2797bb59b347674115329074fd0da" + integrity sha512-C2DtoGH15q22t4r2JC89lvvajmnyiqsv3PaqHJpoHRlF2eR5giuLhZC5Oahb9AENRDcnUIUvqVi/8NlfiIM0yQ== dependencies: "@headlessui/react" "^1.7.10" "@popperjs/core" "^2.11.6" @@ -10964,14 +10990,15 @@ nextra-theme-docs@2.6.2: scroll-into-view-if-needed "^3.0.0" zod "^3.20.2" -nextra@2.6.2: - version "2.6.2" - resolved "https://registry.yarnpkg.com/nextra/-/nextra-2.6.2.tgz#02db284c0eb246e51a28e5ded2ab278031a69ae7" - integrity sha512-1Rxb04AB9eIieJZq7LQTlcTUdXZcJ4g5rjPBnQ2EGUA8d7jCBhGyQoqDuZtblr8lDTRjIeMnJXCZo2HxIAtWhA== +nextra@2.7.1: + version "2.7.1" + resolved "https://registry.yarnpkg.com/nextra/-/nextra-2.7.1.tgz#f3c01c45aa96e4a9285a3aee333e18e8e1d1bf71" + integrity sha512-qchTb7XSm357XAHf9MV9UlUSGolPEPE8iFnC/9KMwvhIoE4seyPYWMrnH84XraZCcGERvy9TrkFD30VE7Qv1MA== dependencies: "@mdx-js/mdx" "^2.3.0" "@mdx-js/react" "^2.3.0" "@napi-rs/simple-git" "^0.1.8" + "@theguild/remark-mermaid" "^0.0.1" clsx "^1.2.1" github-slugger "^2.0.0" graceful-fs "^4.2.11" @@ -11100,6 +11127,11 @@ npm-run-path@^5.1.0: dependencies: path-key "^4.0.0" +npm-to-yarn@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/npm-to-yarn/-/npm-to-yarn-2.0.0.tgz#59c9c615eca3ba8920308a0b418007b73ffc7492" + integrity sha512-/IbjiJ7vqbxfxJxAZ+QI9CCRjnIbvGxn5KQcSY9xHh0lMKc/Sgqmm7yp7KPmd6TiTZX5/KiSBKlkGHo59ucZbg== + nth-check@^2.0.1: version "2.1.1" resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" @@ -13294,11 +13326,16 @@ stylehacks@^5.1.1: browserslist "^4.21.4" postcss-selector-parser "^6.0.4" -stylis@4.1.3, stylis@^4.1.2: +stylis@4.1.3: version "4.1.3" resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.1.3.tgz#fd2fbe79f5fed17c55269e16ed8da14c84d069f7" integrity sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA== +stylis@^4.1.3: + version "4.2.0" + resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.2.0.tgz#79daee0208964c8fe695a42fcffcac633a211a51" + integrity sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw== + sucrase@^3.20.3: version "3.29.0" resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.29.0.tgz#3207c5bc1b980fdae1e539df3f8a8a518236da7d" @@ -13954,7 +13991,7 @@ unist-util-visit-parents@^5.0.0, unist-util-visit-parents@^5.1.1: "@types/unist" "^2.0.0" unist-util-is "^5.0.0" -unist-util-visit@4.1.2, unist-util-visit@^4.0.0, unist-util-visit@^4.1.0, unist-util-visit@^4.1.1: +unist-util-visit@4.1.2, unist-util-visit@^4.0.0, unist-util-visit@^4.1.0, unist-util-visit@^4.1.1, unist-util-visit@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-4.1.2.tgz#125a42d1eb876283715a3cb5cceaa531828c72e2" integrity sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg== From a4aa36c70713c5dba29e3566017562015ec0953b Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 15 Jun 2023 10:07:09 +0000 Subject: [PATCH 030/115] Update algolia-lockfile.json --- website/algolia-lockfile.json | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/website/algolia-lockfile.json b/website/algolia-lockfile.json index 82e796d5157..5222760489f 100644 --- a/website/algolia-lockfile.json +++ b/website/algolia-lockfile.json @@ -62,7 +62,7 @@ "objectID": "code-generator-docs-advanced-generated-files-colocation", "headings": [], "toc": [], - "content": "62392024f156f7553085f950caacc7e0", + "content": "60e5b7ef9f8b1dbc415d8032a4fe4066", "url": "https://www.the-guild.dev/graphql/codegen/docs/advanced/generated-files-colocation", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ @@ -100,7 +100,7 @@ "objectID": "code-generator-docs-advanced-profiler", "headings": [], "toc": [], - "content": "3d725354b0453bfcda941f19695df84d", + "content": "2342531076d713097dd19988fc828bb3", "url": "https://www.the-guild.dev/graphql/codegen/docs/advanced/profiler", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ @@ -188,7 +188,7 @@ "anchor": "other-ways-to-provide-configuration" } ], - "content": "7e99ff6e8022576d9ffb852940c0e99d", + "content": "561d573227c444ac3e85336e5320bd32", "url": "https://www.the-guild.dev/graphql/codegen/docs/config-reference/codegen-config", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ @@ -784,7 +784,7 @@ "anchor": "whats-next" } ], - "content": "26303fa0292148d462a55b09f9f9b448", + "content": "82055dee14825572c7a822dc949a1f3f", "url": "https://www.the-guild.dev/graphql/codegen/docs/getting-started/", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ @@ -913,7 +913,7 @@ "anchor": "setup" } ], - "content": "c74506f1b257355da489b79ad5c2e8ec", + "content": "5f0939f1e1658e4dda001a4441a934fd", "url": "https://www.the-guild.dev/graphql/codegen/docs/getting-started/installation", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ @@ -928,7 +928,7 @@ "objectID": "code-generator-docs-guides-angular", "headings": [], "toc": [], - "content": "029e5f23cd9ea7596fc1ebfc3d5a6e66", + "content": "57627d8c6159e4963321e8170eea4d79", "url": "https://www.the-guild.dev/graphql/codegen/docs/guides/angular", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ @@ -969,7 +969,7 @@ "anchor": "conclusion" } ], - "content": "c9e8728f9055522e7ddb15de5dd77d07", + "content": "deff01abbad15e72e8fc76a044813ef6", "url": "https://www.the-guild.dev/graphql/codegen/docs/guides/api-testing", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ @@ -1122,7 +1122,7 @@ "anchor": "prs-are-welcomed" } ], - "content": "14da20ed644f8794a9032d0a4222608d", + "content": "47833cb5c29f2a0fbb672bb7431e2846", "url": "https://www.the-guild.dev/graphql/codegen/docs/guides/flutter-freezed", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ @@ -1184,7 +1184,7 @@ "objectID": "code-generator-docs-guides-graphql-modules", "headings": [], "toc": [], - "content": "d1c6a35b8937c10e184530b2b3ac3dfa", + "content": "291581404cdc80a226709c436d0382a9", "url": "https://www.the-guild.dev/graphql/codegen/docs/guides/graphql-modules", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ @@ -1213,7 +1213,7 @@ "anchor": "guide" } ], - "content": "366611a38d0e75b3defe4a8b242581ce", + "content": "6c97a479e17caec5a933f654289f0fcc", "url": "https://www.the-guild.dev/graphql/codegen/docs/guides/graphql-server-apollo-yoga", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ @@ -1253,7 +1253,7 @@ "anchor": "guide" } ], - "content": "a773255ef12ac675044ddc5ab857bbcb", + "content": "5eb5e4dba32a1e5cc8eb49cee6a6804d", "url": "https://www.the-guild.dev/graphql/codegen/docs/guides/graphql-server-apollo-yoga-with-server-preset", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ @@ -1335,7 +1335,7 @@ "anchor": "sveltekit-native" } ], - "content": "86373a2ab06354cb823bfe38af72c7f6", + "content": "f003119c3c7baf6901e28b6865bea25d", "url": "https://www.the-guild.dev/graphql/codegen/docs/guides/svelte", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ @@ -1523,7 +1523,7 @@ "anchor": "breaking-changes--semver" } ], - "content": "e96c217959a89b68241a2988c1f0d549", + "content": "a170c38b7e6d781ffd1e81a5d83876f1", "url": "https://www.the-guild.dev/graphql/codegen/docs/migration/from-0-18", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ @@ -1588,7 +1588,7 @@ "objectID": "code-generator-plugins-dart-flutter-freezed", "headings": [], "toc": [], - "content": "dc2f4443fbd9442ea42ee7f66519dc86", + "content": "1a6ae08386e03357e8787dd1d5f649a1", "url": "https://www.the-guild.dev/graphql/codegen/plugins/dart/flutter-freezed", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ @@ -1684,7 +1684,7 @@ "anchor": "usage" } ], - "content": "b0758e94676aacc3ab80d400dbf97000", + "content": "38684e1ff8387d1ba088e2de951601b7", "url": "https://www.the-guild.dev/graphql/codegen/plugins/java/java-apollo-android", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ @@ -1722,7 +1722,7 @@ "anchor": "prepare-your-environment" } ], - "content": "cdd3cf0434bb8ddc9a7ab5a8d56aac4a", + "content": "b9344423318c73e77de5140ccda4f061", "url": "https://www.the-guild.dev/graphql/codegen/plugins/java/kotlin", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ From 456cb70c7d5a8fece87421af867046e644c92a2e Mon Sep 17 00:00:00 2001 From: gilgardosh Date: Thu, 15 Jun 2023 13:32:50 +0300 Subject: [PATCH 031/115] Docs minor enhancement --- .../other/visitor-plugin-common/src/base-resolvers-visitor.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/plugins/other/visitor-plugin-common/src/base-resolvers-visitor.ts b/packages/plugins/other/visitor-plugin-common/src/base-resolvers-visitor.ts index 6249447751d..123f9e6b3b6 100644 --- a/packages/plugins/other/visitor-plugin-common/src/base-resolvers-visitor.ts +++ b/packages/plugins/other/visitor-plugin-common/src/base-resolvers-visitor.ts @@ -128,7 +128,9 @@ export interface RawResolversConfig extends RawConfig { * export default config; * ``` * - * ## Custom Context Type + * ## Custom Context Type by Path + * + * Note that the path should be relative to the generated file. * * ```ts filename="codegen.ts" * import type { CodegenConfig } from '@graphql-codegen/cli'; From a509268237c4b4fbca1aa195d991ca11819586f8 Mon Sep 17 00:00:00 2001 From: TheGuildBot <59414373+theguild-bot@users.noreply.github.com> Date: Mon, 19 Jun 2023 10:30:14 +0300 Subject: [PATCH 032/115] Upcoming Release Changes (#9501) Co-authored-by: github-actions[bot] --- .changeset/empty-grapes-care.md | 11 ----------- .../persisted-documents-string-mode/package.json | 2 +- examples/persisted-documents/package.json | 2 +- examples/programmatic-typescript/package.json | 8 ++++---- examples/react/apollo-client-defer/package.json | 2 +- .../react/apollo-client-swc-plugin/package.json | 2 +- examples/react/apollo-client/package.json | 2 +- examples/react/http-executor/package.json | 2 +- examples/react/nextjs-swr/package.json | 2 +- examples/react/tanstack-react-query/package.json | 2 +- examples/react/urql/package.json | 2 +- examples/typescript-esm/package.json | 2 +- examples/typescript-graphql-request/package.json | 2 +- examples/typescript-resolvers/package.json | 4 ++-- examples/vite/vite-react-cts/package.json | 2 +- examples/vite/vite-react-mts/package.json | 2 +- examples/vite/vite-react-ts/package.json | 2 +- examples/vue/apollo-composable/package.json | 2 +- examples/vue/urql/package.json | 2 +- examples/vue/villus/package.json | 2 +- examples/yoga-tests/package.json | 2 +- .../other/visitor-plugin-common/CHANGELOG.md | 8 ++++++++ .../other/visitor-plugin-common/package.json | 2 +- .../typescript/document-nodes/CHANGELOG.md | 7 +++++++ .../typescript/document-nodes/package.json | 4 ++-- .../typescript/gql-tag-operations/CHANGELOG.md | 7 +++++++ .../typescript/gql-tag-operations/package.json | 4 ++-- .../plugins/typescript/operations/CHANGELOG.md | 12 ++++++++++++ .../plugins/typescript/operations/package.json | 6 +++--- .../plugins/typescript/resolvers/CHANGELOG.md | 12 ++++++++++++ .../plugins/typescript/resolvers/package.json | 6 +++--- .../typescript/typed-document-node/CHANGELOG.md | 7 +++++++ .../typescript/typed-document-node/package.json | 4 ++-- .../plugins/typescript/typescript/CHANGELOG.md | 11 +++++++++++ .../plugins/typescript/typescript/package.json | 4 ++-- packages/presets/client/CHANGELOG.md | 15 +++++++++++++++ packages/presets/client/package.json | 12 ++++++------ packages/presets/graphql-modules/CHANGELOG.md | 7 +++++++ packages/presets/graphql-modules/package.json | 4 ++-- website/package.json | 10 +++++----- 40 files changed, 138 insertions(+), 63 deletions(-) delete mode 100644 .changeset/empty-grapes-care.md diff --git a/.changeset/empty-grapes-care.md b/.changeset/empty-grapes-care.md deleted file mode 100644 index 9eb4d8b2b1f..00000000000 --- a/.changeset/empty-grapes-care.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -'@graphql-codegen/visitor-plugin-common': patch -'@graphql-codegen/typescript-operations': patch -'@graphql-codegen/typescript': patch -'@graphql-codegen/typescript-resolvers': patch -'@graphql-codegen/client-preset': patch ---- - -Revert default ID scalar input type to string - -We changed the ID Scalar input type from `string` to `string | number` in the latest major version of `typescript` plugin. This causes issues for server plugins (e.g. typescript-resolvers) that depends on `typescript` plugin. This is because the scalar type needs to be manually inverted on setup which is confusing. diff --git a/examples/persisted-documents-string-mode/package.json b/examples/persisted-documents-string-mode/package.json index 55c5edf1e66..1a8ba91e171 100644 --- a/examples/persisted-documents-string-mode/package.json +++ b/examples/persisted-documents-string-mode/package.json @@ -11,7 +11,7 @@ "jest": "28.1.3", "babel-jest": "28.1.3", "@graphql-codegen/cli": "4.0.1", - "@graphql-codegen/client-preset": "4.0.0", + "@graphql-codegen/client-preset": "4.0.1", "@babel/core": "7.21.8", "@babel/preset-env": "7.21.5", "@babel/preset-typescript": "7.21.5" diff --git a/examples/persisted-documents/package.json b/examples/persisted-documents/package.json index ecc44944e0a..04c5524794b 100644 --- a/examples/persisted-documents/package.json +++ b/examples/persisted-documents/package.json @@ -11,7 +11,7 @@ "jest": "28.1.3", "babel-jest": "28.1.3", "@graphql-codegen/cli": "4.0.1", - "@graphql-codegen/client-preset": "4.0.0", + "@graphql-codegen/client-preset": "4.0.1", "@babel/core": "7.21.8", "@babel/preset-env": "7.21.5", "@babel/preset-typescript": "7.21.5" diff --git a/examples/programmatic-typescript/package.json b/examples/programmatic-typescript/package.json index a2a22f2f829..e478a1eefae 100644 --- a/examples/programmatic-typescript/package.json +++ b/examples/programmatic-typescript/package.json @@ -12,10 +12,10 @@ "dependencies": { "@graphql-codegen/core": "4.0.0", "@graphql-codegen/plugin-helpers": "5.0.0", - "@graphql-codegen/typed-document-node": "5.0.0", - "@graphql-codegen/typescript": "4.0.0", - "@graphql-codegen/typescript-operations": "4.0.0", - "@graphql-codegen/typescript-resolvers": "4.0.0", + "@graphql-codegen/typed-document-node": "5.0.1", + "@graphql-codegen/typescript": "4.0.1", + "@graphql-codegen/typescript-operations": "4.0.1", + "@graphql-codegen/typescript-resolvers": "4.0.1", "@graphql-tools/graphql-file-loader": "8.0.0", "@graphql-tools/load": "8.0.0", "@graphql-tools/schema": "10.0.0", diff --git a/examples/react/apollo-client-defer/package.json b/examples/react/apollo-client-defer/package.json index 423badd8cd0..159e13696c0 100644 --- a/examples/react/apollo-client-defer/package.json +++ b/examples/react/apollo-client-defer/package.json @@ -12,7 +12,7 @@ }, "devDependencies": { "@graphql-codegen/cli": "^4.0.1", - "@graphql-codegen/client-preset": "^4.0.0", + "@graphql-codegen/client-preset": "^4.0.1", "@types/jest": "^27.5.2", "@types/node": "^18.11.18", "@types/react": "^18.0.15", diff --git a/examples/react/apollo-client-swc-plugin/package.json b/examples/react/apollo-client-swc-plugin/package.json index 0064abefd4b..8b712829ca9 100644 --- a/examples/react/apollo-client-swc-plugin/package.json +++ b/examples/react/apollo-client-swc-plugin/package.json @@ -9,7 +9,7 @@ }, "devDependencies": { "@graphql-codegen/client-preset-swc-plugin": "0.2.0", - "@graphql-codegen/client-preset": "^4.0.0", + "@graphql-codegen/client-preset": "^4.0.1", "@graphql-codegen/cli": "^4.0.1", "@vitejs/plugin-react-swc": "^3.3.0", "@types/react": "18.2.7", diff --git a/examples/react/apollo-client/package.json b/examples/react/apollo-client/package.json index 81521a0d499..5ba2dfbfd14 100644 --- a/examples/react/apollo-client/package.json +++ b/examples/react/apollo-client/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@graphql-codegen/cli": "^4.0.1", - "@graphql-codegen/client-preset": "^4.0.0", + "@graphql-codegen/client-preset": "^4.0.1", "@vitejs/plugin-react": "^3.1.0", "@types/jest": "^27.5.2", "@types/node": "^18.11.18", diff --git a/examples/react/http-executor/package.json b/examples/react/http-executor/package.json index ef8139aa2c9..cc0233c5a18 100644 --- a/examples/react/http-executor/package.json +++ b/examples/react/http-executor/package.json @@ -9,7 +9,7 @@ }, "devDependencies": { "@graphql-codegen/cli": "^4.0.1", - "@graphql-codegen/client-preset": "^4.0.0", + "@graphql-codegen/client-preset": "^4.0.1", "@vitejs/plugin-react": "^3.1.0", "@types/jest": "^27.5.2", "@types/node": "^18.11.18", diff --git a/examples/react/nextjs-swr/package.json b/examples/react/nextjs-swr/package.json index 5e889b89648..1fe4b21d089 100644 --- a/examples/react/nextjs-swr/package.json +++ b/examples/react/nextjs-swr/package.json @@ -20,7 +20,7 @@ }, "devDependencies": { "@graphql-codegen/cli": "^4.0.1", - "@graphql-codegen/client-preset": "^4.0.0", + "@graphql-codegen/client-preset": "^4.0.1", "@graphql-codegen/schema-ast": "4.0.0", "@graphql-codegen/client-preset-swc-plugin": "0.2.0", "@types/node": "^18.11.18", diff --git a/examples/react/tanstack-react-query/package.json b/examples/react/tanstack-react-query/package.json index 737c028e45d..5289b21ac6c 100644 --- a/examples/react/tanstack-react-query/package.json +++ b/examples/react/tanstack-react-query/package.json @@ -9,7 +9,7 @@ }, "devDependencies": { "@graphql-codegen/cli": "^4.0.1", - "@graphql-codegen/client-preset": "^4.0.0", + "@graphql-codegen/client-preset": "^4.0.1", "@vitejs/plugin-react": "^3.1.0", "@types/jest": "^27.5.2", "@types/node": "^18.11.18", diff --git a/examples/react/urql/package.json b/examples/react/urql/package.json index ab0d17e0804..1283e4dff36 100644 --- a/examples/react/urql/package.json +++ b/examples/react/urql/package.json @@ -11,7 +11,7 @@ "@types/react": "^18.0.17", "@types/react-dom": "^18.0.10", "@graphql-codegen/cli": "^4.0.1", - "@graphql-codegen/client-preset": "^4.0.0", + "@graphql-codegen/client-preset": "^4.0.1", "@vitejs/plugin-react": "^3.1.0", "typescript": "5.0.4", "serve": "14.2.0", diff --git a/examples/typescript-esm/package.json b/examples/typescript-esm/package.json index e732ef03ba8..429d0d622ae 100644 --- a/examples/typescript-esm/package.json +++ b/examples/typescript-esm/package.json @@ -4,7 +4,7 @@ "private": true, "devDependencies": { "@graphql-codegen/cli": "4.0.1", - "@graphql-codegen/client-preset": "4.0.0" + "@graphql-codegen/client-preset": "4.0.1" }, "dependencies": { "@graphql-typed-document-node/core": "3.2.0", diff --git a/examples/typescript-graphql-request/package.json b/examples/typescript-graphql-request/package.json index f9502248d6b..5ed290c1c9f 100644 --- a/examples/typescript-graphql-request/package.json +++ b/examples/typescript-graphql-request/package.json @@ -4,7 +4,7 @@ "private": true, "devDependencies": { "@graphql-codegen/cli": "4.0.1", - "@graphql-codegen/client-preset": "4.0.0", + "@graphql-codegen/client-preset": "4.0.1", "babel-jest": "28.1.3", "jest": "28.1.3" }, diff --git a/examples/typescript-resolvers/package.json b/examples/typescript-resolvers/package.json index d264da73090..de00b5834ff 100644 --- a/examples/typescript-resolvers/package.json +++ b/examples/typescript-resolvers/package.json @@ -4,8 +4,8 @@ "private": true, "devDependencies": { "@graphql-codegen/cli": "4.0.1", - "@graphql-codegen/typescript": "4.0.0", - "@graphql-codegen/typescript-resolvers": "4.0.0" + "@graphql-codegen/typescript": "4.0.1", + "@graphql-codegen/typescript-resolvers": "4.0.1" }, "dependencies": { "graphql": "16.6.0", diff --git a/examples/vite/vite-react-cts/package.json b/examples/vite/vite-react-cts/package.json index 4499731831d..a357e7533d5 100644 --- a/examples/vite/vite-react-cts/package.json +++ b/examples/vite/vite-react-cts/package.json @@ -22,7 +22,7 @@ }, "devDependencies": { "@graphql-codegen/cli": "4.0.1", - "@graphql-codegen/client-preset": "4.0.0", + "@graphql-codegen/client-preset": "4.0.1", "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", "cypress": "12.12.0", diff --git a/examples/vite/vite-react-mts/package.json b/examples/vite/vite-react-mts/package.json index bd5219d2b86..d30ae8b1b7a 100644 --- a/examples/vite/vite-react-mts/package.json +++ b/examples/vite/vite-react-mts/package.json @@ -22,7 +22,7 @@ }, "devDependencies": { "@graphql-codegen/cli": "4.0.1", - "@graphql-codegen/client-preset": "4.0.0", + "@graphql-codegen/client-preset": "4.0.1", "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", "cypress": "12.12.0", diff --git a/examples/vite/vite-react-ts/package.json b/examples/vite/vite-react-ts/package.json index 3c64b5e55d1..92954141efe 100644 --- a/examples/vite/vite-react-ts/package.json +++ b/examples/vite/vite-react-ts/package.json @@ -22,7 +22,7 @@ }, "devDependencies": { "@graphql-codegen/cli": "4.0.1", - "@graphql-codegen/client-preset": "4.0.0", + "@graphql-codegen/client-preset": "4.0.1", "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", "cypress": "12.12.0", diff --git a/examples/vue/apollo-composable/package.json b/examples/vue/apollo-composable/package.json index a025953d8fc..88d701e0c29 100644 --- a/examples/vue/apollo-composable/package.json +++ b/examples/vue/apollo-composable/package.json @@ -18,7 +18,7 @@ }, "devDependencies": { "@graphql-codegen/cli": "^4.0.1", - "@graphql-codegen/client-preset": "^4.0.0", + "@graphql-codegen/client-preset": "^4.0.1", "@vitejs/plugin-vue": "^4.0.0", "typescript": "^5.0.0", "vite": "^4.1.0", diff --git a/examples/vue/urql/package.json b/examples/vue/urql/package.json index c23df880f01..2af154fd78a 100644 --- a/examples/vue/urql/package.json +++ b/examples/vue/urql/package.json @@ -17,7 +17,7 @@ }, "devDependencies": { "@graphql-codegen/cli": "^4.0.1", - "@graphql-codegen/client-preset": "^4.0.0", + "@graphql-codegen/client-preset": "^4.0.1", "@vitejs/plugin-vue": "^4.0.0", "typescript": "^5.0.0", "vite": "^4.1.0", diff --git a/examples/vue/villus/package.json b/examples/vue/villus/package.json index 61af095d5e9..6862cc9eac9 100644 --- a/examples/vue/villus/package.json +++ b/examples/vue/villus/package.json @@ -17,7 +17,7 @@ }, "devDependencies": { "@graphql-codegen/cli": "^4.0.1", - "@graphql-codegen/client-preset": "^4.0.0", + "@graphql-codegen/client-preset": "^4.0.1", "@vitejs/plugin-vue": "^4.0.0", "typescript": "^5.0.0", "vite": "^4.1.0", diff --git a/examples/yoga-tests/package.json b/examples/yoga-tests/package.json index abb2512e3e7..7379941ac69 100644 --- a/examples/yoga-tests/package.json +++ b/examples/yoga-tests/package.json @@ -10,7 +10,7 @@ "jest": "28.1.3", "babel-jest": "28.1.3", "@graphql-codegen/cli": "4.0.1", - "@graphql-codegen/client-preset": "4.0.0", + "@graphql-codegen/client-preset": "4.0.1", "@babel/core": "7.21.8", "@babel/preset-env": "7.21.5", "@babel/preset-typescript": "7.21.5" diff --git a/packages/plugins/other/visitor-plugin-common/CHANGELOG.md b/packages/plugins/other/visitor-plugin-common/CHANGELOG.md index 8c6adc2230a..7e53d4c440a 100644 --- a/packages/plugins/other/visitor-plugin-common/CHANGELOG.md +++ b/packages/plugins/other/visitor-plugin-common/CHANGELOG.md @@ -1,5 +1,13 @@ # @graphql-codegen/visitor-plugin-common +## 4.0.1 + +### Patch Changes + +- [#9497](https://github.com/dotansimha/graphql-code-generator/pull/9497) [`2276708d0`](https://github.com/dotansimha/graphql-code-generator/commit/2276708d0ea2aab4942136923651226de4aabe5a) Thanks [@eddeee888](https://github.com/eddeee888)! - Revert default ID scalar input type to string + + We changed the ID Scalar input type from `string` to `string | number` in the latest major version of `typescript` plugin. This causes issues for server plugins (e.g. typescript-resolvers) that depends on `typescript` plugin. This is because the scalar type needs to be manually inverted on setup which is confusing. + ## 4.0.0 ### Major Changes diff --git a/packages/plugins/other/visitor-plugin-common/package.json b/packages/plugins/other/visitor-plugin-common/package.json index b2407c55956..502b497420a 100644 --- a/packages/plugins/other/visitor-plugin-common/package.json +++ b/packages/plugins/other/visitor-plugin-common/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-codegen/visitor-plugin-common", - "version": "4.0.0", + "version": "4.0.1", "license": "MIT", "repository": { "type": "git", diff --git a/packages/plugins/typescript/document-nodes/CHANGELOG.md b/packages/plugins/typescript/document-nodes/CHANGELOG.md index 9e927aa1850..4f16e0a2d46 100644 --- a/packages/plugins/typescript/document-nodes/CHANGELOG.md +++ b/packages/plugins/typescript/document-nodes/CHANGELOG.md @@ -1,5 +1,12 @@ # @graphql-codegen/typescript-document-nodes +## 4.0.1 + +### Patch Changes + +- Updated dependencies [[`2276708d0`](https://github.com/dotansimha/graphql-code-generator/commit/2276708d0ea2aab4942136923651226de4aabe5a)]: + - @graphql-codegen/visitor-plugin-common@4.0.1 + ## 4.0.0 ### Major Changes diff --git a/packages/plugins/typescript/document-nodes/package.json b/packages/plugins/typescript/document-nodes/package.json index 691539a047e..b9b42d75d85 100644 --- a/packages/plugins/typescript/document-nodes/package.json +++ b/packages/plugins/typescript/document-nodes/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-codegen/typescript-document-nodes", - "version": "4.0.0", + "version": "4.0.1", "description": "GraphQL Code Generator plugin for generating TypeScript modules with embedded GraphQL document nodes", "repository": { "type": "git", @@ -14,7 +14,7 @@ }, "dependencies": { "@graphql-codegen/plugin-helpers": "^5.0.0", - "@graphql-codegen/visitor-plugin-common": "4.0.0", + "@graphql-codegen/visitor-plugin-common": "4.0.1", "auto-bind": "~4.0.0", "tslib": "~2.5.0" }, diff --git a/packages/plugins/typescript/gql-tag-operations/CHANGELOG.md b/packages/plugins/typescript/gql-tag-operations/CHANGELOG.md index a6f72df57d6..c0117bf62c1 100644 --- a/packages/plugins/typescript/gql-tag-operations/CHANGELOG.md +++ b/packages/plugins/typescript/gql-tag-operations/CHANGELOG.md @@ -1,5 +1,12 @@ # @graphql-codegen/gql-tag-operations +## 4.0.1 + +### Patch Changes + +- Updated dependencies [[`2276708d0`](https://github.com/dotansimha/graphql-code-generator/commit/2276708d0ea2aab4942136923651226de4aabe5a)]: + - @graphql-codegen/visitor-plugin-common@4.0.1 + ## 4.0.0 ### Major Changes diff --git a/packages/plugins/typescript/gql-tag-operations/package.json b/packages/plugins/typescript/gql-tag-operations/package.json index 10c8b9d224b..f85a2750c95 100644 --- a/packages/plugins/typescript/gql-tag-operations/package.json +++ b/packages/plugins/typescript/gql-tag-operations/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-codegen/gql-tag-operations", - "version": "4.0.0", + "version": "4.0.1", "description": "GraphQL Code Generator plugin for generating a typed gql tag function", "repository": { "type": "git", @@ -18,7 +18,7 @@ "dependencies": { "@graphql-tools/utils": "^10.0.0", "@graphql-codegen/plugin-helpers": "^5.0.0", - "@graphql-codegen/visitor-plugin-common": "4.0.0", + "@graphql-codegen/visitor-plugin-common": "4.0.1", "auto-bind": "~4.0.0", "tslib": "~2.5.0" }, diff --git a/packages/plugins/typescript/operations/CHANGELOG.md b/packages/plugins/typescript/operations/CHANGELOG.md index f1b7389e2d8..0aa1743d4d9 100644 --- a/packages/plugins/typescript/operations/CHANGELOG.md +++ b/packages/plugins/typescript/operations/CHANGELOG.md @@ -1,5 +1,17 @@ # @graphql-codegen/typescript-operations +## 4.0.1 + +### Patch Changes + +- [#9497](https://github.com/dotansimha/graphql-code-generator/pull/9497) [`2276708d0`](https://github.com/dotansimha/graphql-code-generator/commit/2276708d0ea2aab4942136923651226de4aabe5a) Thanks [@eddeee888](https://github.com/eddeee888)! - Revert default ID scalar input type to string + + We changed the ID Scalar input type from `string` to `string | number` in the latest major version of `typescript` plugin. This causes issues for server plugins (e.g. typescript-resolvers) that depends on `typescript` plugin. This is because the scalar type needs to be manually inverted on setup which is confusing. + +- Updated dependencies [[`2276708d0`](https://github.com/dotansimha/graphql-code-generator/commit/2276708d0ea2aab4942136923651226de4aabe5a)]: + - @graphql-codegen/visitor-plugin-common@4.0.1 + - @graphql-codegen/typescript@4.0.1 + ## 4.0.0 ### Major Changes diff --git a/packages/plugins/typescript/operations/package.json b/packages/plugins/typescript/operations/package.json index 669478974ad..82c71b224bf 100644 --- a/packages/plugins/typescript/operations/package.json +++ b/packages/plugins/typescript/operations/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-codegen/typescript-operations", - "version": "4.0.0", + "version": "4.0.1", "description": "GraphQL Code Generator plugin for generating TypeScript types for GraphQL queries, mutations, subscriptions and fragments", "repository": { "type": "git", @@ -14,8 +14,8 @@ }, "dependencies": { "@graphql-codegen/plugin-helpers": "^5.0.0", - "@graphql-codegen/typescript": "^4.0.0", - "@graphql-codegen/visitor-plugin-common": "4.0.0", + "@graphql-codegen/typescript": "^4.0.1", + "@graphql-codegen/visitor-plugin-common": "4.0.1", "auto-bind": "~4.0.0", "tslib": "~2.5.0" }, diff --git a/packages/plugins/typescript/resolvers/CHANGELOG.md b/packages/plugins/typescript/resolvers/CHANGELOG.md index 0a088002ad2..e59d6277552 100644 --- a/packages/plugins/typescript/resolvers/CHANGELOG.md +++ b/packages/plugins/typescript/resolvers/CHANGELOG.md @@ -1,5 +1,17 @@ # @graphql-codegen/typescript-resolvers +## 4.0.1 + +### Patch Changes + +- [#9497](https://github.com/dotansimha/graphql-code-generator/pull/9497) [`2276708d0`](https://github.com/dotansimha/graphql-code-generator/commit/2276708d0ea2aab4942136923651226de4aabe5a) Thanks [@eddeee888](https://github.com/eddeee888)! - Revert default ID scalar input type to string + + We changed the ID Scalar input type from `string` to `string | number` in the latest major version of `typescript` plugin. This causes issues for server plugins (e.g. typescript-resolvers) that depends on `typescript` plugin. This is because the scalar type needs to be manually inverted on setup which is confusing. + +- Updated dependencies [[`2276708d0`](https://github.com/dotansimha/graphql-code-generator/commit/2276708d0ea2aab4942136923651226de4aabe5a)]: + - @graphql-codegen/visitor-plugin-common@4.0.1 + - @graphql-codegen/typescript@4.0.1 + ## 4.0.0 ### Major Changes diff --git a/packages/plugins/typescript/resolvers/package.json b/packages/plugins/typescript/resolvers/package.json index 8bd60448400..10833d3192f 100644 --- a/packages/plugins/typescript/resolvers/package.json +++ b/packages/plugins/typescript/resolvers/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-codegen/typescript-resolvers", - "version": "4.0.0", + "version": "4.0.1", "description": "GraphQL Code Generator plugin for generating TypeScript types for resolvers signature", "repository": { "type": "git", @@ -14,8 +14,8 @@ }, "dependencies": { "@graphql-codegen/plugin-helpers": "^5.0.0", - "@graphql-codegen/typescript": "^4.0.0", - "@graphql-codegen/visitor-plugin-common": "4.0.0", + "@graphql-codegen/typescript": "^4.0.1", + "@graphql-codegen/visitor-plugin-common": "4.0.1", "@graphql-tools/utils": "^10.0.0", "auto-bind": "~4.0.0", "tslib": "~2.5.0" diff --git a/packages/plugins/typescript/typed-document-node/CHANGELOG.md b/packages/plugins/typescript/typed-document-node/CHANGELOG.md index a69bae6b39e..3ed608ba947 100644 --- a/packages/plugins/typescript/typed-document-node/CHANGELOG.md +++ b/packages/plugins/typescript/typed-document-node/CHANGELOG.md @@ -1,5 +1,12 @@ # @graphql-codegen/typed-document-node +## 5.0.1 + +### Patch Changes + +- Updated dependencies [[`2276708d0`](https://github.com/dotansimha/graphql-code-generator/commit/2276708d0ea2aab4942136923651226de4aabe5a)]: + - @graphql-codegen/visitor-plugin-common@4.0.1 + ## 5.0.0 ### Major Changes diff --git a/packages/plugins/typescript/typed-document-node/package.json b/packages/plugins/typescript/typed-document-node/package.json index 06b2cadfad1..95664c6e3bd 100644 --- a/packages/plugins/typescript/typed-document-node/package.json +++ b/packages/plugins/typescript/typed-document-node/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-codegen/typed-document-node", - "version": "5.0.0", + "version": "5.0.1", "description": "GraphQL Code Generator plugin for generating ready-to-use TypedDocumentNode based on GraphQL operations", "repository": { "type": "git", @@ -18,7 +18,7 @@ "dependencies": { "change-case-all": "1.0.15", "@graphql-codegen/plugin-helpers": "^5.0.0", - "@graphql-codegen/visitor-plugin-common": "4.0.0", + "@graphql-codegen/visitor-plugin-common": "4.0.1", "auto-bind": "~4.0.0", "tslib": "~2.5.0" }, diff --git a/packages/plugins/typescript/typescript/CHANGELOG.md b/packages/plugins/typescript/typescript/CHANGELOG.md index 7d72af164e9..20024ac610f 100644 --- a/packages/plugins/typescript/typescript/CHANGELOG.md +++ b/packages/plugins/typescript/typescript/CHANGELOG.md @@ -1,5 +1,16 @@ # @graphql-codegen/typescript +## 4.0.1 + +### Patch Changes + +- [#9497](https://github.com/dotansimha/graphql-code-generator/pull/9497) [`2276708d0`](https://github.com/dotansimha/graphql-code-generator/commit/2276708d0ea2aab4942136923651226de4aabe5a) Thanks [@eddeee888](https://github.com/eddeee888)! - Revert default ID scalar input type to string + + We changed the ID Scalar input type from `string` to `string | number` in the latest major version of `typescript` plugin. This causes issues for server plugins (e.g. typescript-resolvers) that depends on `typescript` plugin. This is because the scalar type needs to be manually inverted on setup which is confusing. + +- Updated dependencies [[`2276708d0`](https://github.com/dotansimha/graphql-code-generator/commit/2276708d0ea2aab4942136923651226de4aabe5a)]: + - @graphql-codegen/visitor-plugin-common@4.0.1 + ## 4.0.0 ### Major Changes diff --git a/packages/plugins/typescript/typescript/package.json b/packages/plugins/typescript/typescript/package.json index 1200d544f79..8f8614bd8df 100644 --- a/packages/plugins/typescript/typescript/package.json +++ b/packages/plugins/typescript/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-codegen/typescript", - "version": "4.0.0", + "version": "4.0.1", "description": "GraphQL Code Generator plugin for generating TypeScript types", "repository": { "type": "git", @@ -15,7 +15,7 @@ "dependencies": { "@graphql-codegen/plugin-helpers": "^5.0.0", "@graphql-codegen/schema-ast": "^4.0.0", - "@graphql-codegen/visitor-plugin-common": "4.0.0", + "@graphql-codegen/visitor-plugin-common": "4.0.1", "auto-bind": "~4.0.0", "tslib": "~2.5.0" }, diff --git a/packages/presets/client/CHANGELOG.md b/packages/presets/client/CHANGELOG.md index 8c797e3a1f8..13dff15f8aa 100644 --- a/packages/presets/client/CHANGELOG.md +++ b/packages/presets/client/CHANGELOG.md @@ -1,5 +1,20 @@ # @graphql-codegen/client-preset +## 4.0.1 + +### Patch Changes + +- [#9497](https://github.com/dotansimha/graphql-code-generator/pull/9497) [`2276708d0`](https://github.com/dotansimha/graphql-code-generator/commit/2276708d0ea2aab4942136923651226de4aabe5a) Thanks [@eddeee888](https://github.com/eddeee888)! - Revert default ID scalar input type to string + + We changed the ID Scalar input type from `string` to `string | number` in the latest major version of `typescript` plugin. This causes issues for server plugins (e.g. typescript-resolvers) that depends on `typescript` plugin. This is because the scalar type needs to be manually inverted on setup which is confusing. + +- Updated dependencies [[`2276708d0`](https://github.com/dotansimha/graphql-code-generator/commit/2276708d0ea2aab4942136923651226de4aabe5a)]: + - @graphql-codegen/visitor-plugin-common@4.0.1 + - @graphql-codegen/typescript-operations@4.0.1 + - @graphql-codegen/typescript@4.0.1 + - @graphql-codegen/gql-tag-operations@4.0.1 + - @graphql-codegen/typed-document-node@5.0.1 + ## 4.0.0 ### Major Changes diff --git a/packages/presets/client/package.json b/packages/presets/client/package.json index e0019bac45e..70f41b9d6fa 100644 --- a/packages/presets/client/package.json +++ b/packages/presets/client/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-codegen/client-preset", - "version": "4.0.0", + "version": "4.0.1", "description": "GraphQL Code Generator preset for client.", "repository": { "type": "git", @@ -20,12 +20,12 @@ "@babel/helper-plugin-utils": "^7.20.2", "@babel/template": "^7.20.7", "@graphql-codegen/add": "^5.0.0", - "@graphql-codegen/typed-document-node": "^5.0.0", - "@graphql-codegen/typescript": "^4.0.0", - "@graphql-codegen/typescript-operations": "^4.0.0", - "@graphql-codegen/gql-tag-operations": "4.0.0", + "@graphql-codegen/typed-document-node": "^5.0.1", + "@graphql-codegen/typescript": "^4.0.1", + "@graphql-codegen/typescript-operations": "^4.0.1", + "@graphql-codegen/gql-tag-operations": "4.0.1", "@graphql-codegen/plugin-helpers": "^5.0.0", - "@graphql-codegen/visitor-plugin-common": "^4.0.0", + "@graphql-codegen/visitor-plugin-common": "^4.0.1", "@graphql-typed-document-node/core": "3.2.0", "@graphql-tools/documents": "^1.0.0", "@graphql-tools/utils": "^10.0.0", diff --git a/packages/presets/graphql-modules/CHANGELOG.md b/packages/presets/graphql-modules/CHANGELOG.md index fd0d13f423c..c18ceb17c9e 100644 --- a/packages/presets/graphql-modules/CHANGELOG.md +++ b/packages/presets/graphql-modules/CHANGELOG.md @@ -1,5 +1,12 @@ # @graphql-codegen/graphql-modules-preset +## 4.0.1 + +### Patch Changes + +- Updated dependencies [[`2276708d0`](https://github.com/dotansimha/graphql-code-generator/commit/2276708d0ea2aab4942136923651226de4aabe5a)]: + - @graphql-codegen/visitor-plugin-common@4.0.1 + ## 4.0.0 ### Major Changes diff --git a/packages/presets/graphql-modules/package.json b/packages/presets/graphql-modules/package.json index 7c761865468..58c427ed19c 100644 --- a/packages/presets/graphql-modules/package.json +++ b/packages/presets/graphql-modules/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-codegen/graphql-modules-preset", - "version": "4.0.0", + "version": "4.0.1", "description": "GraphQL Code Generator preset for modularized schema", "repository": { "type": "git", @@ -16,7 +16,7 @@ }, "dependencies": { "@graphql-codegen/plugin-helpers": "^5.0.0", - "@graphql-codegen/visitor-plugin-common": "4.0.0", + "@graphql-codegen/visitor-plugin-common": "4.0.1", "@graphql-tools/utils": "^10.0.0", "parse-filepath": "^1.0.2", "change-case-all": "1.0.15", diff --git a/website/package.json b/website/package.json index 23cdb483a4e..fc7df6c3e96 100644 --- a/website/package.json +++ b/website/package.json @@ -43,8 +43,8 @@ "@graphql-codegen/near-operation-file-preset": "2.5.0", "@graphql-codegen/schema-ast": "4.0.0", "@graphql-codegen/time": "5.0.0", - "@graphql-codegen/typed-document-node": "5.0.0", - "@graphql-codegen/typescript": "4.0.0", + "@graphql-codegen/typed-document-node": "5.0.1", + "@graphql-codegen/typescript": "4.0.1", "@graphql-codegen/typescript-apollo-angular": "3.5.6", "@graphql-codegen/typescript-apollo-client-helpers": "2.2.6", "@graphql-codegen/typescript-generic-sdk": "3.1.0", @@ -53,10 +53,10 @@ "@graphql-codegen/typescript-mongodb": "2.4.6", "@graphql-codegen/typescript-msw": "1.1.6", "@graphql-codegen/typescript-nhost": "0.0.1", - "@graphql-codegen/typescript-operations": "4.0.0", + "@graphql-codegen/typescript-operations": "4.0.1", "@graphql-codegen/typescript-react-apollo": "3.3.7", "@graphql-codegen/typescript-react-query": "4.1.0", - "@graphql-codegen/typescript-resolvers": "4.0.0", + "@graphql-codegen/typescript-resolvers": "4.0.1", "@graphql-codegen/typescript-rtk-query": "2.4.1", "@graphql-codegen/typescript-stencil-apollo": "2.3.6", "@graphql-codegen/typescript-type-graphql": "2.3.6", @@ -65,7 +65,7 @@ "@graphql-codegen/typescript-vue-apollo-smart-ops": "2.3.6", "@graphql-codegen/typescript-vue-urql": "2.3.6", "@graphql-codegen/urql-introspection": "2.2.1", - "@graphql-codegen/client-preset": "4.0.0", + "@graphql-codegen/client-preset": "4.0.1", "@mendable/search": "0.0.108", "@monaco-editor/react": "4.5.1", "@theguild/components": "5.0.0", From dd9c7e14872f48592e530ff0d646449a5cb722b4 Mon Sep 17 00:00:00 2001 From: Rudi Floren Date: Fri, 7 Jul 2023 11:22:51 +0200 Subject: [PATCH 033/115] Make @parcel/watcher optional (#9506) --- .changeset/five-spies-impress.md | 5 + packages/graphql-codegen-cli/package.json | 8 +- .../graphql-codegen-cli/src/utils/watcher.ts | 12 ++- website/route-lockfile.txt | 1 + .../getting-started/development-workflow.mdx | 9 ++ .../docs/getting-started/installation.mdx | 6 ++ website/src/pages/docs/migration/_meta.json | 3 +- website/src/pages/docs/migration/from-4-0.mdx | 95 +++++++++++++++++++ 8 files changed, 136 insertions(+), 3 deletions(-) create mode 100644 .changeset/five-spies-impress.md create mode 100644 website/src/pages/docs/migration/from-4-0.mdx diff --git a/.changeset/five-spies-impress.md b/.changeset/five-spies-impress.md new file mode 100644 index 00000000000..0c6a04e4640 --- /dev/null +++ b/.changeset/five-spies-impress.md @@ -0,0 +1,5 @@ +--- +'@graphql-codegen/cli': major +--- + +Make @parcel/watcher optional diff --git a/packages/graphql-codegen-cli/package.json b/packages/graphql-codegen-cli/package.json index 4795b7c04df..b8275e8950c 100644 --- a/packages/graphql-codegen-cli/package.json +++ b/packages/graphql-codegen-cli/package.json @@ -55,7 +55,6 @@ "@graphql-tools/prisma-loader": "^8.0.0", "@graphql-tools/url-loader": "^8.0.0", "@graphql-tools/utils": "^10.0.0", - "@parcel/watcher": "^2.1.0", "@whatwg-node/fetch": "^0.8.0", "chalk": "^4.1.0", "cosmiconfig": "^8.1.3", @@ -78,6 +77,7 @@ }, "devDependencies": { "@graphql-tools/merge": "9.0.0", + "@parcel/watcher": "^2.1.0", "@types/debounce": "1.2.1", "@types/inquirer": "8.2.6", "@types/is-glob": "4.0.2", @@ -92,8 +92,14 @@ "prettier": "2.8.8" }, "peerDependencies": { + "@parcel/watcher": "^2.1.0", "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" }, + "peerDependenciesMeta": { + "@parcel/watcher": { + "optional": true + } + }, "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "exports": { diff --git a/packages/graphql-codegen-cli/src/utils/watcher.ts b/packages/graphql-codegen-cli/src/utils/watcher.ts index 40c077a1f08..a03b9438465 100644 --- a/packages/graphql-codegen-cli/src/utils/watcher.ts +++ b/packages/graphql-codegen-cli/src/utils/watcher.ts @@ -60,7 +60,17 @@ export const createWatcher = ( const runWatcher = async (abortSignal: AbortSignal) => { const watchDirectory = await findHighestCommonDirectory(allAffirmativePatterns); - const parcelWatcher = await import('@parcel/watcher'); + // Try to load the parcel watcher, but don't fail if it's not available. + let parcelWatcher: typeof import('@parcel/watcher'); + try { + parcelWatcher = await import('@parcel/watcher'); + } catch (err) { + log( + `Parcel watcher not found. To use this feature, please make sure to provide @parcel/watcher as a peer dependency.` + ); + return; + } + debugLog(`[Watcher] Parcel watcher loaded...`); let isShutdown = false; diff --git a/website/route-lockfile.txt b/website/route-lockfile.txt index c70e4c729a0..a210f5f43ff 100644 --- a/website/route-lockfile.txt +++ b/website/route-lockfile.txt @@ -57,6 +57,7 @@ /docs/integrations/vscode /docs/migration/from-0-13 /docs/migration/from-0-18 +/docs/migration/from-4-0 /docs/plugins -> /plugins /docs/plugins/c-sharp -> /plugins/c-sharp/c-sharp-operations /docs/plugins/client-note -> /plugins diff --git a/website/src/pages/docs/getting-started/development-workflow.mdx b/website/src/pages/docs/getting-started/development-workflow.mdx index 628f2408c8a..a0885609b02 100644 --- a/website/src/pages/docs/getting-started/development-workflow.mdx +++ b/website/src/pages/docs/getting-started/development-workflow.mdx @@ -2,6 +2,8 @@ description: How to integrate GraphQL Code Generator into your development workflow. Learn how to run it in watch mode, or as part of your CI flow. --- +import { Callout } from '@theguild/components' + # Development workflow GraphQL Code Generator should be integrated as part of your development workflow. @@ -28,6 +30,13 @@ It's also helpful to run the codegen during your continuous integration flow and ## Watch Mode + +Watch mode was made optional to reduce install size in CI and prevent build errors in certain environments. + +To use watch mode, make sure to provide `@parcel/watcher` as a peer dependency. + + + If you wish to run the codegen in watch mode, you can specify `--watch` (or `-w`) when running it. You can either run it in a separate terminal session or use tools like [`concurrently`](https://npmjs.com/package/concurrently) to run two scripts at the same time: diff --git a/website/src/pages/docs/getting-started/installation.mdx b/website/src/pages/docs/getting-started/installation.mdx index fdbdcfbadf7..057c77f76ac 100644 --- a/website/src/pages/docs/getting-started/installation.mdx +++ b/website/src/pages/docs/getting-started/installation.mdx @@ -14,6 +14,12 @@ npm i graphql npm i -D typescript @graphql-codegen/cli ``` +If you want [watch mode](/docs/getting-started/development-workflow#watch-mode) support you need to add `@parcel/watcher` as well: + +```sh npm2yarn +npm i -D @parcel/watcher +``` + ## Global Installation diff --git a/website/src/pages/docs/migration/_meta.json b/website/src/pages/docs/migration/_meta.json index 6971ad2aafe..702e17b6a76 100644 --- a/website/src/pages/docs/migration/_meta.json +++ b/website/src/pages/docs/migration/_meta.json @@ -1,5 +1,6 @@ { "graphql-cli": "GraphQL-CLI Deprecation", "from-0-18": "v0.18 -> v1.0", - "from-0-13": "v0.13 -> v0.17" + "from-0-13": "v0.13 -> v0.17", + "from-4-0": "v4.0 -> v5.0" } diff --git a/website/src/pages/docs/migration/from-4-0.mdx b/website/src/pages/docs/migration/from-4-0.mdx new file mode 100644 index 00000000000..bf1005998b8 --- /dev/null +++ b/website/src/pages/docs/migration/from-4-0.mdx @@ -0,0 +1,95 @@ +--- +description: Migrating to 5.0.0. What has changed? How to migrate? What are the new features? +--- + +import { Tabs, Tab } from '@theguild/components' + +# Migration to 5.0.0 + +## What has changed? + +There was an outstanding issue with `@parcel/watcher` which prevented it to be installed in certain environments, or needed an extra amount of dependencies to be built. +This release focuses on improving the usage of `@graphql-codegen/cli` in those environments by making it an optional peer dependency. +NPM (or Yarn) will not emit errors when an optional peer dependency is missing. + +## How to migrate? + +To use `@graphql-codegen/cli`'s watch mode (based on @parcel/watcher) you need to provide it in a package that uses `@graphql-codegen/cli` from now on. + +Start by updating your package.json + + + +```json filename="package.json" +{ + "devDependencies": { + "@graphql-codegen/cli": "^1.0.0", + "@graphql-codegen/typescript": "^1.0.0", + "@graphql-codegen/typescript-operations": "^1.0.0" + } +} +``` + + + +```json filename="package.json" +{ + "devDependencies": { + "@graphql-codegen/cli": "^1.0.0", + "@graphql-codegen/typescript": "^1.0.0", + "@graphql-codegen/typescript-operations": "^1.0.0", + "@parcel/watcher": "^2.1.0" + } +} +``` + + + +If you had issues with `@parcel/watcher` previously, you can make NPM and Yarn silently discard any build errors, by using `optionalDependencies` instead: + + + +```json filename="package.json" +{ + "devDependencies": { + "@graphql-codegen/cli": "^1.0.0", + "@graphql-codegen/typescript": "^1.0.0", + "@graphql-codegen/typescript-operations": "^1.0.0" + } +} +``` + + + +```json filename="package.json" +{ + "devDependencies": { + "@graphql-codegen/cli": "^1.0.0", + "@graphql-codegen/typescript": "^1.0.0", + "@graphql-codegen/typescript-operations": "^1.0.0" + }, + "optionalDependencies": { + "@parcel/watcher": "^2.1.0" + } +} +``` + + + +```json filename="package.json" +{ + "devDependencies": { + "@graphql-codegen/cli": "^1.0.0", + "@graphql-codegen/typescript": "^1.0.0", + "@graphql-codegen/typescript-operations": "^1.0.0", + "@parcel/watcher": "^2.1.0" + }, + "dependenciesMeta": { + "@parcel/watcher": { + "optional": true + } + } +} +``` + + From 1986166ca27636d7959a0d3080aa5ccb67d122ea Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 7 Jul 2023 09:24:49 +0000 Subject: [PATCH 034/115] Update algolia-lockfile.json --- website/algolia-lockfile.json | 33 +++++++++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/website/algolia-lockfile.json b/website/algolia-lockfile.json index 5222760489f..0a886f495dc 100644 --- a/website/algolia-lockfile.json +++ b/website/algolia-lockfile.json @@ -825,7 +825,7 @@ "anchor": "whats-next" } ], - "content": "5be7e6a5267a8fb977b59acf5a74d959", + "content": "e288318aca1de59a387c3c28c3e0abe3", "url": "https://www.the-guild.dev/graphql/codegen/docs/getting-started/development-workflow", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ @@ -913,7 +913,7 @@ "anchor": "setup" } ], - "content": "5f0939f1e1658e4dda001a4441a934fd", + "content": "2c4dd42cec4906229f4594ede093a8d8", "url": "https://www.the-guild.dev/graphql/codegen/docs/getting-started/installation", "domain": "https://www.the-guild.dev/graphql/codegen", "hierarchy": [ @@ -1534,6 +1534,35 @@ "title": "v0.18 -> v1.0", "type": "Documentation" }, + { + "objectID": "code-generator-docs-migration-from-4-0", + "headings": [ + "What has changed?", + "How to migrate?" + ], + "toc": [ + { + "children": [], + "title": "What has changed?", + "anchor": "what-has-changed" + }, + { + "children": [], + "title": "How to migrate?", + "anchor": "how-to-migrate" + } + ], + "content": "d87f2c53e033b94b6ea23a998e6de095", + "url": "https://www.the-guild.dev/graphql/codegen/docs/migration/from-4-0", + "domain": "https://www.the-guild.dev/graphql/codegen", + "hierarchy": [ + "docs", + "migration" + ], + "source": "Code Generator", + "title": "v4.0 -> v5.0", + "type": "Documentation" + }, { "objectID": "code-generator-docs-migration-graphql-cli", "headings": [ From 706f643fceee6c666e96ae006fba98e76b589d37 Mon Sep 17 00:00:00 2001 From: Marat Dulin Date: Fri, 7 Jul 2023 11:25:17 +0200 Subject: [PATCH 035/115] docs: fix optimizeDocumentNode docs error (#9517) --- .../other/visitor-plugin-common/src/client-side-base-visitor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugins/other/visitor-plugin-common/src/client-side-base-visitor.ts b/packages/plugins/other/visitor-plugin-common/src/client-side-base-visitor.ts index bd2e001dbdf..5dbad1f4536 100644 --- a/packages/plugins/other/visitor-plugin-common/src/client-side-base-visitor.ts +++ b/packages/plugins/other/visitor-plugin-common/src/client-side-base-visitor.ts @@ -146,7 +146,7 @@ export interface RawClientSideBasePluginConfig extends RawConfig { documentMode?: DocumentMode; /** * @default true - * @description If you are using `documentNode: documentMode | documentNodeImportFragments`, you can set this to `true` to apply document optimizations for your GraphQL document. + * @description If you are using `documentMode: documentNode | documentNodeImportFragments`, you can set this to `true` to apply document optimizations for your GraphQL document. * This will remove all "loc" and "description" fields from the compiled document, and will remove all empty arrays (such as `directives`, `arguments` and `variableDefinitions`). */ optimizeDocumentNode?: boolean; From 27a471f319264c5f6c28d6a065e6c4469216c780 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 7 Jul 2023 12:25:39 +0300 Subject: [PATCH 036/115] chore(deps): update dependency vue-tsc to v1.8.1 (#9410) * chore(deps): update dependency vue-tsc to v1.8.1 * chore(dependencies): updated changesets for modified dependencies * chore(dependencies): updated changesets for modified dependencies --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] --- yarn.lock | 128 ++++++++++++++++++++++-------------------------------- 1 file changed, 52 insertions(+), 76 deletions(-) diff --git a/yarn.lock b/yarn.lock index 4f748ae5e9a..e1de0dd6453 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4353,49 +4353,26 @@ resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-4.2.3.tgz#ee0b6dfcc62fe65364e6395bf38fa2ba10bb44b6" integrity sha512-R6JDUfiZbJA9cMiguQ7jxALsgiprjBeHL5ikpXfJCH62pPHtI+JdJ5xWj6Ev73yXSlYl86+blXn1kZHQ7uElxw== -"@volar/language-core@1.4.1": - version "1.4.1" - resolved "https://registry.yarnpkg.com/@volar/language-core/-/language-core-1.4.1.tgz#66b5758252e35c4e5e71197ca7fa0344d306442c" - integrity sha512-EIY+Swv+TjsWpxOxujjMf1ZXqOjg9MT2VMXZ+1dKva0wD8W0L6EtptFFcCJdBbcKmGMFkr57Qzz9VNMWhs3jXQ== +"@volar/language-core@1.7.8": + version "1.7.8" + resolved "https://registry.yarnpkg.com/@volar/language-core/-/language-core-1.7.8.tgz#88e33fda749ecb1ecb28c031027d45e778b8cd5f" + integrity sha512-TPklg4c2e/f1xB/MGZEiQc3AWG+dH64ZfBlYjFB8nNaWJt4Z4k+IHBhmaP52APG+5PHFerwiWI9oF002RrRTPA== dependencies: - "@volar/source-map" "1.4.1" + "@volar/source-map" "1.7.8" -"@volar/source-map@1.4.1": - version "1.4.1" - resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-1.4.1.tgz#e3b561775c742508e5e1f28609a4787c98056715" - integrity sha512-bZ46ad72dsbzuOWPUtJjBXkzSQzzSejuR3CT81+GvTEI2E994D8JPXzM3tl98zyCNnjgs4OkRyliImL1dvJ5BA== +"@volar/source-map@1.7.8": + version "1.7.8" + resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-1.7.8.tgz#46710f1d1e948e8009993595b70670e3ee4bfc1d" + integrity sha512-g2dtC2kOghvfzMDWeODIo4HO1Ml4hxzPTZyAFDz+YhRF9HjZYJSCaWaVuPZ+z0kY+T2daOHYA10GdrWQ5q0teA== dependencies: - muggle-string "^0.2.2" + muggle-string "^0.3.1" -"@volar/typescript@1.4.1": - version "1.4.1" - resolved "https://registry.yarnpkg.com/@volar/typescript/-/typescript-1.4.1.tgz#a013419e6f029155e5467443f3ab72815da608b5" - integrity sha512-phTy6p9yG6bgMIKQWEeDOi/aeT0njZsb1a/G1mrEuDsLmAn24Le4gDwSsGNhea6Uhu+3gdpUZn2PmZXa+WG2iQ== - dependencies: - "@volar/language-core" "1.4.1" - -"@volar/vue-language-core@1.6.4": - version "1.6.4" - resolved "https://registry.yarnpkg.com/@volar/vue-language-core/-/vue-language-core-1.6.4.tgz#b1d695861945e63c65ff4e74609b07cb06772b7c" - integrity sha512-1o+cAtN2DIDNAX/HS8rkjZc8wTMTK+zCab/qtYbvEVlmokhZiDrQeoD9/l0Ug7YCNg+mVuMNHKNBY7pX8U2/Jw== - dependencies: - "@volar/language-core" "1.4.1" - "@volar/source-map" "1.4.1" - "@vue/compiler-dom" "^3.3.0-beta.3" - "@vue/compiler-sfc" "^3.3.0-beta.3" - "@vue/reactivity" "^3.3.0-beta.3" - "@vue/shared" "^3.3.0-beta.3" - minimatch "^9.0.0" - muggle-string "^0.2.2" - vue-template-compiler "^2.7.14" - -"@volar/vue-typescript@1.6.4": - version "1.6.4" - resolved "https://registry.yarnpkg.com/@volar/vue-typescript/-/vue-typescript-1.6.4.tgz#9358e2c7cdb5bdc3ef05926084be4bb6cd3673f7" - integrity sha512-qKwgP0KVQR/aaH/SN3AP7RB8NnXPWDn3tjyXP6IT6etxkDeZLBLsXWUD9KMak/RvV1DgbXDuz4F9yuZlbt29rA== +"@volar/typescript@1.7.8": + version "1.7.8" + resolved "https://registry.yarnpkg.com/@volar/typescript/-/typescript-1.7.8.tgz#6997b3c7637292a6dc6e4a3737e45f3c4e49ef12" + integrity sha512-NDcI5ZQcdr8kgxzMQrhSSWIM8Tl0MbMFrkvJPTjfm2rdAQZPFT8zv3LrEW9Fqh0e9z2YbCry7jr4a/GShBqeDA== dependencies: - "@volar/typescript" "1.4.1" - "@volar/vue-language-core" "1.6.4" + "@volar/language-core" "1.7.8" "@vue/apollo-composable@4.0.0-beta.4": version "4.0.0-beta.4" @@ -4416,7 +4393,7 @@ estree-walker "^2.0.2" source-map-js "^1.0.2" -"@vue/compiler-dom@3.3.4", "@vue/compiler-dom@^3.3.0-beta.3": +"@vue/compiler-dom@3.3.4", "@vue/compiler-dom@^3.3.0": version "3.3.4" resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz#f56e09b5f4d7dc350f981784de9713d823341151" integrity sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w== @@ -4424,7 +4401,7 @@ "@vue/compiler-core" "3.3.4" "@vue/shared" "3.3.4" -"@vue/compiler-sfc@3.3.4", "@vue/compiler-sfc@^3.3.0-beta.3": +"@vue/compiler-sfc@3.3.4": version "3.3.4" resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz#b19d942c71938893535b46226d602720593001df" integrity sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ== @@ -4448,6 +4425,20 @@ "@vue/compiler-dom" "3.3.4" "@vue/shared" "3.3.4" +"@vue/language-core@1.8.1": + version "1.8.1" + resolved "https://registry.yarnpkg.com/@vue/language-core/-/language-core-1.8.1.tgz#86b709f803bcc0cab84fd14677c0fb909154c562" + integrity sha512-pumv3k4J7P58hVh4YGRM9Qz3HaAr4TlFWM9bnVOkZ/2K9o2CK1lAP2y9Jw+Z0+mNL4F2uWQqnAPzj3seLyfpDA== + dependencies: + "@volar/language-core" "1.7.8" + "@volar/source-map" "1.7.8" + "@vue/compiler-dom" "^3.3.0" + "@vue/reactivity" "^3.3.0" + "@vue/shared" "^3.3.0" + minimatch "^9.0.0" + muggle-string "^0.3.1" + vue-template-compiler "^2.7.14" + "@vue/reactivity-transform@3.3.4": version "3.3.4" resolved "https://registry.yarnpkg.com/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz#52908476e34d6a65c6c21cd2722d41ed8ae51929" @@ -4459,7 +4450,7 @@ estree-walker "^2.0.2" magic-string "^0.30.0" -"@vue/reactivity@3.3.4", "@vue/reactivity@^3.3.0-beta.3": +"@vue/reactivity@3.3.4", "@vue/reactivity@^3.3.0": version "3.3.4" resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.3.4.tgz#a27a29c6cd17faba5a0e99fbb86ee951653e2253" integrity sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ== @@ -4491,11 +4482,19 @@ "@vue/compiler-ssr" "3.3.4" "@vue/shared" "3.3.4" -"@vue/shared@3.3.4", "@vue/shared@^3.3.0-beta.3": +"@vue/shared@3.3.4", "@vue/shared@^3.3.0": version "3.3.4" resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.3.4.tgz#06e83c5027f464eef861c329be81454bc8b70780" integrity sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ== +"@vue/typescript@1.8.1": + version "1.8.1" + resolved "https://registry.yarnpkg.com/@vue/typescript/-/typescript-1.8.1.tgz#2302f3cc8330e8dd91982eecd64d71ee11198cb0" + integrity sha512-nQpo55j/roie8heCfqyXHnyayqD5+p4/0fzfxH4ZuHf7NSBQS791PNv7ztp2CCOjnGAiaiCMdtC9rc6oriyPUg== + dependencies: + "@volar/typescript" "1.7.8" + "@vue/language-core" "1.8.1" + "@whatwg-node/events@0.0.2": version "0.0.2" resolved "https://registry.yarnpkg.com/@whatwg-node/events/-/events-0.0.2.tgz#7b7107268d2982fc7b7aff5ee6803c64018f84dd" @@ -10073,25 +10072,7 @@ mdast-util-from-markdown@^0.8.5: parse-entities "^2.0.0" unist-util-stringify-position "^2.0.0" -mdast-util-from-markdown@^1.0.0, mdast-util-from-markdown@^1.1.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.0.tgz#0214124154f26154a2b3f9d401155509be45e894" - integrity sha512-HN3W1gRIuN/ZW295c7zi7g9lVBllMgZE40RxCX37wrTPWXCWtpvOZdfnuK+1WNpvZje6XuJeI3Wnb4TJEUem+g== - dependencies: - "@types/mdast" "^3.0.0" - "@types/unist" "^2.0.0" - decode-named-character-reference "^1.0.0" - mdast-util-to-string "^3.1.0" - micromark "^3.0.0" - micromark-util-decode-numeric-character-reference "^1.0.0" - micromark-util-decode-string "^1.0.0" - micromark-util-normalize-identifier "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - unist-util-stringify-position "^3.0.0" - uvu "^0.5.0" - -mdast-util-from-markdown@^1.3.0: +mdast-util-from-markdown@^1.0.0, mdast-util-from-markdown@^1.1.0, mdast-util-from-markdown@^1.3.0: version "1.3.1" resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz#9421a5a247f10d31d2faed2a30df5ec89ceafcf0" integrity sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww== @@ -10870,10 +10851,10 @@ ms@2.1.2, ms@^2.1.1: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== -muggle-string@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/muggle-string/-/muggle-string-0.2.2.tgz#786aa53fea1652c61c6a59e1f839292b262bc72a" - integrity sha512-YVE1mIJ4VpUMqZObFndk9CJu6DBJR/GB13p3tXuNbwD4XExaI5EOuRl6BHeIDxIqXZVxSfAC+y6U1Z/IxCfKUg== +muggle-string@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/muggle-string/-/muggle-string-0.3.1.tgz#e524312eb1728c63dd0b2ac49e3282e6ed85963a" + integrity sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg== mute-stream@0.0.8: version "0.0.8" @@ -13326,16 +13307,11 @@ stylehacks@^5.1.1: browserslist "^4.21.4" postcss-selector-parser "^6.0.4" -stylis@4.1.3: +stylis@4.1.3, stylis@^4.1.3: version "4.1.3" resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.1.3.tgz#fd2fbe79f5fed17c55269e16ed8da14c84d069f7" integrity sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA== -stylis@^4.1.3: - version "4.2.0" - resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.2.0.tgz#79daee0208964c8fe695a42fcffcac633a211a51" - integrity sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw== - sucrase@^3.20.3: version "3.29.0" resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.29.0.tgz#3207c5bc1b980fdae1e539df3f8a8a518236da7d" @@ -14242,12 +14218,12 @@ vue-template-compiler@^2.7.14: he "^1.2.0" vue-tsc@^1.0.24: - version "1.6.4" - resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-1.6.4.tgz#ca4e931e9d3b9c55cd7a0f551bc0c9536edb6386" - integrity sha512-8rg8S1AhRJ6/WriENQEhyqH5wsxSxuD5iaD+QnkZn2ArZ6evlhqfBAIcVN8mfSyCV9DeLkQXkOSv/MaeJiJPAQ== + version "1.8.1" + resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-1.8.1.tgz#cdbc83ad7d1c80eac82e01917a58bc57e2debed2" + integrity sha512-GxBQrcb0Qvyrj1uZqnTXQyWbXdNDRY2MTa+r7ESgjhf+WzBSdxZfkS3KD/C3WhKYG+aN8hf44Hp5Gqzb6PehAA== dependencies: - "@volar/vue-language-core" "1.6.4" - "@volar/vue-typescript" "1.6.4" + "@vue/language-core" "1.8.1" + "@vue/typescript" "1.8.1" semver "^7.3.8" vue@^3.2.37, vue@^3.2.45: From 2e38f82e1a0cab21ba83cd085867e532cfee2899 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 7 Jul 2023 12:26:09 +0300 Subject: [PATCH 037/115] chore(deps): update babel monorepo (#9485) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .../package.json | 6 +- examples/persisted-documents/package.json | 6 +- examples/yoga-tests/package.json | 6 +- package.json | 6 +- yarn.lock | 1473 +++++++++-------- 5 files changed, 777 insertions(+), 720 deletions(-) diff --git a/examples/persisted-documents-string-mode/package.json b/examples/persisted-documents-string-mode/package.json index 1a8ba91e171..a76c92b8700 100644 --- a/examples/persisted-documents-string-mode/package.json +++ b/examples/persisted-documents-string-mode/package.json @@ -12,9 +12,9 @@ "babel-jest": "28.1.3", "@graphql-codegen/cli": "4.0.1", "@graphql-codegen/client-preset": "4.0.1", - "@babel/core": "7.21.8", - "@babel/preset-env": "7.21.5", - "@babel/preset-typescript": "7.21.5" + "@babel/core": "7.22.8", + "@babel/preset-env": "7.22.7", + "@babel/preset-typescript": "7.22.5" }, "scripts": { "test": "jest", diff --git a/examples/persisted-documents/package.json b/examples/persisted-documents/package.json index 04c5524794b..070bd5cc064 100644 --- a/examples/persisted-documents/package.json +++ b/examples/persisted-documents/package.json @@ -12,9 +12,9 @@ "babel-jest": "28.1.3", "@graphql-codegen/cli": "4.0.1", "@graphql-codegen/client-preset": "4.0.1", - "@babel/core": "7.21.8", - "@babel/preset-env": "7.21.5", - "@babel/preset-typescript": "7.21.5" + "@babel/core": "7.22.8", + "@babel/preset-env": "7.22.7", + "@babel/preset-typescript": "7.22.5" }, "scripts": { "test": "jest", diff --git a/examples/yoga-tests/package.json b/examples/yoga-tests/package.json index 7379941ac69..e049b99f3e6 100644 --- a/examples/yoga-tests/package.json +++ b/examples/yoga-tests/package.json @@ -11,9 +11,9 @@ "babel-jest": "28.1.3", "@graphql-codegen/cli": "4.0.1", "@graphql-codegen/client-preset": "4.0.1", - "@babel/core": "7.21.8", - "@babel/preset-env": "7.21.5", - "@babel/preset-typescript": "7.21.5" + "@babel/core": "7.22.8", + "@babel/preset-env": "7.22.7", + "@babel/preset-typescript": "7.22.5" }, "scripts": { "test": "jest", diff --git a/package.json b/package.json index a19008db8ca..1b98172fa92 100644 --- a/package.json +++ b/package.json @@ -43,9 +43,9 @@ "examples/**/*" ], "devDependencies": { - "@babel/core": "7.21.8", - "@babel/preset-env": "7.21.5", - "@babel/preset-typescript": "7.21.5", + "@babel/core": "7.22.8", + "@babel/preset-env": "7.22.7", + "@babel/preset-typescript": "7.22.5", "@changesets/changelog-github": "0.4.8", "@changesets/cli": "2.26.1", "@theguild/eslint-config": "0.9.0", diff --git a/yarn.lock b/yarn.lock index e1de0dd6453..f61eae1ed5d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -226,294 +226,277 @@ dependencies: node-fetch "^2.6.1" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.21.4": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.21.4.tgz#d0fa9e4413aca81f2b23b9442797bda1826edb39" - integrity sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658" + integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ== dependencies: - "@babel/highlight" "^7.18.6" + "@babel/highlight" "^7.22.5" -"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.21.5": - version "7.21.7" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.7.tgz#61caffb60776e49a57ba61a88f02bedd8714f6bc" - integrity sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA== +"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.5", "@babel/compat-data@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.6.tgz#15606a20341de59ba02cd2fcc5086fcbe73bf544" + integrity sha512-29tfsWTq2Ftu7MXmimyC0C5FDZv5DYxOZkh3XD3+QW4V/BYuv/LyEsjj3c0hqedEaDt6DBfDvexMKU8YevdqFg== -"@babel/core@7.21.8", "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.14.0", "@babel/core@^7.20.12": - version "7.21.8" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.8.tgz#2a8c7f0f53d60100ba4c32470ba0281c92aa9aa4" - integrity sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ== +"@babel/core@7.22.8", "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.14.0", "@babel/core@^7.20.12": + version "7.22.8" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.8.tgz#386470abe884302db9c82e8e5e87be9e46c86785" + integrity sha512-75+KxFB4CZqYRXjx4NlR4J7yGvKumBuZTmV4NV6v09dVXXkuYVYLT68N6HCzLvfJ+fWCxQsntNzKwwIXL4bHnw== dependencies: "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.21.4" - "@babel/generator" "^7.21.5" - "@babel/helper-compilation-targets" "^7.21.5" - "@babel/helper-module-transforms" "^7.21.5" - "@babel/helpers" "^7.21.5" - "@babel/parser" "^7.21.8" - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" + "@babel/code-frame" "^7.22.5" + "@babel/generator" "^7.22.7" + "@babel/helper-compilation-targets" "^7.22.6" + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helpers" "^7.22.6" + "@babel/parser" "^7.22.7" + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.8" + "@babel/types" "^7.22.5" + "@nicolo-ribaudo/semver-v6" "^6.3.3" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.2" json5 "^2.2.2" - semver "^6.3.0" -"@babel/generator@^7.14.0", "@babel/generator@^7.18.13", "@babel/generator@^7.21.5", "@babel/generator@^7.7.2": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.5.tgz#c0c0e5449504c7b7de8236d99338c3e2a340745f" - integrity sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w== +"@babel/generator@^7.14.0", "@babel/generator@^7.18.13", "@babel/generator@^7.22.7", "@babel/generator@^7.7.2": + version "7.22.7" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.7.tgz#a6b8152d5a621893f2c9dacf9a4e286d520633d5" + integrity sha512-p+jPjMG+SI8yvIaxGgeW24u7q9+5+TGpZh8/CuB7RhBKd7RCy8FayNEFNNKrNK/eUcY/4ExQqLmyrvBXKsIcwQ== dependencies: - "@babel/types" "^7.21.5" + "@babel/types" "^7.22.5" "@jridgewell/gen-mapping" "^0.3.2" "@jridgewell/trace-mapping" "^0.3.17" jsesc "^2.5.1" -"@babel/helper-annotate-as-pure@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" - integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA== +"@babel/helper-annotate-as-pure@^7.18.6", "@babel/helper-annotate-as-pure@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" + integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== dependencies: - "@babel/types" "^7.18.6" + "@babel/types" "^7.22.5" -"@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz#acd4edfd7a566d1d51ea975dff38fd52906981bb" - integrity sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw== +"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz#a3f4758efdd0190d8927fcffd261755937c71878" + integrity sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw== dependencies: - "@babel/helper-explode-assignable-expression" "^7.18.6" - "@babel/types" "^7.18.9" + "@babel/types" "^7.22.5" -"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz#631e6cc784c7b660417421349aac304c94115366" - integrity sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w== +"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.6.tgz#e30d61abe9480aa5a83232eb31c111be922d2e52" + integrity sha512-534sYEqWD9VfUm3IPn2SLcH4Q3P86XL+QvqdC7ZsFrzyyPF3T4XGiVghF6PTYNdWg6pXuoqXxNQAhbYeEInTzA== dependencies: - "@babel/compat-data" "^7.21.5" - "@babel/helper-validator-option" "^7.21.0" - browserslist "^4.21.3" + "@babel/compat-data" "^7.22.6" + "@babel/helper-validator-option" "^7.22.5" + "@nicolo-ribaudo/semver-v6" "^6.3.3" + browserslist "^4.21.9" lru-cache "^5.1.1" - semver "^6.3.0" -"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.0.tgz#64f49ecb0020532f19b1d014b03bccaa1ab85fb9" - integrity sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-function-name" "^7.21.0" - "@babel/helper-member-expression-to-functions" "^7.21.0" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/helper-replace-supers" "^7.20.7" - "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" - "@babel/helper-split-export-declaration" "^7.18.6" - -"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.20.5": - version "7.20.5" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz#5ea79b59962a09ec2acf20a963a01ab4d076ccca" - integrity sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - regexpu-core "^5.2.1" - -"@babel/helper-define-polyfill-provider@^0.3.3": - version "0.3.3" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz#8612e55be5d51f0cd1f36b4a5a83924e89884b7a" - integrity sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww== +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.22.5": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.6.tgz#58564873c889a6fea05a538e23f9f6d201f10950" + integrity sha512-iwdzgtSiBxF6ni6mzVnZCF3xt5qE6cEA0J7nFt8QOAWZ0zjCFceEgpn3vtb2V7WFR6QzP2jmIFOHMTRo7eNJjQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-member-expression-to-functions" "^7.22.5" + "@babel/helper-optimise-call-expression" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@nicolo-ribaudo/semver-v6" "^6.3.3" + +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.6.tgz#87afd63012688ad792de430ceb3b6dc28e4e7a40" + integrity sha512-nBookhLKxAWo/TUCmhnaEJyLz2dekjQvv5SRpE9epWQBcpedWLKt8aZdsuT9XV5ovzR3fENLjRXVT0GsSlGGhA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@nicolo-ribaudo/semver-v6" "^6.3.3" + regexpu-core "^5.3.1" + +"@babel/helper-define-polyfill-provider@^0.4.1": + version "0.4.1" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.1.tgz#af1429c4a83ac316a6a8c2cc8ff45cb5d2998d3a" + integrity sha512-kX4oXixDxG197yhX+J3Wp+NpL2wuCFjWQAr6yX2jtCnflK9ulMI51ULFGIrWiX1jGfvAxdHp+XQCcP2bZGPs9A== dependencies: - "@babel/helper-compilation-targets" "^7.17.7" - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-compilation-targets" "^7.22.6" + "@babel/helper-plugin-utils" "^7.22.5" debug "^4.1.1" lodash.debounce "^4.0.8" resolve "^1.14.2" - semver "^6.1.2" - -"@babel/helper-environment-visitor@^7.18.9", "@babel/helper-environment-visitor@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz#c769afefd41d171836f7cb63e295bedf689d48ba" - integrity sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ== - -"@babel/helper-explode-assignable-expression@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz#41f8228ef0a6f1a036b8dfdfec7ce94f9a6bc096" - integrity sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0", "@babel/helper-function-name@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz#d552829b10ea9f120969304023cd0645fa00b1b4" - integrity sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg== - dependencies: - "@babel/template" "^7.20.7" - "@babel/types" "^7.21.0" - -"@babel/helper-hoist-variables@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" - integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-member-expression-to-functions@^7.20.7", "@babel/helper-member-expression-to-functions@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.0.tgz#319c6a940431a133897148515877d2f3269c3ba5" - integrity sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q== - dependencies: - "@babel/types" "^7.21.0" - -"@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.18.6", "@babel/helper-module-imports@^7.21.4": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz#ac88b2f76093637489e718a90cec6cf8a9b029af" - integrity sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg== - dependencies: - "@babel/types" "^7.21.4" - -"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz#d937c82e9af68d31ab49039136a222b17ac0b420" - integrity sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw== - dependencies: - "@babel/helper-environment-visitor" "^7.21.5" - "@babel/helper-module-imports" "^7.21.4" - "@babel/helper-simple-access" "^7.21.5" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/helper-validator-identifier" "^7.19.1" - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" - -"@babel/helper-optimise-call-expression@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe" - integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.21.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz#345f2377d05a720a4e5ecfa39cbf4474a4daed56" - integrity sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg== - -"@babel/helper-remap-async-to-generator@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519" - integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-wrap-function" "^7.18.9" - "@babel/types" "^7.18.9" - -"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.20.7": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz#243ecd2724d2071532b2c8ad2f0f9f083bcae331" - integrity sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A== - dependencies: - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-member-expression-to-functions" "^7.20.7" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.20.7" - "@babel/types" "^7.20.7" - -"@babel/helper-simple-access@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz#d697a7971a5c39eac32c7e63c0921c06c8a249ee" - integrity sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg== - dependencies: - "@babel/types" "^7.21.5" - -"@babel/helper-skip-transparent-expression-wrappers@^7.20.0": - version "7.20.0" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684" - integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg== - dependencies: - "@babel/types" "^7.20.0" - -"@babel/helper-split-export-declaration@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" - integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-string-parser@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz#2b3eea65443c6bdc31c22d037c65f6d323b6b2bd" - integrity sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w== - -"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": - version "7.19.1" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" - integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== - -"@babel/helper-validator-option@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz#8224c7e13ace4bafdc4004da2cf064ef42673180" - integrity sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ== - -"@babel/helper-wrap-function@^7.18.9": - version "7.20.5" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz#75e2d84d499a0ab3b31c33bcfe59d6b8a45f62e3" - integrity sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q== - dependencies: - "@babel/helper-function-name" "^7.19.0" - "@babel/template" "^7.18.10" - "@babel/traverse" "^7.20.5" - "@babel/types" "^7.20.5" -"@babel/helpers@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.21.5.tgz#5bac66e084d7a4d2d9696bdf0175a93f7fb63c08" - integrity sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA== - dependencies: - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" - -"@babel/highlight@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" - integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== - dependencies: - "@babel/helper-validator-identifier" "^7.18.6" +"@babel/helper-environment-visitor@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98" + integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q== + +"@babel/helper-function-name@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be" + integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ== + dependencies: + "@babel/template" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/helper-hoist-variables@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" + integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-member-expression-to-functions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz#0a7c56117cad3372fbf8d2fb4bf8f8d64a1e76b2" + integrity sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.18.6", "@babel/helper-module-imports@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c" + integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-module-transforms@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz#0f65daa0716961b6e96b164034e737f60a80d2ef" + integrity sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw== + dependencies: + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-module-imports" "^7.22.5" + "@babel/helper-simple-access" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.5" + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/helper-optimise-call-expression@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e" + integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" + integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== + +"@babel/helper-remap-async-to-generator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz#14a38141a7bf2165ad38da61d61cf27b43015da2" + integrity sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-wrap-function" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/helper-replace-supers@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz#71bc5fb348856dea9fdc4eafd7e2e49f585145dc" + integrity sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg== + dependencies: + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-member-expression-to-functions" "^7.22.5" + "@babel/helper-optimise-call-expression" "^7.22.5" + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/helper-simple-access@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" + integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-skip-transparent-expression-wrappers@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847" + integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-split-export-declaration@^7.22.5", "@babel/helper-split-export-declaration@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" + integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-string-parser@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" + integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== + +"@babel/helper-validator-identifier@^7.19.1", "@babel/helper-validator-identifier@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193" + integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== + +"@babel/helper-validator-option@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac" + integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw== + +"@babel/helper-wrap-function@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz#44d205af19ed8d872b4eefb0d2fa65f45eb34f06" + integrity sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw== + dependencies: + "@babel/helper-function-name" "^7.22.5" + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/helpers@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.6.tgz#8e61d3395a4f0c5a8060f309fb008200969b5ecd" + integrity sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA== + dependencies: + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.6" + "@babel/types" "^7.22.5" + +"@babel/highlight@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031" + integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw== + dependencies: + "@babel/helper-validator-identifier" "^7.22.5" chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.8", "@babel/parser@^7.20.15", "@babel/parser@^7.20.7", "@babel/parser@^7.21.3", "@babel/parser@^7.21.5", "@babel/parser@^7.21.8": - version "7.21.8" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.8.tgz#642af7d0333eab9c0ad70b14ac5e76dbde7bfdf8" - integrity sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA== +"@babel/parser@^7.1.0", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.8", "@babel/parser@^7.20.15", "@babel/parser@^7.20.7", "@babel/parser@^7.21.3", "@babel/parser@^7.22.5", "@babel/parser@^7.22.7": + version "7.22.7" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.7.tgz#df8cf085ce92ddbdbf668a7f186ce848c9036cae" + integrity sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q== -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2" - integrity sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ== +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz#87245a21cd69a73b0b81bcda98d443d6df08f05e" + integrity sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.20.7": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz#d9c85589258539a22a901033853101a6198d4ef1" - integrity sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ== +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz#fef09f9499b1f1c930da8a0c419db42167d792ca" + integrity sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g== dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" - "@babel/plugin-proposal-optional-chaining" "^7.20.7" - -"@babel/plugin-proposal-async-generator-functions@^7.20.7": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz#bfb7276d2d573cb67ba379984a2334e262ba5326" - integrity sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA== - dependencies: - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-remap-async-to-generator" "^7.18.9" - "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-transform-optional-chaining" "^7.22.5" -"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.18.6": +"@babel/plugin-proposal-class-properties@^7.0.0": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== @@ -521,64 +504,7 @@ "@babel/helper-create-class-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-proposal-class-static-block@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz#77bdd66fb7b605f3a61302d224bdfacf5547977d" - integrity sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.21.0" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - -"@babel/plugin-proposal-dynamic-import@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz#72bcf8d408799f547d759298c3c27c7e7faa4d94" - integrity sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - -"@babel/plugin-proposal-export-namespace-from@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz#5f7313ab348cdb19d590145f9247540e94761203" - integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - -"@babel/plugin-proposal-json-strings@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz#7e8788c1811c393aff762817e7dbf1ebd0c05f0b" - integrity sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-json-strings" "^7.8.3" - -"@babel/plugin-proposal-logical-assignment-operators@^7.20.7": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz#dfbcaa8f7b4d37b51e8bfb46d94a5aea2bb89d83" - integrity sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - -"@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1" - integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - -"@babel/plugin-proposal-numeric-separator@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75" - integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - -"@babel/plugin-proposal-object-rest-spread@^7.0.0", "@babel/plugin-proposal-object-rest-spread@^7.20.7": +"@babel/plugin-proposal-object-rest-spread@^7.0.0": version "7.20.7" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a" integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== @@ -589,42 +515,12 @@ "@babel/plugin-syntax-object-rest-spread" "^7.8.3" "@babel/plugin-transform-parameters" "^7.20.7" -"@babel/plugin-proposal-optional-catch-binding@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb" - integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - -"@babel/plugin-proposal-optional-chaining@^7.20.7", "@babel/plugin-proposal-optional-chaining@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea" - integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - -"@babel/plugin-proposal-private-methods@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea" - integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-proposal-private-property-in-object@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz#19496bd9883dd83c23c7d7fc45dcd9ad02dfa1dc" - integrity sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-create-class-features-plugin" "^7.21.0" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" +"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": + version "7.21.0-placeholder-for-preset-env.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" + integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== -"@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": +"@babel/plugin-proposal-unicode-property-regex@^7.4.4": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e" integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== @@ -681,12 +577,19 @@ dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-syntax-import-assertions@^7.20.0": - version "7.20.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz#bb50e0d4bea0957235390641209394e87bdb9cc4" - integrity sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ== +"@babel/plugin-syntax-import-assertions@^7.20.0", "@babel/plugin-syntax-import-assertions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz#07d252e2aa0bc6125567f742cd58619cb14dce98" + integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg== dependencies: - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-import-attributes@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz#ab840248d834410b829f569f5262b9e517555ecb" + integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-import-meta@^7.10.4", "@babel/plugin-syntax-import-meta@^7.8.3": version "7.10.4" @@ -702,12 +605,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.17.12", "@babel/plugin-syntax-jsx@^7.18.6", "@babel/plugin-syntax-jsx@^7.21.4": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz#f264ed7bf40ffc9ec239edabc17a50c4f5b6fea2" - integrity sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ== +"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.17.12", "@babel/plugin-syntax-jsx@^7.18.6", "@babel/plugin-syntax-jsx@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918" + integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg== dependencies: - "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": version "7.10.4" @@ -765,95 +668,146 @@ dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-typescript@^7.20.0", "@babel/plugin-syntax-typescript@^7.7.2": - version "7.20.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz#4e9a0cfc769c85689b77a2e642d24e9f697fc8c7" - integrity sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ== +"@babel/plugin-syntax-typescript@^7.22.5", "@babel/plugin-syntax-typescript@^7.7.2": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz#aac8d383b062c5072c647a31ef990c1d0af90272" + integrity sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ== dependencies: - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.21.5.tgz#9bb42a53de447936a57ba256fbf537fc312b6929" - integrity sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA== +"@babel/plugin-syntax-unicode-sets-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" + integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== dependencies: - "@babel/helper-plugin-utils" "^7.21.5" + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-async-to-generator@^7.20.7": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz#dfee18623c8cb31deb796aa3ca84dda9cea94354" - integrity sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q== +"@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958" + integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw== dependencies: - "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-remap-async-to-generator" "^7.18.9" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-block-scoped-functions@^7.0.0", "@babel/plugin-transform-block-scoped-functions@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz#9187bf4ba302635b9d70d986ad70f038726216a8" - integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ== +"@babel/plugin-transform-async-generator-functions@^7.22.7": + version "7.22.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.7.tgz#053e76c0a903b72b573cb1ab7d6882174d460a1b" + integrity sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.5" + "@babel/plugin-syntax-async-generators" "^7.8.4" -"@babel/plugin-transform-block-scoping@^7.0.0", "@babel/plugin-transform-block-scoping@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz#e737b91037e5186ee16b76e7ae093358a5634f02" - integrity sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ== +"@babel/plugin-transform-async-to-generator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775" + integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ== dependencies: - "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-module-imports" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.5" -"@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz#f469d0b07a4c5a7dbb21afad9e27e57b47031665" - integrity sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ== +"@babel/plugin-transform-block-scoped-functions@^7.0.0", "@babel/plugin-transform-block-scoped-functions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024" + integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA== dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-compilation-targets" "^7.20.7" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-function-name" "^7.21.0" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-replace-supers" "^7.20.7" - "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-block-scoping@^7.0.0", "@babel/plugin-transform-block-scoping@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz#8bfc793b3a4b2742c0983fadc1480d843ecea31b" + integrity sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-class-properties@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77" + integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-class-static-block@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz#3e40c46f048403472d6f4183116d5e46b1bff5ba" + integrity sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + +"@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz#e04d7d804ed5b8501311293d1a0e6d43e94c3363" + integrity sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-compilation-targets" "^7.22.6" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-optimise-call-expression" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" globals "^11.1.0" -"@babel/plugin-transform-computed-properties@^7.0.0", "@babel/plugin-transform-computed-properties@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.21.5.tgz#3a2d8bb771cd2ef1cd736435f6552fe502e11b44" - integrity sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q== +"@babel/plugin-transform-computed-properties@^7.0.0", "@babel/plugin-transform-computed-properties@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869" + integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg== dependencies: - "@babel/helper-plugin-utils" "^7.21.5" - "@babel/template" "^7.20.7" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/template" "^7.22.5" -"@babel/plugin-transform-destructuring@^7.0.0", "@babel/plugin-transform-destructuring@^7.21.3": - version "7.21.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz#73b46d0fd11cd6ef57dea8a381b1215f4959d401" - integrity sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA== +"@babel/plugin-transform-destructuring@^7.0.0", "@babel/plugin-transform-destructuring@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz#d3aca7438f6c26c78cdd0b0ba920a336001b27cc" + integrity sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ== dependencies: - "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz#b286b3e7aae6c7b861e45bed0a2fafd6b1a4fef8" - integrity sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg== +"@babel/plugin-transform-dotall-regex@^7.22.5", "@babel/plugin-transform-dotall-regex@^7.4.4": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165" + integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-duplicate-keys@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz#687f15ee3cdad6d85191eb2a372c4528eaa0ae0e" - integrity sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw== +"@babel/plugin-transform-duplicate-keys@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285" + integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw== dependencies: - "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-exponentiation-operator@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz#421c705f4521888c65e91fdd1af951bfefd4dacd" - integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw== +"@babel/plugin-transform-dynamic-import@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz#d6908a8916a810468c4edff73b5b75bda6ad393e" + integrity sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ== dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-transform-exponentiation-operator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a" + integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-export-namespace-from@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz#57c41cb1d0613d22f548fddd8b288eedb9973a5b" + integrity sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" "@babel/plugin-transform-flow-strip-types@^7.0.0": version "7.19.0" @@ -863,107 +817,185 @@ "@babel/helper-plugin-utils" "^7.19.0" "@babel/plugin-syntax-flow" "^7.18.6" -"@babel/plugin-transform-for-of@^7.0.0", "@babel/plugin-transform-for-of@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.5.tgz#e890032b535f5a2e237a18535f56a9fdaa7b83fc" - integrity sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ== +"@babel/plugin-transform-for-of@^7.0.0", "@babel/plugin-transform-for-of@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz#ab1b8a200a8f990137aff9a084f8de4099ab173f" + integrity sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A== dependencies: - "@babel/helper-plugin-utils" "^7.21.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-function-name@^7.0.0", "@babel/plugin-transform-function-name@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz#cc354f8234e62968946c61a46d6365440fc764e0" - integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ== +"@babel/plugin-transform-function-name@^7.0.0", "@babel/plugin-transform-function-name@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143" + integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg== dependencies: - "@babel/helper-compilation-targets" "^7.18.9" - "@babel/helper-function-name" "^7.18.9" - "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-compilation-targets" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-literals@^7.0.0", "@babel/plugin-transform-literals@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz#72796fdbef80e56fba3c6a699d54f0de557444bc" - integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg== +"@babel/plugin-transform-json-strings@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz#14b64352fdf7e1f737eed68de1a1468bd2a77ec0" + integrity sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A== dependencies: - "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-json-strings" "^7.8.3" -"@babel/plugin-transform-member-expression-literals@^7.0.0", "@babel/plugin-transform-member-expression-literals@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e" - integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA== +"@babel/plugin-transform-literals@^7.0.0", "@babel/plugin-transform-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920" + integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-amd@^7.20.11": - version "7.20.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz#3daccca8e4cc309f03c3a0c4b41dc4b26f55214a" - integrity sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g== +"@babel/plugin-transform-logical-assignment-operators@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz#66ae5f068fd5a9a5dc570df16f56c2a8462a9d6c" + integrity sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA== dependencies: - "@babel/helper-module-transforms" "^7.20.11" - "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" -"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.5.tgz#d69fb947eed51af91de82e4708f676864e5e47bc" - integrity sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ== +"@babel/plugin-transform-member-expression-literals@^7.0.0", "@babel/plugin-transform-member-expression-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def" + integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew== dependencies: - "@babel/helper-module-transforms" "^7.21.5" - "@babel/helper-plugin-utils" "^7.21.5" - "@babel/helper-simple-access" "^7.21.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-systemjs@^7.20.11": - version "7.20.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz#467ec6bba6b6a50634eea61c9c232654d8a4696e" - integrity sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw== +"@babel/plugin-transform-modules-amd@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz#4e045f55dcf98afd00f85691a68fc0780704f526" + integrity sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ== dependencies: - "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-module-transforms" "^7.20.11" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-validator-identifier" "^7.19.1" + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-umd@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz#81d3832d6034b75b54e62821ba58f28ed0aab4b9" - integrity sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ== +"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz#7d9875908d19b8c0536085af7b053fd5bd651bfa" + integrity sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA== dependencies: - "@babel/helper-module-transforms" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-simple-access" "^7.22.5" -"@babel/plugin-transform-named-capturing-groups-regex@^7.20.5": - version "7.20.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz#626298dd62ea51d452c3be58b285d23195ba69a8" - integrity sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA== +"@babel/plugin-transform-modules-systemjs@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz#18c31410b5e579a0092638f95c896c2a98a5d496" + integrity sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.20.5" - "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.5" -"@babel/plugin-transform-new-target@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz#d128f376ae200477f37c4ddfcc722a8a1b3246a8" - integrity sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw== +"@babel/plugin-transform-modules-umd@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98" + integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-object-super@^7.0.0", "@babel/plugin-transform-object-super@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c" - integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA== +"@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f" + integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/helper-replace-supers" "^7.18.6" + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.21.3": - version "7.21.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz#18fc4e797cf6d6d972cb8c411dbe8a809fa157db" - integrity sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ== +"@babel/plugin-transform-new-target@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d" + integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw== dependencies: - "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-property-literals@^7.0.0", "@babel/plugin-transform-property-literals@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz#e22498903a483448e94e032e9bbb9c5ccbfc93a3" - integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg== +"@babel/plugin-transform-nullish-coalescing-operator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz#f8872c65776e0b552e0849d7596cddd416c3e381" + integrity sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-transform-numeric-separator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz#57226a2ed9e512b9b446517ab6fa2d17abb83f58" + integrity sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-transform-object-rest-spread@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz#9686dc3447df4753b0b2a2fae7e8bc33cdc1f2e1" + integrity sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ== + dependencies: + "@babel/compat-data" "^7.22.5" + "@babel/helper-compilation-targets" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.22.5" + +"@babel/plugin-transform-object-super@^7.0.0", "@babel/plugin-transform-object-super@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c" + integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.5" + +"@babel/plugin-transform-optional-catch-binding@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz#842080be3076703be0eaf32ead6ac8174edee333" + integrity sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-transform-optional-chaining@^7.22.5", "@babel/plugin-transform-optional-chaining@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.6.tgz#4bacfe37001fe1901117672875e931d439811564" + integrity sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz#c3542dd3c39b42c8069936e48717a8d179d63a18" + integrity sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-private-methods@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz#21c8af791f76674420a147ae62e9935d790f8722" + integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-private-property-in-object@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz#07a77f28cbb251546a43d175a1dda4cf3ef83e32" + integrity sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + +"@babel/plugin-transform-property-literals@^7.0.0", "@babel/plugin-transform-property-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766" + integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-transform-react-display-name@^7.0.0": version "7.18.6" @@ -997,114 +1029,117 @@ "@babel/plugin-syntax-jsx" "^7.18.6" "@babel/types" "^7.20.7" -"@babel/plugin-transform-regenerator@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.21.5.tgz#576c62f9923f94bcb1c855adc53561fd7913724e" - integrity sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w== +"@babel/plugin-transform-regenerator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz#cd8a68b228a5f75fa01420e8cc2fc400f0fc32aa" + integrity sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw== dependencies: - "@babel/helper-plugin-utils" "^7.21.5" + "@babel/helper-plugin-utils" "^7.22.5" regenerator-transform "^0.15.1" -"@babel/plugin-transform-reserved-words@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz#b1abd8ebf8edaa5f7fe6bbb8d2133d23b6a6f76a" - integrity sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA== +"@babel/plugin-transform-reserved-words@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb" + integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz#6d6df7983d67b195289be24909e3f12a8f664dc9" - integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw== +"@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624" + integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-spread@^7.0.0", "@babel/plugin-transform-spread@^7.20.7": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz#c2d83e0b99d3bf83e07b11995ee24bf7ca09401e" - integrity sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw== +"@babel/plugin-transform-spread@^7.0.0", "@babel/plugin-transform-spread@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b" + integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg== dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" -"@babel/plugin-transform-sticky-regex@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz#c6706eb2b1524028e317720339583ad0f444adcc" - integrity sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q== +"@babel/plugin-transform-sticky-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa" + integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-template-literals@^7.0.0", "@babel/plugin-transform-template-literals@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz#04ec6f10acdaa81846689d63fae117dd9c243a5e" - integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA== +"@babel/plugin-transform-template-literals@^7.0.0", "@babel/plugin-transform-template-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff" + integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA== dependencies: - "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-typeof-symbol@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz#c8cea68263e45addcd6afc9091429f80925762c0" - integrity sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw== +"@babel/plugin-transform-typeof-symbol@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34" + integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA== dependencies: - "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-typescript@^7.21.3": - version "7.21.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.21.3.tgz#316c5be579856ea890a57ebc5116c5d064658f2b" - integrity sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw== +"@babel/plugin-transform-typescript@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz#5c0f7adfc1b5f38c4dbc8f79b1f0f8074134bd7d" + integrity sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA== dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-create-class-features-plugin" "^7.21.0" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/plugin-syntax-typescript" "^7.20.0" + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-typescript" "^7.22.5" -"@babel/plugin-transform-unicode-escapes@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.21.5.tgz#1e55ed6195259b0e9061d81f5ef45a9b009fb7f2" - integrity sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg== +"@babel/plugin-transform-unicode-escapes@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz#ce0c248522b1cb22c7c992d88301a5ead70e806c" + integrity sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg== dependencies: - "@babel/helper-plugin-utils" "^7.21.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-unicode-regex@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz#194317225d8c201bbae103364ffe9e2cea36cdca" - integrity sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA== +"@babel/plugin-transform-unicode-property-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz#098898f74d5c1e86660dc112057b2d11227f1c81" + integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183" + integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/preset-env@7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.21.5.tgz#db2089d99efd2297716f018aeead815ac3decffb" - integrity sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg== - dependencies: - "@babel/compat-data" "^7.21.5" - "@babel/helper-compilation-targets" "^7.21.5" - "@babel/helper-plugin-utils" "^7.21.5" - "@babel/helper-validator-option" "^7.21.0" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.20.7" - "@babel/plugin-proposal-async-generator-functions" "^7.20.7" - "@babel/plugin-proposal-class-properties" "^7.18.6" - "@babel/plugin-proposal-class-static-block" "^7.21.0" - "@babel/plugin-proposal-dynamic-import" "^7.18.6" - "@babel/plugin-proposal-export-namespace-from" "^7.18.9" - "@babel/plugin-proposal-json-strings" "^7.18.6" - "@babel/plugin-proposal-logical-assignment-operators" "^7.20.7" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6" - "@babel/plugin-proposal-numeric-separator" "^7.18.6" - "@babel/plugin-proposal-object-rest-spread" "^7.20.7" - "@babel/plugin-proposal-optional-catch-binding" "^7.18.6" - "@babel/plugin-proposal-optional-chaining" "^7.21.0" - "@babel/plugin-proposal-private-methods" "^7.18.6" - "@babel/plugin-proposal-private-property-in-object" "^7.21.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.18.6" +"@babel/plugin-transform-unicode-sets-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz#77788060e511b708ffc7d42fdfbc5b37c3004e91" + integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/preset-env@7.22.7": + version "7.22.7" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.7.tgz#a1ef34b64a80653c22ce4d9c25603cfa76fc168a" + integrity sha512-1whfDtW+CzhETuzYXfcgZAh8/GFMeEbz0V5dVgya8YeJyCU6Y/P2Gnx4Qb3MylK68Zu9UiwUvbPMPTpFAOJ+sQ== + dependencies: + "@babel/compat-data" "^7.22.6" + "@babel/helper-compilation-targets" "^7.22.6" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.22.5" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.5" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.5" + "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" "@babel/plugin-syntax-async-generators" "^7.8.4" "@babel/plugin-syntax-class-properties" "^7.12.13" "@babel/plugin-syntax-class-static-block" "^7.14.5" "@babel/plugin-syntax-dynamic-import" "^7.8.3" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-import-assertions" "^7.20.0" + "@babel/plugin-syntax-import-assertions" "^7.22.5" + "@babel/plugin-syntax-import-attributes" "^7.22.5" "@babel/plugin-syntax-import-meta" "^7.10.4" "@babel/plugin-syntax-json-strings" "^7.8.3" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" @@ -1115,45 +1150,62 @@ "@babel/plugin-syntax-optional-chaining" "^7.8.3" "@babel/plugin-syntax-private-property-in-object" "^7.14.5" "@babel/plugin-syntax-top-level-await" "^7.14.5" - "@babel/plugin-transform-arrow-functions" "^7.21.5" - "@babel/plugin-transform-async-to-generator" "^7.20.7" - "@babel/plugin-transform-block-scoped-functions" "^7.18.6" - "@babel/plugin-transform-block-scoping" "^7.21.0" - "@babel/plugin-transform-classes" "^7.21.0" - "@babel/plugin-transform-computed-properties" "^7.21.5" - "@babel/plugin-transform-destructuring" "^7.21.3" - "@babel/plugin-transform-dotall-regex" "^7.18.6" - "@babel/plugin-transform-duplicate-keys" "^7.18.9" - "@babel/plugin-transform-exponentiation-operator" "^7.18.6" - "@babel/plugin-transform-for-of" "^7.21.5" - "@babel/plugin-transform-function-name" "^7.18.9" - "@babel/plugin-transform-literals" "^7.18.9" - "@babel/plugin-transform-member-expression-literals" "^7.18.6" - "@babel/plugin-transform-modules-amd" "^7.20.11" - "@babel/plugin-transform-modules-commonjs" "^7.21.5" - "@babel/plugin-transform-modules-systemjs" "^7.20.11" - "@babel/plugin-transform-modules-umd" "^7.18.6" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.20.5" - "@babel/plugin-transform-new-target" "^7.18.6" - "@babel/plugin-transform-object-super" "^7.18.6" - "@babel/plugin-transform-parameters" "^7.21.3" - "@babel/plugin-transform-property-literals" "^7.18.6" - "@babel/plugin-transform-regenerator" "^7.21.5" - "@babel/plugin-transform-reserved-words" "^7.18.6" - "@babel/plugin-transform-shorthand-properties" "^7.18.6" - "@babel/plugin-transform-spread" "^7.20.7" - "@babel/plugin-transform-sticky-regex" "^7.18.6" - "@babel/plugin-transform-template-literals" "^7.18.9" - "@babel/plugin-transform-typeof-symbol" "^7.18.9" - "@babel/plugin-transform-unicode-escapes" "^7.21.5" - "@babel/plugin-transform-unicode-regex" "^7.18.6" + "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" + "@babel/plugin-transform-arrow-functions" "^7.22.5" + "@babel/plugin-transform-async-generator-functions" "^7.22.7" + "@babel/plugin-transform-async-to-generator" "^7.22.5" + "@babel/plugin-transform-block-scoped-functions" "^7.22.5" + "@babel/plugin-transform-block-scoping" "^7.22.5" + "@babel/plugin-transform-class-properties" "^7.22.5" + "@babel/plugin-transform-class-static-block" "^7.22.5" + "@babel/plugin-transform-classes" "^7.22.6" + "@babel/plugin-transform-computed-properties" "^7.22.5" + "@babel/plugin-transform-destructuring" "^7.22.5" + "@babel/plugin-transform-dotall-regex" "^7.22.5" + "@babel/plugin-transform-duplicate-keys" "^7.22.5" + "@babel/plugin-transform-dynamic-import" "^7.22.5" + "@babel/plugin-transform-exponentiation-operator" "^7.22.5" + "@babel/plugin-transform-export-namespace-from" "^7.22.5" + "@babel/plugin-transform-for-of" "^7.22.5" + "@babel/plugin-transform-function-name" "^7.22.5" + "@babel/plugin-transform-json-strings" "^7.22.5" + "@babel/plugin-transform-literals" "^7.22.5" + "@babel/plugin-transform-logical-assignment-operators" "^7.22.5" + "@babel/plugin-transform-member-expression-literals" "^7.22.5" + "@babel/plugin-transform-modules-amd" "^7.22.5" + "@babel/plugin-transform-modules-commonjs" "^7.22.5" + "@babel/plugin-transform-modules-systemjs" "^7.22.5" + "@babel/plugin-transform-modules-umd" "^7.22.5" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" + "@babel/plugin-transform-new-target" "^7.22.5" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.5" + "@babel/plugin-transform-numeric-separator" "^7.22.5" + "@babel/plugin-transform-object-rest-spread" "^7.22.5" + "@babel/plugin-transform-object-super" "^7.22.5" + "@babel/plugin-transform-optional-catch-binding" "^7.22.5" + "@babel/plugin-transform-optional-chaining" "^7.22.6" + "@babel/plugin-transform-parameters" "^7.22.5" + "@babel/plugin-transform-private-methods" "^7.22.5" + "@babel/plugin-transform-private-property-in-object" "^7.22.5" + "@babel/plugin-transform-property-literals" "^7.22.5" + "@babel/plugin-transform-regenerator" "^7.22.5" + "@babel/plugin-transform-reserved-words" "^7.22.5" + "@babel/plugin-transform-shorthand-properties" "^7.22.5" + "@babel/plugin-transform-spread" "^7.22.5" + "@babel/plugin-transform-sticky-regex" "^7.22.5" + "@babel/plugin-transform-template-literals" "^7.22.5" + "@babel/plugin-transform-typeof-symbol" "^7.22.5" + "@babel/plugin-transform-unicode-escapes" "^7.22.5" + "@babel/plugin-transform-unicode-property-regex" "^7.22.5" + "@babel/plugin-transform-unicode-regex" "^7.22.5" + "@babel/plugin-transform-unicode-sets-regex" "^7.22.5" "@babel/preset-modules" "^0.1.5" - "@babel/types" "^7.21.5" - babel-plugin-polyfill-corejs2 "^0.3.3" - babel-plugin-polyfill-corejs3 "^0.6.0" - babel-plugin-polyfill-regenerator "^0.4.1" - core-js-compat "^3.25.1" - semver "^6.3.0" + "@babel/types" "^7.22.5" + "@nicolo-ribaudo/semver-v6" "^6.3.3" + babel-plugin-polyfill-corejs2 "^0.4.4" + babel-plugin-polyfill-corejs3 "^0.8.2" + babel-plugin-polyfill-regenerator "^0.5.1" + core-js-compat "^3.31.0" "@babel/preset-modules@^0.1.5": version "0.1.5" @@ -1166,16 +1218,16 @@ "@babel/types" "^7.4.4" esutils "^2.0.2" -"@babel/preset-typescript@7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.21.5.tgz#68292c884b0e26070b4d66b202072d391358395f" - integrity sha512-iqe3sETat5EOrORXiQ6rWfoOg2y68Cs75B9wNxdPW4kixJxh7aXQE1KPdWLDniC24T/6dSnguF33W9j/ZZQcmA== +"@babel/preset-typescript@7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz#16367d8b01d640e9a507577ed4ee54e0101e51c8" + integrity sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ== dependencies: - "@babel/helper-plugin-utils" "^7.21.5" - "@babel/helper-validator-option" "^7.21.0" - "@babel/plugin-syntax-jsx" "^7.21.4" - "@babel/plugin-transform-modules-commonjs" "^7.21.5" - "@babel/plugin-transform-typescript" "^7.21.3" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.22.5" + "@babel/plugin-syntax-jsx" "^7.22.5" + "@babel/plugin-transform-modules-commonjs" "^7.22.5" + "@babel/plugin-transform-typescript" "^7.22.5" "@babel/regjsgen@^0.8.0": version "0.8.0" @@ -1189,38 +1241,38 @@ dependencies: regenerator-runtime "^0.13.11" -"@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.3.3": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" - integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/parser" "^7.20.7" - "@babel/types" "^7.20.7" - -"@babel/traverse@^7.14.0", "@babel/traverse@^7.16.8", "@babel/traverse@^7.20.5", "@babel/traverse@^7.20.7", "@babel/traverse@^7.21.5", "@babel/traverse@^7.7.2": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.5.tgz#ad22361d352a5154b498299d523cf72998a4b133" - integrity sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw== - dependencies: - "@babel/code-frame" "^7.21.4" - "@babel/generator" "^7.21.5" - "@babel/helper-environment-visitor" "^7.21.5" - "@babel/helper-function-name" "^7.21.0" - "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/parser" "^7.21.5" - "@babel/types" "^7.21.5" +"@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.22.5", "@babel/template@^7.3.3": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.5.tgz#0c8c4d944509875849bd0344ff0050756eefc6ec" + integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw== + dependencies: + "@babel/code-frame" "^7.22.5" + "@babel/parser" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/traverse@^7.14.0", "@babel/traverse@^7.16.8", "@babel/traverse@^7.22.5", "@babel/traverse@^7.22.6", "@babel/traverse@^7.22.8", "@babel/traverse@^7.7.2": + version "7.22.8" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.8.tgz#4d4451d31bc34efeae01eac222b514a77aa4000e" + integrity sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw== + dependencies: + "@babel/code-frame" "^7.22.5" + "@babel/generator" "^7.22.7" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/parser" "^7.22.7" + "@babel/types" "^7.22.5" debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.16.8", "@babel/types@^7.18.13", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.20.0", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.4", "@babel/types@^7.21.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.5.tgz#18dfbd47c39d3904d5db3d3dc2cc80bedb60e5b6" - integrity sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q== +"@babel/types@^7.0.0", "@babel/types@^7.16.8", "@babel/types@^7.18.13", "@babel/types@^7.20.7", "@babel/types@^7.22.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.5.tgz#cd93eeaab025880a3a47ec881f4b096a5b786fbe" + integrity sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA== dependencies: - "@babel/helper-string-parser" "^7.21.5" - "@babel/helper-validator-identifier" "^7.19.1" + "@babel/helper-string-parser" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.5" to-fast-properties "^2.0.0" "@bcoe/v8-coverage@^0.2.3": @@ -3357,6 +3409,11 @@ resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.2.tgz#8435ab6087046355f5de07122d3097949e8fab10" integrity sha512-O7bort1Vld00cu8g0jHZq3cbSTUNMohOEvYqsqE10+yfohhdPHzvzO+ziJRz4Dyyr/fYKREwS7gR4JC0soSOMw== +"@nicolo-ribaudo/semver-v6@^6.3.3": + version "6.3.3" + resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/semver-v6/-/semver-v6-6.3.3.tgz#ea6d23ade78a325f7a52750aab1526b02b628c29" + integrity sha512-3Yc1fUTs69MG/uZbJlLSI3JISMn2UV2rg+1D/vROUqZyh3l6iYHCs7GMp+M40ZD7yOdDbYjJcU1oTJhrc+dGKg== + "@nodelib/fs.scandir@2.1.5": version "2.1.5" resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" @@ -5012,29 +5069,29 @@ babel-plugin-macros@^3.1.0: cosmiconfig "^7.0.0" resolve "^1.19.0" -babel-plugin-polyfill-corejs2@^0.3.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz#5d1bd3836d0a19e1b84bbf2d9640ccb6f951c122" - integrity sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q== +babel-plugin-polyfill-corejs2@^0.4.4: + version "0.4.4" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.4.tgz#9f9a0e1cd9d645cc246a5e094db5c3aa913ccd2b" + integrity sha512-9WeK9snM1BfxB38goUEv2FLnA6ja07UMfazFHzCXUb3NyDZAwfXvQiURQ6guTTMeHcOsdknULm1PDhs4uWtKyA== dependencies: - "@babel/compat-data" "^7.17.7" - "@babel/helper-define-polyfill-provider" "^0.3.3" - semver "^6.1.1" + "@babel/compat-data" "^7.22.6" + "@babel/helper-define-polyfill-provider" "^0.4.1" + "@nicolo-ribaudo/semver-v6" "^6.3.3" -babel-plugin-polyfill-corejs3@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz#56ad88237137eade485a71b52f72dbed57c6230a" - integrity sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA== +babel-plugin-polyfill-corejs3@^0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.2.tgz#d406c5738d298cd9c66f64a94cf8d5904ce4cc5e" + integrity sha512-Cid+Jv1BrY9ReW9lIfNlNpsI53N+FN7gE+f73zLAUbr9C52W4gKLWSByx47pfDJsEysojKArqOtOKZSVIIUTuQ== dependencies: - "@babel/helper-define-polyfill-provider" "^0.3.3" - core-js-compat "^3.25.1" + "@babel/helper-define-polyfill-provider" "^0.4.1" + core-js-compat "^3.31.0" -babel-plugin-polyfill-regenerator@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz#390f91c38d90473592ed43351e801a9d3e0fd747" - integrity sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw== +babel-plugin-polyfill-regenerator@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.1.tgz#ace7a5eced6dff7d5060c335c52064778216afd3" + integrity sha512-L8OyySuI6OSQ5hFy9O+7zFjyr4WhAfRjLIOkhQGYl+emwJkd/S4XXT1JpfrgR1jrQ1NcGiOh+yAdGlF8pnC3Jw== dependencies: - "@babel/helper-define-polyfill-provider" "^0.3.3" + "@babel/helper-define-polyfill-provider" "^0.4.1" babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0: version "7.0.0-beta.0" @@ -5234,15 +5291,15 @@ breakword@^1.0.5: dependencies: wcwidth "^1.0.1" -browserslist@^4.0.0, browserslist@^4.16.6, browserslist@^4.21.3, browserslist@^4.21.4, browserslist@^4.21.5: - version "4.21.5" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7" - integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== +browserslist@^4.0.0, browserslist@^4.16.6, browserslist@^4.21.4, browserslist@^4.21.9: + version "4.21.9" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.9.tgz#e11bdd3c313d7e2a9e87e8b4b0c7872b13897635" + integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg== dependencies: - caniuse-lite "^1.0.30001449" - electron-to-chromium "^1.4.284" - node-releases "^2.0.8" - update-browserslist-db "^1.0.10" + caniuse-lite "^1.0.30001503" + electron-to-chromium "^1.4.431" + node-releases "^2.0.12" + update-browserslist-db "^1.0.11" bs-logger@0.x: version "0.2.6" @@ -5377,10 +5434,10 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.30001426, caniuse-lite@^1.0.30001449: - version "1.0.30001452" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001452.tgz#dff7b8bb834b3a91808f0a9ff0453abb1fbba02a" - integrity sha512-Lkp0vFjMkBB3GTpLR8zk4NwW5EdRdnitwYJHDOOKIU85x4ckYCPQ+9WlVvSVClHxVReefkUMtWZH2l9KGlD51w== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.30001426, caniuse-lite@^1.0.30001503: + version "1.0.30001512" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001512.tgz#7450843fb581c39f290305a83523c7a9ef0d4cb4" + integrity sha512-2S9nK0G/mE+jasCUsMPlARhRCts1ebcp2Ji8Y8PWi4NDE1iRdLCnEPHkEfeBrGC45L4isBx5ur3IQ6yTE2mRZw== capital-case@^1.0.4: version "1.0.4" @@ -5819,12 +5876,12 @@ convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.6.0, resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== -core-js-compat@^3.25.1: - version "3.28.0" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.28.0.tgz#c08456d854608a7264530a2afa281fadf20ecee6" - integrity sha512-myzPgE7QodMg4nnd3K1TDoES/nADRStM8Gpz0D6nhkwbmwEnE0ZGJgoWsvQ722FR8D7xS0n0LV556RcEicjTyg== +core-js-compat@^3.31.0: + version "3.31.1" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.31.1.tgz#5084ad1a46858df50ff89ace152441a63ba7aae0" + integrity sha512-wIDWd2s5/5aJSdpOJHfSibxNODxoGoWOBHt8JSPB41NOE94M7kuTPZCYLOlTtuoXTsBPKobpJ6T+y0SSy5L9SA== dependencies: - browserslist "^4.21.5" + browserslist "^4.21.9" core-util-is@1.0.2: version "1.0.2" @@ -6665,10 +6722,10 @@ ecc-jsbn@~0.1.1: jsbn "~0.1.0" safer-buffer "^2.1.0" -electron-to-chromium@^1.4.284: - version "1.4.295" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.295.tgz#911d5df67542bf7554336142eb302c5ec90bba66" - integrity sha512-lEO94zqf1bDA3aepxwnWoHUjA8sZ+2owgcSZjYQy0+uOSEclJX0VieZC+r+wLpSxUHRd6gG32znTWmr+5iGzFw== +electron-to-chromium@^1.4.431: + version "1.4.451" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.451.tgz#12b63ee5c82cbbc7b4ddd91e90f5a0dfc10de26e" + integrity sha512-YYbXHIBxAHe3KWvGOJOuWa6f3tgow44rBW+QAuwVp2DvGqNZeE//K2MowNdWS7XE8li5cgQDrX1LdBr41LufkA== elkjs@^0.8.2: version "0.8.2" @@ -11045,10 +11102,10 @@ node-int64@^0.4.0: resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== -node-releases@^2.0.8: - version "2.0.10" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.10.tgz#c311ebae3b6a148c89b1813fd7c4d3c024ef537f" - integrity sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w== +node-releases@^2.0.12: + version "2.0.12" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.12.tgz#35627cc224a23bfb06fb3380f2b3afaaa7eb1039" + integrity sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ== non-layered-tidy-tree-layout@^2.0.2: version "2.0.2" @@ -12343,10 +12400,10 @@ regexpp@^3.0.0, regexpp@^3.2.0: resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== -regexpu-core@^5.2.1: - version "5.3.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.0.tgz#4d0d044b76fedbad6238703ae84bfdedee2cf074" - integrity sha512-ZdhUQlng0RoscyW7jADnUZ25F5eVtHdMyXSb2PiwafvteRAOJUjFoUPEYZSIfP99fBIs3maLIRfpEddT78wAAQ== +regexpu-core@^5.3.1: + version "5.3.2" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" + integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== dependencies: "@babel/regjsgen" "^0.8.0" regenerate "^1.4.2" @@ -12749,7 +12806,7 @@ semver@7.x, semver@^7.0.0, semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@^ dependencies: lru-cache "^6.0.0" -semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: +semver@^6.0.0, semver@^6.3.0: version "6.3.0" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== @@ -14007,10 +14064,10 @@ untildify@^4.0.0: resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b" integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw== -update-browserslist-db@^1.0.10: - version "1.0.10" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3" - integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== +update-browserslist-db@^1.0.11: + version "1.0.11" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" + integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== dependencies: escalade "^3.1.1" picocolors "^1.0.0" From 7d31f8e97fa2d836fdc3456ac9d66127866ae529 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 7 Jul 2023 12:26:49 +0300 Subject: [PATCH 038/115] fix(deps): update dependency @vue/apollo-composable to v4.0.0-beta.8 (#9432) * fix(deps): update dependency @vue/apollo-composable to v4.0.0-beta.8 * chore(dependencies): updated changesets for modified dependencies * chore(dependencies): updated changesets for modified dependencies --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] --- examples/vue/apollo-composable/package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/vue/apollo-composable/package.json b/examples/vue/apollo-composable/package.json index 88d701e0c29..dbc969702e8 100644 --- a/examples/vue/apollo-composable/package.json +++ b/examples/vue/apollo-composable/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@apollo/client": "^3.7.10", - "@vue/apollo-composable": "4.0.0-beta.4", + "@vue/apollo-composable": "4.0.0-beta.8", "graphql": "^16.6.0", "vue": "^3.2.37" }, diff --git a/yarn.lock b/yarn.lock index f61eae1ed5d..4544e4a36bf 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4431,10 +4431,10 @@ dependencies: "@volar/language-core" "1.7.8" -"@vue/apollo-composable@4.0.0-beta.4": - version "4.0.0-beta.4" - resolved "https://registry.yarnpkg.com/@vue/apollo-composable/-/apollo-composable-4.0.0-beta.4.tgz#a93cbccfdcf9558ada0161294b42f77bee5e6a0b" - integrity sha512-lErWL+9LGfWfdfrSYY3DQB/A8Asqs46MiKwmgKeKSj7fe01tx0UpH43aiwMGj+VgEzBZ9AfqEa/Bxf0Nff/NNw== +"@vue/apollo-composable@4.0.0-beta.8": + version "4.0.0-beta.8" + resolved "https://registry.yarnpkg.com/@vue/apollo-composable/-/apollo-composable-4.0.0-beta.8.tgz#80c2e66f9304c1ab87ff52e1b7bb73379eadd0b9" + integrity sha512-njoXHgeUtAJxs2feSGkTCdqgBjopqUGIdsepYHI8OkniGSWUiYrQL/j395EJx4Umxtbc7ez+TbcJCAa7zjLIEQ== dependencies: throttle-debounce "^3.0.1" ts-essentials "^9.1.2" From 0ca9f6059014503b1553287fb5e23b847f2dd59d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 7 Jul 2023 16:15:38 +0200 Subject: [PATCH 039/115] chore(deps): update @theguild/components (#9533) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- website/package.json | 4 +- yarn.lock | 472 +++++++++++++++++++++---------------------- 2 files changed, 229 insertions(+), 247 deletions(-) diff --git a/website/package.json b/website/package.json index fc7df6c3e96..a5127081ed4 100644 --- a/website/package.json +++ b/website/package.json @@ -10,8 +10,8 @@ "generate-json-config": "tsx generate-config-json-schema.ts" }, "devDependencies": { - "@theguild/algolia": "1.1.7", - "@theguild/tailwind-config": "0.2.1", + "@theguild/algolia": "1.1.8", + "@theguild/tailwind-config": "0.2.2", "@types/dedent": "0.7.0", "@types/jsonpath": "0.2.0", "@types/node": "18.16.16", diff --git a/yarn.lock b/yarn.lock index 4544e4a36bf..e246db75b18 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3776,10 +3776,10 @@ "@tanstack/query-core" "4.29.11" use-sync-external-store "^1.2.0" -"@theguild/algolia@1.1.7": - version "1.1.7" - resolved "https://registry.yarnpkg.com/@theguild/algolia/-/algolia-1.1.7.tgz#b368b215ba5b180f8eac82e6c259e1ea669bc454" - integrity sha512-ywNXpDN1qgYDo0UxAOI819VaqSJdEixLDTSfAoENwN5vPtQwtmKu6ejOqBR3rSf/KDFMc3KTYJ8fh+zYj2ZhvA== +"@theguild/algolia@1.1.8": + version "1.1.8" + resolved "https://registry.yarnpkg.com/@theguild/algolia/-/algolia-1.1.8.tgz#aed5864edbabf7f82b7e37bd1c4a23b0605a20f7" + integrity sha512-UUxgLcl4OIVumjfjHfeFwsH/iOMuqCvqDU4XjP/WmmzCUrFTk88vGRbWyXCeCdzlkpWBz+3dcI57ZgQvF+R66g== dependencies: algoliasearch "^4.14.3" commander "^10.0.0" @@ -3862,13 +3862,13 @@ npm-to-yarn "^2.0.0" unist-util-visit "^4.1.2" -"@theguild/tailwind-config@0.2.1": - version "0.2.1" - resolved "https://registry.yarnpkg.com/@theguild/tailwind-config/-/tailwind-config-0.2.1.tgz#efb57366f42603e8eb462b050498f1bef8e449a2" - integrity sha512-oYuiFhsqWX8r3dFZHGS9retccEajVrbP9640x/umWsZtlbpR0TKpob05aisAZCEolGls1XQ10NqBPtIkB28ujA== +"@theguild/tailwind-config@0.2.2": + version "0.2.2" + resolved "https://registry.yarnpkg.com/@theguild/tailwind-config/-/tailwind-config-0.2.2.tgz#9008ed9f2a1580ab76c182d534643b4568f221be" + integrity sha512-ll3JiGnvCRLp3G6nGj9xrnRTwISOwbUZYV+amzwZROKLzEAClPNXHhI8WjQcoJ3KOQ2SAvGNC6CVOt1RKSTIkw== dependencies: autoprefixer "^10.4.12" - cssnano "^5.1.13" + cssnano "^6.0.0" postcss "^8.4.16" postcss-import "^15.0.0" tailwindcss "^3.1.8" @@ -5291,7 +5291,7 @@ breakword@^1.0.5: dependencies: wcwidth "^1.0.1" -browserslist@^4.0.0, browserslist@^4.16.6, browserslist@^4.21.4, browserslist@^4.21.9: +browserslist@^4.0.0, browserslist@^4.21.4, browserslist@^4.21.9: version "4.21.9" resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.9.tgz#e11bdd3c313d7e2a9e87e8b4b0c7872b13897635" integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg== @@ -5958,26 +5958,26 @@ css-declaration-sorter@^6.3.1: resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.3.1.tgz#be5e1d71b7a992433fb1c542c7a1b835e45682ec" integrity sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w== -css-select@^4.1.3: - version "4.3.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" - integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== +css-select@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6" + integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg== dependencies: boolbase "^1.0.0" - css-what "^6.0.1" - domhandler "^4.3.1" - domutils "^2.8.0" + css-what "^6.1.0" + domhandler "^5.0.2" + domutils "^3.0.1" nth-check "^2.0.1" -css-tree@^1.1.2, css-tree@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" - integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== +css-tree@^2.2.1, css-tree@~2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.2.1.tgz#36115d382d60afd271e377f9c5f67d02bd48c032" + integrity sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA== dependencies: - mdn-data "2.0.14" - source-map "^0.6.1" + mdn-data "2.0.28" + source-map-js "^1.0.1" -css-what@^6.0.1: +css-what@^6.1.0: version "6.1.0" resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== @@ -5987,61 +5987,60 @@ cssesc@^3.0.0: resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== -cssnano-preset-default@^5.2.13: - version "5.2.13" - resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.13.tgz#e7353b0c57975d1bdd97ac96e68e5c1b8c68e990" - integrity sha512-PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ== +cssnano-preset-default@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-6.0.1.tgz#2a93247140d214ddb9f46bc6a3562fa9177fe301" + integrity sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ== dependencies: css-declaration-sorter "^6.3.1" - cssnano-utils "^3.1.0" - postcss-calc "^8.2.3" - postcss-colormin "^5.3.0" - postcss-convert-values "^5.1.3" - postcss-discard-comments "^5.1.2" - postcss-discard-duplicates "^5.1.0" - postcss-discard-empty "^5.1.1" - postcss-discard-overridden "^5.1.0" - postcss-merge-longhand "^5.1.7" - postcss-merge-rules "^5.1.3" - postcss-minify-font-values "^5.1.0" - postcss-minify-gradients "^5.1.1" - postcss-minify-params "^5.1.4" - postcss-minify-selectors "^5.2.1" - postcss-normalize-charset "^5.1.0" - postcss-normalize-display-values "^5.1.0" - postcss-normalize-positions "^5.1.1" - postcss-normalize-repeat-style "^5.1.1" - postcss-normalize-string "^5.1.0" - postcss-normalize-timing-functions "^5.1.0" - postcss-normalize-unicode "^5.1.1" - postcss-normalize-url "^5.1.0" - postcss-normalize-whitespace "^5.1.1" - postcss-ordered-values "^5.1.3" - postcss-reduce-initial "^5.1.1" - postcss-reduce-transforms "^5.1.0" - postcss-svgo "^5.1.0" - postcss-unique-selectors "^5.1.1" - -cssnano-utils@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-3.1.0.tgz#95684d08c91511edfc70d2636338ca37ef3a6861" - integrity sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA== + cssnano-utils "^4.0.0" + postcss-calc "^9.0.0" + postcss-colormin "^6.0.0" + postcss-convert-values "^6.0.0" + postcss-discard-comments "^6.0.0" + postcss-discard-duplicates "^6.0.0" + postcss-discard-empty "^6.0.0" + postcss-discard-overridden "^6.0.0" + postcss-merge-longhand "^6.0.0" + postcss-merge-rules "^6.0.1" + postcss-minify-font-values "^6.0.0" + postcss-minify-gradients "^6.0.0" + postcss-minify-params "^6.0.0" + postcss-minify-selectors "^6.0.0" + postcss-normalize-charset "^6.0.0" + postcss-normalize-display-values "^6.0.0" + postcss-normalize-positions "^6.0.0" + postcss-normalize-repeat-style "^6.0.0" + postcss-normalize-string "^6.0.0" + postcss-normalize-timing-functions "^6.0.0" + postcss-normalize-unicode "^6.0.0" + postcss-normalize-url "^6.0.0" + postcss-normalize-whitespace "^6.0.0" + postcss-ordered-values "^6.0.0" + postcss-reduce-initial "^6.0.0" + postcss-reduce-transforms "^6.0.0" + postcss-svgo "^6.0.0" + postcss-unique-selectors "^6.0.0" + +cssnano-utils@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-4.0.0.tgz#d1da885ec04003ab19505ff0e62e029708d36b08" + integrity sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw== -cssnano@^5.1.13: - version "5.1.14" - resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.14.tgz#07b0af6da73641276fe5a6d45757702ebae2eb05" - integrity sha512-Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw== +cssnano@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-6.0.1.tgz#87c38c4cd47049c735ab756d7e77ac3ca855c008" + integrity sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg== dependencies: - cssnano-preset-default "^5.2.13" - lilconfig "^2.0.3" - yaml "^1.10.2" + cssnano-preset-default "^6.0.1" + lilconfig "^2.1.0" -csso@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" - integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== +csso@^5.0.5: + version "5.0.5" + resolved "https://registry.yarnpkg.com/csso/-/csso-5.0.5.tgz#f9b7fe6cc6ac0b7d90781bb16d5e9874303e2ca6" + integrity sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ== dependencies: - css-tree "^1.1.2" + css-tree "~2.2.0" csstype@^3.0.2, csstype@^3.1.1: version "3.1.2" @@ -6646,40 +6645,40 @@ dom-helpers@^5.0.1: "@babel/runtime" "^7.8.7" csstype "^3.0.2" -dom-serializer@^1.0.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" - integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== +dom-serializer@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" + integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== dependencies: - domelementtype "^2.0.1" - domhandler "^4.2.0" - entities "^2.0.0" + domelementtype "^2.3.0" + domhandler "^5.0.2" + entities "^4.2.0" -domelementtype@^2.0.1, domelementtype@^2.2.0: +domelementtype@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== -domhandler@^4.2.0, domhandler@^4.3.1: - version "4.3.1" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" - integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== +domhandler@^5.0.2, domhandler@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" + integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== dependencies: - domelementtype "^2.2.0" + domelementtype "^2.3.0" dompurify@3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.0.3.tgz#4b115d15a091ddc96f232bcef668550a2f6f1430" integrity sha512-axQ9zieHLnAnHh0sfAamKYiqXMJAVwu+LM/alQ7WDagoWessyWvMSFyW65CqF3owufNu8HBcE4cM2Vflu7YWcQ== -domutils@^2.8.0: - version "2.8.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" - integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== +domutils@^3.0.1: + version "3.1.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e" + integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA== dependencies: - dom-serializer "^1.0.1" - domelementtype "^2.2.0" - domhandler "^4.2.0" + dom-serializer "^2.0.0" + domelementtype "^2.3.0" + domhandler "^5.0.3" dot-case@^3.0.4: version "3.0.4" @@ -6774,12 +6773,7 @@ enquirer@^2.3.0, enquirer@^2.3.6: dependencies: ansi-colors "^4.1.1" -entities@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" - integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== - -entities@^4.4.0: +entities@^4.2.0, entities@^4.4.0: version "4.5.0" resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== @@ -9764,7 +9758,7 @@ levn@~0.3.0: prelude-ls "~1.1.2" type-check "~0.3.2" -lilconfig@2.1.0, lilconfig@^2.0.3, lilconfig@^2.0.5, lilconfig@^2.0.6: +lilconfig@2.1.0, lilconfig@^2.0.5, lilconfig@^2.0.6, lilconfig@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== @@ -10313,10 +10307,10 @@ mdast-util-to-string@^3.0.0, mdast-util-to-string@^3.1.0: dependencies: "@types/mdast" "^3.0.0" -mdn-data@2.0.14: - version "2.0.14" - resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" - integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== +mdn-data@2.0.28: + version "2.0.28" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.28.tgz#5ec48e7bef120654539069e1ae4ddc81ca490eba" + integrity sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g== memoize-one@^5.1.1: version "5.2.1" @@ -11139,11 +11133,6 @@ normalize-range@^0.1.2: resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== -normalize-url@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" - integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== - npm-run-path@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" @@ -11689,51 +11678,51 @@ pluralize@^8.0.0: resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1" integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== -postcss-calc@^8.2.3: - version "8.2.4" - resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-8.2.4.tgz#77b9c29bfcbe8a07ff6693dc87050828889739a5" - integrity sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q== +postcss-calc@^9.0.0: + version "9.0.1" + resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-9.0.1.tgz#a744fd592438a93d6de0f1434c572670361eb6c6" + integrity sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ== dependencies: - postcss-selector-parser "^6.0.9" + postcss-selector-parser "^6.0.11" postcss-value-parser "^4.2.0" -postcss-colormin@^5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.3.0.tgz#3cee9e5ca62b2c27e84fce63affc0cfb5901956a" - integrity sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg== +postcss-colormin@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-6.0.0.tgz#d4250652e952e1c0aca70c66942da93d3cdeaafe" + integrity sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw== dependencies: - browserslist "^4.16.6" + browserslist "^4.21.4" caniuse-api "^3.0.0" colord "^2.9.1" postcss-value-parser "^4.2.0" -postcss-convert-values@^5.1.3: - version "5.1.3" - resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz#04998bb9ba6b65aa31035d669a6af342c5f9d393" - integrity sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA== +postcss-convert-values@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-6.0.0.tgz#ec94a954957e5c3f78f0e8f65dfcda95280b8996" + integrity sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw== dependencies: browserslist "^4.21.4" postcss-value-parser "^4.2.0" -postcss-discard-comments@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz#8df5e81d2925af2780075840c1526f0660e53696" - integrity sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ== +postcss-discard-comments@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-6.0.0.tgz#9ca335e8b68919f301b24ba47dde226a42e535fe" + integrity sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw== -postcss-discard-duplicates@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz#9eb4fe8456706a4eebd6d3b7b777d07bad03e848" - integrity sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw== +postcss-discard-duplicates@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.0.tgz#c26177a6c33070922e67e9a92c0fd23d443d1355" + integrity sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA== -postcss-discard-empty@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz#e57762343ff7f503fe53fca553d18d7f0c369c6c" - integrity sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A== +postcss-discard-empty@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-6.0.0.tgz#06c1c4fce09e22d2a99e667c8550eb8a3a1b9aee" + integrity sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ== -postcss-discard-overridden@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz#7e8c5b53325747e9d90131bb88635282fb4a276e" - integrity sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw== +postcss-discard-overridden@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-6.0.0.tgz#49c5262db14e975e349692d9024442de7cd8e234" + integrity sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw== postcss-import@^14.1.0: version "14.1.0" @@ -11768,53 +11757,53 @@ postcss-load-config@^3.0.1, postcss-load-config@^3.1.4: lilconfig "^2.0.5" yaml "^1.10.2" -postcss-merge-longhand@^5.1.7: - version "5.1.7" - resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz#24a1bdf402d9ef0e70f568f39bdc0344d568fb16" - integrity sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ== +postcss-merge-longhand@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-6.0.0.tgz#6f627b27db939bce316eaa97e22400267e798d69" + integrity sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg== dependencies: postcss-value-parser "^4.2.0" - stylehacks "^5.1.1" + stylehacks "^6.0.0" -postcss-merge-rules@^5.1.3: - version "5.1.3" - resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.1.3.tgz#8f97679e67cc8d08677a6519afca41edf2220894" - integrity sha512-LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA== +postcss-merge-rules@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-6.0.1.tgz#39f165746404e646c0f5c510222ccde4824a86aa" + integrity sha512-a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw== dependencies: browserslist "^4.21.4" caniuse-api "^3.0.0" - cssnano-utils "^3.1.0" + cssnano-utils "^4.0.0" postcss-selector-parser "^6.0.5" -postcss-minify-font-values@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz#f1df0014a726083d260d3bd85d7385fb89d1f01b" - integrity sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA== +postcss-minify-font-values@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-6.0.0.tgz#68d4a028f9fa5f61701974724b2cc9445d8e6070" + integrity sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA== dependencies: postcss-value-parser "^4.2.0" -postcss-minify-gradients@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz#f1fe1b4f498134a5068240c2f25d46fcd236ba2c" - integrity sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw== +postcss-minify-gradients@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-6.0.0.tgz#22b5c88cc63091dadbad34e31ff958404d51d679" + integrity sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA== dependencies: colord "^2.9.1" - cssnano-utils "^3.1.0" + cssnano-utils "^4.0.0" postcss-value-parser "^4.2.0" -postcss-minify-params@^5.1.4: - version "5.1.4" - resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz#c06a6c787128b3208b38c9364cfc40c8aa5d7352" - integrity sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw== +postcss-minify-params@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-6.0.0.tgz#2b3a85a9e3b990d7a16866f430f5fd1d5961b539" + integrity sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ== dependencies: browserslist "^4.21.4" - cssnano-utils "^3.1.0" + cssnano-utils "^4.0.0" postcss-value-parser "^4.2.0" -postcss-minify-selectors@^5.2.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz#d4e7e6b46147b8117ea9325a915a801d5fe656c6" - integrity sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg== +postcss-minify-selectors@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-6.0.0.tgz#5046c5e8680a586e5a0cad52cc9aa36d6be5bda2" + integrity sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g== dependencies: postcss-selector-parser "^6.0.5" @@ -11825,93 +11814,92 @@ postcss-nested@6.0.0: dependencies: postcss-selector-parser "^6.0.10" -postcss-normalize-charset@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz#9302de0b29094b52c259e9b2cf8dc0879879f0ed" - integrity sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg== +postcss-normalize-charset@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-6.0.0.tgz#36cc12457259064969fb96f84df491652a4b0975" + integrity sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ== -postcss-normalize-display-values@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz#72abbae58081960e9edd7200fcf21ab8325c3da8" - integrity sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA== +postcss-normalize-display-values@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.0.tgz#8d2961415078644d8c6bbbdaf9a2fdd60f546cd4" + integrity sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw== dependencies: postcss-value-parser "^4.2.0" -postcss-normalize-positions@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz#ef97279d894087b59325b45c47f1e863daefbb92" - integrity sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg== +postcss-normalize-positions@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-6.0.0.tgz#25b96df99a69f8925f730eaee0be74416865e301" + integrity sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg== dependencies: postcss-value-parser "^4.2.0" -postcss-normalize-repeat-style@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz#e9eb96805204f4766df66fd09ed2e13545420fb2" - integrity sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g== +postcss-normalize-repeat-style@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.0.tgz#ddf30ad8762feb5b1eb97f39f251acd7b8353299" + integrity sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A== dependencies: postcss-value-parser "^4.2.0" -postcss-normalize-string@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz#411961169e07308c82c1f8c55f3e8a337757e228" - integrity sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w== +postcss-normalize-string@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-6.0.0.tgz#948282647a51e409d69dde7910f0ac2ff97cb5d8" + integrity sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w== dependencies: postcss-value-parser "^4.2.0" -postcss-normalize-timing-functions@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz#d5614410f8f0b2388e9f240aa6011ba6f52dafbb" - integrity sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg== +postcss-normalize-timing-functions@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.0.tgz#5f13e650b8c43351989fc5de694525cc2539841c" + integrity sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg== dependencies: postcss-value-parser "^4.2.0" -postcss-normalize-unicode@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz#f67297fca3fea7f17e0d2caa40769afc487aa030" - integrity sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA== +postcss-normalize-unicode@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.0.tgz#741b3310f874616bdcf07764f5503695d3604730" + integrity sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg== dependencies: browserslist "^4.21.4" postcss-value-parser "^4.2.0" -postcss-normalize-url@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz#ed9d88ca82e21abef99f743457d3729a042adcdc" - integrity sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew== +postcss-normalize-url@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-6.0.0.tgz#d0a31e962a16401fb7deb7754b397a323fb650b4" + integrity sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw== dependencies: - normalize-url "^6.0.1" postcss-value-parser "^4.2.0" -postcss-normalize-whitespace@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz#08a1a0d1ffa17a7cc6efe1e6c9da969cc4493cfa" - integrity sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA== +postcss-normalize-whitespace@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.0.tgz#accb961caa42e25ca4179b60855b79b1f7129d4d" + integrity sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw== dependencies: postcss-value-parser "^4.2.0" -postcss-ordered-values@^5.1.3: - version "5.1.3" - resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz#b6fd2bd10f937b23d86bc829c69e7732ce76ea38" - integrity sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ== +postcss-ordered-values@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-6.0.0.tgz#374704cdff25560d44061d17ba3c6308837a3218" + integrity sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg== dependencies: - cssnano-utils "^3.1.0" + cssnano-utils "^4.0.0" postcss-value-parser "^4.2.0" -postcss-reduce-initial@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.1.1.tgz#c18b7dfb88aee24b1f8e4936541c29adbd35224e" - integrity sha512-//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w== +postcss-reduce-initial@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-6.0.0.tgz#7d16e83e60e27e2fa42f56ec0b426f1da332eca7" + integrity sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA== dependencies: browserslist "^4.21.4" caniuse-api "^3.0.0" -postcss-reduce-transforms@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz#333b70e7758b802f3dd0ddfe98bb1ccfef96b6e9" - integrity sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ== +postcss-reduce-transforms@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.0.tgz#28ff2601a6d9b96a2f039b3501526e1f4d584a46" + integrity sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w== dependencies: postcss-value-parser "^4.2.0" -postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9: +postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5: version "6.0.11" resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz#2e41dc39b7ad74046e1615185185cd0b17d0c8dc" integrity sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g== @@ -11919,18 +11907,18 @@ postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.11, postcss-select cssesc "^3.0.0" util-deprecate "^1.0.2" -postcss-svgo@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.1.0.tgz#0a317400ced789f233a28826e77523f15857d80d" - integrity sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA== +postcss-svgo@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-6.0.0.tgz#7b18742d38d4505a0455bbe70d52b49f00eaf69d" + integrity sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw== dependencies: postcss-value-parser "^4.2.0" - svgo "^2.7.0" + svgo "^3.0.2" -postcss-unique-selectors@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz#a9f273d1eacd09e9aa6088f4b0507b18b1b541b6" - integrity sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA== +postcss-unique-selectors@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-6.0.0.tgz#c94e9b0f7bffb1203894e42294b5a1b3fb34fbe1" + integrity sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw== dependencies: postcss-selector-parser "^6.0.5" @@ -13013,7 +13001,7 @@ sort-keys@^5.0.0: dependencies: is-plain-obj "^4.0.0" -source-map-js@^1.0.2: +source-map-js@^1.0.1, source-map-js@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== @@ -13129,11 +13117,6 @@ sshpk@^1.14.1: safer-buffer "^2.0.2" tweetnacl "~0.14.0" -stable@^0.1.8: - version "0.1.8" - resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" - integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== - stack-utils@^2.0.3: version "2.0.6" resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" @@ -13356,10 +13339,10 @@ styled-jsx@5.1.1: dependencies: client-only "0.0.1" -stylehacks@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.1.1.tgz#7934a34eb59d7152149fa69d6e9e56f2fc34bcc9" - integrity sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw== +stylehacks@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-6.0.0.tgz#9fdd7c217660dae0f62e14d51c89f6c01b3cb738" + integrity sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw== dependencies: browserslist "^4.21.4" postcss-selector-parser "^6.0.4" @@ -13415,18 +13398,17 @@ supports-preserve-symlinks-flag@^1.0.0: resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== -svgo@^2.7.0: - version "2.8.0" - resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24" - integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg== +svgo@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.0.2.tgz#5e99eeea42c68ee0dc46aa16da093838c262fe0a" + integrity sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ== dependencies: "@trysound/sax" "0.2.0" commander "^7.2.0" - css-select "^4.1.3" - css-tree "^1.1.3" - csso "^4.2.0" + css-select "^5.1.0" + css-tree "^2.2.1" + csso "^5.0.5" picocolors "^1.0.0" - stable "^0.1.8" swap-case@^2.0.2: version "2.0.2" From 510e1e65be0f2ab2dda2a3b56b49e74c7842d523 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 8 Jul 2023 13:26:46 +0300 Subject: [PATCH 040/115] chore(deps): update dependency @types/node to v18.16.19 (#9536) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- examples/programmatic-typescript/package.json | 2 +- website/package.json | 2 +- yarn.lock | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/programmatic-typescript/package.json b/examples/programmatic-typescript/package.json index e478a1eefae..9fdbe507327 100644 --- a/examples/programmatic-typescript/package.json +++ b/examples/programmatic-typescript/package.json @@ -24,7 +24,7 @@ "prettier": "2.8.8" }, "devDependencies": { - "@types/node": "18.16.16", + "@types/node": "18.16.19", "tsup": "6.7.0" } } diff --git a/website/package.json b/website/package.json index a5127081ed4..18957a28f68 100644 --- a/website/package.json +++ b/website/package.json @@ -14,7 +14,7 @@ "@theguild/tailwind-config": "0.2.2", "@types/dedent": "0.7.0", "@types/jsonpath": "0.2.0", - "@types/node": "18.16.16", + "@types/node": "18.16.19", "@types/react": "18.2.7", "fast-xml-parser": "4.2.2", "jsonpath": "1.1.1", diff --git a/yarn.lock b/yarn.lock index e246db75b18..b39ae0f7a0a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4124,10 +4124,10 @@ resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz#31b7ca6407128a3d2bbc27fe2d21b345397f6197" integrity sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA== -"@types/node@*", "@types/node@18.16.16", "@types/node@^18.11.18": - version "18.16.16" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.16.tgz#3b64862856c7874ccf7439e6bab872d245c86d8e" - integrity sha512-NpaM49IGQQAUlBhHMF82QH80J08os4ZmyF9MkpCzWAGuOHqE4gTEbhzd7L3l5LmWuZ6E0OiC1FweQ4tsiW35+g== +"@types/node@*", "@types/node@18.16.19", "@types/node@^18.11.18": + version "18.16.19" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.19.tgz#cb03fca8910fdeb7595b755126a8a78144714eea" + integrity sha512-IXl7o+R9iti9eBW4Wg2hx1xQDig183jj7YLn8F7udNceyfkbn1ZxmzZXuak20gR40D7pIkIY1kYGx5VIGbaHKA== "@types/node@^12.7.1": version "12.20.55" From f904369f4932889ac5e5b8fcc2f6ede231b70f74 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 8 Jul 2023 13:27:04 +0300 Subject: [PATCH 041/115] chore(deps): update dependency @changesets/cli to v2.26.2 (#9535) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 101 ++++++++++++++++++++++++--------------------------- 2 files changed, 49 insertions(+), 54 deletions(-) diff --git a/package.json b/package.json index 1b98172fa92..1f4fdb0075a 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,7 @@ "@babel/preset-env": "7.22.7", "@babel/preset-typescript": "7.22.5", "@changesets/changelog-github": "0.4.8", - "@changesets/cli": "2.26.1", + "@changesets/cli": "2.26.2", "@theguild/eslint-config": "0.9.0", "@theguild/prettier-config": "0.1.1", "@types/jest": "28.1.8", diff --git a/yarn.lock b/yarn.lock index b39ae0f7a0a..e42bece683d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1285,13 +1285,13 @@ resolved "https://registry.yarnpkg.com/@braintree/sanitize-url/-/sanitize-url-6.0.2.tgz#6110f918d273fe2af8ea1c4398a88774bb9fc12f" integrity sha512-Tbsj02wXCbqGmzdnXNk0SOF19ChhRU70BsroIi4Pm6Ehp56in6vch94mfbdQ17DozxkL3BAVjbZ4Qc1a0HFRAg== -"@changesets/apply-release-plan@^6.1.3": - version "6.1.3" - resolved "https://registry.yarnpkg.com/@changesets/apply-release-plan/-/apply-release-plan-6.1.3.tgz#3bcc0bd57ba00d50d20df7d0141f1a9b2134eaf7" - integrity sha512-ECDNeoc3nfeAe1jqJb5aFQX7CqzQhD2klXRez2JDb/aVpGUbX673HgKrnrgJRuQR/9f2TtLoYIzrGB9qwD77mg== +"@changesets/apply-release-plan@^6.1.4": + version "6.1.4" + resolved "https://registry.yarnpkg.com/@changesets/apply-release-plan/-/apply-release-plan-6.1.4.tgz#09293256090737ecd2f683842d6d732034a5e3c8" + integrity sha512-FMpKF1fRlJyCZVYHr3CbinpZZ+6MwvOtWUuO8uo+svcATEoc1zRDcj23pAurJ2TZ/uVz1wFHH6K3NlACy0PLew== dependencies: "@babel/runtime" "^7.20.1" - "@changesets/config" "^2.3.0" + "@changesets/config" "^2.3.1" "@changesets/get-version-range-type" "^0.3.2" "@changesets/git" "^2.0.0" "@changesets/types" "^5.2.1" @@ -1302,19 +1302,19 @@ outdent "^0.5.0" prettier "^2.7.1" resolve-from "^5.0.0" - semver "^5.4.1" + semver "^7.5.3" -"@changesets/assemble-release-plan@^5.2.3": - version "5.2.3" - resolved "https://registry.yarnpkg.com/@changesets/assemble-release-plan/-/assemble-release-plan-5.2.3.tgz#5ce6191c6e193d40b566a7b0e01690cfb106f4db" - integrity sha512-g7EVZCmnWz3zMBAdrcKhid4hkHT+Ft1n0mLussFMcB1dE2zCuwcvGoy9ec3yOgPGF4hoMtgHaMIk3T3TBdvU9g== +"@changesets/assemble-release-plan@^5.2.4": + version "5.2.4" + resolved "https://registry.yarnpkg.com/@changesets/assemble-release-plan/-/assemble-release-plan-5.2.4.tgz#d42fd63f4297a2e630e8e0a49f07d4ff5f5ef7bc" + integrity sha512-xJkWX+1/CUaOUWTguXEbCDTyWJFECEhmdtbkjhn5GVBGxdP/JwaHBIU9sW3FR6gD07UwZ7ovpiPclQZs+j+mvg== dependencies: "@babel/runtime" "^7.20.1" "@changesets/errors" "^0.1.4" - "@changesets/get-dependents-graph" "^1.3.5" + "@changesets/get-dependents-graph" "^1.3.6" "@changesets/types" "^5.2.1" "@manypkg/get-packages" "^1.1.3" - semver "^5.4.1" + semver "^7.5.3" "@changesets/changelog-git@^0.1.14": version "0.1.14" @@ -1332,19 +1332,19 @@ "@changesets/types" "^5.2.1" dotenv "^8.1.0" -"@changesets/cli@2.26.1": - version "2.26.1" - resolved "https://registry.yarnpkg.com/@changesets/cli/-/cli-2.26.1.tgz#2d10858d7d32314a524e383111c96d831eb0402f" - integrity sha512-XnTa+b51vt057fyAudvDKGB0Sh72xutQZNAdXkCqPBKO2zvs2yYZx5hFZj1u9cbtpwM6Sxtcr02/FQJfZOzemQ== +"@changesets/cli@2.26.2": + version "2.26.2" + resolved "https://registry.yarnpkg.com/@changesets/cli/-/cli-2.26.2.tgz#8914dd6ef3ea425a7d5935f6c35a8b7ccde54e45" + integrity sha512-dnWrJTmRR8bCHikJHl9b9HW3gXACCehz4OasrXpMp7sx97ECuBGGNjJhjPhdZNCvMy9mn4BWdplI323IbqsRig== dependencies: "@babel/runtime" "^7.20.1" - "@changesets/apply-release-plan" "^6.1.3" - "@changesets/assemble-release-plan" "^5.2.3" + "@changesets/apply-release-plan" "^6.1.4" + "@changesets/assemble-release-plan" "^5.2.4" "@changesets/changelog-git" "^0.1.14" - "@changesets/config" "^2.3.0" + "@changesets/config" "^2.3.1" "@changesets/errors" "^0.1.4" - "@changesets/get-dependents-graph" "^1.3.5" - "@changesets/get-release-plan" "^3.0.16" + "@changesets/get-dependents-graph" "^1.3.6" + "@changesets/get-release-plan" "^3.0.17" "@changesets/git" "^2.0.0" "@changesets/logger" "^0.0.5" "@changesets/pre" "^1.0.14" @@ -1353,7 +1353,7 @@ "@changesets/write" "^0.2.3" "@manypkg/get-packages" "^1.1.3" "@types/is-ci" "^3.0.0" - "@types/semver" "^6.0.0" + "@types/semver" "^7.5.0" ansi-colors "^4.1.3" chalk "^2.1.0" enquirer "^2.3.0" @@ -1366,18 +1366,18 @@ p-limit "^2.2.0" preferred-pm "^3.0.0" resolve-from "^5.0.0" - semver "^5.4.1" + semver "^7.5.3" spawndamnit "^2.0.0" term-size "^2.1.0" tty-table "^4.1.5" -"@changesets/config@^2.3.0": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@changesets/config/-/config-2.3.0.tgz#bff074d6492fa772cee139f9a04efa4cd56445bb" - integrity sha512-EgP/px6mhCx8QeaMAvWtRrgyxW08k/Bx2tpGT+M84jEdX37v3VKfh4Cz1BkwrYKuMV2HZKeHOh8sHvja/HcXfQ== +"@changesets/config@^2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@changesets/config/-/config-2.3.1.tgz#3d4a1dc866c3623375180b30f69fccdf0e3efebf" + integrity sha512-PQXaJl82CfIXddUOppj4zWu+987GCw2M+eQcOepxN5s+kvnsZOwjEJO3DH9eVy+OP6Pg/KFEWdsECFEYTtbg6w== dependencies: "@changesets/errors" "^0.1.4" - "@changesets/get-dependents-graph" "^1.3.5" + "@changesets/get-dependents-graph" "^1.3.6" "@changesets/logger" "^0.0.5" "@changesets/types" "^5.2.1" "@manypkg/get-packages" "^1.1.3" @@ -1391,16 +1391,16 @@ dependencies: extendable-error "^0.1.5" -"@changesets/get-dependents-graph@^1.3.5": - version "1.3.5" - resolved "https://registry.yarnpkg.com/@changesets/get-dependents-graph/-/get-dependents-graph-1.3.5.tgz#f94c6672d2f9a87aa35512eea74550585ba41c21" - integrity sha512-w1eEvnWlbVDIY8mWXqWuYE9oKhvIaBhzqzo4ITSJY9hgoqQ3RoBqwlcAzg11qHxv/b8ReDWnMrpjpKrW6m1ZTA== +"@changesets/get-dependents-graph@^1.3.6": + version "1.3.6" + resolved "https://registry.yarnpkg.com/@changesets/get-dependents-graph/-/get-dependents-graph-1.3.6.tgz#5e19e7b0bfbc7dc38e1986eaaa7016ff377ed888" + integrity sha512-Q/sLgBANmkvUm09GgRsAvEtY3p1/5OCzgBE5vX3vgb5CvW0j7CEljocx5oPXeQSNph6FXulJlXV3Re/v3K3P3Q== dependencies: "@changesets/types" "^5.2.1" "@manypkg/get-packages" "^1.1.3" chalk "^2.1.0" fs-extra "^7.0.1" - semver "^5.4.1" + semver "^7.5.3" "@changesets/get-github-info@^0.5.2": version "0.5.2" @@ -1410,14 +1410,14 @@ dataloader "^1.4.0" node-fetch "^2.5.0" -"@changesets/get-release-plan@^3.0.16": - version "3.0.16" - resolved "https://registry.yarnpkg.com/@changesets/get-release-plan/-/get-release-plan-3.0.16.tgz#5d9cfc4ffda02c496ef0fde407210de8e3a0fb19" - integrity sha512-OpP9QILpBp1bY2YNIKFzwigKh7Qe9KizRsZomzLe6pK8IUo8onkAAVUD8+JRKSr8R7d4+JRuQrfSSNlEwKyPYg== +"@changesets/get-release-plan@^3.0.17": + version "3.0.17" + resolved "https://registry.yarnpkg.com/@changesets/get-release-plan/-/get-release-plan-3.0.17.tgz#8aabced2795ffeae864696b60ee3031f8a94c5f3" + integrity sha512-6IwKTubNEgoOZwDontYc2x2cWXfr6IKxP3IhKeK+WjyD6y3M4Gl/jdQvBw+m/5zWILSOCAaGLu2ZF6Q+WiPniw== dependencies: "@babel/runtime" "^7.20.1" - "@changesets/assemble-release-plan" "^5.2.3" - "@changesets/config" "^2.3.0" + "@changesets/assemble-release-plan" "^5.2.4" + "@changesets/config" "^2.3.1" "@changesets/pre" "^1.0.14" "@changesets/read" "^0.5.9" "@changesets/types" "^5.2.1" @@ -4192,15 +4192,10 @@ resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== -"@types/semver@^6.0.0": - version "6.2.3" - resolved "https://registry.yarnpkg.com/@types/semver/-/semver-6.2.3.tgz#5798ecf1bec94eaa64db39ee52808ec0693315aa" - integrity sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A== - -"@types/semver@^7.3.12": - version "7.3.13" - resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91" - integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw== +"@types/semver@^7.3.12", "@types/semver@^7.5.0": + version "7.5.0" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.0.tgz#591c1ce3a702c45ee15f47a42ade72c2fd78978a" + integrity sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw== "@types/shell-quote@1.7.1": version "1.7.1" @@ -12782,15 +12777,15 @@ section-matter@^1.0.0: extend-shallow "^2.0.1" kind-of "^6.0.0" -"semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.6.0: +"semver@2 || 3 || 4 || 5", semver@^5.5.0, semver@^5.6.0: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== -semver@7.x, semver@^7.0.0, semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8: - version "7.3.8" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" - integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== +semver@7.x, semver@^7.0.0, semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.3: + version "7.5.3" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.3.tgz#161ce8c2c6b4b3bdca6caadc9fa3317a4c4fe88e" + integrity sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ== dependencies: lru-cache "^6.0.0" From fdd19d24df21d3257f3e969b79856d18b6f73123 Mon Sep 17 00:00:00 2001 From: Tiago Cichelero Date: Sat, 8 Jul 2023 12:27:47 +0200 Subject: [PATCH 042/115] deps: yaml v2 (#9513) * yaml v2 * changeset --- .changeset/old-jokes-doubt.md | 5 +++++ packages/graphql-codegen-cli/package.json | 2 +- yarn.lock | 10 +++++----- 3 files changed, 11 insertions(+), 6 deletions(-) create mode 100644 .changeset/old-jokes-doubt.md diff --git a/.changeset/old-jokes-doubt.md b/.changeset/old-jokes-doubt.md new file mode 100644 index 00000000000..99e5f655c29 --- /dev/null +++ b/.changeset/old-jokes-doubt.md @@ -0,0 +1,5 @@ +--- +'@graphql-codegen/cli': patch +--- + +Update yaml dependency to 2.3.1 diff --git a/packages/graphql-codegen-cli/package.json b/packages/graphql-codegen-cli/package.json index b8275e8950c..498e4d03e0d 100644 --- a/packages/graphql-codegen-cli/package.json +++ b/packages/graphql-codegen-cli/package.json @@ -72,7 +72,7 @@ "string-env-interpolation": "^1.0.1", "ts-log": "^2.2.3", "tslib": "^2.4.0", - "yaml": "^1.10.0", + "yaml": "^2.3.1", "yargs": "^17.0.0" }, "devDependencies": { diff --git a/yarn.lock b/yarn.lock index e42bece683d..60a30916324 100644 --- a/yarn.lock +++ b/yarn.lock @@ -14540,15 +14540,15 @@ yaml-eslint-parser@^1.1.0: lodash "^4.17.21" yaml "^2.0.0" -yaml@^1.10.0, yaml@^1.10.2: +yaml@^1.10.2: version "1.10.2" resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== -yaml@^2.0.0, yaml@^2.2.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.2.2.tgz#ec551ef37326e6d42872dad1970300f8eb83a073" - integrity sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA== +yaml@^2.0.0, yaml@^2.2.2, yaml@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.1.tgz#02fe0975d23cd441242aa7204e09fc28ac2ac33b" + integrity sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ== yargs-parser@^18.1.2, yargs-parser@^18.1.3: version "18.1.3" From 0869dfdcbc42f616749c0b9349779828a846822e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 8 Jul 2023 13:28:18 +0300 Subject: [PATCH 043/115] fix(deps): update rust crate serde_json to 1.0.98 (#9306) * fix(deps): update rust crate serde_json to 1.0.98 * chore(dependencies): updated changesets for modified dependencies * chore(dependencies): updated changesets for modified dependencies --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] --- packages/presets/swc-plugin/Cargo.lock | 6 +++--- packages/presets/swc-plugin/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/presets/swc-plugin/Cargo.lock b/packages/presets/swc-plugin/Cargo.lock index 6758966a028..aae134e0b00 100644 --- a/packages/presets/swc-plugin/Cargo.lock +++ b/packages/presets/swc-plugin/Cargo.lock @@ -1166,9 +1166,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.95" +version = "1.0.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744" +checksum = "46266871c240a00b8f503b877622fe33430b3c7d963bdc0f2adc511e54a1eae3" dependencies = [ "itoa", "ryu", @@ -1339,7 +1339,7 @@ dependencies = [ [[package]] name = "swc-plugin" -version = "0.1.3" +version = "0.2.0" dependencies = [ "graphql-parser", "pathdiff", diff --git a/packages/presets/swc-plugin/Cargo.toml b/packages/presets/swc-plugin/Cargo.toml index b1c2d43105c..9955f7d14c4 100644 --- a/packages/presets/swc-plugin/Cargo.toml +++ b/packages/presets/swc-plugin/Cargo.toml @@ -26,7 +26,7 @@ strip = "symbols" graphql-parser = "0.4.0" pathdiff = "0.2.1" serde = "1" -serde_json = "1.0.95" +serde_json = "1.0.98" swc_core = { version = "0.75.*", features = ["ecma_plugin_transform", "ecma_visit", "ecma_utils", "ecma_parser", "common", "testing" ] } # .cargo/config defines few alias to build plugin. From a737ede85b5989cbdf4524acb502b8c14be8c9de Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 8 Jul 2023 13:28:59 +0300 Subject: [PATCH 044/115] chore(deps): update dependency fast-xml-parser to v4.2.5 (#9537) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- website/package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/website/package.json b/website/package.json index 18957a28f68..f6da854f127 100644 --- a/website/package.json +++ b/website/package.json @@ -16,7 +16,7 @@ "@types/jsonpath": "0.2.0", "@types/node": "18.16.19", "@types/react": "18.2.7", - "fast-xml-parser": "4.2.2", + "fast-xml-parser": "4.2.5", "jsonpath": "1.1.1", "prettier-plugin-tailwindcss": "0.2.8" }, diff --git a/yarn.lock b/yarn.lock index 60a30916324..a035b0d8ef8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7563,10 +7563,10 @@ fast-url-parser@1.1.3, fast-url-parser@^1.1.3: dependencies: punycode "^1.3.2" -fast-xml-parser@4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.2.2.tgz#cb7310d1e9cf42d22c687b0fae41f3c926629368" - integrity sha512-DLzIPtQqmvmdq3VUKR7T6omPK/VCRNqgFlGtbESfyhcH2R4I8EzK1/K6E8PkRCK2EabWrUHK32NjYRbEFnnz0Q== +fast-xml-parser@4.2.5: + version "4.2.5" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz#a6747a09296a6cb34f2ae634019bf1738f3b421f" + integrity sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g== dependencies: strnum "^1.0.5" From bb1e0e96ed9d519684630cd7ea53869b48b4632e Mon Sep 17 00:00:00 2001 From: Tomoya Kashifuku Date: Sun, 9 Jul 2023 21:40:19 +0900 Subject: [PATCH 045/115] Add `noSilentErrors` option to the config type (#9523) * update CodegenConfig type (add property) * update config.schema.json by building website run `yarn build` in website * add a changeset --- .changeset/large-wombats-beam.md | 5 +++++ packages/utils/plugins-helpers/src/types.ts | 4 ++++ website/public/config.schema.json | 4 ++++ 3 files changed, 13 insertions(+) create mode 100644 .changeset/large-wombats-beam.md diff --git a/.changeset/large-wombats-beam.md b/.changeset/large-wombats-beam.md new file mode 100644 index 00000000000..dd271de024d --- /dev/null +++ b/.changeset/large-wombats-beam.md @@ -0,0 +1,5 @@ +--- +'@graphql-codegen/plugin-helpers': patch +--- + +add noSilentErrors option to the config type diff --git a/packages/utils/plugins-helpers/src/types.ts b/packages/utils/plugins-helpers/src/types.ts index 48b75d28c5a..3f1f0804a94 100644 --- a/packages/utils/plugins-helpers/src/types.ts +++ b/packages/utils/plugins-helpers/src/types.ts @@ -543,6 +543,10 @@ export namespace Types { * For more details: https://graphql-code-generator.com/docs/config-reference/lifecycle-hooks */ hooks?: Partial; + /** + * @description Alows to raise errors if any matched files are not valid GraphQL. Default: false. + */ + noSilentErrors?: boolean; } export type ComplexPluginOutput = { content: string; prepend?: string[]; append?: string[] }; diff --git a/website/public/config.schema.json b/website/public/config.schema.json index 5d2f0cdcd64..1b44d7811b4 100644 --- a/website/public/config.schema.json +++ b/website/public/config.schema.json @@ -96,6 +96,10 @@ "hooks": { "$ref": "#/definitions/Partial", "description": "Specifies scripts to run when events are happening in the codegen core.\nHooks defined on that level will effect all output files.\n\nFor more details: https://graphql-code-generator.com/docs/config-reference/lifecycle-hooks" + }, + "noSilentErrors": { + "description": "Alows to raise errors if any matched files are not valid GraphQL. Default: false.", + "type": "boolean" } } }, From 7ba9d0ec129609cf013f9786cf150b4aa3c59c51 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 16 Jul 2023 21:56:47 -0500 Subject: [PATCH 046/115] fix(deps): update dependency @graphql-codegen/typescript-graphql-request to v5 (#9465) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- website/package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/website/package.json b/website/package.json index f6da854f127..5f7f6a3b70f 100644 --- a/website/package.json +++ b/website/package.json @@ -49,7 +49,7 @@ "@graphql-codegen/typescript-apollo-client-helpers": "2.2.6", "@graphql-codegen/typescript-generic-sdk": "3.1.0", "@graphql-codegen/typescript-graphql-files-modules": "2.2.1", - "@graphql-codegen/typescript-graphql-request": "4.5.8", + "@graphql-codegen/typescript-graphql-request": "5.0.0", "@graphql-codegen/typescript-mongodb": "2.4.6", "@graphql-codegen/typescript-msw": "1.1.6", "@graphql-codegen/typescript-nhost": "0.0.1", diff --git a/yarn.lock b/yarn.lock index a035b0d8ef8..db622184620 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2136,12 +2136,12 @@ "@graphql-codegen/plugin-helpers" "^2.6.2" tslib "~2.4.0" -"@graphql-codegen/typescript-graphql-request@4.5.8": - version "4.5.8" - resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript-graphql-request/-/typescript-graphql-request-4.5.8.tgz#55a609de168f4bf7b66f353b7ba4b1a21113c921" - integrity sha512-XsuAA35Ou03LsklNgnIWXZ5HOHsJ5w1dBuDKtvqM9rD0cAI8x0f4TY0n6O1EraSBSvyHLP3npb1lOTPZzG2TjA== +"@graphql-codegen/typescript-graphql-request@5.0.0": + version "5.0.0" + resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript-graphql-request/-/typescript-graphql-request-5.0.0.tgz#1b118753c8cc795d0a43baae74c6eb4a5f5e6844" + integrity sha512-BM9UzZD/5q3b3Q4c+VOy/QoPWgsnfs1GAnGJjh9xtuty6YsCprwhh12BaV16F+xndNUd6qkghigGyjR8m8RdkA== dependencies: - "@graphql-codegen/plugin-helpers" "^2.7.2" + "@graphql-codegen/plugin-helpers" "^3.0.0" "@graphql-codegen/visitor-plugin-common" "2.13.1" auto-bind "~4.0.0" tslib "~2.4.0" From 5beee9794de208fed17e516a259535f56d626c9d Mon Sep 17 00:00:00 2001 From: Laurin Quast Date: Tue, 25 Jul 2023 09:20:30 +0200 Subject: [PATCH 047/115] typename selection set transform in client preset (#9562) --- .changeset/lucky-boats-chew.md | 32 ++++++++++ ...d-typename-selection-document-transform.ts | 38 +++++++++++ packages/presets/client/src/index.ts | 2 + .../pages/plugins/presets/preset-client.mdx | 64 +++++++++++++++++-- 4 files changed, 129 insertions(+), 7 deletions(-) create mode 100644 .changeset/lucky-boats-chew.md create mode 100644 packages/presets/client/src/add-typename-selection-document-transform.ts diff --git a/.changeset/lucky-boats-chew.md b/.changeset/lucky-boats-chew.md new file mode 100644 index 00000000000..59d81c63ade --- /dev/null +++ b/.changeset/lucky-boats-chew.md @@ -0,0 +1,32 @@ +--- +'@graphql-codegen/client-preset': minor +--- + +Add the `addTypenameSelectionDocumentTransform` for automatically adding `__typename` selections to all objct type selection sets. + +This is useful for GraphQL Clients such as Apollo Client or urql that need typename information for their cache to function. + +**Example Usage** + +``` +import { addTypenameSelectionDocumentTransform } from '@graphql-codegen/client-preset'; +import { CodegenConfig } from "@graphql-codegen/cli"; + +const config: CodegenConfig = { + schema: "YOUR_GRAPHQL_ENDPOINT", + documents: ["./**/*.{ts,tsx}"], + ignoreNoDocuments: true, + generates: { + "./gql/": { + preset: "client", + plugins: [], + presetConfig: { + persistedDocuments: true, + }, + documentTransforms: [addTypenameSelectionDocumentTransform], + }, + }, +}; + +export default config; +``` diff --git a/packages/presets/client/src/add-typename-selection-document-transform.ts b/packages/presets/client/src/add-typename-selection-document-transform.ts new file mode 100644 index 00000000000..319ed40029d --- /dev/null +++ b/packages/presets/client/src/add-typename-selection-document-transform.ts @@ -0,0 +1,38 @@ +import { Kind, visit } from 'graphql'; +import { Types } from '@graphql-codegen/plugin-helpers'; + +/** + * Automatically adds `__typename` selections to every object type in your GraphQL document. + * This is useful for GraphQL Clients such as Apollo Client or urql that need typename information for their cache to function. + */ +export const addTypenameSelectionDocumentTransform: Types.DocumentTransformObject = { + transform({ documents }) { + return documents.map(document => ({ + ...document, + document: document.document + ? visit(document.document, { + SelectionSet(node) { + if ( + !node.selections.find(selection => selection.kind === 'Field' && selection.name.value === '__typename') + ) { + return { + ...node, + selections: [ + { + kind: Kind.FIELD, + name: { + kind: Kind.NAME, + value: '__typename', + }, + }, + ...node.selections, + ], + }; + } + return undefined; + }, + }) + : undefined, + })); + }, +}; diff --git a/packages/presets/client/src/index.ts b/packages/presets/client/src/index.ts index 60a450a8950..1eb9259c794 100644 --- a/packages/presets/client/src/index.ts +++ b/packages/presets/client/src/index.ts @@ -360,3 +360,5 @@ function createDeferred(): Deferred { }); return d; } + +export { addTypenameSelectionDocumentTransform } from './add-typename-selection-document-transform.js'; diff --git a/website/src/pages/plugins/presets/preset-client.mdx b/website/src/pages/plugins/presets/preset-client.mdx index 78e88cc3dac..49b26bf217b 100644 --- a/website/src/pages/plugins/presets/preset-client.mdx +++ b/website/src/pages/plugins/presets/preset-client.mdx @@ -256,7 +256,7 @@ When dealing with nested Fragments, the `useFragment()` should also be used in a You can find a complete working example here: [Nested Fragment example on GitHub](https://github.com/charlypoly/codegen-repros/blob/master/client-preset-nested-fragments-interface/src/App.tsx). -### Fragment Masking with @defer directive +### Fragment Masking with @defer Directive If you use the `@defer` directive and have a Fragment Masking setup, you can use an `isFragmentReady` helper to check if the deferred fragment data is already resolved. The `isFragmentReady` function takes three arguments: the query document, the fragment definition, and the data returned by the @@ -388,16 +388,18 @@ const config: CodegenConfig = { export default config ``` -## Persisted documents +## Persisted Documents -Persisted documents (often also referred to as persisted queries or persisted documents) is a technique for reducing client to server upstream traffic by sending a unique identifier instead of the full GraphQL document. -It is also commonly used to reduce the size of the client bundle as well as to improve security by preventing the client from sending and executing arbitrary GraphQL operations. +Persisted documents (often also referred to as persisted queries or persisted operations) is a technique for reducing client to server upstream traffic by sending a unique identifier instead of the full GraphQL document. +It is also commonly used to reduce the size of the client bundle as well as to improve security by preventing the client from sending and executing arbitrary GraphQL operations (and thus reducing attack surface). You can find [a functional example using GraphQL Yoga within our Codegen Examples on GitHub](https://github.com/dotansimha/graphql-code-generator/tree/master/examples/persisted-documents). +### Enable Persisted Documents + Persisted documents can be enabled by setting the `persistedDocuments` option to `true`: ```ts filename="codegen.ts" {9-11} @@ -488,7 +490,55 @@ console.log(response.status) console.log(await response.json()) ``` -## Reducing bundle size: Babel plugin +### Normalized Caches (urql and Apollo Client) + +Urql is a popular GraphQL client that utilizes a normalized cache. +Because the client utilizes the `__typename` fields to normalize the cache, it is important that the `__typename` field is included in the persisted documents. +The `addTypenameSelectionDocumentTransform` document transform can be used for achieving this. + +```ts filename="codegen.ts" {1,15} +import { type CodegenConfig } from '@graphql-codegen/cli' +import { addTypenameDocumentTransform } from '@graphql-codegen/client-preset' + +const config: CodegenConfig = { + schema: './**/*.graphqls', + documents: ['./**/*.{ts,tsx}'], + ignoreNoDocuments: true, + generates: { + './gql/': { + preset: 'client', + plugins: [], + presetConfig: { + persistedDocuments: true + }, + documentTransforms: [addTypenameDocumentTransform] + } + } +} + +export default config +``` + +Afterwards, you can send the hashes to the server. + +```ts filename="Example with urql" {2,8-13} +import { createClient, cacheExchange } from '@urql/core' +import { persistedExchange } from '@urql/exchange-persisted' + +const client = new createClient({ + url: 'YOUR_GRAPHQL_ENDPOINT', + exchanges: [ + cacheExchange, + persistedExchange({ + enforcePersistedQueries: true, + enableForMutation: true, + generateHash: (_, document) => Promise.resolve(document['__meta__']['hash']) + }) + ] +}) +``` + +## Reducing Bundle Size Large scale projects might want to enable code splitting or tree shaking on the `client-preset` generated files. This is because instead of using the map which contains all GraphQL operations in the project, @@ -496,7 +546,7 @@ we can use the specific generated document types. The `client-preset` comes with a Babel and a swc plugin that enables it. -### Babel plugin +### Babel Plugin To configure the Babel plugin, update (or create) your `.babelrc.js` as follow: @@ -509,7 +559,7 @@ module.exports = { } ``` -### SWC plugin +### SWC Plugin As of 2023/03/11, SWC's custom plugins is still an experimental feature, that means unexpected breaking changes that From 1b4a796271322d19289171c4a5080387ba8f0da9 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 25 Jul 2023 07:22:28 +0000 Subject: [PATCH 048/115] Update algolia-lockfile.json --- website/algolia-lockfile.json | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/website/algolia-lockfile.json b/website/algolia-lockfile.json index 0a886f495dc..4a8d4b81a38 100644 --- a/website/algolia-lockfile.json +++ b/website/algolia-lockfile.json @@ -2024,8 +2024,8 @@ "Getting started", "Config API", "Fragment Masking", - "Persisted documents", - "Reducing bundle size: Babel plugin", + "Persisted Documents", + "Reducing Bundle Size", "DocumentMode" ], "toc": [ @@ -2055,7 +2055,7 @@ }, { "children": [], - "title": "Fragment Masking with @defer directive", + "title": "Fragment Masking with @defer Directive", "anchor": "fragment-masking-with-defer-directive" }, { @@ -2077,8 +2077,20 @@ "anchor": "fragment-masking" }, { - "children": [], - "title": "Persisted documents", + "children": [ + { + "children": [ + { + "children": [], + "title": "Normalized Caches (urql and Apollo Client)", + "anchor": "normalized-caches-urql-and-apollo-client" + } + ], + "title": "Enable Persisted Documents", + "anchor": "enable-persisted-documents" + } + ], + "title": "Persisted Documents", "anchor": "persisted-documents" }, { @@ -2087,16 +2099,16 @@ "children": [ { "children": [], - "title": "SWC plugin", + "title": "SWC Plugin", "anchor": "swc-plugin" } ], - "title": "Babel plugin", + "title": "Babel Plugin", "anchor": "babel-plugin" } ], - "title": "Reducing bundle size: Babel plugin", - "anchor": "reducing-bundle-size-babel-plugin" + "title": "Reducing Bundle Size", + "anchor": "reducing-bundle-size" }, { "children": [ From 5829dd9b0ea4be5479eeeb2de65307b0e5255352 Mon Sep 17 00:00:00 2001 From: TheGuildBot <59414373+theguild-bot@users.noreply.github.com> Date: Tue, 25 Jul 2023 12:17:47 +0300 Subject: [PATCH 049/115] Upcoming Release Changes (#9531) Co-authored-by: github-actions[bot] --- .changeset/five-spies-impress.md | 5 --- .changeset/large-wombats-beam.md | 5 --- .changeset/lucky-boats-chew.md | 32 ---------------- .changeset/old-jokes-doubt.md | 5 --- .../package.json | 4 +- examples/persisted-documents/package.json | 4 +- examples/programmatic-typescript/package.json | 2 +- .../react/apollo-client-defer/package.json | 4 +- .../apollo-client-swc-plugin/package.json | 4 +- examples/react/apollo-client/package.json | 4 +- examples/react/http-executor/package.json | 4 +- examples/react/nextjs-swr/package.json | 4 +- .../react/tanstack-react-query/package.json | 4 +- examples/react/urql/package.json | 4 +- examples/typescript-esm/package.json | 4 +- .../typescript-graphql-request/package.json | 4 +- examples/typescript-resolvers/package.json | 2 +- examples/vite/vite-react-cts/package.json | 4 +- examples/vite/vite-react-mts/package.json | 4 +- examples/vite/vite-react-ts/package.json | 4 +- examples/vue/apollo-composable/package.json | 4 +- examples/vue/urql/package.json | 4 +- examples/vue/villus/package.json | 4 +- examples/yoga-tests/package.json | 4 +- packages/graphql-codegen-cli/CHANGELOG.md | 13 +++++++ packages/graphql-codegen-cli/package.json | 4 +- packages/presets/client/CHANGELOG.md | 38 +++++++++++++++++++ packages/presets/client/package.json | 4 +- packages/utils/plugins-helpers/CHANGELOG.md | 6 +++ packages/utils/plugins-helpers/package.json | 2 +- website/package.json | 4 +- 31 files changed, 102 insertions(+), 92 deletions(-) delete mode 100644 .changeset/five-spies-impress.md delete mode 100644 .changeset/large-wombats-beam.md delete mode 100644 .changeset/lucky-boats-chew.md delete mode 100644 .changeset/old-jokes-doubt.md diff --git a/.changeset/five-spies-impress.md b/.changeset/five-spies-impress.md deleted file mode 100644 index 0c6a04e4640..00000000000 --- a/.changeset/five-spies-impress.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@graphql-codegen/cli': major ---- - -Make @parcel/watcher optional diff --git a/.changeset/large-wombats-beam.md b/.changeset/large-wombats-beam.md deleted file mode 100644 index dd271de024d..00000000000 --- a/.changeset/large-wombats-beam.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@graphql-codegen/plugin-helpers': patch ---- - -add noSilentErrors option to the config type diff --git a/.changeset/lucky-boats-chew.md b/.changeset/lucky-boats-chew.md deleted file mode 100644 index 59d81c63ade..00000000000 --- a/.changeset/lucky-boats-chew.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -'@graphql-codegen/client-preset': minor ---- - -Add the `addTypenameSelectionDocumentTransform` for automatically adding `__typename` selections to all objct type selection sets. - -This is useful for GraphQL Clients such as Apollo Client or urql that need typename information for their cache to function. - -**Example Usage** - -``` -import { addTypenameSelectionDocumentTransform } from '@graphql-codegen/client-preset'; -import { CodegenConfig } from "@graphql-codegen/cli"; - -const config: CodegenConfig = { - schema: "YOUR_GRAPHQL_ENDPOINT", - documents: ["./**/*.{ts,tsx}"], - ignoreNoDocuments: true, - generates: { - "./gql/": { - preset: "client", - plugins: [], - presetConfig: { - persistedDocuments: true, - }, - documentTransforms: [addTypenameSelectionDocumentTransform], - }, - }, -}; - -export default config; -``` diff --git a/.changeset/old-jokes-doubt.md b/.changeset/old-jokes-doubt.md deleted file mode 100644 index 99e5f655c29..00000000000 --- a/.changeset/old-jokes-doubt.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@graphql-codegen/cli': patch ---- - -Update yaml dependency to 2.3.1 diff --git a/examples/persisted-documents-string-mode/package.json b/examples/persisted-documents-string-mode/package.json index a76c92b8700..4da38c3a386 100644 --- a/examples/persisted-documents-string-mode/package.json +++ b/examples/persisted-documents-string-mode/package.json @@ -10,8 +10,8 @@ "@graphql-typed-document-node/core": "3.2.0", "jest": "28.1.3", "babel-jest": "28.1.3", - "@graphql-codegen/cli": "4.0.1", - "@graphql-codegen/client-preset": "4.0.1", + "@graphql-codegen/cli": "5.0.0", + "@graphql-codegen/client-preset": "4.1.0", "@babel/core": "7.22.8", "@babel/preset-env": "7.22.7", "@babel/preset-typescript": "7.22.5" diff --git a/examples/persisted-documents/package.json b/examples/persisted-documents/package.json index 070bd5cc064..d4829f79eaf 100644 --- a/examples/persisted-documents/package.json +++ b/examples/persisted-documents/package.json @@ -10,8 +10,8 @@ "@graphql-typed-document-node/core": "3.2.0", "jest": "28.1.3", "babel-jest": "28.1.3", - "@graphql-codegen/cli": "4.0.1", - "@graphql-codegen/client-preset": "4.0.1", + "@graphql-codegen/cli": "5.0.0", + "@graphql-codegen/client-preset": "4.1.0", "@babel/core": "7.22.8", "@babel/preset-env": "7.22.7", "@babel/preset-typescript": "7.22.5" diff --git a/examples/programmatic-typescript/package.json b/examples/programmatic-typescript/package.json index 9fdbe507327..a7334abb335 100644 --- a/examples/programmatic-typescript/package.json +++ b/examples/programmatic-typescript/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@graphql-codegen/core": "4.0.0", - "@graphql-codegen/plugin-helpers": "5.0.0", + "@graphql-codegen/plugin-helpers": "5.0.1", "@graphql-codegen/typed-document-node": "5.0.1", "@graphql-codegen/typescript": "4.0.1", "@graphql-codegen/typescript-operations": "4.0.1", diff --git a/examples/react/apollo-client-defer/package.json b/examples/react/apollo-client-defer/package.json index 159e13696c0..85617067938 100644 --- a/examples/react/apollo-client-defer/package.json +++ b/examples/react/apollo-client-defer/package.json @@ -11,8 +11,8 @@ "graphql-yoga": "3.9.1" }, "devDependencies": { - "@graphql-codegen/cli": "^4.0.1", - "@graphql-codegen/client-preset": "^4.0.1", + "@graphql-codegen/cli": "^5.0.0", + "@graphql-codegen/client-preset": "^4.1.0", "@types/jest": "^27.5.2", "@types/node": "^18.11.18", "@types/react": "^18.0.15", diff --git a/examples/react/apollo-client-swc-plugin/package.json b/examples/react/apollo-client-swc-plugin/package.json index 8b712829ca9..59e67abaee2 100644 --- a/examples/react/apollo-client-swc-plugin/package.json +++ b/examples/react/apollo-client-swc-plugin/package.json @@ -9,8 +9,8 @@ }, "devDependencies": { "@graphql-codegen/client-preset-swc-plugin": "0.2.0", - "@graphql-codegen/client-preset": "^4.0.1", - "@graphql-codegen/cli": "^4.0.1", + "@graphql-codegen/client-preset": "^4.1.0", + "@graphql-codegen/cli": "^5.0.0", "@vitejs/plugin-react-swc": "^3.3.0", "@types/react": "18.2.7", "@types/react-dom": "18.2.4", diff --git a/examples/react/apollo-client/package.json b/examples/react/apollo-client/package.json index 5ba2dfbfd14..b3178d4b7b6 100644 --- a/examples/react/apollo-client/package.json +++ b/examples/react/apollo-client/package.json @@ -9,8 +9,8 @@ "react-dom": "^18.2.0" }, "devDependencies": { - "@graphql-codegen/cli": "^4.0.1", - "@graphql-codegen/client-preset": "^4.0.1", + "@graphql-codegen/cli": "^5.0.0", + "@graphql-codegen/client-preset": "^4.1.0", "@vitejs/plugin-react": "^3.1.0", "@types/jest": "^27.5.2", "@types/node": "^18.11.18", diff --git a/examples/react/http-executor/package.json b/examples/react/http-executor/package.json index cc0233c5a18..173fd1b99fc 100644 --- a/examples/react/http-executor/package.json +++ b/examples/react/http-executor/package.json @@ -8,8 +8,8 @@ "react-dom": "^18.2.0" }, "devDependencies": { - "@graphql-codegen/cli": "^4.0.1", - "@graphql-codegen/client-preset": "^4.0.1", + "@graphql-codegen/cli": "^5.0.0", + "@graphql-codegen/client-preset": "^4.1.0", "@vitejs/plugin-react": "^3.1.0", "@types/jest": "^27.5.2", "@types/node": "^18.11.18", diff --git a/examples/react/nextjs-swr/package.json b/examples/react/nextjs-swr/package.json index 1fe4b21d089..b4dc8ba317a 100644 --- a/examples/react/nextjs-swr/package.json +++ b/examples/react/nextjs-swr/package.json @@ -19,8 +19,8 @@ "swr": "^1.3.0" }, "devDependencies": { - "@graphql-codegen/cli": "^4.0.1", - "@graphql-codegen/client-preset": "^4.0.1", + "@graphql-codegen/cli": "^5.0.0", + "@graphql-codegen/client-preset": "^4.1.0", "@graphql-codegen/schema-ast": "4.0.0", "@graphql-codegen/client-preset-swc-plugin": "0.2.0", "@types/node": "^18.11.18", diff --git a/examples/react/tanstack-react-query/package.json b/examples/react/tanstack-react-query/package.json index 5289b21ac6c..cc979f9aac1 100644 --- a/examples/react/tanstack-react-query/package.json +++ b/examples/react/tanstack-react-query/package.json @@ -8,8 +8,8 @@ "react-dom": "^18.2.0" }, "devDependencies": { - "@graphql-codegen/cli": "^4.0.1", - "@graphql-codegen/client-preset": "^4.0.1", + "@graphql-codegen/cli": "^5.0.0", + "@graphql-codegen/client-preset": "^4.1.0", "@vitejs/plugin-react": "^3.1.0", "@types/jest": "^27.5.2", "@types/node": "^18.11.18", diff --git a/examples/react/urql/package.json b/examples/react/urql/package.json index 1283e4dff36..b31cafafb4c 100644 --- a/examples/react/urql/package.json +++ b/examples/react/urql/package.json @@ -10,8 +10,8 @@ "devDependencies": { "@types/react": "^18.0.17", "@types/react-dom": "^18.0.10", - "@graphql-codegen/cli": "^4.0.1", - "@graphql-codegen/client-preset": "^4.0.1", + "@graphql-codegen/cli": "^5.0.0", + "@graphql-codegen/client-preset": "^4.1.0", "@vitejs/plugin-react": "^3.1.0", "typescript": "5.0.4", "serve": "14.2.0", diff --git a/examples/typescript-esm/package.json b/examples/typescript-esm/package.json index 429d0d622ae..4f0baae5b59 100644 --- a/examples/typescript-esm/package.json +++ b/examples/typescript-esm/package.json @@ -3,8 +3,8 @@ "version": "0.0.0", "private": true, "devDependencies": { - "@graphql-codegen/cli": "4.0.1", - "@graphql-codegen/client-preset": "4.0.1" + "@graphql-codegen/cli": "5.0.0", + "@graphql-codegen/client-preset": "4.1.0" }, "dependencies": { "@graphql-typed-document-node/core": "3.2.0", diff --git a/examples/typescript-graphql-request/package.json b/examples/typescript-graphql-request/package.json index 5ed290c1c9f..f59f29ab33e 100644 --- a/examples/typescript-graphql-request/package.json +++ b/examples/typescript-graphql-request/package.json @@ -3,8 +3,8 @@ "version": "0.0.0", "private": true, "devDependencies": { - "@graphql-codegen/cli": "4.0.1", - "@graphql-codegen/client-preset": "4.0.1", + "@graphql-codegen/cli": "5.0.0", + "@graphql-codegen/client-preset": "4.1.0", "babel-jest": "28.1.3", "jest": "28.1.3" }, diff --git a/examples/typescript-resolvers/package.json b/examples/typescript-resolvers/package.json index de00b5834ff..5d17548d379 100644 --- a/examples/typescript-resolvers/package.json +++ b/examples/typescript-resolvers/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "devDependencies": { - "@graphql-codegen/cli": "4.0.1", + "@graphql-codegen/cli": "5.0.0", "@graphql-codegen/typescript": "4.0.1", "@graphql-codegen/typescript-resolvers": "4.0.1" }, diff --git a/examples/vite/vite-react-cts/package.json b/examples/vite/vite-react-cts/package.json index a357e7533d5..27edca95c01 100644 --- a/examples/vite/vite-react-cts/package.json +++ b/examples/vite/vite-react-cts/package.json @@ -21,8 +21,8 @@ "vite": "^4.1.0" }, "devDependencies": { - "@graphql-codegen/cli": "4.0.1", - "@graphql-codegen/client-preset": "4.0.1", + "@graphql-codegen/cli": "5.0.0", + "@graphql-codegen/client-preset": "4.1.0", "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", "cypress": "12.12.0", diff --git a/examples/vite/vite-react-mts/package.json b/examples/vite/vite-react-mts/package.json index d30ae8b1b7a..fb538518f85 100644 --- a/examples/vite/vite-react-mts/package.json +++ b/examples/vite/vite-react-mts/package.json @@ -21,8 +21,8 @@ "vite": "^4.1.0" }, "devDependencies": { - "@graphql-codegen/cli": "4.0.1", - "@graphql-codegen/client-preset": "4.0.1", + "@graphql-codegen/cli": "5.0.0", + "@graphql-codegen/client-preset": "4.1.0", "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", "cypress": "12.12.0", diff --git a/examples/vite/vite-react-ts/package.json b/examples/vite/vite-react-ts/package.json index 92954141efe..fe8f144fe19 100644 --- a/examples/vite/vite-react-ts/package.json +++ b/examples/vite/vite-react-ts/package.json @@ -21,8 +21,8 @@ "vite": "^4.1.0" }, "devDependencies": { - "@graphql-codegen/cli": "4.0.1", - "@graphql-codegen/client-preset": "4.0.1", + "@graphql-codegen/cli": "5.0.0", + "@graphql-codegen/client-preset": "4.1.0", "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", "cypress": "12.12.0", diff --git a/examples/vue/apollo-composable/package.json b/examples/vue/apollo-composable/package.json index dbc969702e8..504541b5b16 100644 --- a/examples/vue/apollo-composable/package.json +++ b/examples/vue/apollo-composable/package.json @@ -17,8 +17,8 @@ "vue": "^3.2.37" }, "devDependencies": { - "@graphql-codegen/cli": "^4.0.1", - "@graphql-codegen/client-preset": "^4.0.1", + "@graphql-codegen/cli": "^5.0.0", + "@graphql-codegen/client-preset": "^4.1.0", "@vitejs/plugin-vue": "^4.0.0", "typescript": "^5.0.0", "vite": "^4.1.0", diff --git a/examples/vue/urql/package.json b/examples/vue/urql/package.json index 2af154fd78a..0fcc79c3445 100644 --- a/examples/vue/urql/package.json +++ b/examples/vue/urql/package.json @@ -16,8 +16,8 @@ "vue": "^3.2.45" }, "devDependencies": { - "@graphql-codegen/cli": "^4.0.1", - "@graphql-codegen/client-preset": "^4.0.1", + "@graphql-codegen/cli": "^5.0.0", + "@graphql-codegen/client-preset": "^4.1.0", "@vitejs/plugin-vue": "^4.0.0", "typescript": "^5.0.0", "vite": "^4.1.0", diff --git a/examples/vue/villus/package.json b/examples/vue/villus/package.json index 6862cc9eac9..346f23856e9 100644 --- a/examples/vue/villus/package.json +++ b/examples/vue/villus/package.json @@ -16,8 +16,8 @@ "vue": "^3.2.37" }, "devDependencies": { - "@graphql-codegen/cli": "^4.0.1", - "@graphql-codegen/client-preset": "^4.0.1", + "@graphql-codegen/cli": "^5.0.0", + "@graphql-codegen/client-preset": "^4.1.0", "@vitejs/plugin-vue": "^4.0.0", "typescript": "^5.0.0", "vite": "^4.1.0", diff --git a/examples/yoga-tests/package.json b/examples/yoga-tests/package.json index e049b99f3e6..0289300c77f 100644 --- a/examples/yoga-tests/package.json +++ b/examples/yoga-tests/package.json @@ -9,8 +9,8 @@ "@graphql-typed-document-node/core": "3.2.0", "jest": "28.1.3", "babel-jest": "28.1.3", - "@graphql-codegen/cli": "4.0.1", - "@graphql-codegen/client-preset": "4.0.1", + "@graphql-codegen/cli": "5.0.0", + "@graphql-codegen/client-preset": "4.1.0", "@babel/core": "7.22.8", "@babel/preset-env": "7.22.7", "@babel/preset-typescript": "7.22.5" diff --git a/packages/graphql-codegen-cli/CHANGELOG.md b/packages/graphql-codegen-cli/CHANGELOG.md index 36b6314e8ff..57032bdf2b7 100644 --- a/packages/graphql-codegen-cli/CHANGELOG.md +++ b/packages/graphql-codegen-cli/CHANGELOG.md @@ -1,5 +1,18 @@ # @graphql-codegen/cli +## 5.0.0 + +### Major Changes + +- [#9506](https://github.com/dotansimha/graphql-code-generator/pull/9506) [`dd9c7e148`](https://github.com/dotansimha/graphql-code-generator/commit/dd9c7e14872f48592e530ff0d646449a5cb722b4) Thanks [@valkum](https://github.com/valkum)! - Make @parcel/watcher optional + +### Patch Changes + +- [#9513](https://github.com/dotansimha/graphql-code-generator/pull/9513) [`fdd19d24d`](https://github.com/dotansimha/graphql-code-generator/commit/fdd19d24df21d3257f3e969b79856d18b6f73123) Thanks [@cichelero](https://github.com/cichelero)! - Update yaml dependency to 2.3.1 + +- Updated dependencies [[`bb1e0e96e`](https://github.com/dotansimha/graphql-code-generator/commit/bb1e0e96ed9d519684630cd7ea53869b48b4632e)]: + - @graphql-codegen/plugin-helpers@5.0.1 + ## 4.0.1 ### Patch Changes diff --git a/packages/graphql-codegen-cli/package.json b/packages/graphql-codegen-cli/package.json index 498e4d03e0d..a48c8b663be 100644 --- a/packages/graphql-codegen-cli/package.json +++ b/packages/graphql-codegen-cli/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-codegen/cli", - "version": "4.0.1", + "version": "5.0.0", "license": "MIT", "bin": { "gql-gen": "dist/cjs/bin.js", @@ -44,7 +44,7 @@ "@babel/template": "^7.18.10", "@babel/types": "^7.18.13", "@graphql-codegen/core": "^4.0.0", - "@graphql-codegen/plugin-helpers": "^5.0.0", + "@graphql-codegen/plugin-helpers": "^5.0.1", "@graphql-tools/apollo-engine-loader": "^8.0.0", "@graphql-tools/code-file-loader": "^8.0.0", "@graphql-tools/git-loader": "^8.0.0", diff --git a/packages/presets/client/CHANGELOG.md b/packages/presets/client/CHANGELOG.md index 13dff15f8aa..04a76512db3 100644 --- a/packages/presets/client/CHANGELOG.md +++ b/packages/presets/client/CHANGELOG.md @@ -1,5 +1,43 @@ # @graphql-codegen/client-preset +## 4.1.0 + +### Minor Changes + +- [#9562](https://github.com/dotansimha/graphql-code-generator/pull/9562) [`5beee9794`](https://github.com/dotansimha/graphql-code-generator/commit/5beee9794de208fed17e516a259535f56d626c9d) Thanks [@n1ru4l](https://github.com/n1ru4l)! - Add the `addTypenameSelectionDocumentTransform` for automatically adding `__typename` selections to all objct type selection sets. + + This is useful for GraphQL Clients such as Apollo Client or urql that need typename information for their cache to function. + + **Example Usage** + + ``` + import { addTypenameSelectionDocumentTransform } from '@graphql-codegen/client-preset'; + import { CodegenConfig } from "@graphql-codegen/cli"; + + const config: CodegenConfig = { + schema: "YOUR_GRAPHQL_ENDPOINT", + documents: ["./**/*.{ts,tsx}"], + ignoreNoDocuments: true, + generates: { + "./gql/": { + preset: "client", + plugins: [], + presetConfig: { + persistedDocuments: true, + }, + documentTransforms: [addTypenameSelectionDocumentTransform], + }, + }, + }; + + export default config; + ``` + +### Patch Changes + +- Updated dependencies [[`bb1e0e96e`](https://github.com/dotansimha/graphql-code-generator/commit/bb1e0e96ed9d519684630cd7ea53869b48b4632e)]: + - @graphql-codegen/plugin-helpers@5.0.1 + ## 4.0.1 ### Patch Changes diff --git a/packages/presets/client/package.json b/packages/presets/client/package.json index 70f41b9d6fa..6d1c78f028a 100644 --- a/packages/presets/client/package.json +++ b/packages/presets/client/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-codegen/client-preset", - "version": "4.0.1", + "version": "4.1.0", "description": "GraphQL Code Generator preset for client.", "repository": { "type": "git", @@ -24,7 +24,7 @@ "@graphql-codegen/typescript": "^4.0.1", "@graphql-codegen/typescript-operations": "^4.0.1", "@graphql-codegen/gql-tag-operations": "4.0.1", - "@graphql-codegen/plugin-helpers": "^5.0.0", + "@graphql-codegen/plugin-helpers": "^5.0.1", "@graphql-codegen/visitor-plugin-common": "^4.0.1", "@graphql-typed-document-node/core": "3.2.0", "@graphql-tools/documents": "^1.0.0", diff --git a/packages/utils/plugins-helpers/CHANGELOG.md b/packages/utils/plugins-helpers/CHANGELOG.md index a527d2c9a1a..4dce10fbdab 100644 --- a/packages/utils/plugins-helpers/CHANGELOG.md +++ b/packages/utils/plugins-helpers/CHANGELOG.md @@ -1,5 +1,11 @@ # @graphql-codegen/plugin-helpers +## 5.0.1 + +### Patch Changes + +- [#9523](https://github.com/dotansimha/graphql-code-generator/pull/9523) [`bb1e0e96e`](https://github.com/dotansimha/graphql-code-generator/commit/bb1e0e96ed9d519684630cd7ea53869b48b4632e) Thanks [@tnyo43](https://github.com/tnyo43)! - add noSilentErrors option to the config type + ## 5.0.0 ### Major Changes diff --git a/packages/utils/plugins-helpers/package.json b/packages/utils/plugins-helpers/package.json index 8632207dca1..2f08bfa3c32 100644 --- a/packages/utils/plugins-helpers/package.json +++ b/packages/utils/plugins-helpers/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-codegen/plugin-helpers", - "version": "5.0.0", + "version": "5.0.1", "description": "GraphQL Code Generator common utils and types", "repository": { "type": "git", diff --git a/website/package.json b/website/package.json index 5f7f6a3b70f..ea8183cb6c2 100644 --- a/website/package.json +++ b/website/package.json @@ -24,7 +24,7 @@ "@graphql-codegen/add": "5.0.0", "@graphql-codegen/c-sharp": "4.3.1", "@graphql-codegen/c-sharp-operations": "2.3.1", - "@graphql-codegen/cli": "4.0.1", + "@graphql-codegen/cli": "5.0.0", "@graphql-codegen/core": "4.0.0", "@graphql-codegen/flow": "2.3.6", "@graphql-codegen/flow-operations": "2.3.6", @@ -65,7 +65,7 @@ "@graphql-codegen/typescript-vue-apollo-smart-ops": "2.3.6", "@graphql-codegen/typescript-vue-urql": "2.3.6", "@graphql-codegen/urql-introspection": "2.2.1", - "@graphql-codegen/client-preset": "4.0.1", + "@graphql-codegen/client-preset": "4.1.0", "@mendable/search": "0.0.108", "@monaco-editor/react": "4.5.1", "@theguild/components": "5.0.0", From ce9b3388d625cb2403dd2d2534e5bf5b1940b301 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 3 Aug 2023 10:42:09 +0200 Subject: [PATCH 050/115] chore(deps): update @theguild/components (#9555) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- website/package.json | 6 +- yarn.lock | 857 +++++++++++++++++++++++-------------------- 2 files changed, 454 insertions(+), 409 deletions(-) diff --git a/website/package.json b/website/package.json index ea8183cb6c2..722bf789627 100644 --- a/website/package.json +++ b/website/package.json @@ -10,8 +10,8 @@ "generate-json-config": "tsx generate-config-json-schema.ts" }, "devDependencies": { - "@theguild/algolia": "1.1.8", - "@theguild/tailwind-config": "0.2.2", + "@theguild/algolia": "1.1.9", + "@theguild/tailwind-config": "0.3.0", "@types/dedent": "0.7.0", "@types/jsonpath": "0.2.0", "@types/node": "18.16.19", @@ -68,7 +68,7 @@ "@graphql-codegen/client-preset": "4.1.0", "@mendable/search": "0.0.108", "@monaco-editor/react": "4.5.1", - "@theguild/components": "5.0.0", + "@theguild/components": "5.2.1", "classnames": "2.3.2", "date-fns": "2.29.3", "dedent": "0.7.0", diff --git a/yarn.lock b/yarn.lock index db622184620..5f03acbad55 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7,167 +7,172 @@ resolved "https://registry.yarnpkg.com/@0no-co/graphql.web/-/graphql.web-1.0.1.tgz#db3da0d2cd41548b50f0583c0d2f4743c767e56b" integrity sha512-6Yaxyv6rOwRkLIvFaL0NrLDgfNqC/Ng9QOPmTmlqW4mORXMEKmh5NYGkIvvt5Yw8fZesnMAqkj8cIqTj8f40cQ== -"@algolia/autocomplete-core@1.9.2": - version "1.9.2" - resolved "https://registry.yarnpkg.com/@algolia/autocomplete-core/-/autocomplete-core-1.9.2.tgz#1c9ffcfac7fc4733fe97356247b25d9d7a83538c" - integrity sha512-hkG80c9kx9ClVAEcUJbTd2ziVC713x9Bji9Ty4XJfKXlxlsx3iXsoNhAwfeR4ulzIUg7OE5gez0UU1zVDdG7kg== - dependencies: - "@algolia/autocomplete-plugin-algolia-insights" "1.9.2" - "@algolia/autocomplete-shared" "1.9.2" - -"@algolia/autocomplete-js@1.9.2": - version "1.9.2" - resolved "https://registry.yarnpkg.com/@algolia/autocomplete-js/-/autocomplete-js-1.9.2.tgz#4d32d7bec4319a8fd9c2eafa5a48954039494c5b" - integrity sha512-qaYzP0DNZsratnu18umlQVW++8uI8irpadk/e2cCOhM5Qvsyw9y338lkTd4AkxOPYf9EhTVgDNq0rQ+dNDtDgQ== - dependencies: - "@algolia/autocomplete-core" "1.9.2" - "@algolia/autocomplete-preset-algolia" "1.9.2" - "@algolia/autocomplete-shared" "1.9.2" +"@algolia/autocomplete-core@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-core/-/autocomplete-core-1.10.0.tgz#d9c7435e90993852e9aa159df7ed84d4342656cc" + integrity sha512-zaQ4ZOtGkeUvDGObZvaULuZmU4kAcVu/Wm9EP6Vzij5wQ98FAKz1uHn2EPiCI0aFIoUfZi/WhJvn5l6qVBdYEA== + dependencies: + "@algolia/autocomplete-plugin-algolia-insights" "1.10.0" + "@algolia/autocomplete-shared" "1.10.0" + +"@algolia/autocomplete-js@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-js/-/autocomplete-js-1.10.0.tgz#25fb429ee0883e525e19f7d116ce6a609a330265" + integrity sha512-PpDNZs6/H5u9yOvpZ1HWb5Uf40zXOGCmhjDEfODQ6Q506hxAKhquxNLI+o8Chgda4bvRai1gGfFdZ5RSr0oHbA== + dependencies: + "@algolia/autocomplete-core" "1.10.0" + "@algolia/autocomplete-preset-algolia" "1.10.0" + "@algolia/autocomplete-shared" "1.10.0" htm "^3.1.1" preact "^10.13.2" -"@algolia/autocomplete-plugin-algolia-insights@1.9.2": - version "1.9.2" - resolved "https://registry.yarnpkg.com/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.9.2.tgz#b4672d5662acc2d0a0547d14dfbdcc70c17625de" - integrity sha512-2LVsf4W66hVHQ3Ua/8k15oPlxjELCztbAkQm/hP42Sw+GLkHAdY1vaVRYziaWq64+Oljfg6FKkZHCdgXH+CGIA== +"@algolia/autocomplete-plugin-algolia-insights@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.10.0.tgz#1c5ba934c166cba1de9a04c5777f8346dd929379" + integrity sha512-mXKrO9gBIgjLHKfIN9aGqdMfWEXlk+ttiR1mgXrUtyMp6IKhZiXoNpvG2Xg2SiQakmZOtxagut3Wq1DpdwCq6Q== dependencies: - "@algolia/autocomplete-shared" "1.9.2" + "@algolia/autocomplete-shared" "1.10.0" -"@algolia/autocomplete-plugin-query-suggestions@1.9.2": - version "1.9.2" - resolved "https://registry.yarnpkg.com/@algolia/autocomplete-plugin-query-suggestions/-/autocomplete-plugin-query-suggestions-1.9.2.tgz#bab78de189293e41e7914a230c700e9061e52d73" - integrity sha512-KhrCvxL9J8PCN62ed6diFEREREB9dQn10QaBnSfZEH7PO3z2ZTCtw+8sDGvv1V8Z0t0UbZ88CsmpBcsIv2P+Ng== +"@algolia/autocomplete-plugin-query-suggestions@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-plugin-query-suggestions/-/autocomplete-plugin-query-suggestions-1.10.0.tgz#b12b70b0546f361e12f3bbd3de59ce22b372da5b" + integrity sha512-iUM7MG2XeneAwMDuuIzFroIQ8HvLyaXpZWq2+QPd+0ZzAWrEXpSO0NG1dScvUiP4kfUiNwfC5ZYKjIuZG4Y7Zw== dependencies: - "@algolia/autocomplete-core" "1.9.2" - "@algolia/autocomplete-js" "1.9.2" - "@algolia/autocomplete-preset-algolia" "1.9.2" - "@algolia/autocomplete-shared" "1.9.2" + "@algolia/autocomplete-core" "1.10.0" + "@algolia/autocomplete-js" "1.10.0" + "@algolia/autocomplete-preset-algolia" "1.10.0" + "@algolia/autocomplete-shared" "1.10.0" -"@algolia/autocomplete-preset-algolia@1.9.2": - version "1.9.2" - resolved "https://registry.yarnpkg.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.2.tgz#a31fc9a88800ee7312cd177c738e9e4c0e0f78e8" - integrity sha512-pqgIm2GNqtCT59Y1ICctIPrYTi34+wNPiNWEclD/yDzp5uDUUsyGe5XrUjCNyQRTKonAlmYxoaEHOn8FWgmBHA== +"@algolia/autocomplete-preset-algolia@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.10.0.tgz#3ffd96441f3153d59e7aaaa52dbb6e78765cac0e" + integrity sha512-CABQm+VJvuwl5XeVYbPISc8OAac7+nX+yDzG0nJRsSd64IeI6e/Jxrg13quxpTvOe7JZXYdW1y1kV7srPuFpmA== dependencies: - "@algolia/autocomplete-shared" "1.9.2" + "@algolia/autocomplete-shared" "1.10.0" -"@algolia/autocomplete-shared@1.9.2": - version "1.9.2" - resolved "https://registry.yarnpkg.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.2.tgz#b5b909377439c45774cfb91947ad8e6ebd4652c1" - integrity sha512-XxX6YDn+7LG+SmdpXEOnj7fc3TjiVpQ0CbGhjLwrd2tYr6LVY2D4Iiu/iuYJ4shvVDWWnpwArSk0uIWC/8OPUA== +"@algolia/autocomplete-shared@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.10.0.tgz#3f068563c8e7c3ac369893da48a77a79408ca889" + integrity sha512-JKZGomjcUeKKtkymeZuWjKNIJU7UzuaCN3/eKlpOXxmvWCd5aJrVTDgbOm0pOjv0Ef9xVzIZx9cS/GL1Snxo1g== -"@algolia/autocomplete-theme-classic@1.9.2": - version "1.9.2" - resolved "https://registry.yarnpkg.com/@algolia/autocomplete-theme-classic/-/autocomplete-theme-classic-1.9.2.tgz#b04ce32d6994d885391b125d1adb5828514edfcb" - integrity sha512-3yjFogH3p08Lo1aqjrIp71o/YqLNJivHtZJlZ32jZ7sC/p4Q7bte1GKvDoLloU+oWPyv+4awsl6EdnW4mfIAVQ== +"@algolia/autocomplete-theme-classic@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-theme-classic/-/autocomplete-theme-classic-1.10.0.tgz#f3e9c38920d73b6f0d4a7236f9404540e733c031" + integrity sha512-YiKqXxWoQdbcxHnC9TK2PSoEHQtlqfnhBnbfejjS3U//5ASLvkF/rAcSFGfcZUzo8IvDKA/oYgK1CDQJ3+lMMQ== -"@algolia/cache-browser-local-storage@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.17.1.tgz#b2f204a436893b4856165670ec4dda12cdc055b8" - integrity sha512-e91Jpu93X3t3mVdQwF3ZDjSFMFIfzSc+I76G4EX8nl9RYXgqcjframoL05VTjcD2YCsI18RIHAWVCBoCXVZnrw== +"@algolia/cache-browser-local-storage@4.18.0": + version "4.18.0" + resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.18.0.tgz#7bc0c9d8d346ed01384f4cf0dfaf6ba29ad5c20c" + integrity sha512-rUAs49NLlO8LVLgGzM4cLkw8NJLKguQLgvFmBEe3DyzlinoqxzQMHfKZs6TSq4LZfw/z8qHvRo8NcTAAUJQLcw== dependencies: - "@algolia/cache-common" "4.17.1" + "@algolia/cache-common" "4.18.0" -"@algolia/cache-common@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.17.1.tgz#f4877f6fdc594a29ce6d032fae96f0517bf80b1d" - integrity sha512-fvi1WT8aSiGAKrcTw8Qg3RYgcwW8GZMHcqEm4AyDBEy72JZlFBSY80cTQ75MslINjCHXLDT+9EN8AGI9WVY7uA== +"@algolia/cache-common@4.18.0": + version "4.18.0" + resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.18.0.tgz#aac33afac53e191c595d14a4bb7e6d81aae4836f" + integrity sha512-BmxsicMR4doGbeEXQu8yqiGmiyvpNvejYJtQ7rvzttEAMxOPoWEHrWyzBQw4x7LrBY9pMrgv4ZlUaF8PGzewHg== -"@algolia/cache-in-memory@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.17.1.tgz#7b3ab5f6de897677d92db549f8228966c62966d5" - integrity sha512-NbBt6eBWlsXc5geSpfPRC5dkIB/0Ptthw8r0yM5Z7D3sPlYdnTZSO9y9XWXIptRMwmZe4cM8iBMN8y0tzbcBkA== +"@algolia/cache-in-memory@4.18.0": + version "4.18.0" + resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.18.0.tgz#9a40294c734819724a1b4e86afd5a7d4be9bcc2f" + integrity sha512-evD4dA1nd5HbFdufBxLqlJoob7E2ozlqJZuV3YlirNx5Na4q1LckIuzjNYZs2ddLzuTc/Xd5O3Ibf7OwPskHxw== dependencies: - "@algolia/cache-common" "4.17.1" + "@algolia/cache-common" "4.18.0" -"@algolia/client-account@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.17.1.tgz#81747c0828d2688af4a98bbed3d3b0aa7daa25f6" - integrity sha512-3rL/6ofJvyL+q8TiWM3qoM9tig+SY4gB1Vbsj+UeJPnJm8Khm+7OS+r+mFraqR6pTehYqN8yGYoE7x4diEn4aA== +"@algolia/client-account@4.18.0": + version "4.18.0" + resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.18.0.tgz#202d9e06b41e06e45cb919107bed0a65106883cc" + integrity sha512-XsDnlROr3+Z1yjxBJjUMfMazi1V155kVdte6496atvBgOEtwCzTs3A+qdhfsAnGUvaYfBrBkL0ThnhMIBCGcew== dependencies: - "@algolia/client-common" "4.17.1" - "@algolia/client-search" "4.17.1" - "@algolia/transporter" "4.17.1" + "@algolia/client-common" "4.18.0" + "@algolia/client-search" "4.18.0" + "@algolia/transporter" "4.18.0" -"@algolia/client-analytics@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.17.1.tgz#d6ecc75fd792fb1dee67c01497098ce175f1c4c9" - integrity sha512-Bepr2w249vODqeBtM7i++tPmUsQ9B81aupUGbDWmjA/FX+jzQqOdhW8w1CFO5kWViNKTbz2WBIJ9U3x8hOa4bA== +"@algolia/client-analytics@4.18.0": + version "4.18.0" + resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.18.0.tgz#030b026bd9c13cb15437e35e4456bde25b0f1298" + integrity sha512-chEUSN4ReqU7uRQ1C8kDm0EiPE+eJeAXiWcBwLhEynfNuTfawN9P93rSZktj7gmExz0C8XmkbBU19IQ05wCNrQ== dependencies: - "@algolia/client-common" "4.17.1" - "@algolia/client-search" "4.17.1" - "@algolia/requester-common" "4.17.1" - "@algolia/transporter" "4.17.1" + "@algolia/client-common" "4.18.0" + "@algolia/client-search" "4.18.0" + "@algolia/requester-common" "4.18.0" + "@algolia/transporter" "4.18.0" -"@algolia/client-common@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.17.1.tgz#a8b561c1e3a19cce2c24e9a49bd822477c2f56d9" - integrity sha512-+r7kg4EgbFnGsDnoGSVNtXZO8xvZ0vzf1WAOV7sqV9PMf1bp6cpJP/3IuPrSk4t5w2KVl+pC8jfTM7HcFlfBEQ== +"@algolia/client-common@4.18.0": + version "4.18.0" + resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.18.0.tgz#e080c393e1becdd5f5f008815c57d3248d3a8483" + integrity sha512-7N+soJFP4wn8tjTr3MSUT/U+4xVXbz4jmeRfWfVAzdAbxLAQbHa0o/POSdTvQ8/02DjCLelloZ1bb4ZFVKg7Wg== dependencies: - "@algolia/requester-common" "4.17.1" - "@algolia/transporter" "4.17.1" + "@algolia/requester-common" "4.18.0" + "@algolia/transporter" "4.18.0" -"@algolia/client-personalization@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/client-personalization/-/client-personalization-4.17.1.tgz#26b2c8e13e9b69afd4e2c17879f538d408b708f3" - integrity sha512-gJku9DG/THJpfsSlG/az0a3QIn+VVff9kKh8PG8+7ZfxOHS+C+Y5YSeZVsC+c2cfoKLPo3CuHIiJ/p86erR3bA== +"@algolia/client-personalization@4.18.0": + version "4.18.0" + resolved "https://registry.yarnpkg.com/@algolia/client-personalization/-/client-personalization-4.18.0.tgz#9042ce2773120158ad25e1dfb28d706cebb48dc2" + integrity sha512-+PeCjODbxtamHcPl+couXMeHEefpUpr7IHftj4Y4Nia1hj8gGq4VlIcqhToAw8YjLeCTfOR7r7xtj3pJcYdP8A== dependencies: - "@algolia/client-common" "4.17.1" - "@algolia/requester-common" "4.17.1" - "@algolia/transporter" "4.17.1" + "@algolia/client-common" "4.18.0" + "@algolia/requester-common" "4.18.0" + "@algolia/transporter" "4.18.0" -"@algolia/client-search@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.17.1.tgz#defaf56083e613fb593a9a49837b6aa551ed38eb" - integrity sha512-Q5YfT5gVkx60PZDQBqp/zH9aUbBdC7HVvxupiHUgnCKqRQsRZjOhLest7AI6FahepuZLBZS62COrO7v+JvKY7w== +"@algolia/client-search@4.18.0": + version "4.18.0" + resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.18.0.tgz#83b37aacbe254fd7892154fe7a8f0395bd01c682" + integrity sha512-F9xzQXTjm6UuZtnsLIew6KSraXQ0AzS/Ee+OD+mQbtcA/K1sg89tqb8TkwjtiYZ0oij13u3EapB3gPZwm+1Y6g== dependencies: - "@algolia/client-common" "4.17.1" - "@algolia/requester-common" "4.17.1" - "@algolia/transporter" "4.17.1" + "@algolia/client-common" "4.18.0" + "@algolia/requester-common" "4.18.0" + "@algolia/transporter" "4.18.0" "@algolia/events@^4.0.1": version "4.0.1" resolved "https://registry.yarnpkg.com/@algolia/events/-/events-4.0.1.tgz#fd39e7477e7bc703d7f893b556f676c032af3950" integrity sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ== -"@algolia/logger-common@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.17.1.tgz#fe50f67a86276cebdfd8337bc5d925f7a3bf9e43" - integrity sha512-Us28Ot+fLEmX9M96sa65VZ8EyEEzhYPxfhV9aQyKDjfXbUdJlJxKt6wZpoEg9RAPSdO8IjK9nmuW2P8au3rRsg== +"@algolia/logger-common@4.18.0": + version "4.18.0" + resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.18.0.tgz#0e6a14e8b91fcb7861595169e1ca57cf219f8255" + integrity sha512-46etYgSlkoKepkMSyaoriSn2JDgcrpc/nkOgou/lm0y17GuMl9oYZxwKKTSviLKI5Irk9nSKGwnBTQYwXOYdRg== -"@algolia/logger-console@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.17.1.tgz#d9d6dc0bb6ad1321b66163491cc4618d27beb73d" - integrity sha512-iKGQTpOjHiE64W3JIOu6dmDvn+AfYIElI9jf/Nt6umRPmP/JI9rK+OHUoW4pKrBtdG0DPd62ppeNXzSnLxY6/g== +"@algolia/logger-console@4.18.0": + version "4.18.0" + resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.18.0.tgz#3636e4b3e2154ee2ee2db2e5be2857203c9f7047" + integrity sha512-3P3VUYMl9CyJbi/UU1uUNlf6Z8N2ltW3Oqhq/nR7vH0CjWv32YROq3iGWGxB2xt3aXobdUPXs6P0tHSKRmNA6g== dependencies: - "@algolia/logger-common" "4.17.1" + "@algolia/logger-common" "4.18.0" -"@algolia/requester-browser-xhr@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.17.1.tgz#8be50e4196cd9d1ec311970845a42f2aee35860e" - integrity sha512-W5mGfGDsyfVR+r4pUFrYLGBEM18gs38+GNt5PE5uPULy4uVTSnnVSkJkWeRkmLBk9zEZ/Nld8m4zavK6dtEuYg== +"@algolia/requester-browser-xhr@4.18.0": + version "4.18.0" + resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.18.0.tgz#90ac575946e0ab196cdd87593b3fed563a32a9af" + integrity sha512-/AcWHOBub2U4TE/bPi4Gz1XfuLK6/7dj4HJG+Z2SfQoS1RjNLshZclU3OoKIkFp8D2NC7+BNsPvr9cPLyW8nyQ== dependencies: - "@algolia/requester-common" "4.17.1" + "@algolia/requester-common" "4.18.0" -"@algolia/requester-common@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.17.1.tgz#3b3912c8df1e05f0fd49f4c9a7caa3fe45d2d995" - integrity sha512-HggXdjvVFQR0I5l7hM5WdHgQ1tqcRWeyXZz8apQ7zPWZhirmY2E9D6LVhDh/UnWQNEm7nBtM+eMFONJ3bZccIQ== +"@algolia/requester-common@4.18.0": + version "4.18.0" + resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.18.0.tgz#12984aa4b10679ffa863536ceeae33cdd0ee4d42" + integrity sha512-xlT8R1qYNRBCi1IYLsx7uhftzdfsLPDGudeQs+xvYB4sQ3ya7+ppolB/8m/a4F2gCkEO6oxpp5AGemM7kD27jA== -"@algolia/requester-node-http@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.17.1.tgz#f4eeee985833ad2b51ac9ff757be5c1a786ff80a" - integrity sha512-NzFWecXT6d0PPsQY9L+/qoK2deF74OLcpvqCH+Vh3mh+QzPsFafcBExdguAjZsAWDn1R6JEeFW7/fo/p0SE57w== +"@algolia/requester-node-http@4.18.0": + version "4.18.0" + resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.18.0.tgz#8046b141c784cc7778bcf51e8a7888cce463754b" + integrity sha512-TGfwj9aeTVgOUhn5XrqBhwUhUUDnGIKlI0kCBMdR58XfXcfdwomka+CPIgThRbfYw04oQr31A6/95ZH2QVJ9UQ== dependencies: - "@algolia/requester-common" "4.17.1" + "@algolia/requester-common" "4.18.0" -"@algolia/transporter@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.17.1.tgz#9508e08e984e110603ec66a19362017c1df59e05" - integrity sha512-ZM+qhX47Vh46mWH8/U9ihvy98HdTYpYQDSlqBD7IbiUbbyoCMke+qmdSX2MGhR2FCcXBSxejsJKKVAfbpaLVgg== +"@algolia/transporter@4.18.0": + version "4.18.0" + resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.18.0.tgz#18de645c20fc5703196b2ad4fec55e98c315a1d8" + integrity sha512-xbw3YRUGtXQNG1geYFEDDuFLZt4Z8YNKbamHPkzr3rWc6qp4/BqEeXcI2u/P/oMq2yxtXgMxrCxOPA8lyIe5jw== dependencies: - "@algolia/cache-common" "4.17.1" - "@algolia/logger-common" "4.17.1" - "@algolia/requester-common" "4.17.1" + "@algolia/cache-common" "4.18.0" + "@algolia/logger-common" "4.18.0" + "@algolia/requester-common" "4.18.0" + +"@alloc/quick-lru@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30" + integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== "@ampproject/remapping@^2.2.0": version "2.2.0" @@ -1843,12 +1848,12 @@ dependencies: "@floating-ui/core" "^1.2.1" -"@giscus/react@2.2.8": - version "2.2.8" - resolved "https://registry.yarnpkg.com/@giscus/react/-/react-2.2.8.tgz#ae02463a0bb27d1decc11e756f41182cc0797288" - integrity sha512-dPk3GMmsx5hHXXi8Xye7aen+lsZ/PR4I7AwTXKxKtAvxXsH5XAVB/bI6uWr4BrLEH3plZMzgOlVUIPOFJsHQCw== +"@giscus/react@2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@giscus/react/-/react-2.3.0.tgz#1c13f2f96bb67684d4f5288dc1ed3155ff307ce4" + integrity sha512-tj79B+NNBfidhPdXJqWoqRm5Jhoc6CBhXMYwBR9nwTwsrdaB/spcQXmHpKcUuOdXZtlYSwMfCFcBogMNbD+gKQ== dependencies: - giscus "^1.2.8" + giscus "^1.3.0" "@graphql-codegen/add@^3.2.1": version "3.2.3" @@ -3187,10 +3192,10 @@ "@jridgewell/resolve-uri" "3.1.0" "@jridgewell/sourcemap-codec" "1.4.14" -"@lit-labs/ssr-dom-shim@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.0.0.tgz#427e19a2765681fd83411cd72c55ba80a01e0523" - integrity sha512-ic93MBXfApIFTrup4a70M/+ddD8xdt2zxxj9sRwHQzhS9ag/syqkD8JPdTXsc1gUy2K8TTirhlCqyTEM/sifNw== +"@lit-labs/ssr-dom-shim@^1.0.0", "@lit-labs/ssr-dom-shim@^1.1.0": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.1.1.tgz#64df34e2f12e68e78ac57e571d25ec07fa460ca9" + integrity sha512-kXOeFbfCm4fFf2A3WwVEeQj55tMZa8c8/f9AKHMobQMkzNUfUj+antR3fRPaZJawsa1aZiP/Da3ndpZrwEe4rQ== "@lit/reactive-element@^1.3.0", "@lit/reactive-element@^1.6.0": version "1.6.1" @@ -3776,44 +3781,44 @@ "@tanstack/query-core" "4.29.11" use-sync-external-store "^1.2.0" -"@theguild/algolia@1.1.8": - version "1.1.8" - resolved "https://registry.yarnpkg.com/@theguild/algolia/-/algolia-1.1.8.tgz#aed5864edbabf7f82b7e37bd1c4a23b0605a20f7" - integrity sha512-UUxgLcl4OIVumjfjHfeFwsH/iOMuqCvqDU4XjP/WmmzCUrFTk88vGRbWyXCeCdzlkpWBz+3dcI57ZgQvF+R66g== +"@theguild/algolia@1.1.9": + version "1.1.9" + resolved "https://registry.yarnpkg.com/@theguild/algolia/-/algolia-1.1.9.tgz#988e157ba60b7277ad58c842d374da144f826fbd" + integrity sha512-WygxjQDdwY/ORO0QJgyAahWR1okA/6kbYbdP/Zas28L0GIvToLhzjswmZ+tzvw62GU3EeFp8JpPf24QHe5/0og== dependencies: algoliasearch "^4.14.3" - commander "^10.0.0" + commander "^11.0.0" fast-glob "^3.2.12" github-slugger "^2.0.0" gray-matter "^4.0.3" lodash.sortby "^4.7.0" remove-markdown "^0.5.0" -"@theguild/components@5.0.0": - version "5.0.0" - resolved "https://registry.yarnpkg.com/@theguild/components/-/components-5.0.0.tgz#ac631f42ce042686a6a75e7aa46eac579255484a" - integrity sha512-DyFuxkuFSCHkfof48WbYe8Ak3OAxVBDAlZ9OBLlshmyEaBCg5ymfroTlyP0yCl6sXzaNnAspIG8Ql+ZeYnpLQg== - dependencies: - "@algolia/autocomplete-js" "1.9.2" - "@algolia/autocomplete-plugin-algolia-insights" "1.9.2" - "@algolia/autocomplete-plugin-query-suggestions" "1.9.2" - "@algolia/autocomplete-theme-classic" "1.9.2" - "@giscus/react" "2.2.8" +"@theguild/components@5.2.1": + version "5.2.1" + resolved "https://registry.yarnpkg.com/@theguild/components/-/components-5.2.1.tgz#9b7fce72dd432aa23ed6a55eacd7d8fe755a9d2b" + integrity sha512-sEJMyyAuB7P1fdHewWfdy7CnXUSgR+mkVK74H2UWJWVVyydx4QZnrrefZEgDLyuea7V10a4zjNou1FwdJ+05Fg== + dependencies: + "@algolia/autocomplete-js" "1.10.0" + "@algolia/autocomplete-plugin-algolia-insights" "1.10.0" + "@algolia/autocomplete-plugin-query-suggestions" "1.10.0" + "@algolia/autocomplete-theme-classic" "1.10.0" + "@giscus/react" "2.3.0" "@next/bundle-analyzer" "13.4.2" "@radix-ui/react-navigation-menu" "1.1.3" - "@theguild/remark-npm2yarn" "0.0.1" - algoliasearch "4.17.1" + "@theguild/remark-npm2yarn" "0.1.1" + algoliasearch "4.18.0" clsx "1.2.1" - focus-trap-react "10.1.4" + focus-trap-react "10.2.1" fuzzy "^0.1.3" next-videos "1.5.0" - nextra "2.7.1" - nextra-theme-docs "2.7.1" - react-instantsearch-dom "6.40.0" + nextra "2.9.0" + nextra-theme-docs "2.9.0" + react-instantsearch-dom "6.40.1" react-paginate "8.2.0" react-player "2.12.0" remark-mdx-disable-explicit-jsx "0.1.0" - search-insights "2.6.0" + search-insights "2.7.0" semver "^7.3.8" use-debounce "9.0.4" @@ -3846,32 +3851,32 @@ dependencies: prettier-plugin-sh "^0.12.8" -"@theguild/remark-mermaid@^0.0.1": - version "0.0.1" - resolved "https://registry.yarnpkg.com/@theguild/remark-mermaid/-/remark-mermaid-0.0.1.tgz#984f0f03bee4809cde02abbe4dbdbc192c806109" - integrity sha512-MbLi7CIn25r0MypN1yaTrvuQHBE/UXy/DKfVjaLlXx5ut4PasOwzGIJihzM4d9kqNADJKilHpQWcd66ivbvJEQ== +"@theguild/remark-mermaid@^0.0.3": + version "0.0.3" + resolved "https://registry.yarnpkg.com/@theguild/remark-mermaid/-/remark-mermaid-0.0.3.tgz#247e8e84aacf483d2f99d8d12ccd34f3cf7ce543" + integrity sha512-fccVR6o4UPUztrBjdUhM4ahwx+X7YHhoxsUoXv2vI07vz4dq+I03Ot0SjuZzDA/H7engxcb8ZxzCUEkZgGr/2g== dependencies: - mermaid "10.2.1" - unist-util-visit "4.1.2" + mermaid "^10.2.2" + unist-util-visit "^4.1.2" -"@theguild/remark-npm2yarn@0.0.1": - version "0.0.1" - resolved "https://registry.yarnpkg.com/@theguild/remark-npm2yarn/-/remark-npm2yarn-0.0.1.tgz#fcfc3ba46324110e8dae5881ff7dab6e49abaf0b" - integrity sha512-pm++IBZoVU4yWgtXsMEsBXsGEtsJVNfP2eBCO6pp3T27dYy0dS/gevLkSnvkGKFKo2PHTfYvoEsk9vgxmZXs8Q== +"@theguild/remark-npm2yarn@0.1.1": + version "0.1.1" + resolved "https://registry.yarnpkg.com/@theguild/remark-npm2yarn/-/remark-npm2yarn-0.1.1.tgz#7392d8a3ec176c22ee5e26f2e44eae8e0d97e191" + integrity sha512-ZKwd/bjQ9V+pESLnu8+q8jqn15alXzJOuVckraebsXwqVBTw53Gmupiw9zCdLNHU829KTYNycJYea6m9HRLuOg== dependencies: npm-to-yarn "^2.0.0" - unist-util-visit "^4.1.2" + unist-util-visit "^5.0.0" -"@theguild/tailwind-config@0.2.2": - version "0.2.2" - resolved "https://registry.yarnpkg.com/@theguild/tailwind-config/-/tailwind-config-0.2.2.tgz#9008ed9f2a1580ab76c182d534643b4568f221be" - integrity sha512-ll3JiGnvCRLp3G6nGj9xrnRTwISOwbUZYV+amzwZROKLzEAClPNXHhI8WjQcoJ3KOQ2SAvGNC6CVOt1RKSTIkw== +"@theguild/tailwind-config@0.3.0": + version "0.3.0" + resolved "https://registry.yarnpkg.com/@theguild/tailwind-config/-/tailwind-config-0.3.0.tgz#5410853977a1c8d6c5faa69b96e92d330aca9961" + integrity sha512-nTASKOdyyY5BlUsTaQrVL0cri2ZAG+6gHoOOurbFh4LLTwTYVILZVG/1k959QVoIAy1LCo7u4vQ8qFr/9eD4UQ== dependencies: - autoprefixer "^10.4.12" - cssnano "^6.0.0" - postcss "^8.4.16" - postcss-import "^15.0.0" - tailwindcss "^3.1.8" + autoprefixer "^10.4.14" + cssnano "^6.0.1" + postcss "^8.4.25" + postcss-import "^15.1.0" + tailwindcss "^3.3.2" "@trysound/sax@0.2.0": version "0.2.0" @@ -3950,6 +3955,23 @@ resolved "https://registry.yarnpkg.com/@types/braces/-/braces-3.0.1.tgz#5a284d193cfc61abb2e5a50d36ebbc50d942a32b" integrity sha512-+euflG6ygo4bn0JHtn4pYqcXwRtLvElQ7/nnjDu7iYG56H0+OhCd7d6Ug0IE3WcFpZozBKW2+80FUbv5QGk5AQ== +"@types/d3-scale-chromatic@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz#103124777e8cdec85b20b51fd3397c682ee1e954" + integrity sha512-dsoJGEIShosKVRBZB0Vo3C8nqSDqVGujJU6tPznsBJxNJNwMF8utmS83nvCBKQYPpjCzaaHcrf66iTRpZosLPw== + +"@types/d3-scale@^4.0.3": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@types/d3-scale/-/d3-scale-4.0.3.tgz#7a5780e934e52b6f63ad9c24b105e33dd58102b5" + integrity sha512-PATBiMCpvHJSMtZAMEhc2WyL+hnzarKzI6wAHYjhsonjWJYGq5BXTzQjv4l8m2jO183/4wZ90rKvSeT7o72xNQ== + dependencies: + "@types/d3-time" "*" + +"@types/d3-time@*": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/d3-time/-/d3-time-3.0.0.tgz#e1ac0f3e9e195135361fa1a1d62f795d87e6e819" + integrity sha512-sZLCdHvBUcNby1cB6Fd3ZBrABbjz3v1Vm90nysCQ6Vt7vd6e/h9Lt7SiJUoEX0l4Dzc7P5llKyhqSi1ycSf1Hg== + "@types/debounce@1.2.1": version "1.2.1" resolved "https://registry.yarnpkg.com/@types/debounce/-/debounce-1.2.1.tgz#79b65710bc8b6d44094d286aecf38e44f9627852" @@ -4234,6 +4256,11 @@ resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== +"@types/unist@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.0.tgz#988ae8af1e5239e89f9fbb1ade4c935f4eeedf9a" + integrity sha512-MFETx3tbTjE7Uk6vvnWINA/1iJ7LuMdO4fcq8UfF0pRbj01aGLduVvQcRyswuACJdpnHgg8E3rQLhaRdNEJS0w== + "@types/ws@^8.0.0": version "8.5.4" resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.4.tgz#bb10e36116d6e570dd943735f86c933c1587b8a5" @@ -4655,30 +4682,11 @@ acorn-jsx@^5.0.0, acorn-jsx@^5.3.2: resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== -acorn-node@^1.8.2: - version "1.8.2" - resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" - integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== - dependencies: - acorn "^7.0.0" - acorn-walk "^7.0.0" - xtend "^4.0.2" - -acorn-walk@^7.0.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" - integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== - acorn-walk@^8.0.0, acorn-walk@^8.1.1: version "8.2.0" resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== -acorn@^7.0.0: - version "7.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" - integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== - acorn@^8.0.0, acorn@^8.0.4, acorn@^8.4.1, acorn@^8.5.0, acorn@^8.8.0: version "8.8.2" resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" @@ -4724,32 +4732,32 @@ ajv@^6.10.0, ajv@^6.12.2, ajv@^6.12.4: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -algoliasearch-helper@^3.13.0: - version "3.13.0" - resolved "https://registry.yarnpkg.com/algoliasearch-helper/-/algoliasearch-helper-3.13.0.tgz#1ccca7056fd27c2b0b5c92dd5c0abf4314bec3b8" - integrity sha512-kV3c1jMQCvkARtGsSDvAwuht4PAMSsQILqPiH4WFiARoa3jXJ/r1TQoBWAjWyWF48rsNYCv7kzxgB4LTxrvvuw== +algoliasearch-helper@^3.13.2: + version "3.14.0" + resolved "https://registry.yarnpkg.com/algoliasearch-helper/-/algoliasearch-helper-3.14.0.tgz#2409c2591952719ab6fba1de77b3bbe5094ab85e" + integrity sha512-gXDXzsSS0YANn5dHr71CUXOo84cN4azhHKUbg71vAWnH+1JBiR4jf7to3t3JHXknXkbV0F7f055vUSBKrltHLQ== dependencies: "@algolia/events" "^4.0.1" -algoliasearch@4.17.1, algoliasearch@^4.14.3: - version "4.17.1" - resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.17.1.tgz#23926448b815bbf9a921bc6077abc1ce8d3224b2" - integrity sha512-4GDQ1RhP2qUR3x8PevFRbEdqZqIARNViZYjgTJmA1T7wRNtFA3W4Aqc/RsODqa1J8IO/QDla5x4tWuUS8NV8wA== - dependencies: - "@algolia/cache-browser-local-storage" "4.17.1" - "@algolia/cache-common" "4.17.1" - "@algolia/cache-in-memory" "4.17.1" - "@algolia/client-account" "4.17.1" - "@algolia/client-analytics" "4.17.1" - "@algolia/client-common" "4.17.1" - "@algolia/client-personalization" "4.17.1" - "@algolia/client-search" "4.17.1" - "@algolia/logger-common" "4.17.1" - "@algolia/logger-console" "4.17.1" - "@algolia/requester-browser-xhr" "4.17.1" - "@algolia/requester-common" "4.17.1" - "@algolia/requester-node-http" "4.17.1" - "@algolia/transporter" "4.17.1" +algoliasearch@4.18.0, algoliasearch@^4.14.3: + version "4.18.0" + resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.18.0.tgz#1183ad0384a5b2c14f381c3a361da611acc8edb3" + integrity sha512-pCuVxC1SVcpc08ENH32T4sLKSyzoU7TkRIDBMwSLfIiW+fq4znOmWDkAygHZ6pRcO9I1UJdqlfgnV7TRj+MXrA== + dependencies: + "@algolia/cache-browser-local-storage" "4.18.0" + "@algolia/cache-common" "4.18.0" + "@algolia/cache-in-memory" "4.18.0" + "@algolia/client-account" "4.18.0" + "@algolia/client-analytics" "4.18.0" + "@algolia/client-common" "4.18.0" + "@algolia/client-personalization" "4.18.0" + "@algolia/client-search" "4.18.0" + "@algolia/logger-common" "4.18.0" + "@algolia/logger-console" "4.18.0" + "@algolia/requester-browser-xhr" "4.18.0" + "@algolia/requester-common" "4.18.0" + "@algolia/requester-node-http" "4.18.0" + "@algolia/transporter" "4.18.0" ansi-align@^3.0.1: version "3.0.1" @@ -4974,13 +4982,13 @@ auto-bind@~4.0.0: resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-4.0.0.tgz#e3589fc6c2da8f7ca43ba9f84fa52a744fc997fb" integrity sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ== -autoprefixer@^10.4.12: - version "10.4.13" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.13.tgz#b5136b59930209a321e9fa3dca2e7c4d223e83a8" - integrity sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg== +autoprefixer@^10.4.14: + version "10.4.14" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.14.tgz#e28d49902f8e759dd25b153264e862df2705f79d" + integrity sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ== dependencies: - browserslist "^4.21.4" - caniuse-lite "^1.0.30001426" + browserslist "^4.21.5" + caniuse-lite "^1.0.30001464" fraction.js "^4.2.0" normalize-range "^0.1.2" picocolors "^1.0.0" @@ -5286,14 +5294,14 @@ breakword@^1.0.5: dependencies: wcwidth "^1.0.1" -browserslist@^4.0.0, browserslist@^4.21.4, browserslist@^4.21.9: - version "4.21.9" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.9.tgz#e11bdd3c313d7e2a9e87e8b4b0c7872b13897635" - integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg== +browserslist@^4.0.0, browserslist@^4.21.4, browserslist@^4.21.5, browserslist@^4.21.9: + version "4.21.10" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.10.tgz#dbbac576628c13d3b2231332cb2ec5a46e015bb0" + integrity sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ== dependencies: - caniuse-lite "^1.0.30001503" - electron-to-chromium "^1.4.431" - node-releases "^2.0.12" + caniuse-lite "^1.0.30001517" + electron-to-chromium "^1.4.477" + node-releases "^2.0.13" update-browserslist-db "^1.0.11" bs-logger@0.x: @@ -5429,10 +5437,10 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.30001426, caniuse-lite@^1.0.30001503: - version "1.0.30001512" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001512.tgz#7450843fb581c39f290305a83523c7a9ef0d4cb4" - integrity sha512-2S9nK0G/mE+jasCUsMPlARhRCts1ebcp2Ji8Y8PWi4NDE1iRdLCnEPHkEfeBrGC45L4isBx5ur3IQ6yTE2mRZw== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.30001464, caniuse-lite@^1.0.30001517: + version "1.0.30001518" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001518.tgz#b3ca93904cb4699c01218246c4d77a71dbe97150" + integrity sha512-rup09/e3I0BKjncL+FesTayKtPrdwKhUufQFd3riFw1hHg8JmIFoInYfB102cFcY/pPgGmdyl/iy+jgiDi2vdA== capital-case@^1.0.4: version "1.0.4" @@ -5760,7 +5768,7 @@ color-name@1.1.3: resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== -color-name@^1.1.4, color-name@~1.1.4: +color-name@~1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== @@ -5797,6 +5805,11 @@ commander@^10.0.0: resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.0.tgz#71797971162cd3cf65f0b9d24eb28f8d303acdf1" integrity sha512-zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA== +commander@^11.0.0: + version "11.0.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-11.0.0.tgz#43e19c25dbedc8256203538e8d7e9346877a6f67" + integrity sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ== + commander@^4.0.0: version "4.1.1" resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" @@ -6022,7 +6035,7 @@ cssnano-utils@^4.0.0: resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-4.0.0.tgz#d1da885ec04003ab19505ff0e62e029708d36b08" integrity sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw== -cssnano@^6.0.0: +cssnano@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-6.0.1.tgz#87c38c4cd47049c735ab756d7e77ac3ca855c008" integrity sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg== @@ -6137,6 +6150,13 @@ cytoscape@^3.23.0: heap "^0.2.6" lodash "^4.17.21" +"d3-array@1 - 2": + version "2.12.1" + resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-2.12.1.tgz#e20b41aafcdffdf5d50928004ececf815a465e81" + integrity sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ== + dependencies: + internmap "^1.0.0" + "d3-array@2 - 3", "d3-array@2.10.0 - 3", "d3-array@2.5.0 - 3", d3-array@3, d3-array@^3.2.0: version "3.2.2" resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-3.2.2.tgz#f8ac4705c5b06914a7e0025bbf8d5f1513f6a86e" @@ -6253,6 +6273,11 @@ d3-hierarchy@3: dependencies: d3-color "1 - 3" +d3-path@1: + version "1.0.9" + resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-1.0.9.tgz#48c050bb1fe8c262493a8caf5524e3e9591701cf" + integrity sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg== + "d3-path@1 - 3", d3-path@3, d3-path@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-3.1.0.tgz#22df939032fb5a71ae8b1800d61ddb7851c42526" @@ -6273,6 +6298,14 @@ d3-random@3: resolved "https://registry.yarnpkg.com/d3-random/-/d3-random-3.0.1.tgz#d4926378d333d9c0bfd1e6fa0194d30aebaa20f4" integrity sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ== +d3-sankey@^0.12.3: + version "0.12.3" + resolved "https://registry.yarnpkg.com/d3-sankey/-/d3-sankey-0.12.3.tgz#b3c268627bd72e5d80336e8de6acbfec9d15d01d" + integrity sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ== + dependencies: + d3-array "1 - 2" + d3-shape "^1.2.0" + d3-scale-chromatic@3: version "3.0.0" resolved "https://registry.yarnpkg.com/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz#15b4ceb8ca2bb0dcb6d1a641ee03d59c3b62376a" @@ -6304,6 +6337,13 @@ d3-shape@3: dependencies: d3-path "^3.1.0" +d3-shape@^1.2.0: + version "1.3.7" + resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-1.3.7.tgz#df63801be07bc986bc54f63789b4fe502992b5d7" + integrity sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw== + dependencies: + d3-path "1" + "d3-time-format@2 - 4", d3-time-format@4: version "4.1.0" resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-4.1.0.tgz#7ab5257a5041d11ecb4fe70a5c7d16a195bb408a" @@ -6535,11 +6575,6 @@ define-properties@^1.1.3, define-properties@^1.1.4: has-property-descriptors "^1.0.0" object-keys "^1.1.1" -defined@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.1.tgz#c0b9db27bfaffd95d6f61399419b893df0f91ebf" - integrity sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q== - delaunator@5: version "5.0.0" resolved "https://registry.yarnpkg.com/delaunator/-/delaunator-5.0.0.tgz#60f052b28bd91c9b4566850ebf7756efe821d81b" @@ -6572,15 +6607,6 @@ detect-newline@^3.0.0: resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== -detective@^5.2.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.1.tgz#6af01eeda11015acb0e73f933242b70f24f91034" - integrity sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw== - dependencies: - acorn-node "^1.8.2" - defined "^1.0.0" - minimist "^1.2.6" - didyoumean@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" @@ -6661,10 +6687,10 @@ domhandler@^5.0.2, domhandler@^5.0.3: dependencies: domelementtype "^2.3.0" -dompurify@3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.0.3.tgz#4b115d15a091ddc96f232bcef668550a2f6f1430" - integrity sha512-axQ9zieHLnAnHh0sfAamKYiqXMJAVwu+LM/alQ7WDagoWessyWvMSFyW65CqF3owufNu8HBcE4cM2Vflu7YWcQ== +dompurify@3.0.5: + version "3.0.5" + resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.0.5.tgz#eb3d9cfa10037b6e73f32c586682c4b2ab01fbed" + integrity sha512-F9e6wPGtY+8KNMRAVfxeCOHU0/NPWMSENNq4pQctuXRqqdEPW7q3CrLbR5Nse044WwacyjHGOMlvNsBe1y6z9A== domutils@^3.0.1: version "3.1.0" @@ -6716,10 +6742,10 @@ ecc-jsbn@~0.1.1: jsbn "~0.1.0" safer-buffer "^2.1.0" -electron-to-chromium@^1.4.431: - version "1.4.451" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.451.tgz#12b63ee5c82cbbc7b4ddd91e90f5a0dfc10de26e" - integrity sha512-YYbXHIBxAHe3KWvGOJOuWa6f3tgow44rBW+QAuwVp2DvGqNZeE//K2MowNdWS7XE8li5cgQDrX1LdBr41LufkA== +electron-to-chromium@^1.4.477: + version "1.4.481" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.481.tgz#0a6558c4acc171f7ab8a7e1a1c4cd2c6aa14523c" + integrity sha512-25DitMKGaWUPjv3kCt2H3UqgMhmdN+ufG+PoSjnQtheR64Dvo75RbojLPzUmnwrEuLEzR5YrbTzOUq9DtnTUUw== elkjs@^0.8.2: version "0.8.2" @@ -7697,20 +7723,20 @@ flexsearch@^0.7.21: resolved "https://registry.yarnpkg.com/flexsearch/-/flexsearch-0.7.31.tgz#065d4110b95083110b9b6c762a71a77cc52e4702" integrity sha512-XGozTsMPYkm+6b5QL3Z9wQcJjNYxp0CYn3U1gO7dwD6PAqU1SVWZxI9CCg3z+ml3YfqdPnrBehaBrnH2AGKbNA== -focus-trap-react@10.1.4: - version "10.1.4" - resolved "https://registry.yarnpkg.com/focus-trap-react/-/focus-trap-react-10.1.4.tgz#bab7ea87aecfa2f7eb6f2fcc4be1e7311893ca17" - integrity sha512-vLUQRXI6SUJD8YLYTBa1DlCYRmTKFDxRvc4TEe2nq8S1aj+YKsucuNxqZUOf0+RZ01Yoiwtk/6rD9xqSvawIvQ== +focus-trap-react@10.2.1: + version "10.2.1" + resolved "https://registry.yarnpkg.com/focus-trap-react/-/focus-trap-react-10.2.1.tgz#3f72c9c018885e089806346966c59303eb6e32ef" + integrity sha512-UrAKOn52lvfHF6lkUMfFhlQxFgahyNW5i6FpHWkDxAeD4FSk3iwx9n4UEA4Sims0G5WiGIi0fAyoq3/UVeNCYA== dependencies: - focus-trap "^7.4.3" - tabbable "^6.1.2" + focus-trap "^7.5.2" + tabbable "^6.2.0" -focus-trap@^7.4.3: - version "7.4.3" - resolved "https://registry.yarnpkg.com/focus-trap/-/focus-trap-7.4.3.tgz#a3dae73d44df359eb92bbf37b18e173e813b16c5" - integrity sha512-BgSSbK4GPnS2VbtZ50VtOv1Sti6DIkj3+LkVjiWMNjLeAp1SH1UlLx3ULu/DCu4vq5R4/uvTm+zrvsMsuYmGLg== +focus-trap@^7.5.2: + version "7.5.2" + resolved "https://registry.yarnpkg.com/focus-trap/-/focus-trap-7.5.2.tgz#e5ee678d10a18651f2591ffb66c949fb098d57cf" + integrity sha512-p6vGNNWLDGwJCiEjkSK6oERj/hEyI9ITsSwIUICBoKLlWiTWXJRfQibCwcoi50rTZdbi87qDtUlMCmQwsGSgPw== dependencies: - tabbable "^6.1.2" + tabbable "^6.2.0" focus-visible@^5.2.0: version "5.2.0" @@ -7911,12 +7937,12 @@ getpass@^0.1.1: dependencies: assert-plus "^1.0.0" -giscus@^1.2.8: - version "1.2.8" - resolved "https://registry.yarnpkg.com/giscus/-/giscus-1.2.8.tgz#557964e1cb5e46c4b0abf69ed0b974c0718b8142" - integrity sha512-pufrgQYt1W+4ztiWp/PilLPN8NdyKvpbQ8jNqbAa1g84t6qqyevXHfkOYCi4x4d+y191vJAUc6seL1Dq74yUeA== +giscus@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/giscus/-/giscus-1.3.0.tgz#b413e6e39b7c3aa96c2d2838df99bbf75fd4709d" + integrity sha512-A3tVLgSmpnh2sX9uGjo9MbzmTTEJirSyFUPRvkipvy37y9rhxUYDoh9kO37QVrP7Sc7QuJ+gihB6apkO0yDyTw== dependencies: - lit "^2.6.1" + lit "^2.7.5" git-up@^7.0.0: version "7.0.0" @@ -8595,10 +8621,10 @@ internal-slot@^1.0.3, internal-slot@^1.0.4: has "^1.0.3" side-channel "^1.0.4" -"internmap@1 - 2": - version "2.0.3" - resolved "https://registry.yarnpkg.com/internmap/-/internmap-2.0.3.tgz#6685f23755e43c524e251d29cbc97248e3061009" - integrity sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg== +"internmap@1 - 2", internmap@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/internmap/-/internmap-1.0.1.tgz#0017cc8a3b99605f0302f2b198d272e015e5df95" + integrity sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw== intersection-observer@^0.12.2: version "0.12.2" @@ -9753,7 +9779,7 @@ levn@~0.3.0: prelude-ls "~1.1.2" type-check "~0.3.2" -lilconfig@2.1.0, lilconfig@^2.0.5, lilconfig@^2.0.6, lilconfig@^2.1.0: +lilconfig@2.1.0, lilconfig@^2.0.5, lilconfig@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== @@ -9824,29 +9850,30 @@ listr2@^5.0.7: through "^2.3.8" wrap-ansi "^7.0.0" -lit-element@^3.2.0: - version "3.2.2" - resolved "https://registry.yarnpkg.com/lit-element/-/lit-element-3.2.2.tgz#d148ab6bf4c53a33f707a5168e087725499e5f2b" - integrity sha512-6ZgxBR9KNroqKb6+htkyBwD90XGRiqKDHVrW/Eh0EZ+l+iC+u+v+w3/BA5NGi4nizAVHGYvQBHUDuSmLjPp7NQ== +lit-element@^3.3.0: + version "3.3.2" + resolved "https://registry.yarnpkg.com/lit-element/-/lit-element-3.3.2.tgz#9913bf220b85065f0e5f1bb8878cc44f36b50cfa" + integrity sha512-xXAeVWKGr4/njq0rGC9dethMnYCq5hpKYrgQZYTzawt9YQhMiXfD+T1RgrdY3NamOxwq2aXlb0vOI6e29CKgVQ== dependencies: + "@lit-labs/ssr-dom-shim" "^1.1.0" "@lit/reactive-element" "^1.3.0" - lit-html "^2.2.0" + lit-html "^2.7.0" -lit-html@^2.2.0, lit-html@^2.6.0: - version "2.6.1" - resolved "https://registry.yarnpkg.com/lit-html/-/lit-html-2.6.1.tgz#eb29f0b0c2ab54ea77379db11fc011b0c71f1cda" - integrity sha512-Z3iw+E+3KKFn9t2YKNjsXNEu/LRLI98mtH/C6lnFg7kvaqPIzPn124Yd4eT/43lyqrejpc5Wb6BHq3fdv4S8Rw== +lit-html@^2.7.0: + version "2.7.5" + resolved "https://registry.yarnpkg.com/lit-html/-/lit-html-2.7.5.tgz#0c1b9d381abe20c01475ae53ea4b07bf4c923eb8" + integrity sha512-YqUzpisJodwKIlbMFCtyrp58oLloKGnnPLMJ1t23cbfIJjg/H9pvLWK4XS69YeubK5HUs1UE4ys9w5dP1zg6IA== dependencies: "@types/trusted-types" "^2.0.2" -lit@^2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/lit/-/lit-2.6.1.tgz#5951a2098b9bde5b328c73b55c15fdc0eefd96d7" - integrity sha512-DT87LD64f8acR7uVp7kZfhLRrHkfC/N4BVzAtnw9Yg8087mbBJ//qedwdwX0kzDbxgPccWRW6mFwGbRQIxy0pw== +lit@^2.7.5: + version "2.7.6" + resolved "https://registry.yarnpkg.com/lit/-/lit-2.7.6.tgz#810007b876ed43e0c70124de91831921598b1665" + integrity sha512-1amFHA7t4VaaDe+vdQejSVBklwtH9svGoG6/dZi9JhxtJBBlqY5D1RV7iLUYY0trCqQc4NfhYYZilZiVHt7Hxg== dependencies: "@lit/reactive-element" "^1.6.0" - lit-element "^3.2.0" - lit-html "^2.6.0" + lit-element "^3.3.0" + lit-html "^2.7.0" load-script@^1.0.0: version "1.0.0" @@ -10344,19 +10371,22 @@ merge2@^1.3.0, merge2@^1.4.1: resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== -mermaid@10.2.1: - version "10.2.1" - resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-10.2.1.tgz#5183c956a64e1ed9cf0122cec6c6cb4900521966" - integrity sha512-gziwXLuAidRxPJxcA0LqPhToirGZ2J2gD+UrDEtGNeKb98BtcQde28UUcCUCmNplkQOwE7oynrzKcMe9i29AMw== +mermaid@^10.2.2: + version "10.3.0" + resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-10.3.0.tgz#45c1399fc8b95818822cbbd7b03a6093d15685a9" + integrity sha512-H5quxuQjwXC8M1WuuzhAp2TdqGg74t5skfDBrNKJ7dt3z8Wprl5S6h9VJsRhoBUTSs1TMtHEdplLhCqXleZZLw== dependencies: "@braintree/sanitize-url" "^6.0.2" + "@types/d3-scale" "^4.0.3" + "@types/d3-scale-chromatic" "^3.0.0" cytoscape "^3.23.0" cytoscape-cose-bilkent "^4.1.0" cytoscape-fcose "^2.1.0" d3 "^7.4.0" + d3-sankey "^0.12.3" dagre-d3-es "7.0.10" dayjs "^1.11.7" - dompurify "3.0.3" + dompurify "3.0.5" elkjs "^0.8.2" khroma "^2.0.0" lodash-es "^4.17.21" @@ -10999,10 +11029,10 @@ next@13.4.2, next@^13.3.0: "@next/swc-win32-ia32-msvc" "13.4.2" "@next/swc-win32-x64-msvc" "13.4.2" -nextra-theme-docs@2.7.1: - version "2.7.1" - resolved "https://registry.yarnpkg.com/nextra-theme-docs/-/nextra-theme-docs-2.7.1.tgz#d92827af26a2797bb59b347674115329074fd0da" - integrity sha512-C2DtoGH15q22t4r2JC89lvvajmnyiqsv3PaqHJpoHRlF2eR5giuLhZC5Oahb9AENRDcnUIUvqVi/8NlfiIM0yQ== +nextra-theme-docs@2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/nextra-theme-docs/-/nextra-theme-docs-2.9.0.tgz#87ded443430cb621355bd3a00d5a3220a1b39b8e" + integrity sha512-Gbjx5atl63JKWOEV2hAefP4X0wmJoLtFX4NekvNu9Y9fAdvtFdW0O2p0f8ISMS1JJgAl1ZmXm411J7rHnRnhmg== dependencies: "@headlessui/react" "^1.7.10" "@popperjs/core" "^2.11.6" @@ -11017,15 +11047,16 @@ nextra-theme-docs@2.7.1: scroll-into-view-if-needed "^3.0.0" zod "^3.20.2" -nextra@2.7.1: - version "2.7.1" - resolved "https://registry.yarnpkg.com/nextra/-/nextra-2.7.1.tgz#f3c01c45aa96e4a9285a3aee333e18e8e1d1bf71" - integrity sha512-qchTb7XSm357XAHf9MV9UlUSGolPEPE8iFnC/9KMwvhIoE4seyPYWMrnH84XraZCcGERvy9TrkFD30VE7Qv1MA== +nextra@2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/nextra/-/nextra-2.9.0.tgz#edd49e11d34cd7114747e3be7680e590adfa21ff" + integrity sha512-GwYFwuS0UzCXAUVvs9sVAFe4AQeZ0VACbqW8rzw2goxHvpTXAWbIdXShPGz+MEPB8aAckfHy1p39XbfcVU3cRA== dependencies: + "@headlessui/react" "^1.7.10" "@mdx-js/mdx" "^2.3.0" "@mdx-js/react" "^2.3.0" "@napi-rs/simple-git" "^0.1.8" - "@theguild/remark-mermaid" "^0.0.1" + "@theguild/remark-mermaid" "^0.0.3" clsx "^1.2.1" github-slugger "^2.0.0" graceful-fs "^4.2.11" @@ -11035,15 +11066,15 @@ nextra@2.7.1: next-mdx-remote "^4.2.1" p-limit "^3.1.0" rehype-katex "^6.0.3" - rehype-pretty-code "0.9.4" + rehype-pretty-code "0.9.11" remark-gfm "^3.0.1" remark-math "^5.1.1" remark-reading-time "^2.0.1" shiki "^0.14.2" slash "^3.0.0" title "^3.5.3" - unist-util-remove "^3.1.1" - unist-util-visit "^4.1.1" + unist-util-remove "^4.0.0" + unist-util-visit "^5.0.0" zod "^3.20.2" nice-try@^1.0.4: @@ -11091,10 +11122,10 @@ node-int64@^0.4.0: resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== -node-releases@^2.0.12: - version "2.0.12" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.12.tgz#35627cc224a23bfb06fb3380f2b3afaaa7eb1039" - integrity sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ== +node-releases@^2.0.13: + version "2.0.13" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d" + integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== non-layered-tidy-tree-layout@^2.0.2: version "2.0.2" @@ -11719,16 +11750,7 @@ postcss-discard-overridden@^6.0.0: resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-6.0.0.tgz#49c5262db14e975e349692d9024442de7cd8e234" integrity sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw== -postcss-import@^14.1.0: - version "14.1.0" - resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-14.1.0.tgz#a7333ffe32f0b8795303ee9e40215dac922781f0" - integrity sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw== - dependencies: - postcss-value-parser "^4.0.0" - read-cache "^1.0.0" - resolve "^1.1.7" - -postcss-import@^15.0.0: +postcss-import@^15.1.0: version "15.1.0" resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70" integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew== @@ -11737,14 +11759,14 @@ postcss-import@^15.0.0: read-cache "^1.0.0" resolve "^1.1.7" -postcss-js@^4.0.0: +postcss-js@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.1.tgz#61598186f3703bab052f1c4f7d805f3991bee9d2" integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw== dependencies: camelcase-css "^2.0.1" -postcss-load-config@^3.0.1, postcss-load-config@^3.1.4: +postcss-load-config@^3.0.1: version "3.1.4" resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz#1ab2571faf84bb078877e1d07905eabe9ebda855" integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg== @@ -11752,6 +11774,14 @@ postcss-load-config@^3.0.1, postcss-load-config@^3.1.4: lilconfig "^2.0.5" yaml "^1.10.2" +postcss-load-config@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.1.tgz#152383f481c2758274404e4962743191d73875bd" + integrity sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA== + dependencies: + lilconfig "^2.0.5" + yaml "^2.1.1" + postcss-merge-longhand@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-6.0.0.tgz#6f627b27db939bce316eaa97e22400267e798d69" @@ -11802,12 +11832,12 @@ postcss-minify-selectors@^6.0.0: dependencies: postcss-selector-parser "^6.0.5" -postcss-nested@6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.0.tgz#1572f1984736578f360cffc7eb7dca69e30d1735" - integrity sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w== +postcss-nested@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.1.tgz#f83dc9846ca16d2f4fa864f16e9d9f7d0961662c" + integrity sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ== dependencies: - postcss-selector-parser "^6.0.10" + postcss-selector-parser "^6.0.11" postcss-normalize-charset@^6.0.0: version "6.0.0" @@ -11894,7 +11924,7 @@ postcss-reduce-transforms@^6.0.0: dependencies: postcss-value-parser "^4.2.0" -postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5: +postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5: version "6.0.11" resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz#2e41dc39b7ad74046e1615185185cd0b17d0c8dc" integrity sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g== @@ -11931,10 +11961,10 @@ postcss@8.4.14: picocolors "^1.0.0" source-map-js "^1.0.2" -postcss@^8.0.9, postcss@^8.1.10, postcss@^8.4.16, postcss@^8.4.23: - version "8.4.23" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.23.tgz#df0aee9ac7c5e53e1075c24a3613496f9e6552ab" - integrity sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA== +postcss@^8.1.10, postcss@^8.4.23, postcss@^8.4.25: + version "8.4.27" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.27.tgz#234d7e4b72e34ba5a92c29636734349e0d9c3057" + integrity sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ== dependencies: nanoid "^3.3.6" picocolors "^1.0.0" @@ -12129,11 +12159,6 @@ quick-lru@^4.0.1: resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== -quick-lru@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" - integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== - range-parser@1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" @@ -12162,27 +12187,27 @@ react-fast-compare@^3.0.0, react-fast-compare@^3.0.1: resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.0.tgz#641a9da81b6a6320f270e89724fb45a0b39e43bb" integrity sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA== -react-instantsearch-core@6.40.0: - version "6.40.0" - resolved "https://registry.yarnpkg.com/react-instantsearch-core/-/react-instantsearch-core-6.40.0.tgz#a818083d2085d050c2eb25a082f9665b85c18dcb" - integrity sha512-YCLEtW5ar+h6fQbo03KYUJq/G2BFIuwvD482JqqZ3FhSDzQSgM0ShsfrPgU3AotfZvml4rePyBKyJw6U/O0MIQ== +react-instantsearch-core@6.40.1: + version "6.40.1" + resolved "https://registry.yarnpkg.com/react-instantsearch-core/-/react-instantsearch-core-6.40.1.tgz#090d83f98b5df1a61a099331deaf94c438dd21ae" + integrity sha512-KzmOgJjDIrjn1kUziHkG+Dx3lqymKctNnklapiujHZL18svfdyIU+bphW8o4eXiHptTv7WYtEip4zhwxBO6BHA== dependencies: "@babel/runtime" "^7.1.2" - algoliasearch-helper "^3.13.0" + algoliasearch-helper "^3.13.2" prop-types "^15.6.2" react-fast-compare "^3.0.0" -react-instantsearch-dom@6.40.0: - version "6.40.0" - resolved "https://registry.yarnpkg.com/react-instantsearch-dom/-/react-instantsearch-dom-6.40.0.tgz#b9bb6a79cb46d0fa1310938cbff5f698e3697777" - integrity sha512-bD+xIi05DeQ47svD4bMgv7rKpl2eKoDOjBU2rcQNBz9N9ryE1IOe6NWAHaDZWBd99eWX9Opwa1JHr3KtNtv2yA== +react-instantsearch-dom@6.40.1: + version "6.40.1" + resolved "https://registry.yarnpkg.com/react-instantsearch-dom/-/react-instantsearch-dom-6.40.1.tgz#70b92028acec53dccbc49c23707909960917498a" + integrity sha512-VYwWmRcycGA4GhmkVawy6GQuD7UF6I6jN2ryYzFPVdIyCyCdPr2gyyoE4N9UeVRU5yXYGrQbZYtU9+UsX3uQCw== dependencies: "@babel/runtime" "^7.1.2" - algoliasearch-helper "^3.13.0" + algoliasearch-helper "^3.13.2" classnames "^2.2.5" prop-types "^15.6.2" react-fast-compare "^3.0.0" - react-instantsearch-core "6.40.0" + react-instantsearch-core "6.40.1" react-is@^16.13.1, react-is@^16.7.0: version "16.13.1" @@ -12429,11 +12454,12 @@ rehype-katex@^6.0.3: katex "^0.16.0" unist-util-visit "^4.0.0" -rehype-pretty-code@0.9.4: - version "0.9.4" - resolved "https://registry.yarnpkg.com/rehype-pretty-code/-/rehype-pretty-code-0.9.4.tgz#ab214026b530890c7a2e14c4f0881483e39e9cbc" - integrity sha512-3m4aQT15n8C+UizcZL0enaahoZwCDm5K1qKQ3DGgHE7U8l/DEEEJ/hm+uDe9yyK4sxVOSfZcRIMHrpJwLQi+Rg== +rehype-pretty-code@0.9.11: + version "0.9.11" + resolved "https://registry.yarnpkg.com/rehype-pretty-code/-/rehype-pretty-code-0.9.11.tgz#742017cbcfd5bd85466dfedd65b33a954aff7f2a" + integrity sha512-Eq90eCYXQJISktfRZ8PPtwc5SUyH6fJcxS8XOMnHPUQZBtC6RYo67gGlley9X2nR8vlniPj0/7oCDEYHKQa/oA== dependencies: + "@types/hast" "^2.0.0" hash-obj "^4.0.0" parse-numeric-range "^1.3.0" @@ -12595,12 +12621,12 @@ resolve.exports@^2.0.0: resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== -resolve@^1.1.7, resolve@^1.10.0, resolve@^1.14.2, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.1: - version "1.22.1" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" - integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== +resolve@^1.1.7, resolve@^1.10.0, resolve@^1.14.2, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.1, resolve@^1.22.2: + version "1.22.2" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" + integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== dependencies: - is-core-module "^2.9.0" + is-core-module "^2.11.0" path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" @@ -12764,10 +12790,10 @@ scuid@^1.1.0: resolved "https://registry.yarnpkg.com/scuid/-/scuid-1.1.0.tgz#d3f9f920956e737a60f72d0e4ad280bf324d5dab" integrity sha512-MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg== -search-insights@2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/search-insights/-/search-insights-2.6.0.tgz#bb8771a73b83c4a0f1f207c2f64fea01acd3e7d0" - integrity sha512-vU2/fJ+h/Mkm/DJOe+EaM5cafJv/1rRTZpGJTuFPf/Q5LjzgMDsqPdSaZsAe+GAWHHsfsu+rQSAn6c8IGtBEVw== +search-insights@2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/search-insights/-/search-insights-2.7.0.tgz#d8b7ce839cae7b905e62b156f4eefe122e560e5a" + integrity sha512-GLbVaGgzYEKMvuJbHRhLi1qoBFnjXZGZ6l4LxOYPCp4lI2jDRB3jPU9/XNhMwv6kvnA9slTreq6pvK+b3o3aqg== section-matter@^1.0.0: version "1.0.0" @@ -13347,11 +13373,12 @@ stylis@4.1.3, stylis@^4.1.3: resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.1.3.tgz#fd2fbe79f5fed17c55269e16ed8da14c84d069f7" integrity sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA== -sucrase@^3.20.3: - version "3.29.0" - resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.29.0.tgz#3207c5bc1b980fdae1e539df3f8a8a518236da7d" - integrity sha512-bZPAuGA5SdFHuzqIhTAqt9fvNEo9rESqXIG3oiKdF8K4UmkQxC4KlNL3lVyAErXp+mPvUqZ5l13qx6TrDIGf3A== +sucrase@^3.20.3, sucrase@^3.32.0: + version "3.34.0" + resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.34.0.tgz#1e0e2d8fcf07f8b9c3569067d92fbd8690fb576f" + integrity sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw== dependencies: + "@jridgewell/gen-mapping" "^0.3.2" commander "^4.0.0" glob "7.1.6" lines-and-columns "^1.1.6" @@ -13430,39 +13457,38 @@ synckit@^0.8.1, synckit@^0.8.4: "@pkgr/utils" "^2.3.1" tslib "^2.5.0" -tabbable@^6.1.2: - version "6.1.2" - resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-6.1.2.tgz#b0d3ca81d582d48a80f71b267d1434b1469a3703" - integrity sha512-qCN98uP7i9z0fIS4amQ5zbGBOq+OSigYeGvPy7NDk8Y9yncqDZ9pRPgfsc2PJIVM9RrJj7GIfuRgmjoUU9zTHQ== +tabbable@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-6.2.0.tgz#732fb62bc0175cfcec257330be187dcfba1f3b97" + integrity sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew== -tailwindcss@^3.1.8: - version "3.2.7" - resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.2.7.tgz#5936dd08c250b05180f0944500c01dce19188c07" - integrity sha512-B6DLqJzc21x7wntlH/GsZwEXTBttVSl1FtCzC8WP4oBc/NKef7kaax5jeihkkCEWc831/5NDJ9gRNDK6NEioQQ== +tailwindcss@^3.3.2: + version "3.3.3" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.3.3.tgz#90da807393a2859189e48e9e7000e6880a736daf" + integrity sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w== dependencies: + "@alloc/quick-lru" "^5.2.0" arg "^5.0.2" chokidar "^3.5.3" - color-name "^1.1.4" - detective "^5.2.1" didyoumean "^1.2.2" dlv "^1.1.3" fast-glob "^3.2.12" glob-parent "^6.0.2" is-glob "^4.0.3" - lilconfig "^2.0.6" + jiti "^1.18.2" + lilconfig "^2.1.0" micromatch "^4.0.5" normalize-path "^3.0.0" object-hash "^3.0.0" picocolors "^1.0.0" - postcss "^8.0.9" - postcss-import "^14.1.0" - postcss-js "^4.0.0" - postcss-load-config "^3.1.4" - postcss-nested "6.0.0" + postcss "^8.4.23" + postcss-import "^15.1.0" + postcss-js "^4.0.1" + postcss-load-config "^4.0.1" + postcss-nested "^6.0.1" postcss-selector-parser "^6.0.11" - postcss-value-parser "^4.2.0" - quick-lru "^5.1.1" - resolve "^1.22.1" + resolve "^1.22.2" + sucrase "^3.32.0" tapable@^2.2.0: version "2.2.1" @@ -13940,6 +13966,13 @@ unist-util-is@^5.0.0: resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-5.2.0.tgz#37eed0617b76c114fd34d44c201aa96fd928b309" integrity sha512-Glt17jWwZeyqrFqOK0pF1Ded5U3yzJnFr8CG1GMjCWTp9zDo2p+cmD6pWbZU8AgM5WU3IzRv6+rBwhzsGh6hBQ== +unist-util-is@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-6.0.0.tgz#b775956486aff107a9ded971d996c173374be424" + integrity sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw== + dependencies: + "@types/unist" "^3.0.0" + unist-util-position-from-estree@^1.0.0, unist-util-position-from-estree@^1.1.0: version "1.1.2" resolved "https://registry.yarnpkg.com/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.2.tgz#8ac2480027229de76512079e377afbcabcfcce22" @@ -13962,14 +13995,14 @@ unist-util-remove-position@^4.0.0: "@types/unist" "^2.0.0" unist-util-visit "^4.0.0" -unist-util-remove@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/unist-util-remove/-/unist-util-remove-3.1.1.tgz#8bfa181aff916bd32a4ed30b3ed76d0c21c077df" - integrity sha512-kfCqZK5YVY5yEa89tvpl7KnBBHu2c6CzMkqHUrlOqaRgGOMp0sMvwWOVrbAtj03KhovQB7i96Gda72v/EFE0vw== +unist-util-remove@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/unist-util-remove/-/unist-util-remove-4.0.0.tgz#94b7d6bbd24e42d2f841e947ed087be5c82b222e" + integrity sha512-b4gokeGId57UVRX/eVKej5gXqGlc9+trkORhFJpu9raqZkZhU0zm8Doi05+HaiBsMEIJowL+2WtQ5ItjsngPXg== dependencies: - "@types/unist" "^2.0.0" - unist-util-is "^5.0.0" - unist-util-visit-parents "^5.0.0" + "@types/unist" "^3.0.0" + unist-util-is "^6.0.0" + unist-util-visit-parents "^6.0.0" unist-util-stringify-position@^2.0.0: version "2.0.3" @@ -14001,14 +14034,13 @@ unist-util-visit-parents@^5.0.0, unist-util-visit-parents@^5.1.1: "@types/unist" "^2.0.0" unist-util-is "^5.0.0" -unist-util-visit@4.1.2, unist-util-visit@^4.0.0, unist-util-visit@^4.1.0, unist-util-visit@^4.1.1, unist-util-visit@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-4.1.2.tgz#125a42d1eb876283715a3cb5cceaa531828c72e2" - integrity sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg== +unist-util-visit-parents@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz#4d5f85755c3b8f0dc69e21eca5d6d82d22162815" + integrity sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw== dependencies: - "@types/unist" "^2.0.0" - unist-util-is "^5.0.0" - unist-util-visit-parents "^5.1.1" + "@types/unist" "^3.0.0" + unist-util-is "^6.0.0" unist-util-visit@^3.1.0: version "3.1.0" @@ -14019,6 +14051,24 @@ unist-util-visit@^3.1.0: unist-util-is "^5.0.0" unist-util-visit-parents "^4.0.0" +unist-util-visit@^4.0.0, unist-util-visit@^4.1.0, unist-util-visit@^4.1.1, unist-util-visit@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-4.1.2.tgz#125a42d1eb876283715a3cb5cceaa531828c72e2" + integrity sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg== + dependencies: + "@types/unist" "^2.0.0" + unist-util-is "^5.0.0" + unist-util-visit-parents "^5.1.1" + +unist-util-visit@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-5.0.0.tgz#a7de1f31f72ffd3519ea71814cccf5fd6a9217d6" + integrity sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg== + dependencies: + "@types/unist" "^3.0.0" + unist-util-is "^6.0.0" + unist-util-visit-parents "^6.0.0" + universalify@^0.1.0: version "0.1.2" resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" @@ -14496,11 +14546,6 @@ xml@^1.0.1: resolved "https://registry.yarnpkg.com/xml/-/xml-1.0.1.tgz#78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5" integrity sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw== -xtend@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - y18n@^4.0.0: version "4.0.3" resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" @@ -14545,7 +14590,7 @@ yaml@^1.10.2: resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== -yaml@^2.0.0, yaml@^2.2.2, yaml@^2.3.1: +yaml@^2.0.0, yaml@^2.1.1, yaml@^2.2.2, yaml@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.1.tgz#02fe0975d23cd441242aa7204e09fc28ac2ac33b" integrity sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ== From 077f7bff8d5fd723b87204b47c8bf096aa72ade5 Mon Sep 17 00:00:00 2001 From: enisdenjo Date: Wed, 9 Aug 2023 15:21:30 +0200 Subject: [PATCH 051/115] docs: graphql conf 2023 banner --- GraphQLConf-2023-Banner.png | Bin 0 -> 79749 bytes README.md | 2 ++ 2 files changed, 2 insertions(+) create mode 100644 GraphQLConf-2023-Banner.png diff --git a/GraphQLConf-2023-Banner.png b/GraphQLConf-2023-Banner.png new file mode 100644 index 0000000000000000000000000000000000000000..38f8c7cb5f2b506668306a833306e532e290374a GIT binary patch literal 79749 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�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 literal 0 HcmV?d00001 diff --git a/README.md b/README.md index 1fbe23e3301..d814e86c90d 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![GraphQL Conf 2023](/GraphQLConf-2023-Banner.png)](https://graphql.org/conf/) + [![CodeGen](./logo.svg)](https://the-guild.dev/graphql/codegen) [![npm version](https://badge.fury.io/js/%40graphql-codegen%2Fcli.svg)](https://badge.fury.io/js/%40graphql-codegen%2Fcli) From af9fcff18c2c690a62360da8d2f410544851f987 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 18:51:44 +0300 Subject: [PATCH 052/115] chore(deps): update babel monorepo (#9572) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .../package.json | 6 +- examples/persisted-documents/package.json | 6 +- examples/yoga-tests/package.json | 6 +- package.json | 6 +- yarn.lock | 406 +++++++++--------- 5 files changed, 217 insertions(+), 213 deletions(-) diff --git a/examples/persisted-documents-string-mode/package.json b/examples/persisted-documents-string-mode/package.json index 4da38c3a386..1bd43d7d8bc 100644 --- a/examples/persisted-documents-string-mode/package.json +++ b/examples/persisted-documents-string-mode/package.json @@ -12,9 +12,9 @@ "babel-jest": "28.1.3", "@graphql-codegen/cli": "5.0.0", "@graphql-codegen/client-preset": "4.1.0", - "@babel/core": "7.22.8", - "@babel/preset-env": "7.22.7", - "@babel/preset-typescript": "7.22.5" + "@babel/core": "7.22.11", + "@babel/preset-env": "7.22.10", + "@babel/preset-typescript": "7.22.11" }, "scripts": { "test": "jest", diff --git a/examples/persisted-documents/package.json b/examples/persisted-documents/package.json index d4829f79eaf..f6127cc6a1b 100644 --- a/examples/persisted-documents/package.json +++ b/examples/persisted-documents/package.json @@ -12,9 +12,9 @@ "babel-jest": "28.1.3", "@graphql-codegen/cli": "5.0.0", "@graphql-codegen/client-preset": "4.1.0", - "@babel/core": "7.22.8", - "@babel/preset-env": "7.22.7", - "@babel/preset-typescript": "7.22.5" + "@babel/core": "7.22.11", + "@babel/preset-env": "7.22.10", + "@babel/preset-typescript": "7.22.11" }, "scripts": { "test": "jest", diff --git a/examples/yoga-tests/package.json b/examples/yoga-tests/package.json index 0289300c77f..5e646ab18c6 100644 --- a/examples/yoga-tests/package.json +++ b/examples/yoga-tests/package.json @@ -11,9 +11,9 @@ "babel-jest": "28.1.3", "@graphql-codegen/cli": "5.0.0", "@graphql-codegen/client-preset": "4.1.0", - "@babel/core": "7.22.8", - "@babel/preset-env": "7.22.7", - "@babel/preset-typescript": "7.22.5" + "@babel/core": "7.22.11", + "@babel/preset-env": "7.22.10", + "@babel/preset-typescript": "7.22.11" }, "scripts": { "test": "jest", diff --git a/package.json b/package.json index 1f4fdb0075a..efbb089cb90 100644 --- a/package.json +++ b/package.json @@ -43,9 +43,9 @@ "examples/**/*" ], "devDependencies": { - "@babel/core": "7.22.8", - "@babel/preset-env": "7.22.7", - "@babel/preset-typescript": "7.22.5", + "@babel/core": "7.22.11", + "@babel/preset-env": "7.22.10", + "@babel/preset-typescript": "7.22.11", "@changesets/changelog-github": "0.4.8", "@changesets/cli": "2.26.2", "@theguild/eslint-config": "0.9.0", diff --git a/yarn.lock b/yarn.lock index 5f03acbad55..afd6419071c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -231,45 +231,46 @@ dependencies: node-fetch "^2.6.1" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658" - integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.22.10", "@babel/code-frame@^7.22.5": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.10.tgz#1c20e612b768fefa75f6e90d6ecb86329247f0a3" + integrity sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA== dependencies: - "@babel/highlight" "^7.22.5" + "@babel/highlight" "^7.22.10" + chalk "^2.4.2" -"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.5", "@babel/compat-data@^7.22.6": - version "7.22.6" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.6.tgz#15606a20341de59ba02cd2fcc5086fcbe73bf544" - integrity sha512-29tfsWTq2Ftu7MXmimyC0C5FDZv5DYxOZkh3XD3+QW4V/BYuv/LyEsjj3c0hqedEaDt6DBfDvexMKU8YevdqFg== +"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.9.tgz#71cdb00a1ce3a329ce4cbec3a44f9fef35669730" + integrity sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ== -"@babel/core@7.22.8", "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.14.0", "@babel/core@^7.20.12": - version "7.22.8" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.8.tgz#386470abe884302db9c82e8e5e87be9e46c86785" - integrity sha512-75+KxFB4CZqYRXjx4NlR4J7yGvKumBuZTmV4NV6v09dVXXkuYVYLT68N6HCzLvfJ+fWCxQsntNzKwwIXL4bHnw== +"@babel/core@7.22.11", "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.14.0", "@babel/core@^7.20.12": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.11.tgz#8033acaa2aa24c3f814edaaa057f3ce0ba559c24" + integrity sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ== dependencies: "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.22.5" - "@babel/generator" "^7.22.7" - "@babel/helper-compilation-targets" "^7.22.6" - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helpers" "^7.22.6" - "@babel/parser" "^7.22.7" + "@babel/code-frame" "^7.22.10" + "@babel/generator" "^7.22.10" + "@babel/helper-compilation-targets" "^7.22.10" + "@babel/helper-module-transforms" "^7.22.9" + "@babel/helpers" "^7.22.11" + "@babel/parser" "^7.22.11" "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.8" - "@babel/types" "^7.22.5" - "@nicolo-ribaudo/semver-v6" "^6.3.3" + "@babel/traverse" "^7.22.11" + "@babel/types" "^7.22.11" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.2" - json5 "^2.2.2" + json5 "^2.2.3" + semver "^6.3.1" -"@babel/generator@^7.14.0", "@babel/generator@^7.18.13", "@babel/generator@^7.22.7", "@babel/generator@^7.7.2": - version "7.22.7" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.7.tgz#a6b8152d5a621893f2c9dacf9a4e286d520633d5" - integrity sha512-p+jPjMG+SI8yvIaxGgeW24u7q9+5+TGpZh8/CuB7RhBKd7RCy8FayNEFNNKrNK/eUcY/4ExQqLmyrvBXKsIcwQ== +"@babel/generator@^7.14.0", "@babel/generator@^7.18.13", "@babel/generator@^7.22.10", "@babel/generator@^7.7.2": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.10.tgz#c92254361f398e160645ac58831069707382b722" + integrity sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A== dependencies: - "@babel/types" "^7.22.5" + "@babel/types" "^7.22.10" "@jridgewell/gen-mapping" "^0.3.2" "@jridgewell/trace-mapping" "^0.3.17" jsesc "^2.5.1" @@ -288,31 +289,31 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6": - version "7.22.6" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.6.tgz#e30d61abe9480aa5a83232eb31c111be922d2e52" - integrity sha512-534sYEqWD9VfUm3IPn2SLcH4Q3P86XL+QvqdC7ZsFrzyyPF3T4XGiVghF6PTYNdWg6pXuoqXxNQAhbYeEInTzA== +"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.10", "@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz#01d648bbc25dd88f513d862ee0df27b7d4e67024" + integrity sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q== dependencies: - "@babel/compat-data" "^7.22.6" + "@babel/compat-data" "^7.22.9" "@babel/helper-validator-option" "^7.22.5" - "@nicolo-ribaudo/semver-v6" "^6.3.3" browserslist "^4.21.9" lru-cache "^5.1.1" + semver "^6.3.1" -"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.22.5": - version "7.22.6" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.6.tgz#58564873c889a6fea05a538e23f9f6d201f10950" - integrity sha512-iwdzgtSiBxF6ni6mzVnZCF3xt5qE6cEA0J7nFt8QOAWZ0zjCFceEgpn3vtb2V7WFR6QzP2jmIFOHMTRo7eNJjQ== +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.22.11", "@babel/helper-create-class-features-plugin@^7.22.5": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.11.tgz#4078686740459eeb4af3494a273ac09148dfb213" + integrity sha512-y1grdYL4WzmUDBRGK0pDbIoFd7UZKoDurDzWEoNMYoj1EL+foGRQNyPWDcC+YyegN5y1DUsFFmzjGijB3nSVAQ== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" "@babel/helper-environment-visitor" "^7.22.5" "@babel/helper-function-name" "^7.22.5" "@babel/helper-member-expression-to-functions" "^7.22.5" "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.9" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" "@babel/helper-split-export-declaration" "^7.22.6" - "@nicolo-ribaudo/semver-v6" "^6.3.3" + semver "^6.3.1" "@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5": version "7.22.6" @@ -323,10 +324,10 @@ "@nicolo-ribaudo/semver-v6" "^6.3.3" regexpu-core "^5.3.1" -"@babel/helper-define-polyfill-provider@^0.4.1": - version "0.4.1" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.1.tgz#af1429c4a83ac316a6a8c2cc8ff45cb5d2998d3a" - integrity sha512-kX4oXixDxG197yhX+J3Wp+NpL2wuCFjWQAr6yX2jtCnflK9ulMI51ULFGIrWiX1jGfvAxdHp+XQCcP2bZGPs9A== +"@babel/helper-define-polyfill-provider@^0.4.2": + version "0.4.2" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz#82c825cadeeeee7aad237618ebbe8fa1710015d7" + integrity sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw== dependencies: "@babel/helper-compilation-targets" "^7.22.6" "@babel/helper-plugin-utils" "^7.22.5" @@ -368,19 +369,16 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-module-transforms@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz#0f65daa0716961b6e96b164034e737f60a80d2ef" - integrity sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw== +"@babel/helper-module-transforms@^7.22.5", "@babel/helper-module-transforms@^7.22.9": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz#92dfcb1fbbb2bc62529024f72d942a8c97142129" + integrity sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ== dependencies: "@babel/helper-environment-visitor" "^7.22.5" "@babel/helper-module-imports" "^7.22.5" "@babel/helper-simple-access" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" "@babel/helper-validator-identifier" "^7.22.5" - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" - "@babel/types" "^7.22.5" "@babel/helper-optimise-call-expression@^7.22.5": version "7.22.5" @@ -394,27 +392,23 @@ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== -"@babel/helper-remap-async-to-generator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz#14a38141a7bf2165ad38da61d61cf27b43015da2" - integrity sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g== +"@babel/helper-remap-async-to-generator@^7.22.5", "@babel/helper-remap-async-to-generator@^7.22.9": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.9.tgz#53a25b7484e722d7efb9c350c75c032d4628de82" + integrity sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-wrap-function" "^7.22.5" - "@babel/types" "^7.22.5" + "@babel/helper-wrap-function" "^7.22.9" -"@babel/helper-replace-supers@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz#71bc5fb348856dea9fdc4eafd7e2e49f585145dc" - integrity sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg== +"@babel/helper-replace-supers@^7.22.5", "@babel/helper-replace-supers@^7.22.9": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz#cbdc27d6d8d18cd22c81ae4293765a5d9afd0779" + integrity sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg== dependencies: "@babel/helper-environment-visitor" "^7.22.5" "@babel/helper-member-expression-to-functions" "^7.22.5" "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" - "@babel/types" "^7.22.5" "@babel/helper-simple-access@^7.22.5": version "7.22.5" @@ -430,7 +424,7 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-split-export-declaration@^7.22.5", "@babel/helper-split-export-declaration@^7.22.6": +"@babel/helper-split-export-declaration@^7.22.6": version "7.22.6" resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== @@ -452,38 +446,37 @@ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac" integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw== -"@babel/helper-wrap-function@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz#44d205af19ed8d872b4eefb0d2fa65f45eb34f06" - integrity sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw== +"@babel/helper-wrap-function@^7.22.9": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.10.tgz#d845e043880ed0b8c18bd194a12005cb16d2f614" + integrity sha512-OnMhjWjuGYtdoO3FmsEFWvBStBAe2QOgwOLsLNDjN+aaiMD8InJk1/O3HSD8lkqTjCgg5YI34Tz15KNNA3p+nQ== dependencies: "@babel/helper-function-name" "^7.22.5" "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" - "@babel/types" "^7.22.5" + "@babel/types" "^7.22.10" -"@babel/helpers@^7.22.6": - version "7.22.6" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.6.tgz#8e61d3395a4f0c5a8060f309fb008200969b5ecd" - integrity sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA== +"@babel/helpers@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.11.tgz#b02f5d5f2d7abc21ab59eeed80de410ba70b056a" + integrity sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg== dependencies: "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.6" - "@babel/types" "^7.22.5" + "@babel/traverse" "^7.22.11" + "@babel/types" "^7.22.11" -"@babel/highlight@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031" - integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw== +"@babel/highlight@^7.22.10": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.10.tgz#02a3f6d8c1cb4521b2fd0ab0da8f4739936137d7" + integrity sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ== dependencies: "@babel/helper-validator-identifier" "^7.22.5" - chalk "^2.0.0" + chalk "^2.4.2" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.8", "@babel/parser@^7.20.15", "@babel/parser@^7.20.7", "@babel/parser@^7.21.3", "@babel/parser@^7.22.5", "@babel/parser@^7.22.7": - version "7.22.7" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.7.tgz#df8cf085ce92ddbdbf668a7f186ce848c9036cae" - integrity sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q== +"@babel/parser@^7.1.0", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.8", "@babel/parser@^7.20.15", "@babel/parser@^7.20.7", "@babel/parser@^7.21.3", "@babel/parser@^7.22.11", "@babel/parser@^7.22.5": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.11.tgz#becf8ee33aad2a35ed5607f521fe6e72a615f905" + integrity sha512-R5zb8eJIBPJriQtbH/htEQy4k7E2dHWlD2Y2VT07JCzwYZHBxV5ZYtM0UhXSNMT74LyxuM+b1jdL7pSesXbC/g== "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.5": version "7.22.5" @@ -525,14 +518,6 @@ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== -"@babel/plugin-proposal-unicode-property-regex@^7.4.4": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e" - integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" @@ -695,14 +680,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-async-generator-functions@^7.22.7": - version "7.22.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.7.tgz#053e76c0a903b72b573cb1ab7d6882174d460a1b" - integrity sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg== +"@babel/plugin-transform-async-generator-functions@^7.22.10": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.11.tgz#dbe3b1ff5a52e2e5edc4b19a60d325a675ed2649" + integrity sha512-0pAlmeRJn6wU84zzZsEOx1JV1Jf8fqO9ok7wofIJwUnplYo247dcd24P+cMJht7ts9xkzdtB0EPHmOb7F+KzXw== dependencies: "@babel/helper-environment-visitor" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-remap-async-to-generator" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.9" "@babel/plugin-syntax-async-generators" "^7.8.4" "@babel/plugin-transform-async-to-generator@^7.22.5": @@ -721,10 +706,10 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-block-scoping@^7.0.0", "@babel/plugin-transform-block-scoping@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz#8bfc793b3a4b2742c0983fadc1480d843ecea31b" - integrity sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg== +"@babel/plugin-transform-block-scoping@^7.0.0", "@babel/plugin-transform-block-scoping@^7.22.10": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.10.tgz#88a1dccc3383899eb5e660534a76a22ecee64faa" + integrity sha512-1+kVpGAOOI1Albt6Vse7c8pHzcZQdQKW+wJH+g8mCaszOdDVwRXa/slHPqIw+oJAJANTKDMuM2cBdV0Dg618Vg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" @@ -768,14 +753,14 @@ "@babel/helper-plugin-utils" "^7.22.5" "@babel/template" "^7.22.5" -"@babel/plugin-transform-destructuring@^7.0.0", "@babel/plugin-transform-destructuring@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz#d3aca7438f6c26c78cdd0b0ba920a336001b27cc" - integrity sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ== +"@babel/plugin-transform-destructuring@^7.0.0", "@babel/plugin-transform-destructuring@^7.22.10": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.10.tgz#38e2273814a58c810b6c34ea293be4973c4eb5e2" + integrity sha512-dPJrL0VOyxqLM9sritNbMSGx/teueHF/htMKrPT7DNxccXxRDPYqlgPFFdr8u+F+qUZOkZoXue/6rL5O5GduEw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-dotall-regex@^7.22.5", "@babel/plugin-transform-dotall-regex@^7.4.4": +"@babel/plugin-transform-dotall-regex@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165" integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw== @@ -876,12 +861,12 @@ "@babel/helper-module-transforms" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz#7d9875908d19b8c0536085af7b053fd5bd651bfa" - integrity sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA== +"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.22.11", "@babel/plugin-transform-modules-commonjs@^7.22.5": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.11.tgz#d7991d3abad199c03b68ee66a64f216c47ffdfae" + integrity sha512-o2+bg7GDS60cJMgz9jWqRUsWkMzLCxp+jFDeDUT5sjRlAxcJWZ2ylNdI7QQ2+CH5hWu7OnN+Cv3htt7AkSf96g== dependencies: - "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-module-transforms" "^7.22.9" "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-simple-access" "^7.22.5" @@ -961,10 +946,10 @@ "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-transform-optional-chaining@^7.22.5", "@babel/plugin-transform-optional-chaining@^7.22.6": - version "7.22.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.6.tgz#4bacfe37001fe1901117672875e931d439811564" - integrity sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg== +"@babel/plugin-transform-optional-chaining@^7.22.10", "@babel/plugin-transform-optional-chaining@^7.22.5": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.11.tgz#062f0071f777aa06b31332cd90318d6b76444b74" + integrity sha512-7X2vGqH2ZKu7Imx0C+o5OysRwtF/wzdCAqmcD1N1v2Ww8CtOSC+p+VoV76skm47DLvBZ8kBFic+egqxM9S/p4g== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" @@ -1034,13 +1019,13 @@ "@babel/plugin-syntax-jsx" "^7.18.6" "@babel/types" "^7.20.7" -"@babel/plugin-transform-regenerator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz#cd8a68b228a5f75fa01420e8cc2fc400f0fc32aa" - integrity sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw== +"@babel/plugin-transform-regenerator@^7.22.10": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz#8ceef3bd7375c4db7652878b0241b2be5d0c3cca" + integrity sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" - regenerator-transform "^0.15.1" + regenerator-transform "^0.15.2" "@babel/plugin-transform-reserved-words@^7.22.5": version "7.22.5" @@ -1085,20 +1070,20 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-typescript@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz#5c0f7adfc1b5f38c4dbc8f79b1f0f8074134bd7d" - integrity sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA== +"@babel/plugin-transform-typescript@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.11.tgz#9f27fb5e51585729374bb767ab6a6d9005a23329" + integrity sha512-0E4/L+7gfvHub7wsbTv03oRtD69X31LByy44fGmFzbZScpupFByMcgCJ0VbBTkzyjSJKuRoGN8tcijOWKTmqOA== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.11" "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-typescript" "^7.22.5" -"@babel/plugin-transform-unicode-escapes@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz#ce0c248522b1cb22c7c992d88301a5ead70e806c" - integrity sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg== +"@babel/plugin-transform-unicode-escapes@^7.22.10": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz#c723f380f40a2b2f57a62df24c9005834c8616d9" + integrity sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" @@ -1126,13 +1111,13 @@ "@babel/helper-create-regexp-features-plugin" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/preset-env@7.22.7": - version "7.22.7" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.7.tgz#a1ef34b64a80653c22ce4d9c25603cfa76fc168a" - integrity sha512-1whfDtW+CzhETuzYXfcgZAh8/GFMeEbz0V5dVgya8YeJyCU6Y/P2Gnx4Qb3MylK68Zu9UiwUvbPMPTpFAOJ+sQ== +"@babel/preset-env@7.22.10": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.10.tgz#3263b9fe2c8823d191d28e61eac60a79f9ce8a0f" + integrity sha512-riHpLb1drNkpLlocmSyEg4oYJIQFeXAK/d7rI6mbD0XsvoTOOweXDmQPG/ErxsEhWk3rl3Q/3F6RFQlVFS8m0A== dependencies: - "@babel/compat-data" "^7.22.6" - "@babel/helper-compilation-targets" "^7.22.6" + "@babel/compat-data" "^7.22.9" + "@babel/helper-compilation-targets" "^7.22.10" "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-validator-option" "^7.22.5" "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.5" @@ -1157,15 +1142,15 @@ "@babel/plugin-syntax-top-level-await" "^7.14.5" "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" "@babel/plugin-transform-arrow-functions" "^7.22.5" - "@babel/plugin-transform-async-generator-functions" "^7.22.7" + "@babel/plugin-transform-async-generator-functions" "^7.22.10" "@babel/plugin-transform-async-to-generator" "^7.22.5" "@babel/plugin-transform-block-scoped-functions" "^7.22.5" - "@babel/plugin-transform-block-scoping" "^7.22.5" + "@babel/plugin-transform-block-scoping" "^7.22.10" "@babel/plugin-transform-class-properties" "^7.22.5" "@babel/plugin-transform-class-static-block" "^7.22.5" "@babel/plugin-transform-classes" "^7.22.6" "@babel/plugin-transform-computed-properties" "^7.22.5" - "@babel/plugin-transform-destructuring" "^7.22.5" + "@babel/plugin-transform-destructuring" "^7.22.10" "@babel/plugin-transform-dotall-regex" "^7.22.5" "@babel/plugin-transform-duplicate-keys" "^7.22.5" "@babel/plugin-transform-dynamic-import" "^7.22.5" @@ -1188,51 +1173,49 @@ "@babel/plugin-transform-object-rest-spread" "^7.22.5" "@babel/plugin-transform-object-super" "^7.22.5" "@babel/plugin-transform-optional-catch-binding" "^7.22.5" - "@babel/plugin-transform-optional-chaining" "^7.22.6" + "@babel/plugin-transform-optional-chaining" "^7.22.10" "@babel/plugin-transform-parameters" "^7.22.5" "@babel/plugin-transform-private-methods" "^7.22.5" "@babel/plugin-transform-private-property-in-object" "^7.22.5" "@babel/plugin-transform-property-literals" "^7.22.5" - "@babel/plugin-transform-regenerator" "^7.22.5" + "@babel/plugin-transform-regenerator" "^7.22.10" "@babel/plugin-transform-reserved-words" "^7.22.5" "@babel/plugin-transform-shorthand-properties" "^7.22.5" "@babel/plugin-transform-spread" "^7.22.5" "@babel/plugin-transform-sticky-regex" "^7.22.5" "@babel/plugin-transform-template-literals" "^7.22.5" "@babel/plugin-transform-typeof-symbol" "^7.22.5" - "@babel/plugin-transform-unicode-escapes" "^7.22.5" + "@babel/plugin-transform-unicode-escapes" "^7.22.10" "@babel/plugin-transform-unicode-property-regex" "^7.22.5" "@babel/plugin-transform-unicode-regex" "^7.22.5" "@babel/plugin-transform-unicode-sets-regex" "^7.22.5" - "@babel/preset-modules" "^0.1.5" - "@babel/types" "^7.22.5" - "@nicolo-ribaudo/semver-v6" "^6.3.3" - babel-plugin-polyfill-corejs2 "^0.4.4" - babel-plugin-polyfill-corejs3 "^0.8.2" - babel-plugin-polyfill-regenerator "^0.5.1" + "@babel/preset-modules" "0.1.6-no-external-plugins" + "@babel/types" "^7.22.10" + babel-plugin-polyfill-corejs2 "^0.4.5" + babel-plugin-polyfill-corejs3 "^0.8.3" + babel-plugin-polyfill-regenerator "^0.5.2" core-js-compat "^3.31.0" + semver "^6.3.1" -"@babel/preset-modules@^0.1.5": - version "0.1.5" - resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9" - integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== +"@babel/preset-modules@0.1.6-no-external-plugins": + version "0.1.6-no-external-plugins" + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a" + integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" - "@babel/plugin-transform-dotall-regex" "^7.4.4" "@babel/types" "^7.4.4" esutils "^2.0.2" -"@babel/preset-typescript@7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz#16367d8b01d640e9a507577ed4ee54e0101e51c8" - integrity sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ== +"@babel/preset-typescript@7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.22.11.tgz#f218cd0345524ac888aa3dc32f029de5b064b575" + integrity sha512-tWY5wyCZYBGY7IlalfKI1rLiGlIfnwsRHZqlky0HVv8qviwQ1Uo/05M6+s+TcTCVa6Bmoo2uJW5TMFX6Wa4qVg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-validator-option" "^7.22.5" "@babel/plugin-syntax-jsx" "^7.22.5" - "@babel/plugin-transform-modules-commonjs" "^7.22.5" - "@babel/plugin-transform-typescript" "^7.22.5" + "@babel/plugin-transform-modules-commonjs" "^7.22.11" + "@babel/plugin-transform-typescript" "^7.22.11" "@babel/regjsgen@^0.8.0": version "0.8.0" @@ -1255,26 +1238,26 @@ "@babel/parser" "^7.22.5" "@babel/types" "^7.22.5" -"@babel/traverse@^7.14.0", "@babel/traverse@^7.16.8", "@babel/traverse@^7.22.5", "@babel/traverse@^7.22.6", "@babel/traverse@^7.22.8", "@babel/traverse@^7.7.2": - version "7.22.8" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.8.tgz#4d4451d31bc34efeae01eac222b514a77aa4000e" - integrity sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw== +"@babel/traverse@^7.14.0", "@babel/traverse@^7.16.8", "@babel/traverse@^7.22.11", "@babel/traverse@^7.7.2": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.11.tgz#71ebb3af7a05ff97280b83f05f8865ac94b2027c" + integrity sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ== dependencies: - "@babel/code-frame" "^7.22.5" - "@babel/generator" "^7.22.7" + "@babel/code-frame" "^7.22.10" + "@babel/generator" "^7.22.10" "@babel/helper-environment-visitor" "^7.22.5" "@babel/helper-function-name" "^7.22.5" "@babel/helper-hoist-variables" "^7.22.5" "@babel/helper-split-export-declaration" "^7.22.6" - "@babel/parser" "^7.22.7" - "@babel/types" "^7.22.5" + "@babel/parser" "^7.22.11" + "@babel/types" "^7.22.11" debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.16.8", "@babel/types@^7.18.13", "@babel/types@^7.20.7", "@babel/types@^7.22.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.5.tgz#cd93eeaab025880a3a47ec881f4b096a5b786fbe" - integrity sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA== +"@babel/types@^7.0.0", "@babel/types@^7.16.8", "@babel/types@^7.18.13", "@babel/types@^7.20.7", "@babel/types@^7.22.10", "@babel/types@^7.22.11", "@babel/types@^7.22.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.11.tgz#0e65a6a1d4d9cbaa892b2213f6159485fe632ea2" + integrity sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg== dependencies: "@babel/helper-string-parser" "^7.22.5" "@babel/helper-validator-identifier" "^7.22.5" @@ -4793,7 +4776,7 @@ ansi-sequence-parser@^1.1.0: resolved "https://registry.yarnpkg.com/ansi-sequence-parser/-/ansi-sequence-parser-1.1.0.tgz#4d790f31236ac20366b23b3916b789e1bde39aed" integrity sha512-lEm8mt52to2fT8GhciPCGeCXACSz2UwIN4X2e2LJSnZ5uAbn2/dsYdOmUXq0AtWS5cpAupysIneExOgH0Vd2TQ== -ansi-styles@^3.1.0: +ansi-styles@^3.1.0, ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== @@ -5072,29 +5055,29 @@ babel-plugin-macros@^3.1.0: cosmiconfig "^7.0.0" resolve "^1.19.0" -babel-plugin-polyfill-corejs2@^0.4.4: - version "0.4.4" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.4.tgz#9f9a0e1cd9d645cc246a5e094db5c3aa913ccd2b" - integrity sha512-9WeK9snM1BfxB38goUEv2FLnA6ja07UMfazFHzCXUb3NyDZAwfXvQiURQ6guTTMeHcOsdknULm1PDhs4uWtKyA== +babel-plugin-polyfill-corejs2@^0.4.5: + version "0.4.5" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz#8097b4cb4af5b64a1d11332b6fb72ef5e64a054c" + integrity sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg== dependencies: "@babel/compat-data" "^7.22.6" - "@babel/helper-define-polyfill-provider" "^0.4.1" - "@nicolo-ribaudo/semver-v6" "^6.3.3" + "@babel/helper-define-polyfill-provider" "^0.4.2" + semver "^6.3.1" -babel-plugin-polyfill-corejs3@^0.8.2: - version "0.8.2" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.2.tgz#d406c5738d298cd9c66f64a94cf8d5904ce4cc5e" - integrity sha512-Cid+Jv1BrY9ReW9lIfNlNpsI53N+FN7gE+f73zLAUbr9C52W4gKLWSByx47pfDJsEysojKArqOtOKZSVIIUTuQ== +babel-plugin-polyfill-corejs3@^0.8.3: + version "0.8.3" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.3.tgz#b4f719d0ad9bb8e0c23e3e630c0c8ec6dd7a1c52" + integrity sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA== dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.1" + "@babel/helper-define-polyfill-provider" "^0.4.2" core-js-compat "^3.31.0" -babel-plugin-polyfill-regenerator@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.1.tgz#ace7a5eced6dff7d5060c335c52064778216afd3" - integrity sha512-L8OyySuI6OSQ5hFy9O+7zFjyr4WhAfRjLIOkhQGYl+emwJkd/S4XXT1JpfrgR1jrQ1NcGiOh+yAdGlF8pnC3Jw== +babel-plugin-polyfill-regenerator@^0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz#80d0f3e1098c080c8b5a65f41e9427af692dc326" + integrity sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA== dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.1" + "@babel/helper-define-polyfill-provider" "^0.4.2" babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0: version "7.0.0-beta.0" @@ -5468,7 +5451,7 @@ chalk-template@0.4.0: dependencies: chalk "^4.1.2" -chalk@2.3.0, chalk@^2.0.0, chalk@^2.1.0: +chalk@2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" integrity sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q== @@ -5487,6 +5470,15 @@ chalk@5.2.0, chalk@^5.0.1: resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3" integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA== +chalk@^2.1.0, chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" @@ -8259,6 +8251,11 @@ has-flag@^2.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" integrity sha512-P+1n3MnwjR/Epg9BBo1KT8qbye2g2Ou4sFumihwt6I4tsUX7jnLcX4BTOSKg/B1ZrIYMN9FcEnG4x5a7NB8Eng== +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + has-flag@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" @@ -9622,7 +9619,7 @@ json5@^1.0.1: dependencies: minimist "^1.2.0" -json5@^2.2.1, json5@^2.2.2: +json5@^2.2.1, json5@^2.2.3: version "2.2.3" resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== @@ -12382,10 +12379,10 @@ regenerator-runtime@^0.13.11: resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== -regenerator-transform@^0.15.1: - version "0.15.1" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56" - integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg== +regenerator-transform@^0.15.2: + version "0.15.2" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4" + integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== dependencies: "@babel/runtime" "^7.8.4" @@ -12815,10 +12812,10 @@ semver@7.x, semver@^7.0.0, semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@^ dependencies: lru-cache "^6.0.0" -semver@^6.0.0, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== +semver@^6.0.0, semver@^6.3.0, semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== sentence-case@^3.0.4: version "3.0.4" @@ -13393,6 +13390,13 @@ supports-color@^4.0.0: dependencies: has-flag "^2.0.0" +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + supports-color@^7.0.0, supports-color@^7.1.0: version "7.2.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" From 93c2d9093bf35720979688adaa495745d6c308b7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 18:51:54 +0300 Subject: [PATCH 053/115] chore(deps): update dependency fast-xml-parser to v4.2.7 (#9582) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- website/package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/website/package.json b/website/package.json index 722bf789627..a8b305c7b12 100644 --- a/website/package.json +++ b/website/package.json @@ -16,7 +16,7 @@ "@types/jsonpath": "0.2.0", "@types/node": "18.16.19", "@types/react": "18.2.7", - "fast-xml-parser": "4.2.5", + "fast-xml-parser": "4.2.7", "jsonpath": "1.1.1", "prettier-plugin-tailwindcss": "0.2.8" }, diff --git a/yarn.lock b/yarn.lock index afd6419071c..cc556f20279 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7581,10 +7581,10 @@ fast-url-parser@1.1.3, fast-url-parser@^1.1.3: dependencies: punycode "^1.3.2" -fast-xml-parser@4.2.5: - version "4.2.5" - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz#a6747a09296a6cb34f2ae634019bf1738f3b421f" - integrity sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g== +fast-xml-parser@4.2.7: + version "4.2.7" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.2.7.tgz#871f2ca299dc4334b29f8da3658c164e68395167" + integrity sha512-J8r6BriSLO1uj2miOk1NW0YVm8AGOOu3Si2HQp/cSmo6EA4m3fcwu2WKjJ4RK9wMLBtg69y1kS8baDiQBR41Ig== dependencies: strnum "^1.0.5" From b8aa88183839fbbd9bd7a1b021874acf5f4ccfde Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 18:52:10 +0300 Subject: [PATCH 054/115] chore(deps): update dependency vue-tsc to v1.8.8 (#9540) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- yarn.lock | 62 +++++++++++++++++++++++++++---------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/yarn.lock b/yarn.lock index cc556f20279..8c46ee48be9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4415,26 +4415,26 @@ resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-4.2.3.tgz#ee0b6dfcc62fe65364e6395bf38fa2ba10bb44b6" integrity sha512-R6JDUfiZbJA9cMiguQ7jxALsgiprjBeHL5ikpXfJCH62pPHtI+JdJ5xWj6Ev73yXSlYl86+blXn1kZHQ7uElxw== -"@volar/language-core@1.7.8": - version "1.7.8" - resolved "https://registry.yarnpkg.com/@volar/language-core/-/language-core-1.7.8.tgz#88e33fda749ecb1ecb28c031027d45e778b8cd5f" - integrity sha512-TPklg4c2e/f1xB/MGZEiQc3AWG+dH64ZfBlYjFB8nNaWJt4Z4k+IHBhmaP52APG+5PHFerwiWI9oF002RrRTPA== +"@volar/language-core@1.10.0", "@volar/language-core@~1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@volar/language-core/-/language-core-1.10.0.tgz#fb6b3ad22e75c53a1ae4d644c4a788b47d411b9d" + integrity sha512-ddyWwSYqcbEZNFHm+Z3NZd6M7Ihjcwl/9B5cZd8kECdimVXUFdFi60XHWD27nrWtUQIsUYIG7Ca1WBwV2u2LSQ== dependencies: - "@volar/source-map" "1.7.8" + "@volar/source-map" "1.10.0" -"@volar/source-map@1.7.8": - version "1.7.8" - resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-1.7.8.tgz#46710f1d1e948e8009993595b70670e3ee4bfc1d" - integrity sha512-g2dtC2kOghvfzMDWeODIo4HO1Ml4hxzPTZyAFDz+YhRF9HjZYJSCaWaVuPZ+z0kY+T2daOHYA10GdrWQ5q0teA== +"@volar/source-map@1.10.0", "@volar/source-map@~1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-1.10.0.tgz#2413eb190ce69fc1a382f58524a3f82306668024" + integrity sha512-/ibWdcOzDGiq/GM1JU2eX8fH1bvAhl66hfe8yEgLEzg9txgr6qb5sQ/DEz5PcDL75tF5H5sCRRwn8Eu8ezi9mw== dependencies: muggle-string "^0.3.1" -"@volar/typescript@1.7.8": - version "1.7.8" - resolved "https://registry.yarnpkg.com/@volar/typescript/-/typescript-1.7.8.tgz#6997b3c7637292a6dc6e4a3737e45f3c4e49ef12" - integrity sha512-NDcI5ZQcdr8kgxzMQrhSSWIM8Tl0MbMFrkvJPTjfm2rdAQZPFT8zv3LrEW9Fqh0e9z2YbCry7jr4a/GShBqeDA== +"@volar/typescript@~1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@volar/typescript/-/typescript-1.10.0.tgz#3b16cf7c4c1802eac023ba4e57fe52bdb6d3016f" + integrity sha512-OtqGtFbUKYC0pLNIk3mHQp5xWnvL1CJIUc9VE39VdZ/oqpoBh5jKfb9uJ45Y4/oP/WYTrif/Uxl1k8VTPz66Gg== dependencies: - "@volar/language-core" "1.7.8" + "@volar/language-core" "1.10.0" "@vue/apollo-composable@4.0.0-beta.8": version "4.0.0-beta.8" @@ -4487,13 +4487,13 @@ "@vue/compiler-dom" "3.3.4" "@vue/shared" "3.3.4" -"@vue/language-core@1.8.1": - version "1.8.1" - resolved "https://registry.yarnpkg.com/@vue/language-core/-/language-core-1.8.1.tgz#86b709f803bcc0cab84fd14677c0fb909154c562" - integrity sha512-pumv3k4J7P58hVh4YGRM9Qz3HaAr4TlFWM9bnVOkZ/2K9o2CK1lAP2y9Jw+Z0+mNL4F2uWQqnAPzj3seLyfpDA== +"@vue/language-core@1.8.8": + version "1.8.8" + resolved "https://registry.yarnpkg.com/@vue/language-core/-/language-core-1.8.8.tgz#5a8aa8363f4dfacdfcd7808a9926744d7c310ae6" + integrity sha512-i4KMTuPazf48yMdYoebTkgSOJdFraE4pQf0B+FTOFkbB+6hAfjrSou/UmYWRsWyZV6r4Rc6DDZdI39CJwL0rWw== dependencies: - "@volar/language-core" "1.7.8" - "@volar/source-map" "1.7.8" + "@volar/language-core" "~1.10.0" + "@volar/source-map" "~1.10.0" "@vue/compiler-dom" "^3.3.0" "@vue/reactivity" "^3.3.0" "@vue/shared" "^3.3.0" @@ -4549,13 +4549,13 @@ resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.3.4.tgz#06e83c5027f464eef861c329be81454bc8b70780" integrity sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ== -"@vue/typescript@1.8.1": - version "1.8.1" - resolved "https://registry.yarnpkg.com/@vue/typescript/-/typescript-1.8.1.tgz#2302f3cc8330e8dd91982eecd64d71ee11198cb0" - integrity sha512-nQpo55j/roie8heCfqyXHnyayqD5+p4/0fzfxH4ZuHf7NSBQS791PNv7ztp2CCOjnGAiaiCMdtC9rc6oriyPUg== +"@vue/typescript@1.8.8": + version "1.8.8" + resolved "https://registry.yarnpkg.com/@vue/typescript/-/typescript-1.8.8.tgz#8efb375d448862134492a044f4e96afada547500" + integrity sha512-jUnmMB6egu5wl342eaUH236v8tdcEPXXkPgj+eI/F6JwW/lb+yAU6U07ZbQ3MVabZRlupIlPESB7ajgAGixhow== dependencies: - "@volar/typescript" "1.7.8" - "@vue/language-core" "1.8.1" + "@volar/typescript" "~1.10.0" + "@vue/language-core" "1.8.8" "@whatwg-node/events@0.0.2": version "0.0.2" @@ -14306,12 +14306,12 @@ vue-template-compiler@^2.7.14: he "^1.2.0" vue-tsc@^1.0.24: - version "1.8.1" - resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-1.8.1.tgz#cdbc83ad7d1c80eac82e01917a58bc57e2debed2" - integrity sha512-GxBQrcb0Qvyrj1uZqnTXQyWbXdNDRY2MTa+r7ESgjhf+WzBSdxZfkS3KD/C3WhKYG+aN8hf44Hp5Gqzb6PehAA== + version "1.8.8" + resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-1.8.8.tgz#67317693eb2ef6747e89e6d834eeb6d2deb8871d" + integrity sha512-bSydNFQsF7AMvwWsRXD7cBIXaNs/KSjvzWLymq/UtKE36697sboX4EccSHFVxvgdBlI1frYPc/VMKJNB7DFeDQ== dependencies: - "@vue/language-core" "1.8.1" - "@vue/typescript" "1.8.1" + "@vue/language-core" "1.8.8" + "@vue/typescript" "1.8.8" semver "^7.3.8" vue@^3.2.37, vue@^3.2.45: From 8def6eedc90590cff6aa313dc5d70e6570c62aa3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 18:52:17 +0300 Subject: [PATCH 055/115] fix(deps): update graphql-yoga (#9532) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .../package.json | 4 +- examples/persisted-documents/package.json | 4 +- .../react/apollo-client-defer/package.json | 4 +- .../typescript-graphql-request/package.json | 2 +- examples/typescript-resolvers/package.json | 2 +- examples/yoga-tests/package.json | 2 +- yarn.lock | 178 ++++++++---------- 7 files changed, 87 insertions(+), 109 deletions(-) diff --git a/examples/persisted-documents-string-mode/package.json b/examples/persisted-documents-string-mode/package.json index 1bd43d7d8bc..c127264bd30 100644 --- a/examples/persisted-documents-string-mode/package.json +++ b/examples/persisted-documents-string-mode/package.json @@ -3,8 +3,8 @@ "version": "0.0.0", "private": true, "dependencies": { - "graphql-yoga": "3.9.1", - "@graphql-yoga/plugin-persisted-operations": "1.9.1" + "graphql-yoga": "4.0.4", + "@graphql-yoga/plugin-persisted-operations": "2.0.4" }, "devDependencies": { "@graphql-typed-document-node/core": "3.2.0", diff --git a/examples/persisted-documents/package.json b/examples/persisted-documents/package.json index f6127cc6a1b..ebded7cbf50 100644 --- a/examples/persisted-documents/package.json +++ b/examples/persisted-documents/package.json @@ -3,8 +3,8 @@ "version": "0.0.0", "private": true, "dependencies": { - "graphql-yoga": "3.9.1", - "@graphql-yoga/plugin-persisted-operations": "1.9.1" + "graphql-yoga": "4.0.4", + "@graphql-yoga/plugin-persisted-operations": "2.0.4" }, "devDependencies": { "@graphql-typed-document-node/core": "3.2.0", diff --git a/examples/react/apollo-client-defer/package.json b/examples/react/apollo-client-defer/package.json index 85617067938..6c6c88cf822 100644 --- a/examples/react/apollo-client-defer/package.json +++ b/examples/react/apollo-client-defer/package.json @@ -4,11 +4,11 @@ "private": true, "dependencies": { "@apollo/client": "^3.7.10", - "@graphql-yoga/plugin-defer-stream": "^1.7.3", + "@graphql-yoga/plugin-defer-stream": "^2.0.0", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "graphql-yoga": "3.9.1" + "graphql-yoga": "4.0.4" }, "devDependencies": { "@graphql-codegen/cli": "^5.0.0", diff --git a/examples/typescript-graphql-request/package.json b/examples/typescript-graphql-request/package.json index f59f29ab33e..82188df2224 100644 --- a/examples/typescript-graphql-request/package.json +++ b/examples/typescript-graphql-request/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "graphql": "16.6.0", - "graphql-yoga": "3.9.1", + "graphql-yoga": "4.0.4", "graphql-request": "5.1.0" }, "scripts": { diff --git a/examples/typescript-resolvers/package.json b/examples/typescript-resolvers/package.json index 5d17548d379..45d94b6179a 100644 --- a/examples/typescript-resolvers/package.json +++ b/examples/typescript-resolvers/package.json @@ -9,7 +9,7 @@ }, "dependencies": { "graphql": "16.6.0", - "graphql-yoga": "3.9.1" + "graphql-yoga": "4.0.4" }, "scripts": { "codegen": "graphql-codegen --config codegen.ts", diff --git a/examples/yoga-tests/package.json b/examples/yoga-tests/package.json index 5e646ab18c6..8fac434874f 100644 --- a/examples/yoga-tests/package.json +++ b/examples/yoga-tests/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "dependencies": { - "graphql-yoga": "3.9.1" + "graphql-yoga": "4.0.4" }, "devDependencies": { "@graphql-typed-document-node/core": "3.2.0", diff --git a/yarn.lock b/yarn.lock index 8c46ee48be9..91f718a58fd 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1628,29 +1628,19 @@ resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.3.0.tgz#ea89004119dc42db2e1dba0f97d553f7372f6fcb" integrity sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg== -"@envelop/core@^3.0.4": - version "3.0.6" - resolved "https://registry.yarnpkg.com/@envelop/core/-/core-3.0.6.tgz#e55c3564d05d648b0356a1c465aa90b0c51f485d" - integrity sha512-06t1xCPXq6QFN7W1JUEf68aCwYN0OUDNAIoJe7bAqhaoa2vn7NCcuX1VHkJ/OWpmElUgCsRO6RiBbIru1in0Ig== - dependencies: - "@envelop/types" "3.0.2" - tslib "^2.5.0" - -"@envelop/types@3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@envelop/types/-/types-3.0.2.tgz#a4b29375b7fcee39bb5830f87f66bbc815cf305e" - integrity sha512-pOFea9ha0EkURWxJ/35axoH9fDGP5S2cUu/5Mmo9pb8zUf+TaEot8vB670XXihFEn/92759BMjLJNWBKmNhyng== +"@envelop/core@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@envelop/core/-/core-4.0.0.tgz#3aa22494c55b65abedb2983e2722055e6873575d" + integrity sha512-6usEZO86hWT0ZajAbhOX0QXlV++lrlEmu8br6KQVvyXOxttiHADIibgfzb3GtSI7RnnJDnrcRb7Jynv6Lca3iQ== dependencies: + "@envelop/types" "4.0.0" tslib "^2.5.0" -"@envelop/validation-cache@^5.1.2": - version "5.1.2" - resolved "https://registry.yarnpkg.com/@envelop/validation-cache/-/validation-cache-5.1.2.tgz#bc21fa6b41178d4dff04c2c3ba3750cd959a5007" - integrity sha512-APofOvjaHrF+IW71VCXdyG+EbA6EQJXdunUe1EECU9vZzGKYUuQXfVeCOD6IYNF44KKSQArTfU8RhnUlW6VyOQ== +"@envelop/types@4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@envelop/types/-/types-4.0.0.tgz#6491d15b471434e74cd4b2321b68b8bb95f0ae61" + integrity sha512-dmBK16VVfKCkqYYemvE+gt1cPBP0d9CbYO4yjNhSSYy9K+w6+Lw48wOLK238mSR339PNAvwj/JW/qzNy2llggA== dependencies: - fast-json-stable-stringify "^2.1.0" - lru-cache "^6.0.0" - sha1-es "^1.8.2" tslib "^2.5.0" "@esbuild-kit/cjs-loader@^2.4.2": @@ -2513,17 +2503,6 @@ tslib "^2.4.0" ws "8.13.0" -"@graphql-tools/executor@^0.0.18": - version "0.0.18" - resolved "https://registry.yarnpkg.com/@graphql-tools/executor/-/executor-0.0.18.tgz#5b9f881d59484ea55278de3b4743ece8d68bc6e7" - integrity sha512-xZC0C+/npXoSHBB5bsJdwxDLgtl1Gu4fL9J2TPQmXoZC3L2N506KJoppf9LgWdHU/xK04luJrhP6WjhfkIN0pQ== - dependencies: - "@graphql-tools/utils" "^9.2.1" - "@graphql-typed-document-node/core" "3.2.0" - "@repeaterjs/repeater" "3.0.4" - tslib "^2.4.0" - value-or-promise "1.0.12" - "@graphql-tools/executor@^0.0.20": version "0.0.20" resolved "https://registry.yarnpkg.com/@graphql-tools/executor/-/executor-0.0.20.tgz#d51d159696e839522dd49d936636af251670e425" @@ -2843,42 +2822,42 @@ resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.2.0.tgz#5f3d96ec6b2354ad6d8a28bf216a1d97b5426861" integrity sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ== -"@graphql-yoga/logger@^0.0.1": - version "0.0.1" - resolved "https://registry.yarnpkg.com/@graphql-yoga/logger/-/logger-0.0.1.tgz#48504fa6ecaee487d9df00fd44c28e356635a324" - integrity sha512-6npFz7eZz33mXgSm1waBLMjUNG0D5hTc/p5Hcs1mojkT3KsLpCOFokzTEKboNsBhKevYcaVa/xeA7WBj4UYMLg== +"@graphql-yoga/logger@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@graphql-yoga/logger/-/logger-1.0.0.tgz#0fba12edd8c4b0b9c0f0a74b0d101f1646c3780e" + integrity sha512-JYoxwnPggH2BfO+dWlWZkDeFhyFZqaTRGLvFhy+Pjp2UxitEW6nDrw+pEDw/K9tJwMjIFMmTT9VfTqrnESmBHg== dependencies: - tslib "^2.3.1" + tslib "^2.5.2" -"@graphql-yoga/plugin-defer-stream@^1.7.3": - version "1.9.1" - resolved "https://registry.yarnpkg.com/@graphql-yoga/plugin-defer-stream/-/plugin-defer-stream-1.9.1.tgz#160fa643e6ffdcb0f1340d8774845fde1d20045e" - integrity sha512-YTY9mwd3g2N8AcdDTd/EHKjiHCfRYidY0RwZLAnue3eWxbsAp/2VEXMEk5HBwb1rm2AIzSytryR5+aaH5itshw== +"@graphql-yoga/plugin-defer-stream@^2.0.0": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@graphql-yoga/plugin-defer-stream/-/plugin-defer-stream-2.0.4.tgz#8deef61691fd0d1f5d0b0825a020c722959bcd28" + integrity sha512-VW59oqldg/9lZOEJrS/D4JQL3M5ARZD3TqUXrGKMAJdmvraZpQ11I+A3ZKLvnznT5Wcoqne6NemEjsD/eB0DKA== dependencies: - "@graphql-tools/utils" "^9.2.1" + "@graphql-tools/utils" "^10.0.0" -"@graphql-yoga/plugin-persisted-operations@1.9.1": - version "1.9.1" - resolved "https://registry.yarnpkg.com/@graphql-yoga/plugin-persisted-operations/-/plugin-persisted-operations-1.9.1.tgz#a4c3f648fa2906f7f24713cd9cd8725e4e04dcb7" - integrity sha512-pjA7xLIYVCugxyM/FwG7SlbPVPxn8cr5AFT0I4EsgwK2z6D0oM+fN6guPam7twTVKr0BmA/EtVm2RWkik114Mw== +"@graphql-yoga/plugin-persisted-operations@2.0.4": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@graphql-yoga/plugin-persisted-operations/-/plugin-persisted-operations-2.0.4.tgz#eec7e3fd772a24a9930ff748784d5bf64bfd1381" + integrity sha512-iPMSOpa+SiY88r7Hzt/JTNhMt7PDghFsMBBeEaRWtUaTo4oPbrqUSJyG21cPB6EJP5s+TBIza0ZCfgQZSh7mnw== -"@graphql-yoga/subscription@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@graphql-yoga/subscription/-/subscription-3.1.0.tgz#4a0bb0b9db2602d02c68f9828603e1e40329140b" - integrity sha512-Vc9lh8KzIHyS3n4jBlCbz7zCjcbtQnOBpsymcRvHhFr2cuH+knmRn0EmzimMQ58jQ8kxoRXXC3KJS3RIxSdPIg== +"@graphql-yoga/subscription@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@graphql-yoga/subscription/-/subscription-4.0.0.tgz#2bf5844ce8aeff46332650ad642218250201dcc5" + integrity sha512-0qsN/BPPZNMoC2CZ8i+P6PgiJyHh1H35aKDt37qARBDaIOKDQuvEOq7+4txUKElcmXi7DYFo109FkhSQoEajrg== dependencies: - "@graphql-yoga/typed-event-target" "^1.0.0" + "@graphql-yoga/typed-event-target" "^2.0.0" "@repeaterjs/repeater" "^3.0.4" - "@whatwg-node/events" "0.0.2" - tslib "^2.3.1" + "@whatwg-node/events" "^0.1.0" + tslib "^2.5.2" -"@graphql-yoga/typed-event-target@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@graphql-yoga/typed-event-target/-/typed-event-target-1.0.0.tgz#dae3c0146f08a4dc30b5b890f8bab706c2b62199" - integrity sha512-Mqni6AEvl3VbpMtKw+TIjc9qS9a8hKhiAjFtqX488yq5oJtj9TkNlFTIacAVS3vnPiswNsmDiQqvwUOcJgi1DA== +"@graphql-yoga/typed-event-target@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@graphql-yoga/typed-event-target/-/typed-event-target-2.0.0.tgz#41809fc8c101c27c61a5427d74e0d0ce824044db" + integrity sha512-oA/VGxGmaSDym1glOHrltw43qZsFwLLjBwvh57B79UKX/vo3+UQcRgOyE44c5RP7DCYjkrC2tuArZmb6jCzysw== dependencies: "@repeaterjs/repeater" "^3.0.4" - tslib "^2.3.1" + tslib "^2.5.2" "@hapi/hoek@^9.0.0": version "9.3.0" @@ -4557,11 +4536,6 @@ "@volar/typescript" "~1.10.0" "@vue/language-core" "1.8.8" -"@whatwg-node/events@0.0.2": - version "0.0.2" - resolved "https://registry.yarnpkg.com/@whatwg-node/events/-/events-0.0.2.tgz#7b7107268d2982fc7b7aff5ee6803c64018f84dd" - integrity sha512-WKj/lI4QjnLuPrim0cfO7i+HsDSXHxNv1y0CrJhdntuO3hxWZmnXCwNDnwOvry11OjRin6cgWNF+j/9Pn8TN4w== - "@whatwg-node/events@^0.0.3": version "0.0.3" resolved "https://registry.yarnpkg.com/@whatwg-node/events/-/events-0.0.3.tgz#13a65dd4f5893f55280f766e29ae48074927acad" @@ -4572,7 +4546,7 @@ resolved "https://registry.yarnpkg.com/@whatwg-node/events/-/events-0.1.0.tgz#1e7b4e4fd0d149b247ec0132b1030fe522282295" integrity sha512-PnnAP/o6QkgAdjcExKugzl5ZUqPVcv9lvgGz/to3Xe5Du/P5Zw6MzB8P8mI/B4mplYOYsr6AkXkb4plG0ydCow== -"@whatwg-node/fetch@^0.8.0", "@whatwg-node/fetch@^0.8.1", "@whatwg-node/fetch@^0.8.2", "@whatwg-node/fetch@^0.8.4": +"@whatwg-node/fetch@^0.8.0", "@whatwg-node/fetch@^0.8.1": version "0.8.8" resolved "https://registry.yarnpkg.com/@whatwg-node/fetch/-/fetch-0.8.8.tgz#48c6ad0c6b7951a73e812f09dd22d75e9fa18cae" integrity sha512-CdcjGC2vdKhc13KKxgsc6/616BQ7ooDIgPeTuAiE8qfCnS0mGzcfCOoZXypQSz73nxI+GWc7ZReIAVhxoE1KCg== @@ -4583,13 +4557,13 @@ urlpattern-polyfill "^8.0.0" web-streams-polyfill "^3.2.1" -"@whatwg-node/fetch@^0.9.0": - version "0.9.0" - resolved "https://registry.yarnpkg.com/@whatwg-node/fetch/-/fetch-0.9.0.tgz#59492e13e33112afe561ec7f0b497db62284fa1c" - integrity sha512-zEyXaoz5w6BpKYKyZLTwBA41fqGuscOvSoPHytADRo1FY/s/fmjwiKq4QGmB88DlNuQ8e57s6AgWqIYyAT0Zmg== +"@whatwg-node/fetch@^0.9.0", "@whatwg-node/fetch@^0.9.7": + version "0.9.9" + resolved "https://registry.yarnpkg.com/@whatwg-node/fetch/-/fetch-0.9.9.tgz#65e68aaf8353755c20657b803f2fe983dbdabf91" + integrity sha512-OTVoDm039CNyAWSRc2WBimMl/N9J4Fk2le21Xzcf+3OiWPNNSIbMnpWKBUyraPh2d9SAEgoBdQxTfVNihXgiUw== dependencies: - "@whatwg-node/node-fetch" "^0.4.0" - urlpattern-polyfill "^8.0.0" + "@whatwg-node/node-fetch" "^0.4.8" + urlpattern-polyfill "^9.0.0" "@whatwg-node/node-fetch@^0.3.6": version "0.3.6" @@ -4602,10 +4576,10 @@ fast-url-parser "^1.1.3" tslib "^2.3.1" -"@whatwg-node/node-fetch@^0.4.0": - version "0.4.0" - resolved "https://registry.yarnpkg.com/@whatwg-node/node-fetch/-/node-fetch-0.4.0.tgz#f874334d20889b1d7733a74cbe091183f8235297" - integrity sha512-aFfJNTMwkWrkl8I9nTkslVjPlkL+zb/Z71ng+71UbYYm1gPHfltHHXBiM99aZgUCaqyvaR5XzzwyCL6m0ikqsA== +"@whatwg-node/node-fetch@^0.4.8": + version "0.4.13" + resolved "https://registry.yarnpkg.com/@whatwg-node/node-fetch/-/node-fetch-0.4.13.tgz#523b046f9511e6e62ac98365653b5ce63175614b" + integrity sha512-Wijn8jtXq6VBX6EttABXHJIQBcoOP6RRQllXbiaHGORACTDr1xg6g2UnkoggY3dbDkm1VsMjdSe7NVBPc4ukYg== dependencies: "@whatwg-node/events" "^0.1.0" busboy "^1.6.0" @@ -4613,12 +4587,12 @@ fast-url-parser "^1.1.3" tslib "^2.3.1" -"@whatwg-node/server@^0.7.3": - version "0.7.4" - resolved "https://registry.yarnpkg.com/@whatwg-node/server/-/server-0.7.4.tgz#b8cce364461bbb489302d1d2a2692db96be20646" - integrity sha512-0+c3Y1tmMTIz3+cM8GCOXZuJclHlOZrq2uWb9WVnv1sd98pcFQBW9163nmN7cUTyD84c/yMJmEW3F+Ka6zRZgQ== +"@whatwg-node/server@^0.9.1": + version "0.9.11" + resolved "https://registry.yarnpkg.com/@whatwg-node/server/-/server-0.9.11.tgz#a0fd914abe6bd3b8eac0994613b93a528c4cda26" + integrity sha512-G7OXKRqSeXsq9cDJubRfrLMvkxmIVm4CuZQTYSq5N/jr8apDo7HpEv+AYq2NN1jwoiYXhtVotcsAau+a+0J7bQ== dependencies: - "@whatwg-node/fetch" "^0.8.2" + "@whatwg-node/fetch" "^0.9.7" tslib "^2.3.1" "@wry/context@^0.7.0": @@ -7557,7 +7531,7 @@ fast-glob@^3.2.11, fast-glob@^3.2.12, fast-glob@^3.2.9: merge2 "^1.3.0" micromatch "^4.0.4" -fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: +fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== @@ -8196,23 +8170,22 @@ graphql-ws@5.13.1: resolved "https://registry.yarnpkg.com/graphql-ws/-/graphql-ws-5.13.1.tgz#96ac9963edb1e94c8e7f21af48ce5fcaab91779a" integrity sha512-eiX7ES/ZQr0q7hSM5UBOEIFfaAUmAY9/CSDyAnsETuybByU7l/v46drRg9DQoTvVABEHp3QnrvwgTRMhqy7zxQ== -graphql-yoga@3.9.1: - version "3.9.1" - resolved "https://registry.yarnpkg.com/graphql-yoga/-/graphql-yoga-3.9.1.tgz#e35c959fac5c1d81e2244a0665b5da6357d4e637" - integrity sha512-BB6EkN64VBTXWmf9Kym2OsVZFzBC0mAsQNo9eNB5xIr3t+x7qepQ34xW5A353NWol3Js3xpzxwIKFVF6l9VsPg== +graphql-yoga@4.0.4: + version "4.0.4" + resolved "https://registry.yarnpkg.com/graphql-yoga/-/graphql-yoga-4.0.4.tgz#00f388b6c38560ad4e5662c66cd2671befb58229" + integrity sha512-MvCLhFecYNIKuxAZisPjpIL9lxRYbpgPSNKENDO/8CV3oiFlsLJHZb5dp2sVAeLafXHeZ9TgkijLthUBc1+Jag== dependencies: - "@envelop/core" "^3.0.4" - "@envelop/validation-cache" "^5.1.2" - "@graphql-tools/executor" "^0.0.18" - "@graphql-tools/schema" "^9.0.18" - "@graphql-tools/utils" "^9.2.1" - "@graphql-yoga/logger" "^0.0.1" - "@graphql-yoga/subscription" "^3.1.0" - "@whatwg-node/fetch" "^0.8.4" - "@whatwg-node/server" "^0.7.3" + "@envelop/core" "^4.0.0" + "@graphql-tools/executor" "^1.0.0" + "@graphql-tools/schema" "^10.0.0" + "@graphql-tools/utils" "^10.0.0" + "@graphql-yoga/logger" "^1.0.0" + "@graphql-yoga/subscription" "^4.0.0" + "@whatwg-node/fetch" "^0.9.7" + "@whatwg-node/server" "^0.9.1" dset "^3.1.1" - lru-cache "^7.14.1" - tslib "^2.3.1" + lru-cache "^10.0.0" + tslib "^2.5.2" graphql@16.6.0, graphql@^16.0.0, graphql@^16.6.0: version "16.6.0" @@ -10009,6 +9982,11 @@ lower-case@^2.0.2: dependencies: tslib "^2.0.3" +lru-cache@^10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.0.0.tgz#b9e2a6a72a129d81ab317202d93c7691df727e61" + integrity sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw== + lru-cache@^4.0.1: version "4.1.5" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" @@ -12874,11 +12852,6 @@ sh-syntax@^0.3.6: dependencies: tslib "^2.4.0" -sha1-es@^1.8.2: - version "1.8.2" - resolved "https://registry.yarnpkg.com/sha1-es/-/sha1-es-1.8.2.tgz#6957c79749f67bf056732abbe53d424ff4205286" - integrity sha512-7gzO0Y7RBt1Qsq8D1fC+So6zsnkwRcZas8sGO9Xp4bOkDhG5s4fzSP0i9yUs6aVzSH7+urqqh6uk0z+dMDeF9A== - shebang-command@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" @@ -13731,7 +13704,7 @@ tsconfig-paths@^3.14.1: minimist "^1.2.6" strip-bom "^3.0.0" -tslib@2.5.2, tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.4.1, tslib@^2.5.0, tslib@~2.5.0: +tslib@2.5.2, tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.4.1, tslib@^2.5.0, tslib@^2.5.2, tslib@~2.5.0: version "2.5.2" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.2.tgz#1b6f07185c881557b0ffa84b111a0106989e8338" integrity sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA== @@ -14137,6 +14110,11 @@ urlpattern-polyfill@^8.0.0: resolved "https://registry.yarnpkg.com/urlpattern-polyfill/-/urlpattern-polyfill-8.0.2.tgz#99f096e35eff8bf4b5a2aa7d58a1523d6ebc7ce5" integrity sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ== +urlpattern-polyfill@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/urlpattern-polyfill/-/urlpattern-polyfill-9.0.0.tgz#bc7e386bb12fd7898b58d1509df21d3c29ab3460" + integrity sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g== + urql@^3.0.0: version "3.0.3" resolved "https://registry.yarnpkg.com/urql/-/urql-3.0.3.tgz#275631f487558354e090d9ffc4ea2030bd56c34a" @@ -14207,7 +14185,7 @@ validate-npm-package-license@^3.0.1: spdx-correct "^3.0.0" spdx-expression-parse "^3.0.0" -value-or-promise@1.0.12, value-or-promise@^1.0.11, value-or-promise@^1.0.12: +value-or-promise@^1.0.11, value-or-promise@^1.0.12: version "1.0.12" resolved "https://registry.yarnpkg.com/value-or-promise/-/value-or-promise-1.0.12.tgz#0e5abfeec70148c78460a849f6b003ea7986f15c" integrity sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q== From d50063a9d1b935029762ce0eed1155dc2d754dd5 Mon Sep 17 00:00:00 2001 From: Arda TANRIKULU Date: Thu, 24 Aug 2023 18:53:28 +0300 Subject: [PATCH 056/115] Add lockfile maintenance --- renovate.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 0ef5388d035..8bf0ca9502d 100644 --- a/renovate.json +++ b/renovate.json @@ -1,3 +1,11 @@ { - "extends": ["github>the-guild-org/shared-config:renovate"] + "extends": ["github>the-guild-org/shared-config:renovate"], + "automerge": true, + "major": { + "automerge": false + }, + "lockFileMaintenance": { + "enabled": true, + "automerge": true + } } From fffb25d60d017f4216366e6016f5b847eb14d729 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 18:58:11 +0000 Subject: [PATCH 057/115] chore(deps): update dependency serve to v14.2.1 (#9607) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- examples/react/apollo-client-defer/package.json | 2 +- examples/react/apollo-client/package.json | 2 +- examples/react/http-executor/package.json | 2 +- examples/react/tanstack-react-query/package.json | 2 +- examples/react/urql/package.json | 2 +- examples/vue/apollo-composable/package.json | 2 +- examples/vue/urql/package.json | 2 +- examples/vue/villus/package.json | 2 +- yarn.lock | 8 ++++---- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/examples/react/apollo-client-defer/package.json b/examples/react/apollo-client-defer/package.json index 6c6c88cf822..4a33df28080 100644 --- a/examples/react/apollo-client-defer/package.json +++ b/examples/react/apollo-client-defer/package.json @@ -19,7 +19,7 @@ "@types/react-dom": "^18.0.10", "@vitejs/plugin-react": "^3.1.0", "cypress": "12.12.0", - "serve": "14.2.0", + "serve": "14.2.1", "start-server-and-test": "2.0.0", "typescript": "4.9.5", "vite": "^4.1.0" diff --git a/examples/react/apollo-client/package.json b/examples/react/apollo-client/package.json index b3178d4b7b6..5e119258969 100644 --- a/examples/react/apollo-client/package.json +++ b/examples/react/apollo-client/package.json @@ -17,7 +17,7 @@ "@types/react": "^18.0.15", "@types/react-dom": "^18.0.10", "typescript": "5.0.4", - "serve": "14.2.0", + "serve": "14.2.1", "cypress": "12.12.0", "start-server-and-test": "2.0.0", "vite": "^4.1.0" diff --git a/examples/react/http-executor/package.json b/examples/react/http-executor/package.json index 173fd1b99fc..dde5fd421ee 100644 --- a/examples/react/http-executor/package.json +++ b/examples/react/http-executor/package.json @@ -16,7 +16,7 @@ "@types/react": "^18.0.17", "@types/react-dom": "^18.0.10", "typescript": "5.0.4", - "serve": "14.2.0", + "serve": "14.2.1", "cypress": "12.12.0", "start-server-and-test": "2.0.0", "vite": "^4.1.0" diff --git a/examples/react/tanstack-react-query/package.json b/examples/react/tanstack-react-query/package.json index cc979f9aac1..66ce85c2fbb 100644 --- a/examples/react/tanstack-react-query/package.json +++ b/examples/react/tanstack-react-query/package.json @@ -16,7 +16,7 @@ "@types/react": "^18.0.17", "@types/react-dom": "^18.0.10", "typescript": "5.0.4", - "serve": "14.2.0", + "serve": "14.2.1", "cypress": "12.12.0", "start-server-and-test": "2.0.0", "vite": "^4.1.0" diff --git a/examples/react/urql/package.json b/examples/react/urql/package.json index b31cafafb4c..cc18bdfb11f 100644 --- a/examples/react/urql/package.json +++ b/examples/react/urql/package.json @@ -14,7 +14,7 @@ "@graphql-codegen/client-preset": "^4.1.0", "@vitejs/plugin-react": "^3.1.0", "typescript": "5.0.4", - "serve": "14.2.0", + "serve": "14.2.1", "cypress": "12.12.0", "start-server-and-test": "2.0.0", "vite": "^4.1.0" diff --git a/examples/vue/apollo-composable/package.json b/examples/vue/apollo-composable/package.json index 504541b5b16..b06ce592c57 100644 --- a/examples/vue/apollo-composable/package.json +++ b/examples/vue/apollo-composable/package.json @@ -23,7 +23,7 @@ "typescript": "^5.0.0", "vite": "^4.1.0", "vue-tsc": "^1.0.24", - "serve": "14.2.0", + "serve": "14.2.1", "cypress": "12.12.0", "start-server-and-test": "2.0.0" } diff --git a/examples/vue/urql/package.json b/examples/vue/urql/package.json index 0fcc79c3445..bae706fc089 100644 --- a/examples/vue/urql/package.json +++ b/examples/vue/urql/package.json @@ -22,7 +22,7 @@ "typescript": "^5.0.0", "vite": "^4.1.0", "vue-tsc": "^1.0.24", - "serve": "14.2.0", + "serve": "14.2.1", "cypress": "12.12.0", "start-server-and-test": "2.0.0" } diff --git a/examples/vue/villus/package.json b/examples/vue/villus/package.json index 346f23856e9..04050efd8b3 100644 --- a/examples/vue/villus/package.json +++ b/examples/vue/villus/package.json @@ -22,7 +22,7 @@ "typescript": "^5.0.0", "vite": "^4.1.0", "vue-tsc": "^1.0.24", - "serve": "14.2.0", + "serve": "14.2.1", "cypress": "12.12.0", "start-server-and-test": "2.0.0" } diff --git a/yarn.lock b/yarn.lock index 91f718a58fd..35ab79a53ba 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12818,10 +12818,10 @@ serve-handler@6.1.5: path-to-regexp "2.2.1" range-parser "1.2.0" -serve@14.2.0: - version "14.2.0" - resolved "https://registry.yarnpkg.com/serve/-/serve-14.2.0.tgz#3d768e88fa13ad8644f2393599189707176e66b8" - integrity sha512-+HOw/XK1bW8tw5iBilBz/mJLWRzM8XM6MPxL4J/dKzdxq1vfdEWSwhaR7/yS8EJp5wzvP92p1qirysJvnEtjXg== +serve@14.2.1: + version "14.2.1" + resolved "https://registry.yarnpkg.com/serve/-/serve-14.2.1.tgz#3f078d292ed5e7b2c5a64f957af2765b0459798b" + integrity sha512-48er5fzHh7GCShLnNyPBRPEjs2I6QBozeGr02gaacROiyS/8ARADlj595j39iZXAqBbJHH/ivJJyPRWY9sQWZA== dependencies: "@zeit/schemas" "2.29.0" ajv "8.11.0" From a69e2ee4639af3f94cd1b10fd2403929280c1359 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 18:59:53 +0000 Subject: [PATCH 058/115] chore(deps): update dependency @theguild/eslint-config to v0.11.0 (#9542) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 1138 ++++++++++++++++++++++++++++++++++++-------------- 2 files changed, 815 insertions(+), 325 deletions(-) diff --git a/package.json b/package.json index efbb089cb90..60fdf400289 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,7 @@ "@babel/preset-typescript": "7.22.11", "@changesets/changelog-github": "0.4.8", "@changesets/cli": "2.26.2", - "@theguild/eslint-config": "0.9.0", + "@theguild/eslint-config": "0.11.0", "@theguild/prettier-config": "0.1.1", "@types/jest": "28.1.8", "babel-jest": "28.1.3", diff --git a/yarn.lock b/yarn.lock index 35ab79a53ba..80c40cf1ed5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -231,7 +231,7 @@ dependencies: node-fetch "^2.6.1" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.22.10", "@babel/code-frame@^7.22.5": +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.22.10", "@babel/code-frame@^7.22.5": version "7.22.10" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.10.tgz#1c20e612b768fefa75f6e90d6ecb86329247f0a3" integrity sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA== @@ -1777,17 +1777,17 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.12.tgz#3a11d13e9a5b0c05db88991b234d8baba1f96487" integrity sha512-JOOxw49BVZx2/5tW3FqkdjSD/5gXYeVGPDcB0lvap0gLQshkh1Nyel1QazC+wNxus3xPlsYAgqU1BUmrmCvWtw== -"@eslint-community/eslint-utils@^4.1.2", "@eslint-community/eslint-utils@^4.2.0": +"@eslint-community/eslint-utils@^4.1.2", "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": version "4.4.0" resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== dependencies: eslint-visitor-keys "^3.3.0" -"@eslint-community/regexpp@^4.4.0": - version "4.5.1" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.5.1.tgz#cdd35dce4fa1a89a4fd42b1599eb35b3af408884" - integrity sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ== +"@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.6.0": + version "4.7.0" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.7.0.tgz#96e7c05e738327602ae5942437f9c6b177ec279a" + integrity sha512-+HencqxU7CFJnQb7IKtuNBqS6Yx3Tz4kOL8BJXo+JyeiBm5MEX6pO8onXDkjrkCRlfYXS1Axro15ZjVFe9YgsA== "@eslint/eslintrc@^2.0.3": version "2.0.3" @@ -2897,6 +2897,18 @@ resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== +"@isaacs/cliui@^8.0.2": + version "8.0.2" + resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" + integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== + dependencies: + string-width "^5.1.2" + string-width-cjs "npm:string-width@^4.2.0" + strip-ansi "^7.0.1" + strip-ansi-cjs "npm:strip-ansi@^6.0.1" + wrap-ansi "^8.1.0" + wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" + "@istanbuljs/load-nyc-config@^1.0.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" @@ -3402,6 +3414,35 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" +"@npmcli/config@^6.0.0": + version "6.2.1" + resolved "https://registry.yarnpkg.com/@npmcli/config/-/config-6.2.1.tgz#954cc09b727b6bfc087cb1d2a48994dc342e45cc" + integrity sha512-Cj/OrSbrLvnwWuzquFCDTwFN8QmR+SWH6qLNCBttUreDkKM5D5p36SeSMbcEUiCGdwjUrVy2yd8C0REwwwDPEw== + dependencies: + "@npmcli/map-workspaces" "^3.0.2" + ci-info "^3.8.0" + ini "^4.1.0" + nopt "^7.0.0" + proc-log "^3.0.0" + read-package-json-fast "^3.0.2" + semver "^7.3.5" + walk-up-path "^3.0.1" + +"@npmcli/map-workspaces@^3.0.2": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@npmcli/map-workspaces/-/map-workspaces-3.0.4.tgz#15ad7d854292e484f7ba04bc30187a8320dba799" + integrity sha512-Z0TbvXkRbacjFFLpVpV0e2mheCh+WzQpcqL+4xp49uNJOxOnIAPZyXtUxZ5Qn3QBTGKA11Exjd9a5411rBrhDg== + dependencies: + "@npmcli/name-from-folder" "^2.0.0" + glob "^10.2.2" + minimatch "^9.0.0" + read-package-json-fast "^3.0.0" + +"@npmcli/name-from-folder@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/name-from-folder/-/name-from-folder-2.0.0.tgz#c44d3a7c6d5c184bb6036f4d5995eee298945815" + integrity sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg== + "@parcel/watcher@^2.1.0": version "2.1.0" resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.1.0.tgz#5f32969362db4893922c526a842d8af7a8538545" @@ -3439,6 +3480,11 @@ tslib "^2.4.1" webcrypto-core "^1.7.4" +"@pkgjs/parseargs@^0.11.0": + version "0.11.0" + resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" + integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== + "@pkgr/utils@^2.3.1": version "2.3.1" resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.3.1.tgz#0a9b06ffddee364d6642b3cd562ca76f55b34a03" @@ -3616,10 +3662,10 @@ resolved "https://registry.yarnpkg.com/@repeaterjs/repeater/-/repeater-3.0.4.tgz#a04d63f4d1bf5540a41b01a921c9a7fddc3bd1ca" integrity sha512-AW8PKd6iX3vAZ0vA43nOUOnbq/X5ihgU+mSXXqunMkeQADGiqw/PY0JNeYtD5sr0PAy51YPgAPbDoeapv9r8WA== -"@rushstack/eslint-patch@^1.1.3", "@rushstack/eslint-patch@^1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz#8be36a1f66f3265389e90b5f9c9962146758f728" - integrity sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg== +"@rushstack/eslint-patch@^1.1.3", "@rushstack/eslint-patch@^1.3.2": + version "1.3.3" + resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.3.3.tgz#16ab6c727d8c2020a5b6e4a176a243ecd88d8d69" + integrity sha512-0xd7qez0AQ+MbHatZTlI1gu5vkG8r7MYRUJAHPAHJBmGLs16zpkrpAVLvjQKQOqaXPDUBwOiJzNc00znHSCVBw== "@sideway/address@^4.1.3": version "4.1.4" @@ -3784,27 +3830,27 @@ semver "^7.3.8" use-debounce "9.0.4" -"@theguild/eslint-config@0.9.0": - version "0.9.0" - resolved "https://registry.yarnpkg.com/@theguild/eslint-config/-/eslint-config-0.9.0.tgz#5e90c8f2546da5c5a783b116a5061d2e0e231248" - integrity sha512-rPYiVcAxT2j75wUm7nVrFw6oCpSdgFsS3PtVXfWKBhBb3JHSv2249t5SVPkvJKD3WRiVl4952KI5lh9tHT6JBg== - dependencies: - "@rushstack/eslint-patch" "^1.2.0" - "@typescript-eslint/eslint-plugin" "^5.48.1" - "@typescript-eslint/parser" "^5.48.1" - eslint-config-prettier "^8.6.0" - eslint-import-resolver-typescript "^3.5.3" - eslint-plugin-import "^2.27.0" - eslint-plugin-jsonc "^2.6.0" - eslint-plugin-jsx-a11y "^6.7.0" - eslint-plugin-mdx "^2.0.5" - eslint-plugin-n "^15.6.1" +"@theguild/eslint-config@0.11.0": + version "0.11.0" + resolved "https://registry.yarnpkg.com/@theguild/eslint-config/-/eslint-config-0.11.0.tgz#2947091423ec5ab27bf119c6f678131b660d90d6" + integrity sha512-dxKcEb0uKZvkKBp9KwcKe/npuHZw789vrQPUJGJksz9ghjvAQOc9Kx4PMJTTrVWOzg/1lzFB9s070V9yviYkHg== + dependencies: + "@rushstack/eslint-patch" "^1.3.2" + "@typescript-eslint/eslint-plugin" "^5.61.0" + "@typescript-eslint/parser" "^5.61.0" + eslint-config-prettier "^8.8.0" + eslint-import-resolver-typescript "^3.5.5" + eslint-plugin-import "^2.27.5" + eslint-plugin-jsonc "^2.9.0" + eslint-plugin-jsx-a11y "^6.7.1" + eslint-plugin-mdx "^2.1.0" + eslint-plugin-n "^16.0.1" eslint-plugin-promise "^6.1.1" - eslint-plugin-react "^7.32.0" + eslint-plugin-react "^7.32.2" eslint-plugin-react-hooks "^4.6.0" eslint-plugin-sonarjs "^0.19.0" - eslint-plugin-unicorn "^46.0.0" - eslint-plugin-yml "^1.4.0" + eslint-plugin-unicorn "^47.0.0" + eslint-plugin-yml "^1.8.0" "@theguild/prettier-config@0.1.1": version "0.1.1" @@ -3917,6 +3963,13 @@ resolved "https://registry.yarnpkg.com/@types/braces/-/braces-3.0.1.tgz#5a284d193cfc61abb2e5a50d36ebbc50d942a32b" integrity sha512-+euflG6ygo4bn0JHtn4pYqcXwRtLvElQ7/nnjDu7iYG56H0+OhCd7d6Ug0IE3WcFpZozBKW2+80FUbv5QGk5AQ== +"@types/concat-stream@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@types/concat-stream/-/concat-stream-2.0.0.tgz#a716f0ba9015014e643addb351da05a73bef425c" + integrity sha512-t3YCerNM7NTVjLuICZo5gYAXYoDvpuuTceCcFQWcDQz26kxUR5uIWolxbIR5jRNIXpMqhOpW/b8imCR1LEmuJw== + dependencies: + "@types/node" "*" + "@types/d3-scale-chromatic@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz#103124777e8cdec85b20b51fd3397c682ee1e954" @@ -3992,6 +4045,11 @@ dependencies: ci-info "^3.1.0" +"@types/is-empty@^1.0.0": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@types/is-empty/-/is-empty-1.2.1.tgz#18d7256a73e43ec51f8b75c25fbdc31350be52a6" + integrity sha512-a3xgqnFTuNJDm1fjsTjHocYJ40Cz3t8utYpi5GNaxzrJC2HSD08ym+whIL7fNqiqBCdM9bcqD1H/tORWAFXoZw== + "@types/is-glob@4.0.2": version "4.0.2" resolved "https://registry.yarnpkg.com/@types/is-glob/-/is-glob-4.0.2.tgz#c243dd0d09eac2992130142419ff2308ffd988bf" @@ -4108,7 +4166,7 @@ resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz#31b7ca6407128a3d2bbc27fe2d21b345397f6197" integrity sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA== -"@types/node@*", "@types/node@18.16.19", "@types/node@^18.11.18": +"@types/node@*", "@types/node@18.16.19", "@types/node@^18.0.0", "@types/node@^18.11.18": version "18.16.19" resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.19.tgz#cb03fca8910fdeb7595b755126a8a78144714eea" integrity sha512-IXl7o+R9iti9eBW4Wg2hx1xQDig183jj7YLn8F7udNceyfkbn1ZxmzZXuak20gR40D7pIkIY1kYGx5VIGbaHKA== @@ -4201,6 +4259,11 @@ resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== +"@types/supports-color@^8.0.0": + version "8.1.1" + resolved "https://registry.yarnpkg.com/@types/supports-color/-/supports-color-8.1.1.tgz#1b44b1b096479273adf7f93c75fc4ecc40a61ee4" + integrity sha512-dPWnWsf+kzIG140B8z2w3fr5D03TLWbOAFQl45xUpI3vcizeXriNR5VYkWZ+WTMsUHqZ9Xlt3hrxGNANFyNQfw== + "@types/through@*": version "0.0.30" resolved "https://registry.yarnpkg.com/@types/through/-/through-0.0.30.tgz#e0e42ce77e897bd6aead6f6ea62aeb135b8a3895" @@ -4249,88 +4312,88 @@ dependencies: "@types/node" "*" -"@typescript-eslint/eslint-plugin@^5.48.1": - version "5.52.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.52.0.tgz#5fb0d43574c2411f16ea80f5fc335b8eaa7b28a8" - integrity sha512-lHazYdvYVsBokwCdKOppvYJKaJ4S41CgKBcPvyd0xjZNbvQdhn/pnJlGtQksQ/NhInzdaeaSarlBjDXHuclEbg== +"@typescript-eslint/eslint-plugin@^5.61.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz#aeef0328d172b9e37d9bab6dbc13b87ed88977db" + integrity sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag== dependencies: - "@typescript-eslint/scope-manager" "5.52.0" - "@typescript-eslint/type-utils" "5.52.0" - "@typescript-eslint/utils" "5.52.0" + "@eslint-community/regexpp" "^4.4.0" + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/type-utils" "5.62.0" + "@typescript-eslint/utils" "5.62.0" debug "^4.3.4" - grapheme-splitter "^1.0.4" + graphemer "^1.4.0" ignore "^5.2.0" natural-compare-lite "^1.4.0" - regexpp "^3.2.0" semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/parser@^5.42.0", "@typescript-eslint/parser@^5.48.1": - version "5.52.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.52.0.tgz#73c136df6c0133f1d7870de7131ccf356f5be5a4" - integrity sha512-e2KiLQOZRo4Y0D/b+3y08i3jsekoSkOYStROYmPUnGMEoA0h+k2qOH5H6tcjIc68WDvGwH+PaOrP1XRzLJ6QlA== +"@typescript-eslint/parser@^5.42.0", "@typescript-eslint/parser@^5.61.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7" + integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA== dependencies: - "@typescript-eslint/scope-manager" "5.52.0" - "@typescript-eslint/types" "5.52.0" - "@typescript-eslint/typescript-estree" "5.52.0" + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/typescript-estree" "5.62.0" debug "^4.3.4" -"@typescript-eslint/scope-manager@5.52.0": - version "5.52.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.52.0.tgz#a993d89a0556ea16811db48eabd7c5b72dcb83d1" - integrity sha512-AR7sxxfBKiNV0FWBSARxM8DmNxrwgnYMPwmpkC1Pl1n+eT8/I2NAUPuwDy/FmDcC6F8pBfmOcaxcxRHspgOBMw== +"@typescript-eslint/scope-manager@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz#d9457ccc6a0b8d6b37d0eb252a23022478c5460c" + integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w== dependencies: - "@typescript-eslint/types" "5.52.0" - "@typescript-eslint/visitor-keys" "5.52.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" -"@typescript-eslint/type-utils@5.52.0": - version "5.52.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.52.0.tgz#9fd28cd02e6f21f5109e35496df41893f33167aa" - integrity sha512-tEKuUHfDOv852QGlpPtB3lHOoig5pyFQN/cUiZtpw99D93nEBjexRLre5sQZlkMoHry/lZr8qDAt2oAHLKA6Jw== +"@typescript-eslint/type-utils@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz#286f0389c41681376cdad96b309cedd17d70346a" + integrity sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew== dependencies: - "@typescript-eslint/typescript-estree" "5.52.0" - "@typescript-eslint/utils" "5.52.0" + "@typescript-eslint/typescript-estree" "5.62.0" + "@typescript-eslint/utils" "5.62.0" debug "^4.3.4" tsutils "^3.21.0" -"@typescript-eslint/types@5.52.0": - version "5.52.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.52.0.tgz#19e9abc6afb5bd37a1a9bea877a1a836c0b3241b" - integrity sha512-oV7XU4CHYfBhk78fS7tkum+/Dpgsfi91IIDy7fjCyq2k6KB63M6gMC0YIvy+iABzmXThCRI6xpCEyVObBdWSDQ== +"@typescript-eslint/types@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f" + integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ== -"@typescript-eslint/typescript-estree@5.52.0": - version "5.52.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.52.0.tgz#6408cb3c2ccc01c03c278cb201cf07e73347dfca" - integrity sha512-WeWnjanyEwt6+fVrSR0MYgEpUAuROxuAH516WPjUblIrClzYJj0kBbjdnbQXLpgAN8qbEuGywiQsXUVDiAoEuQ== +"@typescript-eslint/typescript-estree@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b" + integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA== dependencies: - "@typescript-eslint/types" "5.52.0" - "@typescript-eslint/visitor-keys" "5.52.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" debug "^4.3.4" globby "^11.1.0" is-glob "^4.0.3" semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/utils@5.52.0": - version "5.52.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.52.0.tgz#b260bb5a8f6b00a0ed51db66bdba4ed5e4845a72" - integrity sha512-As3lChhrbwWQLNk2HC8Ree96hldKIqk98EYvypd3It8Q1f8d5zWyIoaZEp2va5667M4ZyE7X8UUR+azXrFl+NA== +"@typescript-eslint/utils@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.62.0.tgz#141e809c71636e4a75daa39faed2fb5f4b10df86" + integrity sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ== dependencies: + "@eslint-community/eslint-utils" "^4.2.0" "@types/json-schema" "^7.0.9" "@types/semver" "^7.3.12" - "@typescript-eslint/scope-manager" "5.52.0" - "@typescript-eslint/types" "5.52.0" - "@typescript-eslint/typescript-estree" "5.52.0" + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/typescript-estree" "5.62.0" eslint-scope "^5.1.1" - eslint-utils "^3.0.0" semver "^7.3.7" -"@typescript-eslint/visitor-keys@5.52.0": - version "5.52.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.52.0.tgz#e38c971259f44f80cfe49d97dbffa38e3e75030f" - integrity sha512-qMwpw6SU5VHCPr99y274xhbm+PRViK/NATY6qzt+Et7+mThGuFSl/ompj2/hrBlRP/kq+BFdgagnOSgw9TB0eA== +"@typescript-eslint/visitor-keys@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e" + integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw== dependencies: - "@typescript-eslint/types" "5.52.0" + "@typescript-eslint/types" "5.62.0" eslint-visitor-keys "^3.3.0" "@urql/core@^3.0.3": @@ -4626,6 +4689,11 @@ resolved "https://registry.yarnpkg.com/@zeit/schemas/-/schemas-2.29.0.tgz#a59ae6ebfdf4ddc66a876872dd736baa58b6696c" integrity sha512-g5QiLIfbg3pLuYUJPlisNKY+epQJTcMDsOnVNkscrDP1oi7vmJnzOANYJI/1pZcVJ6umUkBv3aFtlg1UvUHGzA== +abbrev@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-2.0.0.tgz#cf59829b8b4f03f89dda2771cb7f3653828c89bf" + integrity sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ== + accepts@~1.3.5: version "1.3.8" resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" @@ -4644,10 +4712,10 @@ acorn-walk@^8.0.0, acorn-walk@^8.1.1: resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== -acorn@^8.0.0, acorn@^8.0.4, acorn@^8.4.1, acorn@^8.5.0, acorn@^8.8.0: - version "8.8.2" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" - integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== +acorn@^8.0.0, acorn@^8.0.4, acorn@^8.10.0, acorn@^8.4.1, acorn@^8.5.0, acorn@^8.9.0: + version "8.10.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" + integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== agent-base@^7.0.1: version "7.0.1" @@ -4826,6 +4894,14 @@ aria-query@^5.1.3: dependencies: deep-equal "^2.0.5" +array-buffer-byte-length@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead" + integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== + dependencies: + call-bind "^1.0.2" + is-array-buffer "^3.0.1" + array-includes@^3.1.5, array-includes@^3.1.6: version "3.1.6" resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f" @@ -4842,6 +4918,17 @@ array-union@^2.1.0: resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== +array.prototype.findlastindex@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.2.tgz#bc229aef98f6bd0533a2bc61ff95209875526c9b" + integrity sha512-tb5thFFlUcp7NdNF6/MpDk/1r/4awWG1FIz3YqDf+/zJSTezBb+/5WViH41obXULHVpDzoiCLpJ/ZO9YbJMsdw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-shim-unscopables "^1.0.0" + get-intrinsic "^1.1.3" + array.prototype.flat@^1.2.3, array.prototype.flat@^1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2" @@ -4873,6 +4960,18 @@ array.prototype.tosorted@^1.1.1: es-shim-unscopables "^1.0.0" get-intrinsic "^1.1.3" +arraybuffer.prototype.slice@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz#9b5ea3868a6eebc30273da577eb888381c0044bb" + integrity sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw== + dependencies: + array-buffer-byte-length "^1.0.0" + call-bind "^1.0.2" + define-properties "^1.2.0" + get-intrinsic "^1.2.1" + is-array-buffer "^3.0.2" + is-shared-array-buffer "^1.0.2" + arrify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" @@ -4924,6 +5023,13 @@ async@^3.2.0: resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== +asynciterator.prototype@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz#8c5df0514936cdd133604dfcc9d3fb93f09b2b62" + integrity sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg== + dependencies: + has-symbols "^1.0.3" + asynckit@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" @@ -5581,7 +5687,7 @@ ci-info@^2.0.0: resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== -ci-info@^3.1.0, ci-info@^3.2.0, ci-info@^3.6.1: +ci-info@^3.1.0, ci-info@^3.2.0, ci-info@^3.8.0: version "3.8.0" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== @@ -5826,6 +5932,16 @@ concat-map@0.0.1: resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== +concat-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-2.0.0.tgz#414cf5af790a48c60ab9be4527d56d5e41133cb1" + integrity sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A== + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^3.0.2" + typedarray "^0.0.6" + consola@^2.15.3: version "2.15.3" resolved "https://registry.yarnpkg.com/consola/-/consola-2.15.3.tgz#2e11f98d6a4be71ff72e0bdf07bd23e12cb61550" @@ -5876,7 +5992,7 @@ cose-base@^2.2.0: dependencies: layout-base "^2.0.0" -cosmiconfig@8.0.0, cosmiconfig@8.1.3, cosmiconfig@^7.0.0, cosmiconfig@^7.0.1, cosmiconfig@^8.1.0, cosmiconfig@^8.1.3: +cosmiconfig@8.0.0, cosmiconfig@8.1.3, cosmiconfig@^7.0.0, cosmiconfig@^8.1.0, cosmiconfig@^8.1.3: version "8.1.3" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.1.3.tgz#0e614a118fcc2d9e5afc2f87d53cd09931015689" integrity sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw== @@ -6533,7 +6649,7 @@ define-lazy-prop@^2.0.0: resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== -define-properties@^1.1.3, define-properties@^1.1.4: +define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== @@ -6745,10 +6861,10 @@ end-of-stream@^1.1.0: dependencies: once "^1.4.0" -enhanced-resolve@^5.10.0: - version "5.12.0" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz#300e1c90228f5b570c4d35babf263f6da7155634" - integrity sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ== +enhanced-resolve@^5.12.0: + version "5.15.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35" + integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg== dependencies: graceful-fs "^4.2.4" tapable "^2.2.0" @@ -6765,25 +6881,26 @@ entities@^4.2.0, entities@^4.4.0: resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== -error-ex@^1.3.1: +error-ex@^1.3.1, error-ex@^1.3.2: version "1.3.2" resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== dependencies: is-arrayish "^0.2.1" -es-abstract@^1.19.0, es-abstract@^1.20.4: - version "1.21.1" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.1.tgz#e6105a099967c08377830a0c9cb589d570dd86c6" - integrity sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg== +es-abstract@^1.19.0, es-abstract@^1.20.4, es-abstract@^1.21.2, es-abstract@^1.21.3: + version "1.22.1" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.1.tgz#8b4e5fc5cefd7f1660f0f8e1a52900dfbc9d9ccc" + integrity sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw== dependencies: + array-buffer-byte-length "^1.0.0" + arraybuffer.prototype.slice "^1.0.1" available-typed-arrays "^1.0.5" call-bind "^1.0.2" es-set-tostringtag "^2.0.1" es-to-primitive "^1.2.1" - function-bind "^1.1.1" function.prototype.name "^1.1.5" - get-intrinsic "^1.1.3" + get-intrinsic "^1.2.1" get-symbol-description "^1.0.0" globalthis "^1.0.3" gopd "^1.0.1" @@ -6791,8 +6908,8 @@ es-abstract@^1.19.0, es-abstract@^1.20.4: has-property-descriptors "^1.0.0" has-proto "^1.0.1" has-symbols "^1.0.3" - internal-slot "^1.0.4" - is-array-buffer "^3.0.1" + internal-slot "^1.0.5" + is-array-buffer "^3.0.2" is-callable "^1.2.7" is-negative-zero "^2.0.2" is-regex "^1.1.4" @@ -6800,16 +6917,21 @@ es-abstract@^1.19.0, es-abstract@^1.20.4: is-string "^1.0.7" is-typed-array "^1.1.10" is-weakref "^1.0.2" - object-inspect "^1.12.2" + object-inspect "^1.12.3" object-keys "^1.1.1" object.assign "^4.1.4" - regexp.prototype.flags "^1.4.3" + regexp.prototype.flags "^1.5.0" + safe-array-concat "^1.0.0" safe-regex-test "^1.0.0" + string.prototype.trim "^1.2.7" string.prototype.trimend "^1.0.6" string.prototype.trimstart "^1.0.6" + typed-array-buffer "^1.0.0" + typed-array-byte-length "^1.0.0" + typed-array-byte-offset "^1.0.0" typed-array-length "^1.0.4" unbox-primitive "^1.0.2" - which-typed-array "^1.1.9" + which-typed-array "^1.1.10" es-get-iterator@^1.1.2: version "1.1.3" @@ -6826,6 +6948,26 @@ es-get-iterator@^1.1.2: isarray "^2.0.5" stop-iteration-iterator "^1.0.0" +es-iterator-helpers@^1.0.12: + version "1.0.13" + resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.0.13.tgz#72101046ffc19baf9996adc70e6177a26e6e8084" + integrity sha512-LK3VGwzvaPWobO8xzXXGRUOGw8Dcjyfk62CsY/wfHN75CwsJPbuypOYJxK6g5RyEL8YDjIWcl6jgd8foO6mmrA== + dependencies: + asynciterator.prototype "^1.0.0" + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.21.3" + es-set-tostringtag "^2.0.1" + function-bind "^1.1.1" + get-intrinsic "^1.2.1" + globalthis "^1.0.3" + has-property-descriptors "^1.0.0" + has-proto "^1.0.1" + has-symbols "^1.0.3" + internal-slot "^1.0.5" + iterator.prototype "^1.1.0" + safe-array-concat "^1.0.0" + es-set-tostringtag@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" @@ -6931,10 +7073,10 @@ eslint-config-next@^13.0.0: eslint-plugin-react "^7.31.7" eslint-plugin-react-hooks "^4.5.0" -eslint-config-prettier@^8.6.0: - version "8.6.0" - resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.6.0.tgz#dec1d29ab728f4fa63061774e1672ac4e363d207" - integrity sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA== +eslint-config-prettier@^8.8.0: + version "8.10.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz#3a06a662130807e2502fc3ff8b4143d8a0658e11" + integrity sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg== eslint-import-resolver-node@^0.3.6, eslint-import-resolver-node@^0.3.7: version "0.3.7" @@ -6945,85 +7087,87 @@ eslint-import-resolver-node@^0.3.6, eslint-import-resolver-node@^0.3.7: is-core-module "^2.11.0" resolve "^1.22.1" -eslint-import-resolver-typescript@^3.5.2, eslint-import-resolver-typescript@^3.5.3: - version "3.5.3" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.3.tgz#db5ed9e906651b7a59dd84870aaef0e78c663a05" - integrity sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ== +eslint-import-resolver-typescript@^3.5.2, eslint-import-resolver-typescript@^3.5.5: + version "3.6.0" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.0.tgz#36f93e1eb65a635e688e16cae4bead54552e3bbd" + integrity sha512-QTHR9ddNnn35RTxlaEnx2gCxqFlF2SEN0SE2d17SqwyM7YOSI2GHWRYp5BiRkObTUNYPupC/3Fq2a0PpT+EKpg== dependencies: debug "^4.3.4" - enhanced-resolve "^5.10.0" - get-tsconfig "^4.2.0" - globby "^13.1.2" - is-core-module "^2.10.0" + enhanced-resolve "^5.12.0" + eslint-module-utils "^2.7.4" + fast-glob "^3.3.1" + get-tsconfig "^4.5.0" + is-core-module "^2.11.0" is-glob "^4.0.3" - synckit "^0.8.4" -eslint-mdx@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/eslint-mdx/-/eslint-mdx-2.0.5.tgz#f26ae220192dd368b1c1ee670282cc28c50c244a" - integrity sha512-1ZzcJwJNfladtuK+uuG/MdC0idc1e3d1vCI2STOq/pLcJBGuao2biWh90vEh2M93zDiNoHJGUIU7UAxupiiHFw== +eslint-mdx@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/eslint-mdx/-/eslint-mdx-2.2.0.tgz#4e54710f3dc9778fdcac1fabeffacb8f65ad5cbc" + integrity sha512-AriN6lCW6KhWQ9GEiXapR1DokKHefOUqKvCmHxnE9puCWYhWiycU2SNKH8jmrasDBreZ+RtJDLi+RcUNLJatjg== dependencies: - acorn "^8.8.0" + acorn "^8.10.0" acorn-jsx "^5.3.2" - cosmiconfig "^7.0.1" - espree "^9.4.0" - estree-util-visit "^1.2.0" - remark-mdx "^2.1.3" - remark-parse "^10.0.1" - remark-stringify "^10.0.2" - synckit "^0.8.4" - tslib "^2.4.0" + espree "^9.6.1" + estree-util-visit "^1.2.1" + remark-mdx "^2.3.0" + remark-parse "^10.0.2" + remark-stringify "^10.0.3" + synckit "^0.8.5" + tslib "^2.6.1" unified "^10.1.2" - unist-util-visit "^4.1.1" + unified-engine "^10.1.0" + unist-util-visit "^4.1.2" uvu "^0.5.6" - vfile "^5.3.4" + vfile "^5.3.7" -eslint-module-utils@^2.7.4: - version "2.7.4" - resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz#4f3e41116aaf13a20792261e61d3a2e7e0583974" - integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA== +eslint-module-utils@^2.7.4, eslint-module-utils@^2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz#e439fee65fc33f6bba630ff621efc38ec0375c49" + integrity sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw== dependencies: debug "^3.2.7" -eslint-plugin-es@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz#f0822f0c18a535a97c3e714e89f88586a7641ec9" - integrity sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ== +eslint-plugin-es-x@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-es-x/-/eslint-plugin-es-x-7.2.0.tgz#5779d742ad31f8fd780b9481331481e142b72311" + integrity sha512-9dvv5CcvNjSJPqnS5uZkqb3xmbeqRLnvXKK7iI5+oK/yTusyc46zbBZKENGsOfojm/mKfszyZb+wNqNPAPeGXA== dependencies: - eslint-utils "^2.0.0" - regexpp "^3.0.0" + "@eslint-community/eslint-utils" "^4.1.2" + "@eslint-community/regexpp" "^4.6.0" -eslint-plugin-import@^2.26.0, eslint-plugin-import@^2.27.0: - version "2.27.5" - resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz#876a6d03f52608a3e5bb439c2550588e51dd6c65" - integrity sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow== +eslint-plugin-import@^2.26.0, eslint-plugin-import@^2.27.5: + version "2.28.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.28.1.tgz#63b8b5b3c409bfc75ebaf8fb206b07ab435482c4" + integrity sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A== dependencies: array-includes "^3.1.6" + array.prototype.findlastindex "^1.2.2" array.prototype.flat "^1.3.1" array.prototype.flatmap "^1.3.1" debug "^3.2.7" doctrine "^2.1.0" eslint-import-resolver-node "^0.3.7" - eslint-module-utils "^2.7.4" + eslint-module-utils "^2.8.0" has "^1.0.3" - is-core-module "^2.11.0" + is-core-module "^2.13.0" is-glob "^4.0.3" minimatch "^3.1.2" + object.fromentries "^2.0.6" + object.groupby "^1.0.0" object.values "^1.1.6" - resolve "^1.22.1" - semver "^6.3.0" - tsconfig-paths "^3.14.1" + semver "^6.3.1" + tsconfig-paths "^3.14.2" -eslint-plugin-jsonc@^2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-jsonc/-/eslint-plugin-jsonc-2.6.0.tgz#5a439ec15b4930c022bf157264a3d4f4712b982c" - integrity sha512-4bA9YTx58QaWalua1Q1b82zt7eZMB7i+ed8q8cKkbKP75ofOA2SXbtFyCSok7RY6jIXeCqQnKjN9If8zCgv6PA== +eslint-plugin-jsonc@^2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsonc/-/eslint-plugin-jsonc-2.9.0.tgz#df3bff1339e10bdef72aafef3b2c132a1a08c23f" + integrity sha512-RK+LeONVukbLwT2+t7/OY54NJRccTXh/QbnXzPuTLpFMVZhPuq1C9E07+qWenGx7rrQl0kAalAWl7EmB+RjpGA== dependencies: - eslint-utils "^3.0.0" + "@eslint-community/eslint-utils" "^4.2.0" jsonc-eslint-parser "^2.0.4" natural-compare "^1.4.0" -eslint-plugin-jsx-a11y@^6.5.1, eslint-plugin-jsx-a11y@^6.7.0: +eslint-plugin-jsx-a11y@^6.5.1, eslint-plugin-jsx-a11y@^6.7.1: version "6.7.1" resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz#fca5e02d115f48c9a597a6894d5bcec2f7a76976" integrity sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA== @@ -7045,40 +7189,40 @@ eslint-plugin-jsx-a11y@^6.5.1, eslint-plugin-jsx-a11y@^6.7.0: object.fromentries "^2.0.6" semver "^6.3.0" -eslint-plugin-markdown@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-markdown/-/eslint-plugin-markdown-3.0.0.tgz#69a63ab3445076a3c2eb6fce6f5114785b19d318" - integrity sha512-hRs5RUJGbeHDLfS7ELanT0e29Ocyssf/7kBM+p7KluY5AwngGkDf8Oyu4658/NZSGTTq05FZeWbkxXtbVyHPwg== +eslint-plugin-markdown@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-markdown/-/eslint-plugin-markdown-3.0.1.tgz#fc6765bdb5f82a75e2438d7fac619602f2abc38c" + integrity sha512-8rqoc148DWdGdmYF6WSQFT3uQ6PO7zXYgeBpHAOAakX/zpq+NvFYbDA/H7PYzHajwtmaOzAwfxyl++x0g1/N9A== dependencies: mdast-util-from-markdown "^0.8.5" -eslint-plugin-mdx@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/eslint-plugin-mdx/-/eslint-plugin-mdx-2.0.5.tgz#7717a6e2f5c8f28530b1ef7a612f55430fb4726e" - integrity sha512-j2xN97jSlc5IoH94rJTHqYMztl46+hHzyC8Zqjx+OI1Rvv33isyf8xSSBHN6f0z8IJmgPgGsb/fH90JbvKplXg== - dependencies: - eslint-mdx "^2.0.5" - eslint-plugin-markdown "^3.0.0" - remark-mdx "^2.1.3" - remark-parse "^10.0.1" - remark-stringify "^10.0.2" - tslib "^2.4.0" +eslint-plugin-mdx@^2.1.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-mdx/-/eslint-plugin-mdx-2.2.0.tgz#eb1877fcaa2eaa02d3719d5f926d12a3f7f12ff7" + integrity sha512-OseoMXUIr8iy3E0me+wJLVAxuB0kxHP1plxuYAJDynzorzOj2OKv8Fhr+rIOJ32zfl3bnEWsqFnUiCnyznr1JQ== + dependencies: + eslint-mdx "^2.2.0" + eslint-plugin-markdown "^3.0.1" + remark-mdx "^2.3.0" + remark-parse "^10.0.2" + remark-stringify "^10.0.3" + tslib "^2.6.1" unified "^10.1.2" - vfile "^5.3.4" + vfile "^5.3.7" -eslint-plugin-n@^15.6.1: - version "15.6.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-15.6.1.tgz#f7e77f24abb92a550115cf11e29695da122c398c" - integrity sha512-R9xw9OtCRxxaxaszTQmQAlPgM+RdGjaL1akWuY/Fv9fRAi8Wj4CUKc6iYVG8QNRjRuo8/BqVYIpfqberJUEacA== +eslint-plugin-n@^16.0.1: + version "16.0.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-16.0.2.tgz#5b2c0ad8dd9b724244d30fad2cc49ff4308a2152" + integrity sha512-Y66uDfUNbBzypsr0kELWrIz+5skicECrLUqlWuXawNSLUq3ltGlCwu6phboYYOTSnoTdHgTLrc+5Ydo6KjzZog== dependencies: + "@eslint-community/eslint-utils" "^4.4.0" builtins "^5.0.1" - eslint-plugin-es "^4.1.0" - eslint-utils "^3.0.0" - ignore "^5.1.1" - is-core-module "^2.11.0" + eslint-plugin-es-x "^7.1.0" + ignore "^5.2.4" + is-core-module "^2.12.1" minimatch "^3.1.2" - resolve "^1.22.1" - semver "^7.3.8" + resolve "^1.22.2" + semver "^7.5.3" eslint-plugin-promise@^6.1.1: version "6.1.1" @@ -7090,15 +7234,16 @@ eslint-plugin-react-hooks@^4.5.0, eslint-plugin-react-hooks@^4.6.0: resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== -eslint-plugin-react@^7.31.7, eslint-plugin-react@^7.32.0: - version "7.32.2" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz#e71f21c7c265ebce01bcbc9d0955170c55571f10" - integrity sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg== +eslint-plugin-react@^7.31.7, eslint-plugin-react@^7.32.2: + version "7.33.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz#69ee09443ffc583927eafe86ffebb470ee737608" + integrity sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw== dependencies: array-includes "^3.1.6" array.prototype.flatmap "^1.3.1" array.prototype.tosorted "^1.1.1" doctrine "^2.1.0" + es-iterator-helpers "^1.0.12" estraverse "^5.3.0" jsx-ast-utils "^2.4.1 || ^3.0.0" minimatch "^3.1.2" @@ -7108,7 +7253,7 @@ eslint-plugin-react@^7.31.7, eslint-plugin-react@^7.32.0: object.values "^1.1.6" prop-types "^15.8.1" resolve "^2.0.0-next.4" - semver "^6.3.0" + semver "^6.3.1" string.prototype.matchall "^4.0.8" eslint-plugin-sonarjs@^0.19.0: @@ -7116,37 +7261,37 @@ eslint-plugin-sonarjs@^0.19.0: resolved "https://registry.yarnpkg.com/eslint-plugin-sonarjs/-/eslint-plugin-sonarjs-0.19.0.tgz#6654bc1c6d24c2183891b8bfe1175004dbba1e3c" integrity sha512-6+s5oNk5TFtVlbRxqZN7FIGmjdPCYQKaTzFPmqieCmsU1kBYDzndTeQav0xtQNwZJWu5awWfTGe8Srq9xFOGnw== -eslint-plugin-unicorn@^46.0.0: - version "46.0.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-46.0.0.tgz#b5cdcc9465fd6e46ab7968b87dd4a43adc8d6031" - integrity sha512-j07WkC+PFZwk8J33LYp6JMoHa1lXc1u6R45pbSAipjpfpb7KIGr17VE2D685zCxR5VL4cjrl65kTJflziQWMDA== +eslint-plugin-unicorn@^47.0.0: + version "47.0.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-47.0.0.tgz#960e9d3789f656ba3e21982420793b069a911011" + integrity sha512-ivB3bKk7fDIeWOUmmMm9o3Ax9zbMz1Bsza/R2qm46ufw4T6VBFBaJIR1uN3pCKSmSXm8/9Nri8V+iUut1NhQGA== dependencies: "@babel/helper-validator-identifier" "^7.19.1" - "@eslint-community/eslint-utils" "^4.1.2" - ci-info "^3.6.1" + "@eslint-community/eslint-utils" "^4.4.0" + ci-info "^3.8.0" clean-regexp "^1.0.0" - esquery "^1.4.0" + esquery "^1.5.0" indent-string "^4.0.0" - is-builtin-module "^3.2.0" + is-builtin-module "^3.2.1" jsesc "^3.0.2" lodash "^4.17.21" pluralize "^8.0.0" read-pkg-up "^7.0.1" regexp-tree "^0.1.24" - regjsparser "^0.9.1" + regjsparser "^0.10.0" safe-regex "^2.1.1" semver "^7.3.8" strip-indent "^3.0.0" -eslint-plugin-yml@^1.4.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-yml/-/eslint-plugin-yml-1.5.0.tgz#e7eb4ae96701ec0f7f9689f9dc84a49f41833240" - integrity sha512-iygN054g+ZrnYmtOXMnT+sx9iDNXt89/m0+506cQHeG0+5jJN8hY5iOPQLd3yfd50AfK/mSasajBWruf1SoHpQ== +eslint-plugin-yml@^1.8.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-yml/-/eslint-plugin-yml-1.8.0.tgz#f3d2779ea92692b902fefa4755ec075d7b364c1d" + integrity sha512-fgBiJvXD0P2IN7SARDJ2J7mx8t0bLdG6Zcig4ufOqW5hOvSiFxeUyc2g5I1uIm8AExbo26NNYCcTGZT0MXTsyg== dependencies: debug "^4.3.2" lodash "^4.17.21" natural-compare "^1.4.0" - yaml-eslint-parser "^1.1.0" + yaml-eslint-parser "^1.2.1" eslint-scope@^5.1.1: version "5.1.1" @@ -7164,30 +7309,6 @@ eslint-scope@^7.2.0: esrecurse "^4.3.0" estraverse "^5.2.0" -eslint-utils@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" - integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== - dependencies: - eslint-visitor-keys "^1.1.0" - -eslint-utils@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" - integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== - dependencies: - eslint-visitor-keys "^2.0.0" - -eslint-visitor-keys@^1.1.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" - integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== - -eslint-visitor-keys@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" - integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== - eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1: version "3.4.1" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994" @@ -7239,12 +7360,12 @@ eslint@8.40.0, eslint@^8.21.0: strip-json-comments "^3.1.0" text-table "^0.2.0" -espree@^9.0.0, espree@^9.4.0, espree@^9.5.2: - version "9.5.2" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.2.tgz#e994e7dc33a082a7a82dceaf12883a829353215b" - integrity sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw== +espree@^9.0.0, espree@^9.5.2, espree@^9.6.1: + version "9.6.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" + integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== dependencies: - acorn "^8.8.0" + acorn "^8.9.0" acorn-jsx "^5.3.2" eslint-visitor-keys "^3.4.1" @@ -7258,7 +7379,7 @@ esprima@^4.0.0, esprima@^4.0.1: resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== -esquery@^1.4.0, esquery@^1.4.2: +esquery@^1.4.2, esquery@^1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== @@ -7319,7 +7440,7 @@ estree-util-value-to-estree@^1.3.0: dependencies: is-plain-obj "^3.0.0" -estree-util-visit@^1.0.0, estree-util-visit@^1.2.0: +estree-util-visit@^1.0.0, estree-util-visit@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/estree-util-visit/-/estree-util-visit-1.2.1.tgz#8bc2bc09f25b00827294703835aabee1cc9ec69d" integrity sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw== @@ -7520,10 +7641,10 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== -fast-glob@^3.2.11, fast-glob@^3.2.12, fast-glob@^3.2.9: - version "3.2.12" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" - integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== +fast-glob@^3.2.11, fast-glob@^3.2.12, fast-glob@^3.2.9, fast-glob@^3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4" + integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg== dependencies: "@nodelib/fs.stat" "^2.0.2" "@nodelib/fs.walk" "^1.2.3" @@ -7569,6 +7690,13 @@ fastq@^1.6.0: dependencies: reusify "^1.0.4" +fault@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/fault/-/fault-2.0.1.tgz#d47ca9f37ca26e4bd38374a7c500b5a384755b6c" + integrity sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ== + dependencies: + format "^0.2.0" + fb-watchman@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" @@ -7721,6 +7849,14 @@ for-each@^0.3.3: dependencies: is-callable "^1.1.3" +foreground-child@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.1.1.tgz#1d173e776d75d2772fed08efe4a0de1ea1b12d0d" + integrity sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg== + dependencies: + cross-spawn "^7.0.0" + signal-exit "^4.0.1" + forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" @@ -7753,6 +7889,11 @@ form-data@~2.3.2: combined-stream "^1.0.6" mime-types "^2.1.12" +format@^0.2.0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b" + integrity sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww== + fraction.js@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950" @@ -7825,7 +7966,7 @@ function.prototype.name@^1.1.5: es-abstract "^1.19.0" functions-have-names "^1.2.2" -functions-have-names@^1.2.2: +functions-have-names@^1.2.2, functions-have-names@^1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== @@ -7845,13 +7986,14 @@ get-caller-file@^2.0.1, get-caller-file@^2.0.5: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" - integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" + integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== dependencies: function-bind "^1.1.1" has "^1.0.3" + has-proto "^1.0.1" has-symbols "^1.0.3" get-package-type@^0.1.0: @@ -7884,10 +8026,12 @@ get-symbol-description@^1.0.0: call-bind "^1.0.2" get-intrinsic "^1.1.1" -get-tsconfig@^4.2.0, get-tsconfig@^4.4.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.4.0.tgz#64eee64596668a81b8fce18403f94f245ee0d4e5" - integrity sha512-0Gdjo/9+FzsYhXCEFueo2aY1z1tpXrxWZzP7k8ul9qt1U5o8rYJwTJYmaeHdrVosYIVYkOy2iwCJ9FdpocJhPQ== +get-tsconfig@^4.4.0, get-tsconfig@^4.5.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.7.0.tgz#06ce112a1463e93196aa90320c35df5039147e34" + integrity sha512-pmjiZ7xtB8URYm74PlGJozDNyhvsVLUcpBa8DZBG3bWHwaHa9bPiRpiSfovw+fjhwONSCWKRyk+JQHEGZmMrzw== + dependencies: + resolve-pkg-maps "^1.0.0" getos@^3.2.1: version "3.2.1" @@ -7968,6 +8112,28 @@ glob@7.1.7, glob@^7.1.1, glob@^7.1.3, glob@^7.1.4, glob@^7.1.7: once "^1.3.0" path-is-absolute "^1.0.0" +glob@^10.2.2: + version "10.3.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.3.tgz#8360a4ffdd6ed90df84aa8d52f21f452e86a123b" + integrity sha512-92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw== + dependencies: + foreground-child "^3.1.0" + jackspeak "^2.0.3" + minimatch "^9.0.1" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + path-scurry "^1.10.1" + +glob@^8.0.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" + integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^5.0.1" + once "^1.3.0" + glob@^9.2.0: version "9.2.1" resolved "https://registry.yarnpkg.com/glob/-/glob-9.2.1.tgz#f47e34e1119e7d4f93a546e75851ba1f1e68de50" @@ -8021,7 +8187,7 @@ globby@^11.0.0, globby@^11.0.3, globby@^11.1.0: merge2 "^1.4.1" slash "^3.0.0" -globby@^13.1.2, globby@^13.1.3: +globby@^13.1.3: version "13.1.4" resolved "https://registry.yarnpkg.com/globby/-/globby-13.1.4.tgz#2f91c116066bcec152465ba36e5caa4a13c01317" integrity sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g== @@ -8054,6 +8220,11 @@ grapheme-splitter@^1.0.4: resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== +graphemer@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== + graphql-config@^4.1.0: version "4.5.0" resolved "https://registry.yarnpkg.com/graphql-config/-/graphql-config-4.5.0.tgz#257c2338950b8dce295a27f75c5f6c39f8f777b2" @@ -8492,7 +8663,7 @@ ieee754@^1.1.13: resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== -ignore@^5.1.1, ignore@^5.2.0: +ignore@^5.0.0, ignore@^5.2.0, ignore@^5.2.4: version "5.2.4" resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== @@ -8523,6 +8694,11 @@ import-local@^3.0.2: pkg-dir "^4.2.0" resolve-cwd "^3.0.0" +import-meta-resolve@^2.0.0: + version "2.2.2" + resolved "https://registry.yarnpkg.com/import-meta-resolve/-/import-meta-resolve-2.2.2.tgz#75237301e72d1f0fbd74dbc6cca9324b164c2cc9" + integrity sha512-f8KcQ1D80V7RnqVm+/lirO9zkOxjGxhaTC1IPrBGd3MEfNgmNG67tSUO9gTi2F3Blr2Az6g1vocaxzkVnWl9MA== + imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" @@ -8551,6 +8727,11 @@ ini@2.0.0: resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5" integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== +ini@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/ini/-/ini-4.1.1.tgz#d95b3d843b1e906e56d6747d5447904ff50ce7a1" + integrity sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g== + ini@~1.3.0: version "1.3.8" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" @@ -8582,7 +8763,7 @@ inquirer@^8.0.0: through "^2.3.6" wrap-ansi "^7.0.0" -internal-slot@^1.0.3, internal-slot@^1.0.4: +internal-slot@^1.0.3, internal-slot@^1.0.4, internal-slot@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== @@ -8650,13 +8831,13 @@ is-arguments@^1.1.1: call-bind "^1.0.2" has-tostringtag "^1.0.0" -is-array-buffer@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.1.tgz#deb1db4fcae48308d54ef2442706c0393997052a" - integrity sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ== +is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" + integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== dependencies: call-bind "^1.0.2" - get-intrinsic "^1.1.3" + get-intrinsic "^1.2.0" is-typed-array "^1.1.10" is-arrayish@^0.2.1: @@ -8664,6 +8845,13 @@ is-arrayish@^0.2.1: resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== +is-async-function@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.0.0.tgz#8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646" + integrity sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA== + dependencies: + has-tostringtag "^1.0.0" + is-bigint@^1.0.1: version "1.0.4" resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" @@ -8691,7 +8879,7 @@ is-buffer@^2.0.0: resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== -is-builtin-module@^3.2.0: +is-builtin-module@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz#f03271717d8654cfcaf07ab0463faa3571581169" integrity sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A== @@ -8717,10 +8905,10 @@ is-ci@^3.0.0, is-ci@^3.0.1: dependencies: ci-info "^3.2.0" -is-core-module@^2.10.0, is-core-module@^2.11.0, is-core-module@^2.9.0: - version "2.11.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" - integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== +is-core-module@^2.11.0, is-core-module@^2.12.1, is-core-module@^2.13.0, is-core-module@^2.9.0: + version "2.13.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db" + integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ== dependencies: has "^1.0.3" @@ -8746,6 +8934,11 @@ is-docker@^2.0.0, is-docker@^2.1.1: resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== +is-empty@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/is-empty/-/is-empty-1.2.0.tgz#de9bb5b278738a05a0b09a57e1fb4d4a341a9f6b" + integrity sha512-F2FnH/otLNJv0J6wc73A5Xo7oHLNnqplYqZhUu01tD54DIPvxIRSTSLkrUB/M0nHO4vo1O9PDfN4KoTxCzLh/w== + is-extendable@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" @@ -8756,6 +8949,13 @@ is-extglob@^2.1.1: resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== +is-finalizationregistry@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz#c8749b65f17c133313e661b1289b95ad3dbd62e6" + integrity sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw== + dependencies: + call-bind "^1.0.2" + is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" @@ -8771,6 +8971,13 @@ is-generator-fn@^2.0.0: resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== +is-generator-function@^1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" + is-glob@4.0.3, is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: version "4.0.3" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" @@ -9071,6 +9278,26 @@ iterall@^1.3.0: resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.3.0.tgz#afcb08492e2915cbd8a0884eb93a8c94d0d72fea" integrity sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg== +iterator.prototype@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/iterator.prototype/-/iterator.prototype-1.1.0.tgz#690c88b043d821f783843aaf725d7ac3b62e3b46" + integrity sha512-rjuhAk1AJ1fssphHD0IFV6TWL40CwRZ53FrztKx43yk2v6rguBYsY4Bj1VU4HmoMmKwZUlx7mfnhDf9cOp4YTw== + dependencies: + define-properties "^1.1.4" + get-intrinsic "^1.1.3" + has-symbols "^1.0.3" + has-tostringtag "^1.0.0" + reflect.getprototypeof "^1.0.3" + +jackspeak@^2.0.3: + version "2.3.0" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.3.0.tgz#aa228a94de830f31d4e4f0184427ce91c4ff1493" + integrity sha512-uKmsITSsF4rUWQHzqaRUuyAir3fZfW3f202Ee34lz/gZCi970CPZwyQXLGNgWJvvZbvFyzeyGq0+4fcG/mBKZg== + dependencies: + "@isaacs/cliui" "^8.0.2" + optionalDependencies: + "@pkgjs/parseargs" "^0.11.0" + jest-changed-files@^28.1.3: version "28.1.3" resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-28.1.3.tgz#d9aeee6792be3686c47cb988a8eaf82ff4238831" @@ -9540,11 +9767,16 @@ jsesc@~0.5.0: resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== -json-parse-even-better-errors@^2.3.0: +json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== +json-parse-even-better-errors@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz#2cb2ee33069a78870a0c7e3da560026b89669cf7" + integrity sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA== + json-schema-traverse@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" @@ -9585,7 +9817,7 @@ json-to-pretty-yaml@^1.2.2: remedial "^1.0.7" remove-trailing-spaces "^1.0.6" -json5@^1.0.1: +json5@^1.0.1, json5@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== @@ -9759,6 +9991,11 @@ lines-and-columns@^1.1.6: resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== +lines-and-columns@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-2.0.3.tgz#b2f0badedb556b747020ab8ea7f0373e22efac1b" + integrity sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w== + lint-staged@13.2.2: version "13.2.2" resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-13.2.2.tgz#5e711d3139c234f73402177be2f8dd312e6508ca" @@ -9845,6 +10082,14 @@ lit@^2.7.5: lit-element "^3.3.0" lit-html "^2.7.0" +load-plugin@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/load-plugin/-/load-plugin-5.1.0.tgz#15600f5191c742b16e058cfc908c227c13db0104" + integrity sha512-Lg1CZa1CFj2CbNaxijTL6PCbzd4qGTlZov+iH2p5Xwy/ApcZJh+i6jMN2cYePouTfjJfrNu3nXFdEw8LvbjPFQ== + dependencies: + "@npmcli/config" "^6.0.0" + import-meta-resolve "^2.0.0" + load-script@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/load-script/-/load-script-1.0.0.tgz#0491939e0bee5643ee494a7e3da3d2bac70c6ca4" @@ -10014,6 +10259,11 @@ lru-cache@^7.14.1: resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.16.1.tgz#7acea16fecd9ed11430e78443c2bb81a06d3dea9" integrity sha512-9kkuMZHnLH/8qXARvYSjNvq8S1GYFFzynQTAfKeaJ0sIrR3PUPuu37Z+EiIANiZBvpfTf2B5y8ecDLSMWlLv+w== +"lru-cache@^9.1.1 || ^10.0.0": + version "10.0.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.0.1.tgz#0a3be479df549cca0e5d693ac402ff19537a6b7a" + integrity sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g== + lz-string@^1.4.4: version "1.5.0" resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.5.0.tgz#c1ab50f77887b712621201ba9fd4e3a6ed099941" @@ -10824,6 +11074,13 @@ minimatch@4.2.3, minimatch@^4.2.3: dependencies: brace-expansion "^1.1.7" +minimatch@^5.0.1: + version "5.1.6" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" + integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== + dependencies: + brace-expansion "^2.0.1" + minimatch@^7.4.1: version "7.4.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-7.4.2.tgz#157e847d79ca671054253b840656720cb733f10f" @@ -10831,10 +11088,10 @@ minimatch@^7.4.1: dependencies: brace-expansion "^2.0.1" -minimatch@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.0.tgz#bfc8e88a1c40ffd40c172ddac3decb8451503b56" - integrity sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w== +minimatch@^9.0.0, minimatch@^9.0.1: + version "9.0.3" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825" + integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== dependencies: brace-expansion "^2.0.1" @@ -10852,11 +11109,16 @@ minimist@^1.2.0, minimist@^1.2.6, minimist@^1.2.7, minimist@^1.2.8: resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== -minipass@^4.0.2, minipass@^4.2.4: +minipass@^4.2.4: version "4.2.4" resolved "https://registry.yarnpkg.com/minipass/-/minipass-4.2.4.tgz#7d0d97434b6a19f59c5c3221698b48bbf3b2cd06" integrity sha512-lwycX3cBMTvcejsHITUgYj6Gy6A7Nh4Q6h9NP4sTHY1ccJlC7yKzDmiShEHsJ16Jf1nKGDEaiHxiltsJEvk0nQ== +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0": + version "7.0.3" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.3.tgz#05ea638da44e475037ed94d1c7efcc76a25e1974" + integrity sha512-LhbbwCfz3vsb12j/WkWQPZfKTsgqIe1Nf/ti1pKjYESGLHIVjWU96G9/ljLH4F9mWNVhlQOm0VySdAWzf05dpg== + mixme@^0.5.1: version "0.5.5" resolved "https://registry.yarnpkg.com/mixme/-/mixme-0.5.5.tgz#bf8f67d8caf10fdb49fd23198fd1fa6d8e406627" @@ -11107,6 +11369,13 @@ non-layered-tidy-tree-layout@^2.0.2: resolved "https://registry.yarnpkg.com/non-layered-tidy-tree-layout/-/non-layered-tidy-tree-layout-2.0.2.tgz#57d35d13c356643fc296a55fb11ac15e74da7804" integrity sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw== +nopt@^7.0.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-7.2.0.tgz#067378c68116f602f552876194fd11f1292503d7" + integrity sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA== + dependencies: + abbrev "^2.0.0" + normalize-package-data@^2.5.0: version "2.5.0" resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" @@ -11134,6 +11403,11 @@ normalize-range@^0.1.2: resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== +npm-normalize-package-bin@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz#25447e32a9a7de1f51362c61a559233b89947832" + integrity sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ== + npm-run-path@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" @@ -11182,7 +11456,7 @@ object-hash@^3.0.0: resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== -object-inspect@^1.12.2, object-inspect@^1.12.3, object-inspect@^1.9.0: +object-inspect@^1.12.3, object-inspect@^1.9.0: version "1.12.3" resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== @@ -11228,6 +11502,16 @@ object.fromentries@^2.0.6: define-properties "^1.1.4" es-abstract "^1.20.4" +object.groupby@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.0.tgz#cb29259cf90f37e7bac6437686c1ea8c916d12a9" + integrity sha512-70MWG6NfRH9GnbZOikuhPPYzpUpof9iW2J9E4dW7FXTqPNb6rllE6u39SKwwiNh8lCwX3DDb5OgcKGiEBrTTyw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.21.2" + get-intrinsic "^1.2.1" + object.hasown@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.2.tgz#f919e21fad4eb38a57bc6345b3afd496515c3f92" @@ -11479,6 +11763,16 @@ parse-json@^5.0.0, parse-json@^5.2.0: json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" +parse-json@^6.0.0: + version "6.0.2" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-6.0.2.tgz#6bf79c201351cc12d5d66eba48d5a097c13dc200" + integrity sha512-SA5aMiaIjXkAiBrW/yPgLgQAQg42f7K3ACO+2l/zOvtQBwX58DMUsFJXelW2fx3yMBmWOVkR6j1MGsdSbCA4UA== + dependencies: + "@babel/code-frame" "^7.16.0" + error-ex "^1.3.2" + json-parse-even-better-errors "^2.3.1" + lines-and-columns "^2.0.2" + parse-numeric-range@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz#7c63b61190d61e4d53a1197f0c83c47bb670ffa3" @@ -11593,13 +11887,13 @@ path-root@^0.1.1: dependencies: path-root-regex "^0.1.0" -path-scurry@^1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.6.1.tgz#dab45f7bb1d3f45a0e271ab258999f4ab7e23132" - integrity sha512-OW+5s+7cw6253Q4E+8qQ/u1fVvcJQCJo/VFD8pje+dbJCF1n5ZRMV2AEHbGp+5Q7jxQIYJxkHopnj6nzdGeZLA== +path-scurry@^1.10.1, path-scurry@^1.6.1: + version "1.10.1" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz#9ba6bf5aa8500fe9fd67df4f0d9483b2b0bfc698" + integrity sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ== dependencies: - lru-cache "^7.14.1" - minipass "^4.0.2" + lru-cache "^9.1.1 || ^10.0.0" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" path-to-regexp@2.2.1: version "2.2.1" @@ -12026,6 +12320,11 @@ pretty-format@^28.0.0, pretty-format@^28.1.3: ansi-styles "^5.0.0" react-is "^18.0.0" +proc-log@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-3.0.0.tgz#fb05ef83ccd64fd7b20bbe9c8c1070fc08338dd8" + integrity sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A== + promise@^7.1.1: version "7.3.1" resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" @@ -12282,6 +12581,14 @@ read-cache@^1.0.0: dependencies: pify "^2.3.0" +read-package-json-fast@^3.0.0, read-package-json-fast@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz#394908a9725dc7a5f14e70c8e7556dff1d2b1049" + integrity sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw== + dependencies: + json-parse-even-better-errors "^3.0.0" + npm-normalize-package-bin "^3.0.0" + read-pkg-up@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" @@ -12311,10 +12618,10 @@ read-yaml-file@^1.1.0: pify "^4.0.1" strip-bom "^3.0.0" -readable-stream@^3.4.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" - integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== +readable-stream@^3.0.2, readable-stream@^3.4.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== dependencies: inherits "^2.0.3" string_decoder "^1.1.1" @@ -12340,6 +12647,18 @@ redent@^3.0.0: indent-string "^4.0.0" strip-indent "^3.0.0" +reflect.getprototypeof@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.3.tgz#2738fd896fcc3477ffbd4190b40c2458026b6928" + integrity sha512-TTAOZpkJ2YLxl7mVHWrNo3iDMEkYlva/kgFcXndqMgbo/AZUmmavEkdXV+hXtE4P8xdyEKRzalaFqZVuwIk/Nw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + get-intrinsic "^1.1.1" + globalthis "^1.0.3" + which-builtin-type "^1.1.3" + regenerate-unicode-properties@^10.1.0: version "10.1.0" resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c" @@ -12369,19 +12688,14 @@ regexp-tree@^0.1.24, regexp-tree@~0.1.1: resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.24.tgz#3d6fa238450a4d66e5bc9c4c14bb720e2196829d" integrity sha512-s2aEVuLhvnVJW6s/iPgEGK6R+/xngd2jNQ+xy4bXNDKxZKJH6jpPHY6kVeVv1IeLCHgswRj+Kl3ELaDjG6V1iw== -regexp.prototype.flags@^1.4.3: - version "1.4.3" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" - integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== +regexp.prototype.flags@^1.4.3, regexp.prototype.flags@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb" + integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - functions-have-names "^1.2.2" - -regexpp@^3.0.0, regexpp@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" - integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== + define-properties "^1.2.0" + functions-have-names "^1.2.3" regexpu-core@^5.3.1: version "5.3.2" @@ -12410,6 +12724,13 @@ registry-url@3.1.0: dependencies: rc "^1.0.1" +regjsparser@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.10.0.tgz#b1ed26051736b436f22fdec1c8f72635f9f44892" + integrity sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA== + dependencies: + jsesc "~0.5.0" + regjsparser@^0.9.1: version "0.9.1" resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" @@ -12476,7 +12797,7 @@ remark-mdx-disable-explicit-jsx@0.1.0: unified "^10.1.1" unist-util-visit "^4.1.0" -remark-mdx@^2.0.0, remark-mdx@^2.1.3: +remark-mdx@^2.0.0, remark-mdx@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-2.3.0.tgz#efe678025a8c2726681bde8bf111af4a93943db4" integrity sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g== @@ -12484,10 +12805,10 @@ remark-mdx@^2.0.0, remark-mdx@^2.1.3: mdast-util-mdx "^2.0.0" micromark-extension-mdxjs "^1.0.0" -remark-parse@^10.0.0, remark-parse@^10.0.1: - version "10.0.1" - resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-10.0.1.tgz#6f60ae53edbf0cf38ea223fe643db64d112e0775" - integrity sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw== +remark-parse@^10.0.0, remark-parse@^10.0.2: + version "10.0.2" + resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-10.0.2.tgz#ca241fde8751c2158933f031a4e3efbaeb8bc262" + integrity sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw== dependencies: "@types/mdast" "^3.0.0" mdast-util-from-markdown "^1.0.0" @@ -12513,10 +12834,10 @@ remark-rehype@^10.0.0: mdast-util-to-hast "^12.1.0" unified "^10.0.0" -remark-stringify@^10.0.2: - version "10.0.2" - resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-10.0.2.tgz#50414a6983f5008eb9e72eed05f980582d1f69d7" - integrity sha512-6wV3pvbPvHkbNnWB0wdDvVFHOe1hBRAx1Q/5g/EpH4RppAII6J8Gnwe7VbHuXaoKIF6LAg6ExTel/+kNqSQ7lw== +remark-stringify@^10.0.3: + version "10.0.3" + resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-10.0.3.tgz#83b43f2445c4ffbb35b606f967d121b2b6d69717" + integrity sha512-koyOzCMYoUHudypbj4XpnAKFbkddRMYZHwghnxd7ue5210WzGw6kOBwauJTRUMq16jsovXx8dYNvSSWP89kZ3A== dependencies: "@types/mdast" "^3.0.0" mdast-util-to-markdown "^1.0.0" @@ -12586,6 +12907,11 @@ resolve-from@^4.0.0: resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== +resolve-pkg-maps@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f" + integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw== + resolve.exports@^1.1.0: version "1.1.1" resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.1.tgz#05cfd5b3edf641571fd46fa608b610dda9ead999" @@ -12706,6 +13032,16 @@ sade@^1.7.3: dependencies: mri "^1.1.0" +safe-array-concat@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.0.0.tgz#2064223cba3c08d2ee05148eedbc563cd6d84060" + integrity sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.0" + has-symbols "^1.0.3" + isarray "^2.0.5" + safe-buffer@5.1.2, safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0: version "5.1.2" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" @@ -12905,6 +13241,11 @@ signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== +signal-exit@^4.0.1: + version "4.1.0" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" + integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== + signedsource@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/signedsource/-/signedsource-1.0.0.tgz#1ddace4981798f93bd833973803d80d52e93ad6a" @@ -13185,7 +13526,7 @@ string-length@^4.0.1: char-regex "^1.0.2" strip-ansi "^6.0.0" -string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -13217,6 +13558,15 @@ string.prototype.matchall@^4.0.8: regexp.prototype.flags "^1.4.3" side-channel "^1.0.4" +string.prototype.trim@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533" + integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + string.prototype.trimend@^1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" @@ -13250,7 +13600,7 @@ stringify-entities@^4.0.0: character-entities-html4 "^2.0.0" character-entities-legacy "^3.0.0" -strip-ansi@^6.0.0, strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -13384,6 +13734,11 @@ supports-color@^8.0.0, supports-color@^8.1.1: dependencies: has-flag "^4.0.0" +supports-color@^9.0.0: + version "9.4.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-9.4.0.tgz#17bfcf686288f531db3dea3215510621ccb55954" + integrity sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw== + supports-hyperlinks@^2.0.0: version "2.3.0" resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz#3943544347c1ff90b15effb03fc14ae45ec10624" @@ -13426,7 +13781,7 @@ symbol-observable@^4.0.0: resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-4.0.0.tgz#5b425f192279e87f2f9b937ac8540d1984b39205" integrity sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ== -synckit@^0.8.1, synckit@^0.8.4: +synckit@^0.8.1, synckit@^0.8.5: version "0.8.5" resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.8.5.tgz#b7f4358f9bb559437f9f167eb6bc46b3c9818fa3" integrity sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q== @@ -13589,6 +13944,14 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" +to-vfile@^7.0.0: + version "7.2.4" + resolved "https://registry.yarnpkg.com/to-vfile/-/to-vfile-7.2.4.tgz#b97ecfcc15905ffe020bc975879053928b671378" + integrity sha512-2eQ+rJ2qGbyw3senPI0qjuM7aut8IYXK6AEoOWb+fJx/mQYzviTckm1wDjq91QYHAPBTYzmdJXxMFA6Mk14mdw== + dependencies: + is-buffer "^2.0.0" + vfile "^5.1.0" + totalist@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/totalist/-/totalist-1.1.0.tgz#a4d65a3e546517701e3e5c37a47a70ac97fe56df" @@ -13694,13 +14057,13 @@ ts-node@10.9.1, ts-node@^10.9.1: v8-compile-cache-lib "^3.0.1" yn "3.1.1" -tsconfig-paths@^3.14.1: - version "3.14.1" - resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" - integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== +tsconfig-paths@^3.14.2: + version "3.14.2" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088" + integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g== dependencies: "@types/json5" "^0.0.29" - json5 "^1.0.1" + json5 "^1.0.2" minimist "^1.2.6" strip-bom "^3.0.0" @@ -13714,6 +14077,11 @@ tslib@^1.8.1: resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== +tslib@^2.6.1: + version "2.6.2" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" + integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== + tslib@~2.4.0: version "2.4.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e" @@ -13836,6 +14204,36 @@ type-fest@^2.13.0: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== +typed-array-buffer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz#18de3e7ed7974b0a729d3feecb94338d1472cd60" + integrity sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.1" + is-typed-array "^1.1.10" + +typed-array-byte-length@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz#d787a24a995711611fb2b87a4052799517b230d0" + integrity sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA== + dependencies: + call-bind "^1.0.2" + for-each "^0.3.3" + has-proto "^1.0.1" + is-typed-array "^1.1.10" + +typed-array-byte-offset@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz#cbbe89b51fdef9cd6aaf07ad4707340abbc4ea0b" + integrity sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + has-proto "^1.0.1" + is-typed-array "^1.1.10" + typed-array-length@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" @@ -13845,6 +14243,11 @@ typed-array-length@^1.0.4: for-each "^0.3.3" is-typed-array "^1.1.9" +typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== + typescript-json-schema@0.56.0: version "0.56.0" resolved "https://registry.yarnpkg.com/typescript-json-schema/-/typescript-json-schema-0.56.0.tgz#de3fe196633197aa66b10191e78f51d5f6b45847" @@ -13912,6 +14315,34 @@ unicode-property-aliases-ecmascript@^2.0.0: resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== +unified-engine@^10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/unified-engine/-/unified-engine-10.1.0.tgz#6899f00d1f53ee9af94f7abd0ec21242aae3f56c" + integrity sha512-5+JDIs4hqKfHnJcVCxTid1yBoI/++FfF/1PFdSMpaftZZZY+qg2JFruRbf7PaIwa9KgLotXQV3gSjtY0IdcFGQ== + dependencies: + "@types/concat-stream" "^2.0.0" + "@types/debug" "^4.0.0" + "@types/is-empty" "^1.0.0" + "@types/node" "^18.0.0" + "@types/unist" "^2.0.0" + concat-stream "^2.0.0" + debug "^4.0.0" + fault "^2.0.0" + glob "^8.0.0" + ignore "^5.0.0" + is-buffer "^2.0.0" + is-empty "^1.0.0" + is-plain-obj "^4.0.0" + load-plugin "^5.0.0" + parse-json "^6.0.0" + to-vfile "^7.0.0" + trough "^2.0.0" + unist-util-inspect "^7.0.0" + vfile-message "^3.0.0" + vfile-reporter "^7.0.0" + vfile-statistics "^2.0.0" + yaml "^2.0.0" + unified@^10.0.0, unified@^10.1.1, unified@^10.1.2: version "10.1.2" resolved "https://registry.yarnpkg.com/unified/-/unified-10.1.2.tgz#b1d64e55dafe1f0b98bb6c719881103ecf6c86df" @@ -13938,6 +14369,13 @@ unist-util-generated@^2.0.0: resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-2.0.1.tgz#e37c50af35d3ed185ac6ceacb6ca0afb28a85cae" integrity sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A== +unist-util-inspect@^7.0.0: + version "7.0.2" + resolved "https://registry.yarnpkg.com/unist-util-inspect/-/unist-util-inspect-7.0.2.tgz#858e4f02ee4053f7c6ada8bc81662901a0ee1893" + integrity sha512-Op0XnmHUl6C2zo/yJCwhXQSm/SmW22eDZdWP2qdf4WpGrgO1ZxFodq+5zFyeRGasFjJotAnLgfuD1jkcKqiH1Q== + dependencies: + "@types/unist" "^2.0.0" + unist-util-is@^5.0.0: version "5.2.0" resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-5.2.0.tgz#37eed0617b76c114fd34d44c201aa96fd928b309" @@ -14028,7 +14466,7 @@ unist-util-visit@^3.1.0: unist-util-is "^5.0.0" unist-util-visit-parents "^4.0.0" -unist-util-visit@^4.0.0, unist-util-visit@^4.1.0, unist-util-visit@^4.1.1, unist-util-visit@^4.1.2: +unist-util-visit@^4.0.0, unist-util-visit@^4.1.0, unist-util-visit@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-4.1.2.tgz#125a42d1eb876283715a3cb5cceaa531828c72e2" integrity sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg== @@ -14229,7 +14667,37 @@ vfile-message@^3.0.0: "@types/unist" "^2.0.0" unist-util-stringify-position "^3.0.0" -vfile@^5.0.0, vfile@^5.3.0, vfile@^5.3.4: +vfile-reporter@^7.0.0: + version "7.0.5" + resolved "https://registry.yarnpkg.com/vfile-reporter/-/vfile-reporter-7.0.5.tgz#a0cbf3922c08ad428d6db1161ec64a53b5725785" + integrity sha512-NdWWXkv6gcd7AZMvDomlQbK3MqFWL1RlGzMn++/O2TI+68+nqxCPTvLugdOtfSzXmjh+xUyhp07HhlrbJjT+mw== + dependencies: + "@types/supports-color" "^8.0.0" + string-width "^5.0.0" + supports-color "^9.0.0" + unist-util-stringify-position "^3.0.0" + vfile "^5.0.0" + vfile-message "^3.0.0" + vfile-sort "^3.0.0" + vfile-statistics "^2.0.0" + +vfile-sort@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/vfile-sort/-/vfile-sort-3.0.1.tgz#4b06ec63e2946749b0bb514e736554cd75e441a2" + integrity sha512-1os1733XY6y0D5x0ugqSeaVJm9lYgj0j5qdcZQFyxlZOSy1jYarL77lLyb5gK4Wqr1d5OxmuyflSO3zKyFnTFw== + dependencies: + vfile "^5.0.0" + vfile-message "^3.0.0" + +vfile-statistics@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/vfile-statistics/-/vfile-statistics-2.0.1.tgz#2e1adae1cd3a45c1ed4f2a24bd103c3d71e4bce3" + integrity sha512-W6dkECZmP32EG/l+dp2jCLdYzmnDBIw6jwiLZSER81oR5AHRcVqL+k3Z+pfH1R73le6ayDkJRMk0sutj1bMVeg== + dependencies: + vfile "^5.0.0" + vfile-message "^3.0.0" + +vfile@^5.0.0, vfile@^5.1.0, vfile@^5.3.0, vfile@^5.3.7: version "5.3.7" resolved "https://registry.yarnpkg.com/vfile/-/vfile-5.3.7.tgz#de0677e6683e3380fafc46544cfe603118826ab7" integrity sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g== @@ -14314,6 +14782,11 @@ wait-on@7.0.1: minimist "^1.2.7" rxjs "^7.8.0" +walk-up-path@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/walk-up-path/-/walk-up-path-3.0.1.tgz#c8d78d5375b4966c717eb17ada73dbd41490e886" + integrity sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA== + walker@^1.0.8: version "1.0.8" resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" @@ -14407,6 +14880,24 @@ which-boxed-primitive@^1.0.2: is-string "^1.0.5" is-symbol "^1.0.3" +which-builtin-type@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.1.3.tgz#b1b8443707cc58b6e9bf98d32110ff0c2cbd029b" + integrity sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw== + dependencies: + function.prototype.name "^1.1.5" + has-tostringtag "^1.0.0" + is-async-function "^2.0.0" + is-date-object "^1.0.5" + is-finalizationregistry "^1.0.2" + is-generator-function "^1.0.10" + is-regex "^1.1.4" + is-weakref "^1.0.2" + isarray "^2.0.5" + which-boxed-primitive "^1.0.2" + which-collection "^1.0.1" + which-typed-array "^1.1.9" + which-collection@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906" @@ -14430,17 +14921,16 @@ which-pm@2.0.0: load-yaml-file "^0.2.0" path-exists "^4.0.0" -which-typed-array@^1.1.9: - version "1.1.9" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" - integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== +which-typed-array@^1.1.10, which-typed-array@^1.1.9: + version "1.1.11" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.11.tgz#99d691f23c72aab6768680805a271b69761ed61a" + integrity sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew== dependencies: available-typed-arrays "^1.0.5" call-bind "^1.0.2" for-each "^0.3.3" gopd "^1.0.1" has-tostringtag "^1.0.0" - is-typed-array "^1.1.10" which@^1.2.9: version "1.3.1" @@ -14473,25 +14963,25 @@ word-wrap@^1.2.3, word-wrap@~1.2.3: resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== -wrap-ansi@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" - integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== dependencies: ansi-styles "^4.0.0" string-width "^4.1.0" strip-ansi "^6.0.0" -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== +wrap-ansi@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== dependencies: ansi-styles "^4.0.0" string-width "^4.1.0" strip-ansi "^6.0.0" -wrap-ansi@^8.0.1: +wrap-ansi@^8.0.1, wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== @@ -14558,10 +15048,10 @@ yaml-ast-parser@^0.0.43: resolved "https://registry.yarnpkg.com/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz#e8a23e6fb4c38076ab92995c5dca33f3d3d7c9bb" integrity sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A== -yaml-eslint-parser@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/yaml-eslint-parser/-/yaml-eslint-parser-1.1.0.tgz#62703e2f4afbe5a17d3fe297882740bf89504e78" - integrity sha512-b464Q1fYiX1oYx2kE8k4mEp6S9Prk+tfDsY/IPxQ0FCjEuj3AKko5Skf3/yQJeYTTDyjDE+aWIJemnv29HvEWQ== +yaml-eslint-parser@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/yaml-eslint-parser/-/yaml-eslint-parser-1.2.2.tgz#1a9673ebe254328cfc2fa99f297f6d8c9364ccd8" + integrity sha512-pEwzfsKbTrB8G3xc/sN7aw1v6A6c/pKxLAkjclnAyo5g5qOh6eL9WGu0o3cSDQZKrTNk4KL4lQSwZW+nBkANEg== dependencies: eslint-visitor-keys "^3.0.0" lodash "^4.17.21" From aa598f9e354d2f567ca820199a5fe456fc27169a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 21:45:46 +0000 Subject: [PATCH 059/115] chore(deps): update react monorepo (#9483) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .../react/apollo-client-swc-plugin/package.json | 4 ++-- website/package.json | 2 +- yarn.lock | 16 ++++++++-------- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/examples/react/apollo-client-swc-plugin/package.json b/examples/react/apollo-client-swc-plugin/package.json index 59e67abaee2..def93c04267 100644 --- a/examples/react/apollo-client-swc-plugin/package.json +++ b/examples/react/apollo-client-swc-plugin/package.json @@ -12,8 +12,8 @@ "@graphql-codegen/client-preset": "^4.1.0", "@graphql-codegen/cli": "^5.0.0", "@vitejs/plugin-react-swc": "^3.3.0", - "@types/react": "18.2.7", - "@types/react-dom": "18.2.4", + "@types/react": "18.2.21", + "@types/react-dom": "18.2.7", "typescript": "5.0.4", "vite": "^4.1.0" }, diff --git a/website/package.json b/website/package.json index a8b305c7b12..acca643729d 100644 --- a/website/package.json +++ b/website/package.json @@ -15,7 +15,7 @@ "@types/dedent": "0.7.0", "@types/jsonpath": "0.2.0", "@types/node": "18.16.19", - "@types/react": "18.2.7", + "@types/react": "18.2.21", "fast-xml-parser": "4.2.7", "jsonpath": "1.1.1", "prettier-plugin-tailwindcss": "0.2.8" diff --git a/yarn.lock b/yarn.lock index 80c40cf1ed5..121832fb445 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4206,10 +4206,10 @@ resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== -"@types/react-dom@18.2.4", "@types/react-dom@^18.0.10": - version "18.2.4" - resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.4.tgz#13f25bfbf4e404d26f62ac6e406591451acba9e0" - integrity sha512-G2mHoTMTL4yoydITgOGwWdWMVd8sNgyEP85xVmMKAPUBwQWm9wBPQUmvbeF4V3WBY1P7mmL4BkjQ0SqUpf1snw== +"@types/react-dom@18.2.7", "@types/react-dom@^18.0.10": + version "18.2.7" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.7.tgz#67222a08c0a6ae0a0da33c3532348277c70abb63" + integrity sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA== dependencies: "@types/react" "*" @@ -4220,10 +4220,10 @@ dependencies: "@types/react" "*" -"@types/react@*", "@types/react@18.2.7", "@types/react@>=16", "@types/react@^18.0.15", "@types/react@^18.0.17", "@types/react@^18.0.27": - version "18.2.7" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.7.tgz#dfb4518042a3117a045b8c222316f83414a783b3" - integrity sha512-ojrXpSH2XFCmHm7Jy3q44nXDyN54+EYKP2lBhJ2bqfyPj6cIUW/FZW/Csdia34NQgq7KYcAlHi5184m4X88+yw== +"@types/react@*", "@types/react@18.2.21", "@types/react@>=16", "@types/react@^18.0.15", "@types/react@^18.0.17", "@types/react@^18.0.27": + version "18.2.21" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.21.tgz#774c37fd01b522d0b91aed04811b58e4e0514ed9" + integrity sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA== dependencies: "@types/prop-types" "*" "@types/scheduler" "*" From f2da00050b123f097de15b08d46d0eb6151e3575 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Aug 2023 00:46:49 +0000 Subject: [PATCH 060/115] chore(deps): update nextjs monorepo to v13.4.19 (#9475) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- yarn.lock | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/yarn.lock b/yarn.lock index 121832fb445..3cde6aefd66 100644 --- a/yarn.lock +++ b/yarn.lock @@ -10227,10 +10227,10 @@ lower-case@^2.0.2: dependencies: tslib "^2.0.3" -lru-cache@^10.0.0: - version "10.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.0.0.tgz#b9e2a6a72a129d81ab317202d93c7691df727e61" - integrity sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw== +lru-cache@^10.0.0, "lru-cache@^9.1.1 || ^10.0.0": + version "10.0.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.0.1.tgz#0a3be479df549cca0e5d693ac402ff19537a6b7a" + integrity sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g== lru-cache@^4.0.1: version "4.1.5" @@ -10254,16 +10254,6 @@ lru-cache@^6.0.0: dependencies: yallist "^4.0.0" -lru-cache@^7.14.1: - version "7.16.1" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.16.1.tgz#7acea16fecd9ed11430e78443c2bb81a06d3dea9" - integrity sha512-9kkuMZHnLH/8qXARvYSjNvq8S1GYFFzynQTAfKeaJ0sIrR3PUPuu37Z+EiIANiZBvpfTf2B5y8ecDLSMWlLv+w== - -"lru-cache@^9.1.1 || ^10.0.0": - version "10.0.1" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.0.1.tgz#0a3be479df549cca0e5d693ac402ff19537a6b7a" - integrity sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g== - lz-string@^1.4.4: version "1.5.0" resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.5.0.tgz#c1ab50f77887b712621201ba9fd4e3a6ed099941" From ce108e7d655c523c9d45e4ffe696ed5a1050b58a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Aug 2023 00:47:15 +0000 Subject: [PATCH 061/115] chore(deps): update dependency @parcel/watcher to v2.3.0 (#9541) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- yarn.lock | 101 ++++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 87 insertions(+), 14 deletions(-) diff --git a/yarn.lock b/yarn.lock index 3cde6aefd66..9a8434a4b42 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3443,15 +3443,88 @@ resolved "https://registry.yarnpkg.com/@npmcli/name-from-folder/-/name-from-folder-2.0.0.tgz#c44d3a7c6d5c184bb6036f4d5995eee298945815" integrity sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg== +"@parcel/watcher-android-arm64@2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.3.0.tgz#d82e74bb564ebd4d8a88791d273a3d2bd61e27ab" + integrity sha512-f4o9eA3dgk0XRT3XhB0UWpWpLnKgrh1IwNJKJ7UJek7eTYccQ8LR7XUWFKqw6aEq5KUNlCcGvSzKqSX/vtWVVA== + +"@parcel/watcher-darwin-arm64@2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.3.0.tgz#c9cd03f8f233d512fcfc873d5b4e23f1569a82ad" + integrity sha512-mKY+oijI4ahBMc/GygVGvEdOq0L4DxhYgwQqYAz/7yPzuGi79oXrZG52WdpGA1wLBPrYb0T8uBaGFo7I6rvSKw== + +"@parcel/watcher-darwin-x64@2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.3.0.tgz#83c902994a2a49b9e1ab5050dba24876fdc2c219" + integrity sha512-20oBj8LcEOnLE3mgpy6zuOq8AplPu9NcSSSfyVKgfOhNAc4eF4ob3ldj0xWjGGbOF7Dcy1Tvm6ytvgdjlfUeow== + +"@parcel/watcher-freebsd-x64@2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.3.0.tgz#7a0f4593a887e2752b706aff2dae509aef430cf6" + integrity sha512-7LftKlaHunueAEiojhCn+Ef2CTXWsLgTl4hq0pkhkTBFI3ssj2bJXmH2L67mKpiAD5dz66JYk4zS66qzdnIOgw== + +"@parcel/watcher-linux-arm-glibc@2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.3.0.tgz#3fc90c3ebe67de3648ed2f138068722f9b1d47da" + integrity sha512-1apPw5cD2xBv1XIHPUlq0cO6iAaEUQ3BcY0ysSyD9Kuyw4MoWm1DV+W9mneWI+1g6OeP6dhikiFE6BlU+AToTQ== + +"@parcel/watcher-linux-arm64-glibc@2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.3.0.tgz#f7bbbf2497d85fd11e4c9e9c26ace8f10ea9bcbc" + integrity sha512-mQ0gBSQEiq1k/MMkgcSB0Ic47UORZBmWoAWlMrTW6nbAGoLZP+h7AtUM7H3oDu34TBFFvjy4JCGP43JlylkTQA== + +"@parcel/watcher-linux-arm64-musl@2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.3.0.tgz#de131a9fcbe1fa0854e9cbf4c55bed3b35bcff43" + integrity sha512-LXZAExpepJew0Gp8ZkJ+xDZaTQjLHv48h0p0Vw2VMFQ8A+RKrAvpFuPVCVwKJCr5SE+zvaG+Etg56qXvTDIedw== + +"@parcel/watcher-linux-x64-glibc@2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.3.0.tgz#193dd1c798003cdb5a1e59470ff26300f418a943" + integrity sha512-P7Wo91lKSeSgMTtG7CnBS6WrA5otr1K7shhSjKHNePVmfBHDoAOHYRXgUmhiNfbcGk0uMCHVcdbfxtuiZCHVow== + +"@parcel/watcher-linux-x64-musl@2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.3.0.tgz#6dbdb86d96e955ab0fe4a4b60734ec0025a689dd" + integrity sha512-+kiRE1JIq8QdxzwoYY+wzBs9YbJ34guBweTK8nlzLKimn5EQ2b2FSC+tAOpq302BuIMjyuUGvBiUhEcLIGMQ5g== + +"@parcel/watcher-win32-arm64@2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.3.0.tgz#59da26a431da946e6c74fa6b0f30b120ea6650b6" + integrity sha512-35gXCnaz1AqIXpG42evcoP2+sNL62gZTMZne3IackM+6QlfMcJLy3DrjuL6Iks7Czpd3j4xRBzez3ADCj1l7Aw== + +"@parcel/watcher-win32-ia32@2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.3.0.tgz#3ee6a18b08929cd3b788e8cc9547fd9a540c013a" + integrity sha512-FJS/IBQHhRpZ6PiCjFt1UAcPr0YmCLHRbTc00IBTrelEjlmmgIVLeOx4MSXzx2HFEy5Jo5YdhGpxCuqCyDJ5ow== + +"@parcel/watcher-win32-x64@2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.3.0.tgz#14e7246289861acc589fd608de39fe5d8b4bb0a7" + integrity sha512-dLx+0XRdMnVI62kU3wbXvbIRhLck4aE28bIGKbRGS7BJNt54IIj9+c/Dkqb+7DJEbHUZAX1bwaoM8PqVlHJmCA== + "@parcel/watcher@^2.1.0": - version "2.1.0" - resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.1.0.tgz#5f32969362db4893922c526a842d8af7a8538545" - integrity sha512-8s8yYjd19pDSsBpbkOHnT6Z2+UJSuLQx61pCFM0s5wSRvKCEMDjd/cHY3/GI1szHIWbpXpsJdg3V6ISGGx9xDw== + version "2.3.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.3.0.tgz#803517abbc3981a1a1221791d9f59dc0590d50f9" + integrity sha512-pW7QaFiL11O0BphO+bq3MgqeX/INAk9jgBldVDYjlQPO4VddoZnF22TcF9onMhnLVHuNqBJeRf+Fj7eezi/+rQ== dependencies: + detect-libc "^1.0.3" is-glob "^4.0.3" micromatch "^4.0.5" - node-addon-api "^3.2.1" - node-gyp-build "^4.3.0" + node-addon-api "^7.0.0" + optionalDependencies: + "@parcel/watcher-android-arm64" "2.3.0" + "@parcel/watcher-darwin-arm64" "2.3.0" + "@parcel/watcher-darwin-x64" "2.3.0" + "@parcel/watcher-freebsd-x64" "2.3.0" + "@parcel/watcher-linux-arm-glibc" "2.3.0" + "@parcel/watcher-linux-arm64-glibc" "2.3.0" + "@parcel/watcher-linux-arm64-musl" "2.3.0" + "@parcel/watcher-linux-x64-glibc" "2.3.0" + "@parcel/watcher-linux-x64-musl" "2.3.0" + "@parcel/watcher-win32-arm64" "2.3.0" + "@parcel/watcher-win32-ia32" "2.3.0" + "@parcel/watcher-win32-x64" "2.3.0" "@peculiar/asn1-schema@^2.1.6", "@peculiar/asn1-schema@^2.3.0": version "2.3.3" @@ -6684,6 +6757,11 @@ detect-indent@^6.0.0: resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== +detect-libc@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg== + detect-newline@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" @@ -11327,10 +11405,10 @@ nock@13.3.1: lodash "^4.17.21" propagate "^2.0.0" -node-addon-api@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.2.1.tgz#81325e0a2117789c0128dab65e7e38f07ceba161" - integrity sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A== +node-addon-api@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-7.0.0.tgz#8136add2f510997b3b94814f4af1cce0b0e3962e" + integrity sha512-vgbBJTS4m5/KkE16t5Ly0WW9hz46swAstv0hYYwMtbG7AznRhNyfLRe8HZAiWIpcHzoO7HxhLuBQj9rJ/Ho0ZA== node-fetch@2.6.7, node-fetch@^2.5.0, node-fetch@^2.6.1: version "2.6.7" @@ -11339,11 +11417,6 @@ node-fetch@2.6.7, node-fetch@^2.5.0, node-fetch@^2.6.1: dependencies: whatwg-url "^5.0.0" -node-gyp-build@^4.3.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.6.0.tgz#0c52e4cbf54bbd28b709820ef7b6a3c2d6209055" - integrity sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ== - node-int64@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" From 631c4238ee330e46cad05de348b26211ae91a02a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 22:57:17 -0400 Subject: [PATCH 062/115] chore(deps): update dependency jest-diff to v29 (#9645) * chore(deps): update dependency jest-diff to v29 * chore(dependencies): updated changesets for modified dependencies --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] --- .changeset/@graphql-codegen_testing-9645-dependencies.md | 5 +++++ packages/utils/graphql-codegen-testing/package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/@graphql-codegen_testing-9645-dependencies.md diff --git a/.changeset/@graphql-codegen_testing-9645-dependencies.md b/.changeset/@graphql-codegen_testing-9645-dependencies.md new file mode 100644 index 00000000000..513a259d8b3 --- /dev/null +++ b/.changeset/@graphql-codegen_testing-9645-dependencies.md @@ -0,0 +1,5 @@ +--- +"@graphql-codegen/testing": patch +--- +dependencies updates: + - Updated dependency [`jest-diff@^23.0.0 || ^24.0.0 || ^25.0.0 || ^26.0.0 || ^27.0.0 || ^28.0.0 || ^29.0.0` ↗︎](https://www.npmjs.com/package/jest-diff/v/23.0.0) (from `^23.0.0 || ^24.0.0 || ^25.0.0 || ^26.0.0 || ^27.0.0 || ^28.0.0`, in `peerDependencies`) diff --git a/packages/utils/graphql-codegen-testing/package.json b/packages/utils/graphql-codegen-testing/package.json index 54128f8be71..572191fabb1 100644 --- a/packages/utils/graphql-codegen-testing/package.json +++ b/packages/utils/graphql-codegen-testing/package.json @@ -36,7 +36,7 @@ }, "homepage": "https://github.com/dotansimha/graphql-code-generator#readme", "peerDependencies": { - "jest-diff": "^23.0.0 || ^24.0.0 || ^25.0.0 || ^26.0.0 || ^27.0.0 || ^28.0.0", + "jest-diff": "^23.0.0 || ^24.0.0 || ^25.0.0 || ^26.0.0 || ^27.0.0 || ^28.0.0 || ^29.0.0", "typescript": ">=3.0.0" }, "dependencies": { From 7197846bf96cddcc23906409cbc78864ef146af8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 22:57:30 -0400 Subject: [PATCH 063/115] chore(deps): update actions/checkout action to v3 (#9643) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8be7cea30d3..ba69875079d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -149,7 +149,7 @@ jobs: name: Build and Unit Test SWC Plugin runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: toolchain: 1.65.0 From bdb58f7805adcefcdfb4be1200ed2576e7fc159b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 22:57:39 -0400 Subject: [PATCH 064/115] fix(deps): update dependency next-sitemap to v4.2.2 (#9639) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- website/package.json | 2 +- yarn.lock | 25 ++++++++++++++++--------- 2 files changed, 17 insertions(+), 10 deletions(-) diff --git a/website/package.json b/website/package.json index acca643729d..43be5843525 100644 --- a/website/package.json +++ b/website/package.json @@ -76,7 +76,7 @@ "js-yaml": "4.1.0", "next": "13.4.2", "next-mdx-remote": "4.4.1", - "next-sitemap": "4.0.9", + "next-sitemap": "4.2.2", "react": "18.2.0", "react-dom": "18.2.0", "react-markdown": "8.0.7", diff --git a/yarn.lock b/yarn.lock index 9a8434a4b42..519407cd322 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1495,10 +1495,10 @@ resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== -"@corex/deepmerge@^4.0.37": - version "4.0.37" - resolved "https://registry.yarnpkg.com/@corex/deepmerge/-/deepmerge-4.0.37.tgz#873dcf71aee46596d7e385437b0d94770ef4c85f" - integrity sha512-PX90bEnrLdxd5e6rSFWsghExMuSw0Uov3fWJuuaoFuUQIS/446diu/4seExK5b+43L+SOBbd2uBGwYUkG1JfCw== +"@corex/deepmerge@^4.0.43": + version "4.0.43" + resolved "https://registry.yarnpkg.com/@corex/deepmerge/-/deepmerge-4.0.43.tgz#9bd42559ebb41cc5a7fb7cfeea5f231c20977dca" + integrity sha512-N8uEMrMPL0cu/bdboEWpQYb/0i2K5Qn8eCsxzOmxSggJbbQte7ljMRoXm917AbntqTGOzdTu+vP3KOOzoC70HQ== "@cspotcode/source-map-support@^0.8.0": version "0.8.1" @@ -3336,6 +3336,11 @@ resolved "https://registry.yarnpkg.com/@next/env/-/env-13.4.2.tgz#cf3ebfd523a33d8404c1216e02ac8d856a73170e" integrity sha512-Wqvo7lDeS0KGwtwg9TT9wKQ8raelmUxt+TQKWvG/xKfcmDXNOtCuaszcfCF8JzlBG1q0VhpI6CKaRMbVPMDWgw== +"@next/env@^13.4.3": + version "13.4.19" + resolved "https://registry.yarnpkg.com/@next/env/-/env-13.4.19.tgz#46905b4e6f62da825b040343cbc233144e9578d3" + integrity sha512-FsAT5x0jF2kkhNkKkukhsyYOrRqtSxrEhfliniIq0bwWbuXLgyt3Gv0Ml+b91XwjwArmuP7NxCiGd++GGKdNMQ== + "@next/eslint-plugin-next@13.4.2": version "13.4.2" resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.2.tgz#ce32730d6282af3151a07de6e865397dc6d3dbdf" @@ -11291,12 +11296,14 @@ next-seo@^6.0.0: resolved "https://registry.yarnpkg.com/next-seo/-/next-seo-6.0.0.tgz#4568dc61a44dbdf5fe5ff44156cd0ff8804889a2" integrity sha512-jKKt1p1z4otMA28AyeoAONixVjdYmgFCWwpEFtu+DwRHQDllVX3RjtyXbuCQiUZEfQ9rFPBpAI90vDeLZlMBdg== -next-sitemap@4.0.9: - version "4.0.9" - resolved "https://registry.yarnpkg.com/next-sitemap/-/next-sitemap-4.0.9.tgz#534d2e96440e1579c7053f56cd4a1fe912b63ea5" - integrity sha512-8pbcEe4vrmgGEc3beVbrSqd8mTQ9lCsGxP+AOlArrGmeLkKD4TbSR41R2unQHHSTkBG8cQ/7gjKkdLBlzwtu6g== +next-sitemap@4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/next-sitemap/-/next-sitemap-4.2.2.tgz#2336c4e2c1086842ed0f2d3f80e7fb8b8a4e0da1" + integrity sha512-cz5PyFibUNSJSXOY5mllq5TW0OH6SGG+8GJ9fR9pl1Thu4rvkDye+0N0790h+9kQihDStuVw2xfwC3qihDkflA== dependencies: - "@corex/deepmerge" "^4.0.37" + "@corex/deepmerge" "^4.0.43" + "@next/env" "^13.4.3" + fast-glob "^3.2.12" minimist "^1.2.8" next-themes@^0.2.1: From eaca0a61e2d6d9025422912e8e15e9a48cd38414 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 22:57:50 -0400 Subject: [PATCH 065/115] fix(deps): update dependency tslib to v2.6.2 (#9641) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> From 2183562543de4021e63b1b4beb1b33528fb950da Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 22:58:00 -0400 Subject: [PATCH 066/115] fix(deps): update dependency graphql-request to v5.2.0 (#9637) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- examples/typescript-graphql-request/package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/typescript-graphql-request/package.json b/examples/typescript-graphql-request/package.json index 82188df2224..fdce2071d48 100644 --- a/examples/typescript-graphql-request/package.json +++ b/examples/typescript-graphql-request/package.json @@ -11,7 +11,7 @@ "dependencies": { "graphql": "16.6.0", "graphql-yoga": "4.0.4", - "graphql-request": "5.1.0" + "graphql-request": "5.2.0" }, "scripts": { "codegen": "graphql-codegen --config codegen.ts", diff --git a/yarn.lock b/yarn.lock index 519407cd322..10e9896ffaf 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8382,10 +8382,10 @@ graphql-language-service-utils@^2.7.1: graphql-language-service-types "^1.8.7" nullthrows "^1.0.0" -graphql-request@5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/graphql-request/-/graphql-request-5.1.0.tgz#dbc8feee27d21b993cd5da2d3af67821827b240a" - integrity sha512-0OeRVYigVwIiXhNmqnPDt+JhMzsjinxHE7TVy3Lm6jUzav0guVcL0lfSbi6jVTRAxcbwgyr6yrZioSHxf9gHzw== +graphql-request@5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/graphql-request/-/graphql-request-5.2.0.tgz#a05fb54a517d91bb2d7aefa17ade4523dc5ebdca" + integrity sha512-pLhKIvnMyBERL0dtFI3medKqWOz/RhHdcgbZ+hMMIb32mEPa5MJSzS4AuXxfI4sRAu6JVVk5tvXuGfCWl9JYWQ== dependencies: "@graphql-typed-document-node/core" "^3.1.1" cross-fetch "^3.1.5" From 2019432e3847db7efed7b93f7a422c37164bbe9f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Aug 2023 02:58:48 +0000 Subject: [PATCH 067/115] chore(deps): update dependency @types/node to v18.17.10 (#9609) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> From 5a07a45bb2fadee70724bc2984612a345a0d3542 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 22:58:56 -0400 Subject: [PATCH 068/115] fix(deps): update dependency jiti to v1.19.3 (#9638) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 10e9896ffaf..75ee5249403 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9780,9 +9780,9 @@ jiti@1.17.1: integrity sha512-NZIITw8uZQFuzQimqjUxIrIcEdxYDFIe/0xYfIlVXTkiBjjyBEvgasj5bb0/cHtPRD/NziPbT312sFrkI5ALpw== jiti@^1.17.1, jiti@^1.18.2: - version "1.18.2" - resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.18.2.tgz#80c3ef3d486ebf2450d9335122b32d121f2a83cd" - integrity sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg== + version "1.19.3" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.19.3.tgz#ef554f76465b3c2b222dc077834a71f0d4a37569" + integrity sha512-5eEbBDQT/jF1xg6l36P+mWGGoH9Spuy0PCdSr2dtWRDGC6ph/w9ZCL4lmESW8f8F7MwT3XKescfP0wnZWAKL9w== joi@^17.7.0: version "17.7.1" From 40a29e91ea25ed5ad6acb15ccca1767dafbdd7c5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 22:59:07 -0400 Subject: [PATCH 069/115] fix(deps): update dependency tslib to v2.6.2 (#9640) * fix(deps): update dependency tslib to v2.6.2 * chore(dependencies): updated changesets for modified dependencies --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] --- .../@graphql-codegen_add-9640-dependencies.md | 5 +++++ ...-codegen_client-preset-9640-dependencies.md | 5 +++++ .../@graphql-codegen_core-9640-dependencies.md | 5 +++++ ...degen_fragment-matcher-9640-dependencies.md | 5 +++++ ...gen_gql-tag-operations-9640-dependencies.md | 5 +++++ ...graphql-modules-preset-9640-dependencies.md | 5 +++++ ...-codegen_introspection-9640-dependencies.md | 5 +++++ ...codegen_plugin-helpers-9640-dependencies.md | 5 +++++ ...hql-codegen_schema-ast-9640-dependencies.md | 5 +++++ ...raphql-codegen_testing-9640-dependencies.md | 5 +++++ ...en_typed-document-node-9640-dependencies.md | 5 +++++ ...hql-codegen_typescript-9640-dependencies.md | 5 +++++ ...escript-document-nodes-9640-dependencies.md | 5 +++++ ..._typescript-operations-9640-dependencies.md | 5 +++++ ...n_typescript-resolvers-9640-dependencies.md | 5 +++++ ..._visitor-plugin-common-9640-dependencies.md | 5 +++++ package.json | 2 +- packages/graphql-codegen-core/package.json | 2 +- packages/plugins/other/add/package.json | 2 +- .../other/fragment-matcher/package.json | 2 +- .../plugins/other/introspection/package.json | 2 +- packages/plugins/other/schema-ast/package.json | 2 +- .../other/visitor-plugin-common/package.json | 2 +- .../typescript/document-nodes/package.json | 2 +- .../typescript/gql-tag-operations/package.json | 2 +- .../plugins/typescript/operations/package.json | 2 +- .../plugins/typescript/resolvers/package.json | 2 +- .../typed-document-node/package.json | 2 +- .../plugins/typescript/typescript/package.json | 2 +- packages/presets/client/package.json | 2 +- packages/presets/graphql-modules/package.json | 2 +- .../utils/graphql-codegen-testing/package.json | 2 +- packages/utils/plugins-helpers/package.json | 2 +- yarn.lock | 18 +++++++++--------- 34 files changed, 106 insertions(+), 26 deletions(-) create mode 100644 .changeset/@graphql-codegen_add-9640-dependencies.md create mode 100644 .changeset/@graphql-codegen_client-preset-9640-dependencies.md create mode 100644 .changeset/@graphql-codegen_core-9640-dependencies.md create mode 100644 .changeset/@graphql-codegen_fragment-matcher-9640-dependencies.md create mode 100644 .changeset/@graphql-codegen_gql-tag-operations-9640-dependencies.md create mode 100644 .changeset/@graphql-codegen_graphql-modules-preset-9640-dependencies.md create mode 100644 .changeset/@graphql-codegen_introspection-9640-dependencies.md create mode 100644 .changeset/@graphql-codegen_plugin-helpers-9640-dependencies.md create mode 100644 .changeset/@graphql-codegen_schema-ast-9640-dependencies.md create mode 100644 .changeset/@graphql-codegen_testing-9640-dependencies.md create mode 100644 .changeset/@graphql-codegen_typed-document-node-9640-dependencies.md create mode 100644 .changeset/@graphql-codegen_typescript-9640-dependencies.md create mode 100644 .changeset/@graphql-codegen_typescript-document-nodes-9640-dependencies.md create mode 100644 .changeset/@graphql-codegen_typescript-operations-9640-dependencies.md create mode 100644 .changeset/@graphql-codegen_typescript-resolvers-9640-dependencies.md create mode 100644 .changeset/@graphql-codegen_visitor-plugin-common-9640-dependencies.md diff --git a/.changeset/@graphql-codegen_add-9640-dependencies.md b/.changeset/@graphql-codegen_add-9640-dependencies.md new file mode 100644 index 00000000000..da785e7d746 --- /dev/null +++ b/.changeset/@graphql-codegen_add-9640-dependencies.md @@ -0,0 +1,5 @@ +--- +"@graphql-codegen/add": patch +--- +dependencies updates: + - Updated dependency [`tslib@~2.6.0` ↗︎](https://www.npmjs.com/package/tslib/v/2.6.0) (from `~2.5.0`, in `dependencies`) diff --git a/.changeset/@graphql-codegen_client-preset-9640-dependencies.md b/.changeset/@graphql-codegen_client-preset-9640-dependencies.md new file mode 100644 index 00000000000..09eff864dfa --- /dev/null +++ b/.changeset/@graphql-codegen_client-preset-9640-dependencies.md @@ -0,0 +1,5 @@ +--- +"@graphql-codegen/client-preset": patch +--- +dependencies updates: + - Updated dependency [`tslib@~2.6.0` ↗︎](https://www.npmjs.com/package/tslib/v/2.6.0) (from `~2.5.0`, in `dependencies`) diff --git a/.changeset/@graphql-codegen_core-9640-dependencies.md b/.changeset/@graphql-codegen_core-9640-dependencies.md new file mode 100644 index 00000000000..867f4a2a5d3 --- /dev/null +++ b/.changeset/@graphql-codegen_core-9640-dependencies.md @@ -0,0 +1,5 @@ +--- +"@graphql-codegen/core": patch +--- +dependencies updates: + - Updated dependency [`tslib@~2.6.0` ↗︎](https://www.npmjs.com/package/tslib/v/2.6.0) (from `~2.5.0`, in `dependencies`) diff --git a/.changeset/@graphql-codegen_fragment-matcher-9640-dependencies.md b/.changeset/@graphql-codegen_fragment-matcher-9640-dependencies.md new file mode 100644 index 00000000000..12c62c5530a --- /dev/null +++ b/.changeset/@graphql-codegen_fragment-matcher-9640-dependencies.md @@ -0,0 +1,5 @@ +--- +"@graphql-codegen/fragment-matcher": patch +--- +dependencies updates: + - Updated dependency [`tslib@~2.6.0` ↗︎](https://www.npmjs.com/package/tslib/v/2.6.0) (from `~2.5.0`, in `dependencies`) diff --git a/.changeset/@graphql-codegen_gql-tag-operations-9640-dependencies.md b/.changeset/@graphql-codegen_gql-tag-operations-9640-dependencies.md new file mode 100644 index 00000000000..c400e54198f --- /dev/null +++ b/.changeset/@graphql-codegen_gql-tag-operations-9640-dependencies.md @@ -0,0 +1,5 @@ +--- +"@graphql-codegen/gql-tag-operations": patch +--- +dependencies updates: + - Updated dependency [`tslib@~2.6.0` ↗︎](https://www.npmjs.com/package/tslib/v/2.6.0) (from `~2.5.0`, in `dependencies`) diff --git a/.changeset/@graphql-codegen_graphql-modules-preset-9640-dependencies.md b/.changeset/@graphql-codegen_graphql-modules-preset-9640-dependencies.md new file mode 100644 index 00000000000..763e5806f75 --- /dev/null +++ b/.changeset/@graphql-codegen_graphql-modules-preset-9640-dependencies.md @@ -0,0 +1,5 @@ +--- +"@graphql-codegen/graphql-modules-preset": patch +--- +dependencies updates: + - Updated dependency [`tslib@~2.6.0` ↗︎](https://www.npmjs.com/package/tslib/v/2.6.0) (from `~2.5.0`, in `dependencies`) diff --git a/.changeset/@graphql-codegen_introspection-9640-dependencies.md b/.changeset/@graphql-codegen_introspection-9640-dependencies.md new file mode 100644 index 00000000000..e68abd9bccc --- /dev/null +++ b/.changeset/@graphql-codegen_introspection-9640-dependencies.md @@ -0,0 +1,5 @@ +--- +"@graphql-codegen/introspection": patch +--- +dependencies updates: + - Updated dependency [`tslib@~2.6.0` ↗︎](https://www.npmjs.com/package/tslib/v/2.6.0) (from `~2.5.0`, in `dependencies`) diff --git a/.changeset/@graphql-codegen_plugin-helpers-9640-dependencies.md b/.changeset/@graphql-codegen_plugin-helpers-9640-dependencies.md new file mode 100644 index 00000000000..df8a2b3840a --- /dev/null +++ b/.changeset/@graphql-codegen_plugin-helpers-9640-dependencies.md @@ -0,0 +1,5 @@ +--- +"@graphql-codegen/plugin-helpers": patch +--- +dependencies updates: + - Updated dependency [`tslib@~2.6.0` ↗︎](https://www.npmjs.com/package/tslib/v/2.6.0) (from `~2.5.0`, in `dependencies`) diff --git a/.changeset/@graphql-codegen_schema-ast-9640-dependencies.md b/.changeset/@graphql-codegen_schema-ast-9640-dependencies.md new file mode 100644 index 00000000000..c7f80c6f9c7 --- /dev/null +++ b/.changeset/@graphql-codegen_schema-ast-9640-dependencies.md @@ -0,0 +1,5 @@ +--- +"@graphql-codegen/schema-ast": patch +--- +dependencies updates: + - Updated dependency [`tslib@~2.6.0` ↗︎](https://www.npmjs.com/package/tslib/v/2.6.0) (from `~2.5.0`, in `dependencies`) diff --git a/.changeset/@graphql-codegen_testing-9640-dependencies.md b/.changeset/@graphql-codegen_testing-9640-dependencies.md new file mode 100644 index 00000000000..7c9156d2fdc --- /dev/null +++ b/.changeset/@graphql-codegen_testing-9640-dependencies.md @@ -0,0 +1,5 @@ +--- +"@graphql-codegen/testing": patch +--- +dependencies updates: + - Updated dependency [`tslib@~2.6.0` ↗︎](https://www.npmjs.com/package/tslib/v/2.6.0) (from `~2.5.0`, in `dependencies`) diff --git a/.changeset/@graphql-codegen_typed-document-node-9640-dependencies.md b/.changeset/@graphql-codegen_typed-document-node-9640-dependencies.md new file mode 100644 index 00000000000..be425454342 --- /dev/null +++ b/.changeset/@graphql-codegen_typed-document-node-9640-dependencies.md @@ -0,0 +1,5 @@ +--- +"@graphql-codegen/typed-document-node": patch +--- +dependencies updates: + - Updated dependency [`tslib@~2.6.0` ↗︎](https://www.npmjs.com/package/tslib/v/2.6.0) (from `~2.5.0`, in `dependencies`) diff --git a/.changeset/@graphql-codegen_typescript-9640-dependencies.md b/.changeset/@graphql-codegen_typescript-9640-dependencies.md new file mode 100644 index 00000000000..e332a7da3da --- /dev/null +++ b/.changeset/@graphql-codegen_typescript-9640-dependencies.md @@ -0,0 +1,5 @@ +--- +"@graphql-codegen/typescript": patch +--- +dependencies updates: + - Updated dependency [`tslib@~2.6.0` ↗︎](https://www.npmjs.com/package/tslib/v/2.6.0) (from `~2.5.0`, in `dependencies`) diff --git a/.changeset/@graphql-codegen_typescript-document-nodes-9640-dependencies.md b/.changeset/@graphql-codegen_typescript-document-nodes-9640-dependencies.md new file mode 100644 index 00000000000..69fed7f78f9 --- /dev/null +++ b/.changeset/@graphql-codegen_typescript-document-nodes-9640-dependencies.md @@ -0,0 +1,5 @@ +--- +"@graphql-codegen/typescript-document-nodes": patch +--- +dependencies updates: + - Updated dependency [`tslib@~2.6.0` ↗︎](https://www.npmjs.com/package/tslib/v/2.6.0) (from `~2.5.0`, in `dependencies`) diff --git a/.changeset/@graphql-codegen_typescript-operations-9640-dependencies.md b/.changeset/@graphql-codegen_typescript-operations-9640-dependencies.md new file mode 100644 index 00000000000..afd383096e4 --- /dev/null +++ b/.changeset/@graphql-codegen_typescript-operations-9640-dependencies.md @@ -0,0 +1,5 @@ +--- +"@graphql-codegen/typescript-operations": patch +--- +dependencies updates: + - Updated dependency [`tslib@~2.6.0` ↗︎](https://www.npmjs.com/package/tslib/v/2.6.0) (from `~2.5.0`, in `dependencies`) diff --git a/.changeset/@graphql-codegen_typescript-resolvers-9640-dependencies.md b/.changeset/@graphql-codegen_typescript-resolvers-9640-dependencies.md new file mode 100644 index 00000000000..83602c09d2c --- /dev/null +++ b/.changeset/@graphql-codegen_typescript-resolvers-9640-dependencies.md @@ -0,0 +1,5 @@ +--- +"@graphql-codegen/typescript-resolvers": patch +--- +dependencies updates: + - Updated dependency [`tslib@~2.6.0` ↗︎](https://www.npmjs.com/package/tslib/v/2.6.0) (from `~2.5.0`, in `dependencies`) diff --git a/.changeset/@graphql-codegen_visitor-plugin-common-9640-dependencies.md b/.changeset/@graphql-codegen_visitor-plugin-common-9640-dependencies.md new file mode 100644 index 00000000000..d1b3192961b --- /dev/null +++ b/.changeset/@graphql-codegen_visitor-plugin-common-9640-dependencies.md @@ -0,0 +1,5 @@ +--- +"@graphql-codegen/visitor-plugin-common": patch +--- +dependencies updates: + - Updated dependency [`tslib@~2.6.0` ↗︎](https://www.npmjs.com/package/tslib/v/2.6.0) (from `~2.5.0`, in `dependencies`) diff --git a/package.json b/package.json index 60fdf400289..9100f26aeb8 100644 --- a/package.json +++ b/package.json @@ -66,7 +66,7 @@ "rimraf": "4.4.1", "ts-jest": "28.0.8", "ts-node": "10.9.1", - "tslib": "2.5.2", + "tslib": "2.6.2", "tsx": "3.12.7", "typescript": "5.0.4" }, diff --git a/packages/graphql-codegen-core/package.json b/packages/graphql-codegen-core/package.json index a70d46e755b..c7e61011e2a 100644 --- a/packages/graphql-codegen-core/package.json +++ b/packages/graphql-codegen-core/package.json @@ -40,7 +40,7 @@ "@graphql-codegen/plugin-helpers": "^5.0.0", "@graphql-tools/schema": "^10.0.0", "@graphql-tools/utils": "^10.0.0", - "tslib": "~2.5.0" + "tslib": "~2.6.0" }, "main": "dist/cjs/index.js", "module": "dist/esm/index.js", diff --git a/packages/plugins/other/add/package.json b/packages/plugins/other/add/package.json index 5fea1587768..0a8c386169a 100644 --- a/packages/plugins/other/add/package.json +++ b/packages/plugins/other/add/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "@graphql-codegen/plugin-helpers": "^5.0.0", - "tslib": "~2.5.0" + "tslib": "~2.6.0" }, "peerDependencies": { "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" diff --git a/packages/plugins/other/fragment-matcher/package.json b/packages/plugins/other/fragment-matcher/package.json index 86903960018..ab31e955fb9 100644 --- a/packages/plugins/other/fragment-matcher/package.json +++ b/packages/plugins/other/fragment-matcher/package.json @@ -14,7 +14,7 @@ }, "dependencies": { "@graphql-codegen/plugin-helpers": "^5.0.0", - "tslib": "~2.5.0" + "tslib": "~2.6.0" }, "peerDependencies": { "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" diff --git a/packages/plugins/other/introspection/package.json b/packages/plugins/other/introspection/package.json index 092d02e7f20..ee1e2b21416 100644 --- a/packages/plugins/other/introspection/package.json +++ b/packages/plugins/other/introspection/package.json @@ -15,7 +15,7 @@ "dependencies": { "@graphql-codegen/plugin-helpers": "^5.0.0", "@graphql-codegen/visitor-plugin-common": "^4.0.0", - "tslib": "~2.5.0" + "tslib": "~2.6.0" }, "peerDependencies": { "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" diff --git a/packages/plugins/other/schema-ast/package.json b/packages/plugins/other/schema-ast/package.json index 8b7b595ee07..64704c31f3d 100644 --- a/packages/plugins/other/schema-ast/package.json +++ b/packages/plugins/other/schema-ast/package.json @@ -15,7 +15,7 @@ "dependencies": { "@graphql-codegen/plugin-helpers": "^5.0.0", "@graphql-tools/utils": "^10.0.0", - "tslib": "~2.5.0" + "tslib": "~2.6.0" }, "peerDependencies": { "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" diff --git a/packages/plugins/other/visitor-plugin-common/package.json b/packages/plugins/other/visitor-plugin-common/package.json index 502b497420a..67e8f7aca67 100644 --- a/packages/plugins/other/visitor-plugin-common/package.json +++ b/packages/plugins/other/visitor-plugin-common/package.json @@ -21,7 +21,7 @@ "graphql-tag": "^2.11.0", "parse-filepath": "^1.0.2", "change-case-all": "1.0.15", - "tslib": "~2.5.0" + "tslib": "~2.6.0" }, "peerDependencies": { "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" diff --git a/packages/plugins/typescript/document-nodes/package.json b/packages/plugins/typescript/document-nodes/package.json index b9b42d75d85..90fad9dfa69 100644 --- a/packages/plugins/typescript/document-nodes/package.json +++ b/packages/plugins/typescript/document-nodes/package.json @@ -16,7 +16,7 @@ "@graphql-codegen/plugin-helpers": "^5.0.0", "@graphql-codegen/visitor-plugin-common": "4.0.1", "auto-bind": "~4.0.0", - "tslib": "~2.5.0" + "tslib": "~2.6.0" }, "peerDependencies": { "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" diff --git a/packages/plugins/typescript/gql-tag-operations/package.json b/packages/plugins/typescript/gql-tag-operations/package.json index f85a2750c95..369c9ad33a0 100644 --- a/packages/plugins/typescript/gql-tag-operations/package.json +++ b/packages/plugins/typescript/gql-tag-operations/package.json @@ -20,7 +20,7 @@ "@graphql-codegen/plugin-helpers": "^5.0.0", "@graphql-codegen/visitor-plugin-common": "4.0.1", "auto-bind": "~4.0.0", - "tslib": "~2.5.0" + "tslib": "~2.6.0" }, "main": "dist/cjs/index.js", "module": "dist/esm/index.js", diff --git a/packages/plugins/typescript/operations/package.json b/packages/plugins/typescript/operations/package.json index 82c71b224bf..761a6d64489 100644 --- a/packages/plugins/typescript/operations/package.json +++ b/packages/plugins/typescript/operations/package.json @@ -17,7 +17,7 @@ "@graphql-codegen/typescript": "^4.0.1", "@graphql-codegen/visitor-plugin-common": "4.0.1", "auto-bind": "~4.0.0", - "tslib": "~2.5.0" + "tslib": "~2.6.0" }, "peerDependencies": { "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" diff --git a/packages/plugins/typescript/resolvers/package.json b/packages/plugins/typescript/resolvers/package.json index 10833d3192f..9f217408b35 100644 --- a/packages/plugins/typescript/resolvers/package.json +++ b/packages/plugins/typescript/resolvers/package.json @@ -18,7 +18,7 @@ "@graphql-codegen/visitor-plugin-common": "4.0.1", "@graphql-tools/utils": "^10.0.0", "auto-bind": "~4.0.0", - "tslib": "~2.5.0" + "tslib": "~2.6.0" }, "peerDependencies": { "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" diff --git a/packages/plugins/typescript/typed-document-node/package.json b/packages/plugins/typescript/typed-document-node/package.json index 95664c6e3bd..4ec8f87ad05 100644 --- a/packages/plugins/typescript/typed-document-node/package.json +++ b/packages/plugins/typescript/typed-document-node/package.json @@ -20,7 +20,7 @@ "@graphql-codegen/plugin-helpers": "^5.0.0", "@graphql-codegen/visitor-plugin-common": "4.0.1", "auto-bind": "~4.0.0", - "tslib": "~2.5.0" + "tslib": "~2.6.0" }, "main": "dist/cjs/index.js", "module": "dist/esm/index.js", diff --git a/packages/plugins/typescript/typescript/package.json b/packages/plugins/typescript/typescript/package.json index 8f8614bd8df..d16e3d2e39d 100644 --- a/packages/plugins/typescript/typescript/package.json +++ b/packages/plugins/typescript/typescript/package.json @@ -17,7 +17,7 @@ "@graphql-codegen/schema-ast": "^4.0.0", "@graphql-codegen/visitor-plugin-common": "4.0.1", "auto-bind": "~4.0.0", - "tslib": "~2.5.0" + "tslib": "~2.6.0" }, "peerDependencies": { "graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" diff --git a/packages/presets/client/package.json b/packages/presets/client/package.json index 6d1c78f028a..f51374353c3 100644 --- a/packages/presets/client/package.json +++ b/packages/presets/client/package.json @@ -29,7 +29,7 @@ "@graphql-typed-document-node/core": "3.2.0", "@graphql-tools/documents": "^1.0.0", "@graphql-tools/utils": "^10.0.0", - "tslib": "~2.5.0" + "tslib": "~2.6.0" }, "peerDependencies": { "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" diff --git a/packages/presets/graphql-modules/package.json b/packages/presets/graphql-modules/package.json index 58c427ed19c..2768e44ce0e 100644 --- a/packages/presets/graphql-modules/package.json +++ b/packages/presets/graphql-modules/package.json @@ -20,7 +20,7 @@ "@graphql-tools/utils": "^10.0.0", "parse-filepath": "^1.0.2", "change-case-all": "1.0.15", - "tslib": "~2.5.0" + "tslib": "~2.6.0" }, "peerDependencies": { "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" diff --git a/packages/utils/graphql-codegen-testing/package.json b/packages/utils/graphql-codegen-testing/package.json index 572191fabb1..16f7ff2b966 100644 --- a/packages/utils/graphql-codegen-testing/package.json +++ b/packages/utils/graphql-codegen-testing/package.json @@ -45,7 +45,7 @@ "lz-string": "^1.4.4", "graphql-helix": "1.13.0", "nock": "13.3.1", - "tslib": "~2.5.0" + "tslib": "~2.6.0" }, "devDependencies": { "@types/lz-string": "1.3.34" diff --git a/packages/utils/plugins-helpers/package.json b/packages/utils/plugins-helpers/package.json index 2f08bfa3c32..47956b8bc2d 100644 --- a/packages/utils/plugins-helpers/package.json +++ b/packages/utils/plugins-helpers/package.json @@ -21,7 +21,7 @@ "common-tags": "1.8.2", "import-from": "4.0.0", "lodash": "~4.17.0", - "tslib": "~2.5.0" + "tslib": "~2.6.0" }, "main": "dist/cjs/index.js", "module": "dist/esm/index.js", diff --git a/yarn.lock b/yarn.lock index 75ee5249403..fe5f6ca160f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -14137,26 +14137,26 @@ tsconfig-paths@^3.14.2: minimist "^1.2.6" strip-bom "^3.0.0" -tslib@2.5.2, tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.4.1, tslib@^2.5.0, tslib@^2.5.2, tslib@~2.5.0: - version "2.5.2" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.2.tgz#1b6f07185c881557b0ffa84b111a0106989e8338" - integrity sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA== +tslib@2.6.2, tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.4.1, tslib@^2.5.0, tslib@^2.5.2, tslib@^2.6.1, tslib@~2.6.0: + version "2.6.2" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" + integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== tslib@^1.8.1: version "1.14.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== -tslib@^2.6.1: - version "2.6.2" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" - integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== - tslib@~2.4.0: version "2.4.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e" integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA== +tslib@~2.5.0: + version "2.5.2" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.2.tgz#1b6f07185c881557b0ffa84b111a0106989e8338" + integrity sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA== + tsup@6.7.0, tsup@^6.5.0: version "6.7.0" resolved "https://registry.yarnpkg.com/tsup/-/tsup-6.7.0.tgz#416f350f32a07b6ae86792ad7e52b0cafc566d64" From c86db2760b38277a5dfafb3db9b9163d96e7c2f1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Aug 2023 02:59:16 +0000 Subject: [PATCH 070/115] chore(deps): update dependency @vitejs/plugin-vue to v4.3.3 (#9610) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- yarn.lock | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/yarn.lock b/yarn.lock index fe5f6ca160f..b9773ef184c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4531,9 +4531,9 @@ react-refresh "^0.14.0" "@vitejs/plugin-vue@^4.0.0": - version "4.2.3" - resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-4.2.3.tgz#ee0b6dfcc62fe65364e6395bf38fa2ba10bb44b6" - integrity sha512-R6JDUfiZbJA9cMiguQ7jxALsgiprjBeHL5ikpXfJCH62pPHtI+JdJ5xWj6Ev73yXSlYl86+blXn1kZHQ7uElxw== + version "4.3.3" + resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-4.3.3.tgz#3b2337f64495f95cfea5b1497d2d3f4a0b3382b2" + integrity sha512-ssxyhIAZqB0TrpUg6R0cBpCuMk9jTIlO1GNSKKQD6S8VjnXi6JXKfUXjSsxey9IwQiaRGsO1WnW9Rkl1L6AJVw== "@volar/language-core@1.10.0", "@volar/language-core@~1.10.0": version "1.10.0" @@ -4542,13 +4542,20 @@ dependencies: "@volar/source-map" "1.10.0" -"@volar/source-map@1.10.0", "@volar/source-map@~1.10.0": +"@volar/source-map@1.10.0": version "1.10.0" resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-1.10.0.tgz#2413eb190ce69fc1a382f58524a3f82306668024" integrity sha512-/ibWdcOzDGiq/GM1JU2eX8fH1bvAhl66hfe8yEgLEzg9txgr6qb5sQ/DEz5PcDL75tF5H5sCRRwn8Eu8ezi9mw== dependencies: muggle-string "^0.3.1" +"@volar/source-map@~1.10.0": + version "1.10.1" + resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-1.10.1.tgz#b806845782cc615f2beba94624ff34a700f302f5" + integrity sha512-3/S6KQbqa7pGC8CxPrg69qHLpOvkiPHGJtWPkI/1AXCsktkJ6gIk/5z4hyuMp8Anvs6eS/Kvp/GZa3ut3votKA== + dependencies: + muggle-string "^0.3.1" + "@volar/typescript@~1.10.0": version "1.10.0" resolved "https://registry.yarnpkg.com/@volar/typescript/-/typescript-1.10.0.tgz#3b16cf7c4c1802eac023ba4e57fe52bdb6d3016f" From a144157c397a8f3e823ba7d6dd954c1dd6e5b16d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 23:00:44 -0400 Subject: [PATCH 071/115] chore(deps): update dependency babel-jest to v29 (#9644) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .../package.json | 2 +- examples/persisted-documents/package.json | 2 +- .../typescript-graphql-request/package.json | 2 +- examples/yoga-tests/package.json | 2 +- package.json | 4 +- yarn.lock | 146 +++++++++++++++--- 6 files changed, 127 insertions(+), 31 deletions(-) diff --git a/examples/persisted-documents-string-mode/package.json b/examples/persisted-documents-string-mode/package.json index c127264bd30..e690c11c32d 100644 --- a/examples/persisted-documents-string-mode/package.json +++ b/examples/persisted-documents-string-mode/package.json @@ -9,7 +9,7 @@ "devDependencies": { "@graphql-typed-document-node/core": "3.2.0", "jest": "28.1.3", - "babel-jest": "28.1.3", + "babel-jest": "29.6.4", "@graphql-codegen/cli": "5.0.0", "@graphql-codegen/client-preset": "4.1.0", "@babel/core": "7.22.11", diff --git a/examples/persisted-documents/package.json b/examples/persisted-documents/package.json index ebded7cbf50..e936e3775fc 100644 --- a/examples/persisted-documents/package.json +++ b/examples/persisted-documents/package.json @@ -9,7 +9,7 @@ "devDependencies": { "@graphql-typed-document-node/core": "3.2.0", "jest": "28.1.3", - "babel-jest": "28.1.3", + "babel-jest": "29.6.4", "@graphql-codegen/cli": "5.0.0", "@graphql-codegen/client-preset": "4.1.0", "@babel/core": "7.22.11", diff --git a/examples/typescript-graphql-request/package.json b/examples/typescript-graphql-request/package.json index fdce2071d48..212a1221b85 100644 --- a/examples/typescript-graphql-request/package.json +++ b/examples/typescript-graphql-request/package.json @@ -5,7 +5,7 @@ "devDependencies": { "@graphql-codegen/cli": "5.0.0", "@graphql-codegen/client-preset": "4.1.0", - "babel-jest": "28.1.3", + "babel-jest": "29.6.4", "jest": "28.1.3" }, "dependencies": { diff --git a/examples/yoga-tests/package.json b/examples/yoga-tests/package.json index 8fac434874f..1513c69e8fd 100644 --- a/examples/yoga-tests/package.json +++ b/examples/yoga-tests/package.json @@ -8,7 +8,7 @@ "devDependencies": { "@graphql-typed-document-node/core": "3.2.0", "jest": "28.1.3", - "babel-jest": "28.1.3", + "babel-jest": "29.6.4", "@graphql-codegen/cli": "5.0.0", "@graphql-codegen/client-preset": "4.1.0", "@babel/core": "7.22.11", diff --git a/package.json b/package.json index 9100f26aeb8..894bab81de5 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "@theguild/eslint-config": "0.11.0", "@theguild/prettier-config": "0.1.1", "@types/jest": "28.1.8", - "babel-jest": "28.1.3", + "babel-jest": "29.6.4", "bob-the-bundler": "6.0.0", "eslint": "8.40.0", "graphql": "16.6.0", @@ -83,7 +83,7 @@ }, "resolutions": { "prettier": "2.8.8", - "babel-jest": "28.1.3", + "babel-jest": "29.6.4", "jest-runner": "28.1.3", "graphql": "16.6.0", "graphql-language-service-interface": "2.10.2", diff --git a/yarn.lock b/yarn.lock index b9773ef184c..1cfe344c29f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3056,6 +3056,13 @@ dependencies: "@sinclair/typebox" "^0.24.1" +"@jest/schemas@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03" + integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== + dependencies: + "@sinclair/typebox" "^0.27.8" + "@jest/source-map@^28.1.2": version "28.1.2" resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-28.1.2.tgz#7fe832b172b497d6663cdff6c13b0a920e139e24" @@ -3106,6 +3113,27 @@ slash "^3.0.0" write-file-atomic "^4.0.1" +"@jest/transform@^29.6.4": + version "29.6.4" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.6.4.tgz#a6bc799ef597c5d85b2e65a11fd96b6b239bab5a" + integrity sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA== + dependencies: + "@babel/core" "^7.11.6" + "@jest/types" "^29.6.3" + "@jridgewell/trace-mapping" "^0.3.18" + babel-plugin-istanbul "^6.1.1" + chalk "^4.0.0" + convert-source-map "^2.0.0" + fast-json-stable-stringify "^2.1.0" + graceful-fs "^4.2.9" + jest-haste-map "^29.6.4" + jest-regex-util "^29.6.3" + jest-util "^29.6.3" + micromatch "^4.0.4" + pirates "^4.0.4" + slash "^3.0.0" + write-file-atomic "^4.0.2" + "@jest/types@^28.1.3": version "28.1.3" resolved "https://registry.yarnpkg.com/@jest/types/-/types-28.1.3.tgz#b05de80996ff12512bc5ceb1d208285a7d11748b" @@ -3118,6 +3146,18 @@ "@types/yargs" "^17.0.8" chalk "^4.0.0" +"@jest/types@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59" + integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== + dependencies: + "@jest/schemas" "^29.6.3" + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^17.0.8" + chalk "^4.0.0" + "@jridgewell/gen-mapping@^0.1.0": version "0.1.1" resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" @@ -3135,7 +3175,7 @@ "@jridgewell/sourcemap-codec" "^1.4.10" "@jridgewell/trace-mapping" "^0.3.9" -"@jridgewell/resolve-uri@3.1.0", "@jridgewell/resolve-uri@^3.0.3": +"@jridgewell/resolve-uri@^3.0.3", "@jridgewell/resolve-uri@^3.1.0": version "3.1.0" resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== @@ -3145,7 +3185,7 @@ resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== -"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.13": +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.13", "@jridgewell/sourcemap-codec@^1.4.14": version "1.4.14" resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== @@ -3158,13 +3198,13 @@ "@jridgewell/resolve-uri" "^3.0.3" "@jridgewell/sourcemap-codec" "^1.4.10" -"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.13", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.17" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985" - integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g== +"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.13", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.19" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz#f8a3249862f91be48d3127c3cfe992f79b4b8811" + integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw== dependencies: - "@jridgewell/resolve-uri" "3.1.0" - "@jridgewell/sourcemap-codec" "1.4.14" + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" "@lit-labs/ssr-dom-shim@^1.0.0", "@lit-labs/ssr-dom-shim@^1.1.0": version "1.1.1" @@ -3767,6 +3807,11 @@ resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.24.51.tgz#645f33fe4e02defe26f2f5c0410e1c094eac7f5f" integrity sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA== +"@sinclair/typebox@^0.27.8": + version "0.27.8" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" + integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== + "@sinonjs/commons@^1.7.0": version "1.8.6" resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.6.tgz#80c516a4dc264c2a69115e7578d62581ff455ed9" @@ -5177,15 +5222,15 @@ axobject-query@^3.1.1: dependencies: deep-equal "^2.0.5" -babel-jest@28.1.3, babel-jest@^28.1.3: - version "28.1.3" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-28.1.3.tgz#c1187258197c099072156a0a121c11ee1e3917d5" - integrity sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q== +babel-jest@29.6.4, babel-jest@^28.1.3: + version "29.6.4" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.6.4.tgz#98dbc45d1c93319c82a8ab4a478b670655dd2585" + integrity sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw== dependencies: - "@jest/transform" "^28.1.3" + "@jest/transform" "^29.6.4" "@types/babel__core" "^7.1.14" babel-plugin-istanbul "^6.1.1" - babel-preset-jest "^28.1.3" + babel-preset-jest "^29.6.3" chalk "^4.0.0" graceful-fs "^4.2.9" slash "^3.0.0" @@ -5201,10 +5246,10 @@ babel-plugin-istanbul@^6.1.1: istanbul-lib-instrument "^5.0.4" test-exclude "^6.0.0" -babel-plugin-jest-hoist@^28.1.3: - version "28.1.3" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-28.1.3.tgz#1952c4d0ea50f2d6d794353762278d1d8cca3fbe" - integrity sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q== +babel-plugin-jest-hoist@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz#aadbe943464182a8922c3c927c3067ff40d24626" + integrity sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg== dependencies: "@babel/template" "^7.3.3" "@babel/types" "^7.3.3" @@ -5300,12 +5345,12 @@ babel-preset-fbjs@^3.4.0: "@babel/plugin-transform-template-literals" "^7.0.0" babel-plugin-syntax-trailing-function-commas "^7.0.0-beta.0" -babel-preset-jest@^28.1.3: - version "28.1.3" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-28.1.3.tgz#5dfc20b99abed5db994406c2b9ab94c73aaa419d" - integrity sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A== +babel-preset-jest@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz#fa05fa510e7d493896d7b0dd2033601c840f171c" + integrity sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA== dependencies: - babel-plugin-jest-hoist "^28.1.3" + babel-plugin-jest-hoist "^29.6.3" babel-preset-current-node-syntax "^1.0.0" bail@^2.0.0: @@ -6051,6 +6096,11 @@ convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.6.0, resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== +convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + core-js-compat@^3.31.0: version "3.31.1" resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.31.1.tgz#5084ad1a46858df50ff89ace152441a63ba7aae0" @@ -7742,7 +7792,7 @@ fast-glob@^3.2.11, fast-glob@^3.2.12, fast-glob@^3.2.9, fast-glob@^3.3.1: merge2 "^1.3.0" micromatch "^4.0.4" -fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: +fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== @@ -9546,6 +9596,25 @@ jest-haste-map@^28.1.3: optionalDependencies: fsevents "^2.3.2" +jest-haste-map@^29.6.4: + version "29.6.4" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.6.4.tgz#97143ce833829157ea7025204b08f9ace609b96a" + integrity sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog== + dependencies: + "@jest/types" "^29.6.3" + "@types/graceful-fs" "^4.1.3" + "@types/node" "*" + anymatch "^3.0.3" + fb-watchman "^2.0.0" + graceful-fs "^4.2.9" + jest-regex-util "^29.6.3" + jest-util "^29.6.3" + jest-worker "^29.6.4" + micromatch "^4.0.4" + walker "^1.0.8" + optionalDependencies: + fsevents "^2.3.2" + jest-junit@16.0.0: version "16.0.0" resolved "https://registry.yarnpkg.com/jest-junit/-/jest-junit-16.0.0.tgz#d838e8c561cf9fdd7eb54f63020777eee4136785" @@ -9617,6 +9686,11 @@ jest-regex-util@^28.0.2: resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-28.0.2.tgz#afdc377a3b25fb6e80825adcf76c854e5bf47ead" integrity sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw== +jest-regex-util@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.6.3.tgz#4a556d9c776af68e1c5f48194f4d0327d24e8a52" + integrity sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg== + jest-resolve-dependencies@^28.1.3: version "28.1.3" resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.3.tgz#8c65d7583460df7275c6ea2791901fa975c1fe66" @@ -9736,6 +9810,18 @@ jest-util@^28.0.0, jest-util@^28.1.3: graceful-fs "^4.2.9" picomatch "^2.2.3" +jest-util@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.6.3.tgz#e15c3eac8716440d1ed076f09bc63ace1aebca63" + integrity sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA== + dependencies: + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + ci-info "^3.2.0" + graceful-fs "^4.2.9" + picomatch "^2.2.3" + jest-validate@^28.1.3: version "28.1.3" resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-28.1.3.tgz#e322267fd5e7c64cea4629612c357bbda96229df" @@ -9771,6 +9857,16 @@ jest-worker@^28.1.3: merge-stream "^2.0.0" supports-color "^8.0.0" +jest-worker@^29.6.4: + version "29.6.4" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.6.4.tgz#f34279f4afc33c872b470d4af21b281ac616abd3" + integrity sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q== + dependencies: + "@types/node" "*" + jest-util "^29.6.3" + merge-stream "^2.0.0" + supports-color "^8.0.0" + jest@28.1.3: version "28.1.3" resolved "https://registry.yarnpkg.com/jest/-/jest-28.1.3.tgz#e9c6a7eecdebe3548ca2b18894a50f45b36dfc6b" @@ -15072,7 +15168,7 @@ wrappy@1: resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== -write-file-atomic@^4.0.1: +write-file-atomic@^4.0.1, write-file-atomic@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== From 8d6b39c94e87868d6a8a761631ec1923169ab370 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 23:00:53 -0400 Subject: [PATCH 072/115] fix(deps): update dependency @apollo/client to v3.8.1 (#9633) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- yarn.lock | 49 +++++++++++++++++++++++++------------------------ 1 file changed, 25 insertions(+), 24 deletions(-) diff --git a/yarn.lock b/yarn.lock index 1cfe344c29f..d5a59c2d9d8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -183,17 +183,17 @@ "@jridgewell/trace-mapping" "^0.3.9" "@apollo/client@^3.7.10": - version "3.7.14" - resolved "https://registry.yarnpkg.com/@apollo/client/-/client-3.7.14.tgz#40ef90390e6690e94917457cd82bdeb29e8b6af9" - integrity sha512-BRvdkwq5PAXBkjXjboO12uksDm3nrZEqDi4xF97Fk3Mnaa0zDOEfJa7hoKTY9b9KA1EkeWv9BL3i7hSd4SfGBg== + version "3.8.1" + resolved "https://registry.yarnpkg.com/@apollo/client/-/client-3.8.1.tgz#a1e3045a5fb276c08e38f7b5f930551d79741257" + integrity sha512-JGGj/9bdoLEqzatRikDeN8etseY5qeFAY0vSAx/Pd0ePNsaflKzHx6V2NZ0NsGkInq+9IXXX3RLVDf0EotizMA== dependencies: "@graphql-typed-document-node/core" "^3.1.1" - "@wry/context" "^0.7.0" - "@wry/equality" "^0.5.0" - "@wry/trie" "^0.3.0" + "@wry/context" "^0.7.3" + "@wry/equality" "^0.5.6" + "@wry/trie" "^0.4.3" graphql-tag "^2.12.6" hoist-non-react-statics "^3.3.2" - optimism "^0.16.2" + optimism "^0.17.5" prop-types "^15.7.2" response-iterator "^0.2.6" symbol-observable "^4.0.0" @@ -4788,24 +4788,24 @@ "@whatwg-node/fetch" "^0.9.7" tslib "^2.3.1" -"@wry/context@^0.7.0": - version "0.7.0" - resolved "https://registry.yarnpkg.com/@wry/context/-/context-0.7.0.tgz#be88e22c0ddf62aeb0ae9f95c3d90932c619a5c8" - integrity sha512-LcDAiYWRtwAoSOArfk7cuYvFXytxfVrdX7yxoUmK7pPITLk5jYh2F8knCwS7LjgYL8u1eidPlKKV6Ikqq0ODqQ== +"@wry/context@^0.7.0", "@wry/context@^0.7.3": + version "0.7.3" + resolved "https://registry.yarnpkg.com/@wry/context/-/context-0.7.3.tgz#240f6dfd4db5ef54f81f6597f6714e58d4f476a1" + integrity sha512-Nl8WTesHp89RF803Se9X3IiHjdmLBrIvPMaJkl+rKVJAYyPsz1TEUbu89943HpvujtSJgDUx9W4vZw3K1Mr3sA== dependencies: tslib "^2.3.0" -"@wry/equality@^0.5.0": - version "0.5.3" - resolved "https://registry.yarnpkg.com/@wry/equality/-/equality-0.5.3.tgz#fafebc69561aa2d40340da89fa7dc4b1f6fb7831" - integrity sha512-avR+UXdSrsF2v8vIqIgmeTY0UR91UT+IyablCyKe/uk22uOJ8fusKZnH9JH9e1/EtLeNJBtagNmL3eJdnOV53g== +"@wry/equality@^0.5.6": + version "0.5.6" + resolved "https://registry.yarnpkg.com/@wry/equality/-/equality-0.5.6.tgz#cd4a533c72c3752993ab8cbf682d3d20e3cb601e" + integrity sha512-D46sfMTngaYlrH+OspKf8mIJETntFnf6Hsjb0V41jAXJ7Bx2kB8Rv8RCUujuVWYttFtHkUNp7g+FwxNQAr6mXA== dependencies: tslib "^2.3.0" -"@wry/trie@^0.3.0": - version "0.3.2" - resolved "https://registry.yarnpkg.com/@wry/trie/-/trie-0.3.2.tgz#a06f235dc184bd26396ba456711f69f8c35097e6" - integrity sha512-yRTyhWSls2OY/pYLfwff867r8ekooZ4UI+/gxot5Wj8EFwSf2rG+n+Mo/6LoLQm1TKA4GRj2+LCpbfS937dClQ== +"@wry/trie@^0.4.3": + version "0.4.3" + resolved "https://registry.yarnpkg.com/@wry/trie/-/trie-0.4.3.tgz#077d52c22365871bf3ffcbab8e95cb8bc5689af4" + integrity sha512-I6bHwH0fSf6RqQcnnXLJKhkSXG45MFral3GxPaY4uAl0LYDZM+YDVDAiU9bYwjTuysy1S0IeecWtmq1SZA3M1w== dependencies: tslib "^2.3.0" @@ -11750,13 +11750,14 @@ opener@^1.5.2: resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598" integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== -optimism@^0.16.2: - version "0.16.2" - resolved "https://registry.yarnpkg.com/optimism/-/optimism-0.16.2.tgz#519b0c78b3b30954baed0defe5143de7776bf081" - integrity sha512-zWNbgWj+3vLEjZNIh/okkY2EUfX+vB9TJopzIZwT1xxaMqC5hRLLraePod4c5n4He08xuXNH+zhKFFCu390wiQ== +optimism@^0.17.5: + version "0.17.5" + resolved "https://registry.yarnpkg.com/optimism/-/optimism-0.17.5.tgz#a4c78b3ad12c58623abedbebb4f2f2c19b8e8816" + integrity sha512-TEcp8ZwK1RczmvMnvktxHSF2tKgMWjJ71xEFGX5ApLh67VsMSTy1ZUlipJw8W+KaqgOmQ+4pqwkeivY89j+4Vw== dependencies: "@wry/context" "^0.7.0" - "@wry/trie" "^0.3.0" + "@wry/trie" "^0.4.3" + tslib "^2.3.0" optionator@^0.8.1: version "0.8.3" From 3a6941f4c7e02e42f959cc4b8bcdfd44b8ecf13a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 23:01:08 -0400 Subject: [PATCH 073/115] chore(deps): update dependency vite to v4.4.9 (#9615) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- yarn.lock | 168 +++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 153 insertions(+), 15 deletions(-) diff --git a/yarn.lock b/yarn.lock index d5a59c2d9d8..472b21aebb5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1672,111 +1672,221 @@ resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.12.tgz#15a8e2b407d03989b899e325151dc2e96d19c620" integrity sha512-WQ9p5oiXXYJ33F2EkE3r0FRDFVpEdcDiwNX3u7Xaibxfx6vQE0Sb8ytrfQsA5WO6kDn6mDfKLh6KrPBjvkk7xA== +"@esbuild/android-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz#984b4f9c8d0377443cc2dfcef266d02244593622" + integrity sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ== + "@esbuild/android-arm@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.12.tgz#677a09297e1f4f37aba7b4fc4f31088b00484985" integrity sha512-E/sgkvwoIfj4aMAPL2e35VnUJspzVYl7+M1B2cqeubdBhADV4uPon0KCc8p2G+LqSJ6i8ocYPCqY3A4GGq0zkQ== +"@esbuild/android-arm@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.18.20.tgz#fedb265bc3a589c84cc11f810804f234947c3682" + integrity sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw== + "@esbuild/android-x64@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.12.tgz#b292729eef4e0060ae1941f6a021c4d2542a3521" integrity sha512-m4OsaCr5gT+se25rFPHKQXARMyAehHTQAz4XX1Vk3d27VtqiX0ALMBPoXZsGaB6JYryCLfgGwUslMqTfqeLU0w== +"@esbuild/android-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.18.20.tgz#35cf419c4cfc8babe8893d296cd990e9e9f756f2" + integrity sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg== + "@esbuild/darwin-arm64@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.12.tgz#efa35318df931da05825894e1787b976d55adbe3" integrity sha512-O3GCZghRIx+RAN0NDPhyyhRgwa19MoKlzGonIb5hgTj78krqp9XZbYCvFr9N1eUxg0ZQEpiiZ4QvsOQwBpP+lg== +"@esbuild/darwin-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz#08172cbeccf95fbc383399a7f39cfbddaeb0d7c1" + integrity sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA== + "@esbuild/darwin-x64@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.12.tgz#e7b54bb3f6dc81aadfd0485cd1623c648157e64d" integrity sha512-5D48jM3tW27h1qjaD9UNRuN+4v0zvksqZSPZqeSWggfMlsVdAhH3pwSfQIFJwcs9QJ9BRibPS4ViZgs3d2wsCA== +"@esbuild/darwin-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz#d70d5790d8bf475556b67d0f8b7c5bdff053d85d" + integrity sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ== + "@esbuild/freebsd-arm64@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.12.tgz#99a18a8579d6299c449566fe91d9b6a54cf2a591" integrity sha512-OWvHzmLNTdF1erSvrfoEBGlN94IE6vCEaGEkEH29uo/VoONqPnoDFfShi41Ew+yKimx4vrmmAJEGNoyyP+OgOQ== +"@esbuild/freebsd-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz#98755cd12707f93f210e2494d6a4b51b96977f54" + integrity sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw== + "@esbuild/freebsd-x64@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.12.tgz#0e090190fede307fb4022f671791a50dd5121abd" integrity sha512-A0Xg5CZv8MU9xh4a+7NUpi5VHBKh1RaGJKqjxe4KG87X+mTjDE6ZvlJqpWoeJxgfXHT7IMP9tDFu7IZ03OtJAw== +"@esbuild/freebsd-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz#c1eb2bff03915f87c29cece4c1a7fa1f423b066e" + integrity sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ== + "@esbuild/linux-arm64@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.12.tgz#7fe2a69f8a1a7153fa2b0f44aabcadb59475c7e0" integrity sha512-cK3AjkEc+8v8YG02hYLQIQlOznW+v9N+OI9BAFuyqkfQFR+DnDLhEM5N8QRxAUz99cJTo1rLNXqRrvY15gbQUg== +"@esbuild/linux-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz#bad4238bd8f4fc25b5a021280c770ab5fc3a02a0" + integrity sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA== + "@esbuild/linux-arm@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.12.tgz#b87c76ebf1fe03e01fd6bb5cfc2f3c5becd5ee93" integrity sha512-WsHyJ7b7vzHdJ1fv67Yf++2dz3D726oO3QCu8iNYik4fb5YuuReOI9OtA+n7Mk0xyQivNTPbl181s+5oZ38gyA== +"@esbuild/linux-arm@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz#3e617c61f33508a27150ee417543c8ab5acc73b0" + integrity sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg== + "@esbuild/linux-ia32@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.12.tgz#9e9357090254524d32e6708883a47328f3037858" integrity sha512-jdOBXJqcgHlah/nYHnj3Hrnl9l63RjtQ4vn9+bohjQPI2QafASB5MtHAoEv0JQHVb/xYQTFOeuHnNYE1zF7tYw== +"@esbuild/linux-ia32@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz#699391cccba9aee6019b7f9892eb99219f1570a7" + integrity sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA== + "@esbuild/linux-loong64@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.12.tgz#9deb605f9e2c82f59412ddfefb4b6b96d54b5b5b" integrity sha512-GTOEtj8h9qPKXCyiBBnHconSCV9LwFyx/gv3Phw0pa25qPYjVuuGZ4Dk14bGCfGX3qKF0+ceeQvwmtI+aYBbVA== +"@esbuild/linux-loong64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz#e6fccb7aac178dd2ffb9860465ac89d7f23b977d" + integrity sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg== + "@esbuild/linux-mips64el@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.12.tgz#6ef170b974ddf5e6acdfa5b05f22b6e9dfd2b003" integrity sha512-o8CIhfBwKcxmEENOH9RwmUejs5jFiNoDw7YgS0EJTF6kgPgcqLFjgoc5kDey5cMHRVCIWc6kK2ShUePOcc7RbA== +"@esbuild/linux-mips64el@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz#eeff3a937de9c2310de30622a957ad1bd9183231" + integrity sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ== + "@esbuild/linux-ppc64@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.12.tgz#1638d3d4acf1d34aaf37cf8908c2e1cefed16204" integrity sha512-biMLH6NR/GR4z+ap0oJYb877LdBpGac8KfZoEnDiBKd7MD/xt8eaw1SFfYRUeMVx519kVkAOL2GExdFmYnZx3A== +"@esbuild/linux-ppc64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz#2f7156bde20b01527993e6881435ad79ba9599fb" + integrity sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA== + "@esbuild/linux-riscv64@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.12.tgz#135b6e9270a8e2de2b9094bb21a287517df520ef" integrity sha512-jkphYUiO38wZGeWlfIBMB72auOllNA2sLfiZPGDtOBb1ELN8lmqBrlMiucgL8awBw1zBXN69PmZM6g4yTX84TA== +"@esbuild/linux-riscv64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz#6628389f210123d8b4743045af8caa7d4ddfc7a6" + integrity sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A== + "@esbuild/linux-s390x@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.12.tgz#21e40830770c5d08368e300842bde382ce97d615" integrity sha512-j3ucLdeY9HBcvODhCY4b+Ds3hWGO8t+SAidtmWu/ukfLLG/oYDMaA+dnugTVAg5fnUOGNbIYL9TOjhWgQB8W5g== +"@esbuild/linux-s390x@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz#255e81fb289b101026131858ab99fba63dcf0071" + integrity sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ== + "@esbuild/linux-x64@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.12.tgz#76c1c199871d48e1aaa47a762fb9e0dca52e1f7a" integrity sha512-uo5JL3cgaEGotaqSaJdRfFNSCUJOIliKLnDGWaVCgIKkHxwhYMm95pfMbWZ9l7GeW9kDg0tSxcy9NYdEtjwwmA== +"@esbuild/linux-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz#c7690b3417af318a9b6f96df3031a8865176d338" + integrity sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w== + "@esbuild/netbsd-x64@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.12.tgz#c7c3b3017a4b938c76c35f66af529baf62eac527" integrity sha512-DNdoRg8JX+gGsbqt2gPgkgb00mqOgOO27KnrWZtdABl6yWTST30aibGJ6geBq3WM2TIeW6COs5AScnC7GwtGPg== +"@esbuild/netbsd-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz#30e8cd8a3dded63975e2df2438ca109601ebe0d1" + integrity sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A== + "@esbuild/openbsd-x64@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.12.tgz#05d04217d980e049001afdbeacbb58d31bb5cefb" integrity sha512-aVsENlr7B64w8I1lhHShND5o8cW6sB9n9MUtLumFlPhG3elhNWtE7M1TFpj3m7lT3sKQUMkGFjTQBrvDDO1YWA== +"@esbuild/openbsd-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz#7812af31b205055874c8082ea9cf9ab0da6217ae" + integrity sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg== + "@esbuild/sunos-x64@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.12.tgz#cf3862521600e4eb6c440ec3bad31ed40fb87ef3" integrity sha512-qbHGVQdKSwi0JQJuZznS4SyY27tYXYF0mrgthbxXrZI3AHKuRvU+Eqbg/F0rmLDpW/jkIZBlCO1XfHUBMNJ1pg== +"@esbuild/sunos-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz#d5c275c3b4e73c9b0ecd38d1ca62c020f887ab9d" + integrity sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ== + "@esbuild/win32-arm64@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.12.tgz#43dd7fb5be77bf12a1550355ab2b123efd60868e" integrity sha512-zsCp8Ql+96xXTVTmm6ffvoTSZSV2B/LzzkUXAY33F/76EajNw1m+jZ9zPfNJlJ3Rh4EzOszNDHsmG/fZOhtqDg== +"@esbuild/win32-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz#73bc7f5a9f8a77805f357fab97f290d0e4820ac9" + integrity sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg== + "@esbuild/win32-ia32@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.12.tgz#9940963d0bff4ea3035a84e2b4c6e41c5e6296eb" integrity sha512-FfrFjR4id7wcFYOdqbDfDET3tjxCozUgbqdkOABsSFzoZGFC92UK7mg4JKRc/B3NNEf1s2WHxJ7VfTdVDPN3ng== +"@esbuild/win32-ia32@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz#ec93cbf0ef1085cc12e71e0d661d20569ff42102" + integrity sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g== + "@esbuild/win32-x64@0.17.12": version "0.17.12" resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.12.tgz#3a11d13e9a5b0c05db88991b234d8baba1f96487" integrity sha512-JOOxw49BVZx2/5tW3FqkdjSD/5gXYeVGPDcB0lvap0gLQshkh1Nyel1QazC+wNxus3xPlsYAgqU1BUmrmCvWtw== +"@esbuild/win32-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz#786c5f41f043b07afb1af37683d7c33668858f6d" + integrity sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ== + "@eslint-community/eslint-utils@^4.1.2", "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": version "4.4.0" resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" @@ -7133,7 +7243,7 @@ es-to-primitive@^1.2.1: is-date-object "^1.0.1" is-symbol "^1.0.2" -esbuild@^0.17.5, esbuild@^0.17.6, esbuild@~0.17.6: +esbuild@^0.17.6, esbuild@~0.17.6: version "0.17.12" resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.12.tgz#2ad7523bf1bc01881e9d904bc04e693bd3bdcf2f" integrity sha512-bX/zHl7Gn2CpQwcMtRogTTBf9l1nl+H6R8nUbjk+RuKqAE3+8FDulLA+pHvX7aA7Xe07Iwa+CWvy9I8Y2qqPKQ== @@ -7161,6 +7271,34 @@ esbuild@^0.17.5, esbuild@^0.17.6, esbuild@~0.17.6: "@esbuild/win32-ia32" "0.17.12" "@esbuild/win32-x64" "0.17.12" +esbuild@^0.18.10: + version "0.18.20" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.18.20.tgz#4709f5a34801b43b799ab7d6d82f7284a9b7a7a6" + integrity sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA== + optionalDependencies: + "@esbuild/android-arm" "0.18.20" + "@esbuild/android-arm64" "0.18.20" + "@esbuild/android-x64" "0.18.20" + "@esbuild/darwin-arm64" "0.18.20" + "@esbuild/darwin-x64" "0.18.20" + "@esbuild/freebsd-arm64" "0.18.20" + "@esbuild/freebsd-x64" "0.18.20" + "@esbuild/linux-arm" "0.18.20" + "@esbuild/linux-arm64" "0.18.20" + "@esbuild/linux-ia32" "0.18.20" + "@esbuild/linux-loong64" "0.18.20" + "@esbuild/linux-mips64el" "0.18.20" + "@esbuild/linux-ppc64" "0.18.20" + "@esbuild/linux-riscv64" "0.18.20" + "@esbuild/linux-s390x" "0.18.20" + "@esbuild/linux-x64" "0.18.20" + "@esbuild/netbsd-x64" "0.18.20" + "@esbuild/openbsd-x64" "0.18.20" + "@esbuild/sunos-x64" "0.18.20" + "@esbuild/win32-arm64" "0.18.20" + "@esbuild/win32-ia32" "0.18.20" + "@esbuild/win32-x64" "0.18.20" + escalade@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" @@ -12404,10 +12542,10 @@ postcss@8.4.14: picocolors "^1.0.0" source-map-js "^1.0.2" -postcss@^8.1.10, postcss@^8.4.23, postcss@^8.4.25: - version "8.4.27" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.27.tgz#234d7e4b72e34ba5a92c29636734349e0d9c3057" - integrity sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ== +postcss@^8.1.10, postcss@^8.4.23, postcss@^8.4.25, postcss@^8.4.27: + version "8.4.28" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.28.tgz#c6cc681ed00109072816e1557f889ef51cf950a5" + integrity sha512-Z7V5j0cq8oEKyejIKfpD8b4eBy9cwW2JWPk0+fB1HOAMsfHbnAXLLS+PfVWlzMSLQaWttKDt607I0XHmpE67Vw== dependencies: nanoid "^3.3.6" picocolors "^1.0.0" @@ -13163,10 +13301,10 @@ robust-predicates@^3.0.0: resolved "https://registry.yarnpkg.com/robust-predicates/-/robust-predicates-3.0.1.tgz#ecde075044f7f30118682bd9fb3f123109577f9a" integrity sha512-ndEIpszUHiG4HtDsQLeIuMvRsDnn8c8rYStabochtUeCvfuvNptb5TUbVD68LRAILPX7p9nqQGh4xJgn3EHS/g== -rollup@^3.2.5, rollup@^3.21.0: - version "3.21.6" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.21.6.tgz#f5649ccdf8fcc7729254faa457cbea9547eb86db" - integrity sha512-SXIICxvxQxR3D4dp/3LDHZIJPC8a4anKMHd4E3Jiz2/JnY+2bEjqrOokAauc5ShGVNFHlEFjBXAXlaxkJqIqSg== +rollup@^3.2.5, rollup@^3.27.1: + version "3.28.1" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.28.1.tgz#fb44aa6d5e65c7e13fd5bcfff266d0c4ea9ba433" + integrity sha512-R9OMQmIHJm9znrU3m3cpE8uhN0fGdXiawME7aZIpQqvpS/85+Vt1Hq1/yVIcYfOmaQiHjvXkQAoJukvLpau6Yw== optionalDependencies: fsevents "~2.3.2" @@ -14887,13 +15025,13 @@ villus@^2.1.0: integrity sha512-vnrY62rf5Yzfew0fZbHQ7b51NpcWKbNDxxmq98NNhBRXjt8gVtbbXsOpRatnKINxsZPPzH+zLJGnTj95F0InHQ== vite@^4.1.0: - version "4.3.9" - resolved "https://registry.yarnpkg.com/vite/-/vite-4.3.9.tgz#db896200c0b1aa13b37cdc35c9e99ee2fdd5f96d" - integrity sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg== + version "4.4.9" + resolved "https://registry.yarnpkg.com/vite/-/vite-4.4.9.tgz#1402423f1a2f8d66fd8d15e351127c7236d29d3d" + integrity sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA== dependencies: - esbuild "^0.17.5" - postcss "^8.4.23" - rollup "^3.21.0" + esbuild "^0.18.10" + postcss "^8.4.27" + rollup "^3.27.1" optionalDependencies: fsevents "~2.3.2" From 7aeae493df45350b607ea0a519d1bf0c60d7b482 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Aug 2023 03:01:17 +0000 Subject: [PATCH 074/115] chore(deps): update dependency cypress to v12.17.4 (#9611) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .../react/apollo-client-defer/package.json | 2 +- examples/react/apollo-client/package.json | 2 +- examples/react/http-executor/package.json | 2 +- .../react/tanstack-react-query/package.json | 2 +- examples/react/urql/package.json | 2 +- examples/vite/vite-react-cts/package.json | 2 +- examples/vite/vite-react-mts/package.json | 2 +- examples/vite/vite-react-ts/package.json | 2 +- examples/vue/apollo-composable/package.json | 2 +- examples/vue/urql/package.json | 2 +- examples/vue/villus/package.json | 2 +- yarn.lock | 82 ++++++++++++------- 12 files changed, 65 insertions(+), 39 deletions(-) diff --git a/examples/react/apollo-client-defer/package.json b/examples/react/apollo-client-defer/package.json index 4a33df28080..4ff23667736 100644 --- a/examples/react/apollo-client-defer/package.json +++ b/examples/react/apollo-client-defer/package.json @@ -18,7 +18,7 @@ "@types/react": "^18.0.15", "@types/react-dom": "^18.0.10", "@vitejs/plugin-react": "^3.1.0", - "cypress": "12.12.0", + "cypress": "12.17.4", "serve": "14.2.1", "start-server-and-test": "2.0.0", "typescript": "4.9.5", diff --git a/examples/react/apollo-client/package.json b/examples/react/apollo-client/package.json index 5e119258969..011c74b5289 100644 --- a/examples/react/apollo-client/package.json +++ b/examples/react/apollo-client/package.json @@ -18,7 +18,7 @@ "@types/react-dom": "^18.0.10", "typescript": "5.0.4", "serve": "14.2.1", - "cypress": "12.12.0", + "cypress": "12.17.4", "start-server-and-test": "2.0.0", "vite": "^4.1.0" }, diff --git a/examples/react/http-executor/package.json b/examples/react/http-executor/package.json index dde5fd421ee..10f9f194d12 100644 --- a/examples/react/http-executor/package.json +++ b/examples/react/http-executor/package.json @@ -17,7 +17,7 @@ "@types/react-dom": "^18.0.10", "typescript": "5.0.4", "serve": "14.2.1", - "cypress": "12.12.0", + "cypress": "12.17.4", "start-server-and-test": "2.0.0", "vite": "^4.1.0" }, diff --git a/examples/react/tanstack-react-query/package.json b/examples/react/tanstack-react-query/package.json index 66ce85c2fbb..85670f17e7c 100644 --- a/examples/react/tanstack-react-query/package.json +++ b/examples/react/tanstack-react-query/package.json @@ -17,7 +17,7 @@ "@types/react-dom": "^18.0.10", "typescript": "5.0.4", "serve": "14.2.1", - "cypress": "12.12.0", + "cypress": "12.17.4", "start-server-and-test": "2.0.0", "vite": "^4.1.0" }, diff --git a/examples/react/urql/package.json b/examples/react/urql/package.json index cc18bdfb11f..d7812dcd0c5 100644 --- a/examples/react/urql/package.json +++ b/examples/react/urql/package.json @@ -15,7 +15,7 @@ "@vitejs/plugin-react": "^3.1.0", "typescript": "5.0.4", "serve": "14.2.1", - "cypress": "12.12.0", + "cypress": "12.17.4", "start-server-and-test": "2.0.0", "vite": "^4.1.0" }, diff --git a/examples/vite/vite-react-cts/package.json b/examples/vite/vite-react-cts/package.json index 27edca95c01..e8314f6aaaa 100644 --- a/examples/vite/vite-react-cts/package.json +++ b/examples/vite/vite-react-cts/package.json @@ -25,7 +25,7 @@ "@graphql-codegen/client-preset": "4.1.0", "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", - "cypress": "12.12.0", + "cypress": "12.17.4", "start-server-and-test": "2.0.0", "typescript": "^5.0.0" }, diff --git a/examples/vite/vite-react-mts/package.json b/examples/vite/vite-react-mts/package.json index fb538518f85..73b1372c259 100644 --- a/examples/vite/vite-react-mts/package.json +++ b/examples/vite/vite-react-mts/package.json @@ -25,7 +25,7 @@ "@graphql-codegen/client-preset": "4.1.0", "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", - "cypress": "12.12.0", + "cypress": "12.17.4", "start-server-and-test": "2.0.0", "typescript": "^5.0.0" }, diff --git a/examples/vite/vite-react-ts/package.json b/examples/vite/vite-react-ts/package.json index fe8f144fe19..104b283ef21 100644 --- a/examples/vite/vite-react-ts/package.json +++ b/examples/vite/vite-react-ts/package.json @@ -25,7 +25,7 @@ "@graphql-codegen/client-preset": "4.1.0", "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", - "cypress": "12.12.0", + "cypress": "12.17.4", "start-server-and-test": "2.0.0", "typescript": "^5.0.0" }, diff --git a/examples/vue/apollo-composable/package.json b/examples/vue/apollo-composable/package.json index b06ce592c57..ce58389cfeb 100644 --- a/examples/vue/apollo-composable/package.json +++ b/examples/vue/apollo-composable/package.json @@ -24,7 +24,7 @@ "vite": "^4.1.0", "vue-tsc": "^1.0.24", "serve": "14.2.1", - "cypress": "12.12.0", + "cypress": "12.17.4", "start-server-and-test": "2.0.0" } } diff --git a/examples/vue/urql/package.json b/examples/vue/urql/package.json index bae706fc089..36020268b34 100644 --- a/examples/vue/urql/package.json +++ b/examples/vue/urql/package.json @@ -23,7 +23,7 @@ "vite": "^4.1.0", "vue-tsc": "^1.0.24", "serve": "14.2.1", - "cypress": "12.12.0", + "cypress": "12.17.4", "start-server-and-test": "2.0.0" } } diff --git a/examples/vue/villus/package.json b/examples/vue/villus/package.json index 04050efd8b3..0294dc9d955 100644 --- a/examples/vue/villus/package.json +++ b/examples/vue/villus/package.json @@ -23,7 +23,7 @@ "vite": "^4.1.0", "vue-tsc": "^1.0.24", "serve": "14.2.1", - "cypress": "12.12.0", + "cypress": "12.17.4", "start-server-and-test": "2.0.0" } } diff --git a/yarn.lock b/yarn.lock index 472b21aebb5..0c91bf7a329 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1507,10 +1507,10 @@ dependencies: "@jridgewell/trace-mapping" "0.3.9" -"@cypress/request@^2.88.10": - version "2.88.11" - resolved "https://registry.yarnpkg.com/@cypress/request/-/request-2.88.11.tgz#5a4c7399bc2d7e7ed56e92ce5acb620c8b187047" - integrity sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w== +"@cypress/request@2.88.12": + version "2.88.12" + resolved "https://registry.yarnpkg.com/@cypress/request/-/request-2.88.12.tgz#ba4911431738494a85e93fb04498cb38bc55d590" + integrity sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA== dependencies: aws-sign2 "~0.7.0" aws4 "^1.8.0" @@ -1527,7 +1527,7 @@ performance-now "^2.1.0" qs "~6.10.3" safe-buffer "^5.1.2" - tough-cookie "~2.5.0" + tough-cookie "^4.1.3" tunnel-agent "^0.6.0" uuid "^8.3.2" @@ -4409,15 +4409,10 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240" integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== -"@types/node@^14.14.31": - version "14.18.36" - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.36.tgz#c414052cb9d43fab67d679d5f3c641be911f5835" - integrity sha512-FXKWbsJ6a1hIrRxv+FoukuHnGTgEzKYGi7kilfMae96AL9UNkPFNWJEEYWzdRI9ooIkbr4AKldyuSTLql06vLQ== - -"@types/node@^16.9.2": - version "16.18.12" - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.12.tgz#e3bfea80e31523fde4292a6118f19ffa24fd6f65" - integrity sha512-vzLe5NaNMjIE3mcddFVGlAXN1LEWueUsMsOJWaT6wWMJGyljHAWHznqfnKUQWGzu7TLPrGvWdNAsvQYW+C0xtw== +"@types/node@^16.18.39", "@types/node@^16.9.2": + version "16.18.45" + resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.45.tgz#a2b845b94faf76de3160c630ce8b07f957390ca5" + integrity sha512-Eu7U6/0P086nyPzeS41o2NvPVr16vWJMS5RdTzPF8XQaCPtq07E5GbR4fbcv5AYjy+zd0FYSV4p0WBdDXfPZzw== "@types/normalize-package-data@^2.4.0": version "2.4.1" @@ -6407,14 +6402,14 @@ csv@^5.5.0: csv-stringify "^5.6.5" stream-transform "^2.1.3" -cypress@12.12.0: - version "12.12.0" - resolved "https://registry.yarnpkg.com/cypress/-/cypress-12.12.0.tgz#0da622a34c970d8699ca6562d8e905ed7ce33c77" - integrity sha512-UU5wFQ7SMVCR/hyKok/KmzG6fpZgBHHfrXcHzDmPHWrT+UUetxFzQgt7cxCszlwfozckzwkd22dxMwl/vNkWRw== +cypress@12.17.4: + version "12.17.4" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-12.17.4.tgz#b4dadf41673058493fa0d2362faa3da1f6ae2e6c" + integrity sha512-gAN8Pmns9MA5eCDFSDJXWKUpaL3IDd89N9TtIupjYnzLSmlpVr+ZR+vb4U/qaMp+lB6tBvAmt7504c3Z4RU5KQ== dependencies: - "@cypress/request" "^2.88.10" + "@cypress/request" "2.88.12" "@cypress/xvfb" "^1.2.4" - "@types/node" "^14.14.31" + "@types/node" "^16.18.39" "@types/sinonjs__fake-timers" "8.1.1" "@types/sizzle" "^2.3.2" arch "^2.2.0" @@ -6447,9 +6442,10 @@ cypress@12.12.0: minimist "^1.2.8" ospath "^1.2.2" pretty-bytes "^5.6.0" + process "^0.11.10" proxy-from-env "1.0.0" request-progress "^3.0.0" - semver "^7.3.2" + semver "^7.5.3" supports-color "^8.1.1" tmp "~0.2.1" untildify "^4.0.0" @@ -12637,6 +12633,11 @@ proc-log@^3.0.0: resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-3.0.0.tgz#fb05ef83ccd64fd7b20bbe9c8c1070fc08338dd8" integrity sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A== +process@^0.11.10: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== + promise@^7.1.1: version "7.3.1" resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" @@ -12693,7 +12694,7 @@ pseudomap@^1.0.2: resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" integrity sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ== -psl@^1.1.28: +psl@^1.1.33: version "1.9.0" resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== @@ -12735,6 +12736,11 @@ qs@~6.10.3: dependencies: side-channel "^1.0.4" +querystringify@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" + integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== + queue-microtask@^1.2.2: version "1.2.3" resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" @@ -13202,6 +13208,11 @@ require-main-filename@^2.0.0: resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== +requires-port@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== + resolve-cwd@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" @@ -13431,7 +13442,7 @@ section-matter@^1.0.0: resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== -semver@7.x, semver@^7.0.0, semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.3: +semver@7.x, semver@^7.0.0, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.3: version "7.5.3" resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.3.tgz#161ce8c2c6b4b3bdca6caadc9fa3317a4c4fe88e" integrity sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ== @@ -14269,13 +14280,15 @@ totalist@^1.0.0: resolved "https://registry.yarnpkg.com/totalist/-/totalist-1.1.0.tgz#a4d65a3e546517701e3e5c37a47a70ac97fe56df" integrity sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g== -tough-cookie@~2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" - integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== +tough-cookie@^4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.3.tgz#97b9adb0728b42280aa3d814b6b999b2ff0318bf" + integrity sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw== dependencies: - psl "^1.1.28" + psl "^1.1.33" punycode "^2.1.1" + universalify "^0.2.0" + url-parse "^1.5.3" tr46@^1.0.1: version "1.0.1" @@ -14801,6 +14814,11 @@ universalify@^0.1.0: resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== +universalify@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" + integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== + universalify@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" @@ -14855,6 +14873,14 @@ uri-js@^4.2.2: dependencies: punycode "^2.1.0" +url-parse@^1.5.3: + version "1.5.10" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" + integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== + dependencies: + querystringify "^2.1.1" + requires-port "^1.0.0" + urlpattern-polyfill@^8.0.0: version "8.0.2" resolved "https://registry.yarnpkg.com/urlpattern-polyfill/-/urlpattern-polyfill-8.0.2.tgz#99f096e35eff8bf4b5a2aa7d58a1523d6ebc7ce5" From ef0d07df61d6eeff0650fdf10172febf534bfe9e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 23:01:26 -0400 Subject: [PATCH 075/115] chore(deps): update dependency jest-docblock to v29 (#9617) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 894bab81de5..d2a0a5bcfc3 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,7 @@ "graphql": "16.6.0", "husky": "8.0.3", "jest": "28.1.3", - "jest-docblock": "28.1.1", + "jest-docblock": "29.6.3", "jest-junit": "16.0.0", "lint-staged": "13.2.2", "patch-package": "6.5.1", diff --git a/yarn.lock b/yarn.lock index 0c91bf7a329..405428483a2 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9671,7 +9671,14 @@ jest-diff@^28.1.3: jest-get-type "^28.0.2" pretty-format "^28.1.3" -jest-docblock@28.1.1, jest-docblock@^28.1.1: +jest-docblock@29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.6.3.tgz#293dca5188846c9f7c0c2b1bb33e5b11f21645f2" + integrity sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ== + dependencies: + detect-newline "^3.0.0" + +jest-docblock@^28.1.1: version "28.1.1" resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-28.1.1.tgz#6f515c3bf841516d82ecd57a62eed9204c2f42a8" integrity sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA== From dc1d7c7244109ea60a0ec4baa20256dc5915f685 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 23:01:35 -0400 Subject: [PATCH 076/115] fix(deps): update dependency @tanstack/react-query to v4.33.0 (#9634) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .../react/tanstack-react-query/package.json | 2 +- yarn.lock | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/examples/react/tanstack-react-query/package.json b/examples/react/tanstack-react-query/package.json index 85670f17e7c..2fddeb65157 100644 --- a/examples/react/tanstack-react-query/package.json +++ b/examples/react/tanstack-react-query/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "private": true, "dependencies": { - "@tanstack/react-query": "4.29.11", + "@tanstack/react-query": "4.33.0", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/yarn.lock b/yarn.lock index 405428483a2..d25e07e1565 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4009,17 +4009,17 @@ dependencies: tslib "^2.4.0" -"@tanstack/query-core@4.29.11": - version "4.29.11" - resolved "https://registry.yarnpkg.com/@tanstack/query-core/-/query-core-4.29.11.tgz#fa338f7d6897c6be5de6d8dabd603d9b78ee48c7" - integrity sha512-8C+hF6SFAb/TlFZyS9FItgNwrw4PMa7YeX+KQYe2ZAiEz6uzg6yIr+QBzPkUwZ/L0bXvGd1sufTm3wotoz+GwQ== +"@tanstack/query-core@4.33.0": + version "4.33.0" + resolved "https://registry.yarnpkg.com/@tanstack/query-core/-/query-core-4.33.0.tgz#7756da9a75a424e521622b1d84eb55b7a2b33715" + integrity sha512-qYu73ptvnzRh6se2nyBIDHGBQvPY1XXl3yR769B7B6mIDD7s+EZhdlWHQ67JI6UOTFRaI7wupnTnwJ3gE0Mr/g== -"@tanstack/react-query@4.29.11": - version "4.29.11" - resolved "https://registry.yarnpkg.com/@tanstack/react-query/-/react-query-4.29.11.tgz#053bd6e9d63ce07a523976263ae78a5e130eb2ad" - integrity sha512-aLaOAhBnCr12YKPjDsZOc0fAtkyaW7f9KfVfw49oYpfe0H9EPXBUgDBIKJ8qdHF3uGzTVSMcmpiw1Za41BLZlw== +"@tanstack/react-query@4.33.0": + version "4.33.0" + resolved "https://registry.yarnpkg.com/@tanstack/react-query/-/react-query-4.33.0.tgz#e927b0343a6ecaa948fee59e9ca98fe561062638" + integrity sha512-97nGbmDK0/m0B86BdiXzx3EW9RcDYKpnyL2+WwyuLHEgpfThYAnXFaMMmnTDuAO4bQJXEhflumIEUfKmP7ESGA== dependencies: - "@tanstack/query-core" "4.29.11" + "@tanstack/query-core" "4.33.0" use-sync-external-store "^1.2.0" "@theguild/algolia@1.1.9": From af423dc9b4571572d0216357ccb883504d65a0a3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 23:01:53 -0400 Subject: [PATCH 077/115] fix(deps): update rust crate serde_json to 1.0.105 (#9629) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- packages/presets/swc-plugin/Cargo.lock | 79 +++++++++++++++----------- packages/presets/swc-plugin/Cargo.toml | 2 +- 2 files changed, 46 insertions(+), 35 deletions(-) diff --git a/packages/presets/swc-plugin/Cargo.lock b/packages/presets/swc-plugin/Cargo.lock index aae134e0b00..7931c73abbc 100644 --- a/packages/presets/swc-plugin/Cargo.lock +++ b/packages/presets/swc-plugin/Cargo.lock @@ -78,7 +78,7 @@ dependencies = [ "proc-macro2", "quote", "swc_macros_common", - "syn", + "syn 1.0.107", ] [[package]] @@ -168,7 +168,7 @@ checksum = "e31225543cb46f81a7e224762764f4a6a0f097b1db0b175f69e8065efaa42de5" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -228,7 +228,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" dependencies = [ "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -276,7 +276,7 @@ checksum = "828de45d0ca18782232dfb8f3ea9cc428e8ced380eb26a520baaacfc70de39ce" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -327,7 +327,7 @@ dependencies = [ "pmutil", "proc-macro2", "swc_macros_common", - "syn", + "syn 1.0.107", ] [[package]] @@ -360,7 +360,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -480,7 +480,7 @@ dependencies = [ "pmutil", "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -648,7 +648,7 @@ checksum = "6b5bc45b761bcf1b5e6e6c4128cd93b84c218721a8d9b894aa0aff4ed180174c" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -820,7 +820,7 @@ dependencies = [ "proc-macro-hack", "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -846,7 +846,7 @@ checksum = "3894e5d549cccbe44afecf72922f277f603cd4bb0219c8342631ef18fffbe004" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -882,7 +882,7 @@ dependencies = [ "proc-macro-error-attr", "proc-macro2", "quote", - "syn", + "syn 1.0.107", "version_check", ] @@ -905,9 +905,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro2" -version = "1.0.51" +version = "1.0.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6" +checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" dependencies = [ "unicode-ident", ] @@ -938,14 +938,14 @@ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] name = "quote" -version = "1.0.23" +version = "1.0.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" +checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" dependencies = [ "proc-macro2", ] @@ -1061,7 +1061,7 @@ checksum = "ac1c672430eb41556291981f45ca900a0239ad007242d1cb4b4167af842db666" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -1146,29 +1146,29 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" [[package]] name = "serde" -version = "1.0.152" +version = "1.0.186" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" +checksum = "9f5db24220c009de9bd45e69fb2938f4b6d2df856aa9304ce377b3180f83b7c1" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.152" +version = "1.0.186" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" +checksum = "5ad697f7e0b65af4983a4ce8f56ed5b357e8d3c36651bf6a7e13639c17b8e670" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.29", ] [[package]] name = "serde_json" -version = "1.0.99" +version = "1.0.105" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46266871c240a00b8f503b877622fe33430b3c7d963bdc0f2adc511e54a1eae3" +checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" dependencies = [ "itoa", "ryu", @@ -1306,7 +1306,7 @@ dependencies = [ "proc-macro2", "quote", "swc_macros_common", - "syn", + "syn 1.0.107", ] [[package]] @@ -1464,7 +1464,7 @@ dependencies = [ "proc-macro2", "quote", "swc_macros_common", - "syn", + "syn 1.0.107", ] [[package]] @@ -1589,7 +1589,7 @@ dependencies = [ "pmutil", "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -1614,7 +1614,7 @@ dependencies = [ "pmutil", "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -1634,7 +1634,7 @@ checksum = "ae095f51123037ae9a8d29ef06b221a273fe11b489a3caa9eeba6a965a8b4cc1" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -1659,7 +1659,7 @@ checksum = "a4795c8d23e0de62eef9cac0a20ae52429ee2ffc719768e838490f195b7d7267" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -1683,7 +1683,7 @@ dependencies = [ "proc-macro2", "quote", "swc_macros_common", - "syn", + "syn 1.0.107", ] [[package]] @@ -1697,6 +1697,17 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "syn" +version = "2.0.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + [[package]] name = "tempfile" version = "3.5.0" @@ -1762,7 +1773,7 @@ dependencies = [ "quote", "regex", "relative-path", - "syn", + "syn 1.0.107", ] [[package]] @@ -1793,7 +1804,7 @@ checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -1868,7 +1879,7 @@ checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] diff --git a/packages/presets/swc-plugin/Cargo.toml b/packages/presets/swc-plugin/Cargo.toml index 9955f7d14c4..cabd36c4036 100644 --- a/packages/presets/swc-plugin/Cargo.toml +++ b/packages/presets/swc-plugin/Cargo.toml @@ -26,7 +26,7 @@ strip = "symbols" graphql-parser = "0.4.0" pathdiff = "0.2.1" serde = "1" -serde_json = "1.0.98" +serde_json = "1.0.105" swc_core = { version = "0.75.*", features = ["ecma_plugin_transform", "ecma_visit", "ecma_utils", "ecma_parser", "common", "testing" ] } # .cargo/config defines few alias to build plugin. From 09f6a2b07860371611259e482f02c14661a7678f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Aug 2023 03:02:00 +0000 Subject: [PATCH 078/115] chore(deps): update dependency eslint to v8.47.0 (#9613) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 105 +++++++++++++++++++++++++-------------------------- 2 files changed, 52 insertions(+), 55 deletions(-) diff --git a/package.json b/package.json index d2a0a5bcfc3..3b6535384c8 100644 --- a/package.json +++ b/package.json @@ -53,7 +53,7 @@ "@types/jest": "28.1.8", "babel-jest": "29.6.4", "bob-the-bundler": "6.0.0", - "eslint": "8.40.0", + "eslint": "8.47.0", "graphql": "16.6.0", "husky": "8.0.3", "jest": "28.1.3", diff --git a/yarn.lock b/yarn.lock index d25e07e1565..2398f36d0a6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7,6 +7,11 @@ resolved "https://registry.yarnpkg.com/@0no-co/graphql.web/-/graphql.web-1.0.1.tgz#db3da0d2cd41548b50f0583c0d2f4743c767e56b" integrity sha512-6Yaxyv6rOwRkLIvFaL0NrLDgfNqC/Ng9QOPmTmlqW4mORXMEKmh5NYGkIvvt5Yw8fZesnMAqkj8cIqTj8f40cQ== +"@aashutoshrathi/word-wrap@^1.2.3": + version "1.2.6" + resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" + integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== + "@algolia/autocomplete-core@1.10.0": version "1.10.0" resolved "https://registry.yarnpkg.com/@algolia/autocomplete-core/-/autocomplete-core-1.10.0.tgz#d9c7435e90993852e9aa159df7ed84d4342656cc" @@ -1894,19 +1899,19 @@ dependencies: eslint-visitor-keys "^3.3.0" -"@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.6.0": +"@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.6.0", "@eslint-community/regexpp@^4.6.1": version "4.7.0" resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.7.0.tgz#96e7c05e738327602ae5942437f9c6b177ec279a" integrity sha512-+HencqxU7CFJnQb7IKtuNBqS6Yx3Tz4kOL8BJXo+JyeiBm5MEX6pO8onXDkjrkCRlfYXS1Axro15ZjVFe9YgsA== -"@eslint/eslintrc@^2.0.3": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.3.tgz#4910db5505f4d503f27774bf356e3704818a0331" - integrity sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ== +"@eslint/eslintrc@^2.1.2": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.2.tgz#c6936b4b328c64496692f76944e755738be62396" + integrity sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g== dependencies: ajv "^6.12.4" debug "^4.3.2" - espree "^9.5.2" + espree "^9.6.0" globals "^13.19.0" ignore "^5.2.0" import-fresh "^3.2.1" @@ -1914,10 +1919,10 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@eslint/js@8.40.0": - version "8.40.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.40.0.tgz#3ba73359e11f5a7bd3e407f70b3528abfae69cec" - integrity sha512-ElyB54bJIhXQYVKjDSvCkPO1iU1tSAeVQJbllWJq1XQSmmA4dgFk8CbiBGpiOPxleE48vDogxCtmMYku4HSVLA== +"@eslint/js@^8.47.0": + version "8.47.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.47.0.tgz#5478fdf443ff8158f9de171c704ae45308696c7d" + integrity sha512-P6omY1zv5MItm93kLM8s2vr1HICJH8v0dvddDhysbIuZ+vcjOHg5Zbkf1mTkcmi2JA9oBG2anOkRnW8WJTS8Og== "@floating-ui/core@^1.2.1": version "1.2.1" @@ -2988,10 +2993,10 @@ dependencies: client-only "^0.0.1" -"@humanwhocodes/config-array@^0.11.8": - version "0.11.8" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9" - integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g== +"@humanwhocodes/config-array@^0.11.10": + version "0.11.10" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2" + integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ== dependencies: "@humanwhocodes/object-schema" "^1.2.1" debug "^4.1.1" @@ -4982,7 +4987,7 @@ ajv@8.11.0: require-from-string "^2.0.2" uri-js "^4.2.2" -ajv@^6.10.0, ajv@^6.12.2, ajv@^6.12.4: +ajv@^6.12.2, ajv@^6.12.4: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== @@ -7575,40 +7580,40 @@ eslint-scope@^5.1.1: esrecurse "^4.3.0" estraverse "^4.1.1" -eslint-scope@^7.2.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.0.tgz#f21ebdafda02352f103634b96dd47d9f81ca117b" - integrity sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw== +eslint-scope@^7.2.2: + version "7.2.2" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" + integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== dependencies: esrecurse "^4.3.0" estraverse "^5.2.0" -eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1: - version "3.4.1" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994" - integrity sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA== +eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" + integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== -eslint@8.40.0, eslint@^8.21.0: - version "8.40.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.40.0.tgz#a564cd0099f38542c4e9a2f630fa45bf33bc42a4" - integrity sha512-bvR+TsP9EHL3TqNtj9sCNJVAFK3fBN8Q7g5waghxyRsPLIMwL73XSKnZFK0hk/O2ANC+iAoq6PWMQ+IfBAJIiQ== +eslint@8.47.0, eslint@^8.21.0: + version "8.47.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.47.0.tgz#c95f9b935463fb4fad7005e626c7621052e90806" + integrity sha512-spUQWrdPt+pRVP1TTJLmfRNJJHHZryFmptzcafwSvHsceV81djHOdnEeDmkdotZyLNjDhrOasNK8nikkoG1O8Q== dependencies: "@eslint-community/eslint-utils" "^4.2.0" - "@eslint-community/regexpp" "^4.4.0" - "@eslint/eslintrc" "^2.0.3" - "@eslint/js" "8.40.0" - "@humanwhocodes/config-array" "^0.11.8" + "@eslint-community/regexpp" "^4.6.1" + "@eslint/eslintrc" "^2.1.2" + "@eslint/js" "^8.47.0" + "@humanwhocodes/config-array" "^0.11.10" "@humanwhocodes/module-importer" "^1.0.1" "@nodelib/fs.walk" "^1.2.8" - ajv "^6.10.0" + ajv "^6.12.4" chalk "^4.0.0" cross-spawn "^7.0.2" debug "^4.3.2" doctrine "^3.0.0" escape-string-regexp "^4.0.0" - eslint-scope "^7.2.0" - eslint-visitor-keys "^3.4.1" - espree "^9.5.2" + eslint-scope "^7.2.2" + eslint-visitor-keys "^3.4.3" + espree "^9.6.1" esquery "^1.4.2" esutils "^2.0.2" fast-deep-equal "^3.1.3" @@ -7616,25 +7621,22 @@ eslint@8.40.0, eslint@^8.21.0: find-up "^5.0.0" glob-parent "^6.0.2" globals "^13.19.0" - grapheme-splitter "^1.0.4" + graphemer "^1.4.0" ignore "^5.2.0" - import-fresh "^3.0.0" imurmurhash "^0.1.4" is-glob "^4.0.0" is-path-inside "^3.0.3" - js-sdsl "^4.1.4" js-yaml "^4.1.0" json-stable-stringify-without-jsonify "^1.0.1" levn "^0.4.1" lodash.merge "^4.6.2" minimatch "^3.1.2" natural-compare "^1.4.0" - optionator "^0.9.1" + optionator "^0.9.3" strip-ansi "^6.0.1" - strip-json-comments "^3.1.0" text-table "^0.2.0" -espree@^9.0.0, espree@^9.5.2, espree@^9.6.1: +espree@^9.0.0, espree@^9.6.0, espree@^9.6.1: version "9.6.1" resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== @@ -8947,7 +8949,7 @@ immutable@~3.7.6: resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.7.6.tgz#13b4d3cb12befa15482a26fe1b2ebae640071e4b" integrity sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw== -import-fresh@^3.0.0, import-fresh@^3.2.1: +import-fresh@^3.2.1: version "3.3.0" resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== @@ -10049,11 +10051,6 @@ joycon@^3.0.1: resolved "https://registry.yarnpkg.com/joycon/-/joycon-3.1.1.tgz#bce8596d6ae808f8b68168f5fc69280996894f03" integrity sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw== -js-sdsl@^4.1.4: - version "4.4.0" - resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.4.0.tgz#8b437dbe642daa95760400b602378ed8ffea8430" - integrity sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg== - "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" @@ -11912,17 +11909,17 @@ optionator@^0.8.1: type-check "~0.3.2" word-wrap "~1.2.3" -optionator@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" - integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== +optionator@^0.9.3: + version "0.9.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" + integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== dependencies: + "@aashutoshrathi/word-wrap" "^1.2.3" deep-is "^0.1.3" fast-levenshtein "^2.0.6" levn "^0.4.1" prelude-ls "^1.2.1" type-check "^0.4.0" - word-wrap "^1.2.3" ora@^5.4.1: version "5.4.1" @@ -13981,7 +13978,7 @@ strip-indent@^3.0.0: dependencies: min-indent "^1.0.0" -strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: +strip-json-comments@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== @@ -15303,7 +15300,7 @@ wonka@^6.0.0, wonka@^6.1.2, wonka@^6.3.2: resolved "https://registry.yarnpkg.com/wonka/-/wonka-6.3.2.tgz#6f32992b332251d7b696b038990f4dc284b3b33d" integrity sha512-2xXbQ1LnwNS7egVm1HPhW2FyKrekolzhpM3mCwXdQr55gO+tAiY76rhb32OL9kKsW8taj++iP7C6hxlVzbnvrw== -word-wrap@^1.2.3, word-wrap@~1.2.3: +word-wrap@~1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== From 7cb865a646626ee926db91a448c982b798a6fd00 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 23:02:44 -0400 Subject: [PATCH 079/115] fix(deps): update dependency @mendable/search to v0.0.155 (#9624) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- website/package.json | 2 +- yarn.lock | 57 +++++++++++++++++++++++++++++++++++++------- 2 files changed, 50 insertions(+), 9 deletions(-) diff --git a/website/package.json b/website/package.json index 43be5843525..323e4749148 100644 --- a/website/package.json +++ b/website/package.json @@ -66,7 +66,7 @@ "@graphql-codegen/typescript-vue-urql": "2.3.6", "@graphql-codegen/urql-introspection": "2.2.1", "@graphql-codegen/client-preset": "4.1.0", - "@mendable/search": "0.0.108", + "@mendable/search": "0.0.155", "@monaco-editor/react": "4.5.1", "@theguild/components": "5.2.1", "classnames": "2.3.2", diff --git a/yarn.lock b/yarn.lock index 2398f36d0a6..7d2550a3786 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3386,11 +3386,12 @@ "@types/mdx" "^2.0.0" "@types/react" ">=16" -"@mendable/search@0.0.108": - version "0.0.108" - resolved "https://registry.yarnpkg.com/@mendable/search/-/search-0.0.108.tgz#248d0e932c39a6db12bb834d4c01d74a5e3972cf" - integrity sha512-TsnbH9Fz93YKIYpaGpYW8GzkYOC4FINxRbMZwZU3mr7cl23yQHzk9ghD0vATh7BtjfcrDiq9FlXtwBO2VVukig== +"@mendable/search@0.0.155": + version "0.0.155" + resolved "https://registry.yarnpkg.com/@mendable/search/-/search-0.0.155.tgz#051e6db2c14c6c1a7d4b9e6c7a0332bd4fddcb58" + integrity sha512-8u1hBMHTVccm/T/R3+K3H+yVkc3WgEAOURrc1km6iJLxS17OqKVzmq7FgqRyPOhUmbv5YMFqZ8u1+2Rf+UE79Q== dependencies: + html-react-parser "^4.2.0" posthog-js "^1.45.1" "@monaco-editor/loader@^1.3.3": @@ -7013,7 +7014,7 @@ domelementtype@^2.3.0: resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== -domhandler@^5.0.2, domhandler@^5.0.3: +domhandler@5.0.3, domhandler@^5.0.2, domhandler@^5.0.3: version "5.0.3" resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== @@ -7025,7 +7026,7 @@ dompurify@3.0.5: resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.0.5.tgz#eb3d9cfa10037b6e73f32c586682c4b2ab01fbed" integrity sha512-F9e6wPGtY+8KNMRAVfxeCOHU0/NPWMSENNq4pQctuXRqqdEPW7q3CrLbR5Nse044WwacyjHGOMlvNsBe1y6z9A== -domutils@^3.0.1: +domutils@^3.0.1, domutils@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e" integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA== @@ -7127,7 +7128,7 @@ enquirer@^2.3.0, enquirer@^2.3.6: dependencies: ansi-colors "^4.1.1" -entities@^4.2.0, entities@^4.4.0: +entities@^4.2.0, entities@^4.4.0, entities@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== @@ -8860,11 +8861,39 @@ htm@^3.1.1: resolved "https://registry.yarnpkg.com/htm/-/htm-3.1.1.tgz#49266582be0dc66ed2235d5ea892307cc0c24b78" integrity sha512-983Vyg8NwUE7JkZ6NmOqpCZ+sh1bKv2iYTlUkzlWmA5JD2acKoxd4KVxbMmxX/85mtfdnDmTFoNKcg5DGAvxNQ== +html-dom-parser@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/html-dom-parser/-/html-dom-parser-4.0.0.tgz#dc382fbbc9306f8c9b5aae4e3f2822e113a48709" + integrity sha512-TUa3wIwi80f5NF8CVWzkopBVqVAtlawUzJoLwVLHns0XSJGynss4jiY0mTWpiDOsuyw+afP+ujjMgRh9CoZcXw== + dependencies: + domhandler "5.0.3" + htmlparser2 "9.0.0" + html-escaper@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== +html-react-parser@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/html-react-parser/-/html-react-parser-4.2.1.tgz#5fcccc9d7d61ef145c6a0c69c6531094188d9682" + integrity sha512-Dxzdowj5Zu/+7mr8X8PzCFbPXGuwCwGB2u4cB6oxZGES9inw85qlvnlfPD75VGKUGjcgsXs+9Dpj+THWNQyOBw== + dependencies: + domhandler "5.0.3" + html-dom-parser "4.0.0" + react-property "2.0.0" + style-to-js "1.1.3" + +htmlparser2@9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-9.0.0.tgz#e431142b7eeb1d91672742dea48af8ac7140cddb" + integrity sha512-uxbSI98wmFT/G4P2zXx4OVx04qWUmyFPrD2/CNepa2Zo3GPNaCaaxElDgwUrwYWkK1nr9fft0Ya8dws8coDLLQ== + dependencies: + domelementtype "^2.3.0" + domhandler "^5.0.3" + domutils "^3.1.0" + entities "^4.5.0" + http-proxy-agent@^6.0.0: version "6.0.1" resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-6.0.1.tgz#c18aa52daa625a9bd00243f57252fd44e86ff40b" @@ -12859,6 +12888,11 @@ react-player@2.12.0: prop-types "^15.7.2" react-fast-compare "^3.0.1" +react-property@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/react-property/-/react-property-2.0.0.tgz#2156ba9d85fa4741faf1918b38efc1eae3c6a136" + integrity sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw== + react-refresh@^0.14.0: version "0.14.0" resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.0.tgz#4e02825378a5f227079554d4284889354e5f553e" @@ -13993,7 +14027,14 @@ strnum@^1.0.5: resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db" integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA== -style-to-object@^0.4.0, style-to-object@^0.4.1: +style-to-js@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/style-to-js/-/style-to-js-1.1.3.tgz#2012d75dc89bf400edc29c545ed61c8626b00184" + integrity sha512-zKI5gN/zb7LS/Vm0eUwjmjrXWw8IMtyA8aPBJZdYiQTXj4+wQ3IucOLIOnF7zCHxvW8UhIGh/uZh/t9zEHXNTQ== + dependencies: + style-to-object "0.4.1" + +style-to-object@0.4.1, style-to-object@^0.4.0, style-to-object@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.4.1.tgz#53cf856f7cf7f172d72939d9679556469ba5de37" integrity sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw== From 9436ebe1caad5cd9634fc2184ba41b58fdfd44c7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 23:02:58 -0400 Subject: [PATCH 080/115] fix(deps): update dependency cosmiconfig to v8.2.0 (#9635) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> From 84072b45710680ace4842c1a25fb2b301fac9d80 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Aug 2023 03:05:21 +0000 Subject: [PATCH 081/115] fix(deps): update dependency inquirer to v8.2.6 (#9626) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- yarn.lock | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/yarn.lock b/yarn.lock index 7d2550a3786..925ee3601a7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9048,9 +9048,9 @@ inline-style-parser@0.1.1: integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q== inquirer@^8.0.0: - version "8.2.5" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.5.tgz#d8654a7542c35a9b9e069d27e2df4858784d54f8" - integrity sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ== + version "8.2.6" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.6.tgz#733b74888195d8d400a67ac332011b5fae5ea562" + integrity sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg== dependencies: ansi-escapes "^4.2.1" chalk "^4.1.1" @@ -9066,7 +9066,7 @@ inquirer@^8.0.0: string-width "^4.1.0" strip-ansi "^6.0.0" through "^2.3.6" - wrap-ansi "^7.0.0" + wrap-ansi "^6.0.1" internal-slot@^1.0.3, internal-slot@^1.0.4, internal-slot@^1.0.5: version "1.0.5" @@ -15355,7 +15355,7 @@ word-wrap@~1.2.3: string-width "^4.1.0" strip-ansi "^6.0.0" -wrap-ansi@^6.2.0: +wrap-ansi@^6.0.1, wrap-ansi@^6.2.0: version "6.2.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== From 0da940b0a9a44433948e966d824a68e89ab8b592 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Aug 2023 03:06:39 +0000 Subject: [PATCH 082/115] fix(deps): update dependency react-select to v5.7.4 (#9628) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- website/package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/website/package.json b/website/package.json index 323e4749148..33ec7f07f7d 100644 --- a/website/package.json +++ b/website/package.json @@ -80,7 +80,7 @@ "react": "18.2.0", "react-dom": "18.2.0", "react-markdown": "8.0.7", - "react-select": "5.7.3", + "react-select": "5.7.4", "typescript-json-schema": "0.56.0" }, "browserslist": { diff --git a/yarn.lock b/yarn.lock index 925ee3601a7..6d9ee77d6ab 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12898,10 +12898,10 @@ react-refresh@^0.14.0: resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.0.tgz#4e02825378a5f227079554d4284889354e5f553e" integrity sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ== -react-select@5.7.3: - version "5.7.3" - resolved "https://registry.yarnpkg.com/react-select/-/react-select-5.7.3.tgz#fa0dc9a23cad6ff3871ad3829f6083a4b54961a2" - integrity sha512-z8i3NCuFFWL3w27xq92rBkVI2onT0jzIIPe480HlBjXJ3b5o6Q+Clp4ydyeKrj9DZZ3lrjawwLC5NGl0FSvUDg== +react-select@5.7.4: + version "5.7.4" + resolved "https://registry.yarnpkg.com/react-select/-/react-select-5.7.4.tgz#d8cad96e7bc9d6c8e2709bdda8f4363c5dd7ea7d" + integrity sha512-NhuE56X+p9QDFh4BgeygHFIvJJszO1i1KSkg/JPcIJrbovyRtI+GuOEa4XzFCEpZRAEoEI8u/cAHK+jG/PgUzQ== dependencies: "@babel/runtime" "^7.12.0" "@emotion/cache" "^11.4.0" From 1d9667798cc133a011a9db5ea54af46703fbb56e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Aug 2023 03:09:29 +0000 Subject: [PATCH 083/115] chore(deps): update dependency typescript to v5.2.2 (#9632) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- examples/react/apollo-client-defer/package.json | 2 +- examples/react/apollo-client-swc-plugin/package.json | 2 +- examples/react/apollo-client/package.json | 2 +- examples/react/http-executor/package.json | 2 +- examples/react/nextjs-swr/package.json | 2 +- examples/react/tanstack-react-query/package.json | 2 +- examples/react/urql/package.json | 2 +- package.json | 4 ++-- yarn.lock | 8 ++++---- 9 files changed, 13 insertions(+), 13 deletions(-) diff --git a/examples/react/apollo-client-defer/package.json b/examples/react/apollo-client-defer/package.json index 4ff23667736..e86492d34ef 100644 --- a/examples/react/apollo-client-defer/package.json +++ b/examples/react/apollo-client-defer/package.json @@ -21,7 +21,7 @@ "cypress": "12.17.4", "serve": "14.2.1", "start-server-and-test": "2.0.0", - "typescript": "4.9.5", + "typescript": "5.2.2", "vite": "^4.1.0" }, "scripts": { diff --git a/examples/react/apollo-client-swc-plugin/package.json b/examples/react/apollo-client-swc-plugin/package.json index def93c04267..26d084fee26 100644 --- a/examples/react/apollo-client-swc-plugin/package.json +++ b/examples/react/apollo-client-swc-plugin/package.json @@ -14,7 +14,7 @@ "@vitejs/plugin-react-swc": "^3.3.0", "@types/react": "18.2.21", "@types/react-dom": "18.2.7", - "typescript": "5.0.4", + "typescript": "5.2.2", "vite": "^4.1.0" }, "scripts": { diff --git a/examples/react/apollo-client/package.json b/examples/react/apollo-client/package.json index 011c74b5289..a534329b4e8 100644 --- a/examples/react/apollo-client/package.json +++ b/examples/react/apollo-client/package.json @@ -16,7 +16,7 @@ "@types/node": "^18.11.18", "@types/react": "^18.0.15", "@types/react-dom": "^18.0.10", - "typescript": "5.0.4", + "typescript": "5.2.2", "serve": "14.2.1", "cypress": "12.17.4", "start-server-and-test": "2.0.0", diff --git a/examples/react/http-executor/package.json b/examples/react/http-executor/package.json index 10f9f194d12..528b659d8a2 100644 --- a/examples/react/http-executor/package.json +++ b/examples/react/http-executor/package.json @@ -15,7 +15,7 @@ "@types/node": "^18.11.18", "@types/react": "^18.0.17", "@types/react-dom": "^18.0.10", - "typescript": "5.0.4", + "typescript": "5.2.2", "serve": "14.2.1", "cypress": "12.17.4", "start-server-and-test": "2.0.0", diff --git a/examples/react/nextjs-swr/package.json b/examples/react/nextjs-swr/package.json index b4dc8ba317a..dfb32164306 100644 --- a/examples/react/nextjs-swr/package.json +++ b/examples/react/nextjs-swr/package.json @@ -28,6 +28,6 @@ "@types/react-dom": "^18.0.10", "eslint": "^8.21.0", "eslint-config-next": "^13.0.0", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/examples/react/tanstack-react-query/package.json b/examples/react/tanstack-react-query/package.json index 2fddeb65157..f29bc5df27b 100644 --- a/examples/react/tanstack-react-query/package.json +++ b/examples/react/tanstack-react-query/package.json @@ -15,7 +15,7 @@ "@types/node": "^18.11.18", "@types/react": "^18.0.17", "@types/react-dom": "^18.0.10", - "typescript": "5.0.4", + "typescript": "5.2.2", "serve": "14.2.1", "cypress": "12.17.4", "start-server-and-test": "2.0.0", diff --git a/examples/react/urql/package.json b/examples/react/urql/package.json index d7812dcd0c5..77f8955f318 100644 --- a/examples/react/urql/package.json +++ b/examples/react/urql/package.json @@ -13,7 +13,7 @@ "@graphql-codegen/cli": "^5.0.0", "@graphql-codegen/client-preset": "^4.1.0", "@vitejs/plugin-react": "^3.1.0", - "typescript": "5.0.4", + "typescript": "5.2.2", "serve": "14.2.1", "cypress": "12.17.4", "start-server-and-test": "2.0.0", diff --git a/package.json b/package.json index 3b6535384c8..0378377311e 100644 --- a/package.json +++ b/package.json @@ -68,7 +68,7 @@ "ts-node": "10.9.1", "tslib": "2.6.2", "tsx": "3.12.7", - "typescript": "5.0.4" + "typescript": "5.2.2" }, "lint-staged": { "packages/**/src/**/*.{ts,tsx}": [ @@ -90,7 +90,7 @@ "**/apollo-language-server/graphql": "^16.0.0", "**/@types/graphql-upload/graphql": "^16.0.0", "ts-node": "10.9.1", - "typescript": "5.0.4", + "typescript": "5.2.2", "cosmiconfig": "8.1.3" } } diff --git a/yarn.lock b/yarn.lock index 6d9ee77d6ab..bcc711e3b85 100644 --- a/yarn.lock +++ b/yarn.lock @@ -14632,10 +14632,10 @@ typescript-json-schema@0.56.0: typescript "~4.9.5" yargs "^17.1.1" -typescript@4.9.5, typescript@5.0.4, typescript@^5.0.0, typescript@~4.9.5: - version "5.0.4" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b" - integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw== +typescript@5.2.2, typescript@^5.0.0, typescript@~4.9.5: + version "5.2.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.2.2.tgz#5ebb5e5a5b75f085f22bc3f8460fba308310fa78" + integrity sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w== ua-parser-js@^0.7.30: version "0.7.33" From e754b772df4cdb1e047099e2d1fb55186d8bca50 Mon Sep 17 00:00:00 2001 From: Hiroki <39700763+hkfi@users.noreply.github.com> Date: Fri, 25 Aug 2023 12:13:28 +0900 Subject: [PATCH 084/115] docs: generated graphql import example in react-vue.mdx (#9591) --- website/src/pages/docs/guides/react-vue.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/website/src/pages/docs/guides/react-vue.mdx b/website/src/pages/docs/guides/react-vue.mdx index 767e28418f7..5429f3e5b1f 100644 --- a/website/src/pages/docs/guides/react-vue.mdx +++ b/website/src/pages/docs/guides/react-vue.mdx @@ -551,9 +551,9 @@ Then write type-safe code like the following: ```ts filename="Application Code" import { useGraphQL } from './use-graphql.js' -import { gql } from './generated/graphql.js' +import { graphql } from './generated/gql.js' -const allFilmsWithVariablesQueryDocument = gql(/* GraphQL */ ` +const allFilmsWithVariablesQueryDocument = graphql(/* GraphQL */ ` query allFilmsWithVariablesQuery($first: Int!) { allFilms(first: $first) { edges { @@ -635,9 +635,9 @@ Then write type-safe code like the following: ```ts filename="Application Code" import { useGraphQL } from './use-graphql.js' -import { gql } from './generated/graphql.js' +import { graphql } from './generated/gql.js' -const allFilmsWithVariablesQueryDocument = gql(/* GraphQL */ ` +const allFilmsWithVariablesQueryDocument = graphql(/* GraphQL */ ` query allFilmsWithVariablesQuery($first: Int!) { allFilms(first: $first) { edges { From 4ff4844ffd31fe85f1d1d8f798a6fca7c9682fcd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Aug 2023 04:03:48 +0000 Subject: [PATCH 085/115] chore(deps): update dependency @types/node to v18.17.11 (#9608) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- examples/programmatic-typescript/package.json | 2 +- website/package.json | 2 +- yarn.lock | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/programmatic-typescript/package.json b/examples/programmatic-typescript/package.json index a7334abb335..adb2e21b728 100644 --- a/examples/programmatic-typescript/package.json +++ b/examples/programmatic-typescript/package.json @@ -24,7 +24,7 @@ "prettier": "2.8.8" }, "devDependencies": { - "@types/node": "18.16.19", + "@types/node": "18.17.11", "tsup": "6.7.0" } } diff --git a/website/package.json b/website/package.json index 33ec7f07f7d..152d15abb76 100644 --- a/website/package.json +++ b/website/package.json @@ -14,7 +14,7 @@ "@theguild/tailwind-config": "0.3.0", "@types/dedent": "0.7.0", "@types/jsonpath": "0.2.0", - "@types/node": "18.16.19", + "@types/node": "18.17.11", "@types/react": "18.2.21", "fast-xml-parser": "4.2.7", "jsonpath": "1.1.1", diff --git a/yarn.lock b/yarn.lock index bcc711e3b85..37cc3e75133 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4405,10 +4405,10 @@ resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz#31b7ca6407128a3d2bbc27fe2d21b345397f6197" integrity sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA== -"@types/node@*", "@types/node@18.16.19", "@types/node@^18.0.0", "@types/node@^18.11.18": - version "18.16.19" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.19.tgz#cb03fca8910fdeb7595b755126a8a78144714eea" - integrity sha512-IXl7o+R9iti9eBW4Wg2hx1xQDig183jj7YLn8F7udNceyfkbn1ZxmzZXuak20gR40D7pIkIY1kYGx5VIGbaHKA== +"@types/node@*", "@types/node@18.17.11", "@types/node@^18.0.0", "@types/node@^18.11.18": + version "18.17.11" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.17.11.tgz#c04054659d88bfeba94095f41ef99a8ddf4e1813" + integrity sha512-r3hjHPBu+3LzbGBa8DHnr/KAeTEEOrahkcL+cZc4MaBMTM+mk8LtXR+zw+nqfjuDZZzYTYgTcpHuP+BEQk069g== "@types/node@^12.7.1": version "12.20.55" From a44c7e493aa1be11e5d924e5cfba469f7cc12d72 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Aug 2023 04:38:44 +0000 Subject: [PATCH 086/115] fix(deps): update dependency @monaco-editor/react to v4.5.2 (#9625) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- website/package.json | 2 +- yarn.lock | 17 +++++------------ 2 files changed, 6 insertions(+), 13 deletions(-) diff --git a/website/package.json b/website/package.json index 152d15abb76..b2469dd82a4 100644 --- a/website/package.json +++ b/website/package.json @@ -67,7 +67,7 @@ "@graphql-codegen/urql-introspection": "2.2.1", "@graphql-codegen/client-preset": "4.1.0", "@mendable/search": "0.0.155", - "@monaco-editor/react": "4.5.1", + "@monaco-editor/react": "4.5.2", "@theguild/components": "5.2.1", "classnames": "2.3.2", "date-fns": "2.29.3", diff --git a/yarn.lock b/yarn.lock index 37cc3e75133..46740ca67fd 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3401,10 +3401,10 @@ dependencies: state-local "^1.0.6" -"@monaco-editor/react@4.5.1": - version "4.5.1" - resolved "https://registry.yarnpkg.com/@monaco-editor/react/-/react-4.5.1.tgz#fbc76c692aee9a33b9ab24ae0c5f219b8f002fdb" - integrity sha512-NNDFdP+2HojtNhCkRfE6/D6ro6pBNihaOzMbGK84lNWzRu+CfBjwzGt4jmnqimLuqp5yE5viHS2vi+QOAnD5FQ== +"@monaco-editor/react@4.5.2": + version "4.5.2" + resolved "https://registry.yarnpkg.com/@monaco-editor/react/-/react-4.5.2.tgz#e8cc802203f729b423a998ea6fcb466604d61258" + integrity sha512-emcWu6vg1OpXPiYll4aPOaXe8bwYB4UaaNTwtArFLgMoNGBzRZb2Xn0Bra2HMIFM7QLgs7fCGunHO5LkfT2LBA== dependencies: "@monaco-editor/loader" "^1.3.3" @@ -4698,20 +4698,13 @@ dependencies: "@volar/source-map" "1.10.0" -"@volar/source-map@1.10.0": +"@volar/source-map@1.10.0", "@volar/source-map@~1.10.0": version "1.10.0" resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-1.10.0.tgz#2413eb190ce69fc1a382f58524a3f82306668024" integrity sha512-/ibWdcOzDGiq/GM1JU2eX8fH1bvAhl66hfe8yEgLEzg9txgr6qb5sQ/DEz5PcDL75tF5H5sCRRwn8Eu8ezi9mw== dependencies: muggle-string "^0.3.1" -"@volar/source-map@~1.10.0": - version "1.10.1" - resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-1.10.1.tgz#b806845782cc615f2beba94624ff34a700f302f5" - integrity sha512-3/S6KQbqa7pGC8CxPrg69qHLpOvkiPHGJtWPkI/1AXCsktkJ6gIk/5z4hyuMp8Anvs6eS/Kvp/GZa3ut3votKA== - dependencies: - muggle-string "^0.3.1" - "@volar/typescript@~1.10.0": version "1.10.0" resolved "https://registry.yarnpkg.com/@volar/typescript/-/typescript-1.10.0.tgz#3b16cf7c4c1802eac023ba4e57fe52bdb6d3016f" From 62c918f944b804f50cad57dee13cb75a78222106 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Aug 2023 04:39:19 +0000 Subject: [PATCH 087/115] chore(deps): update dependency graphql to v16.8.0 (#9631) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> From 74ba1762989aa10f39c688349ecd19d9b1c5e410 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Aug 2023 04:49:55 +0000 Subject: [PATCH 088/115] fix(deps): update dependency graphql to v16.8.0 (#9636) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- examples/programmatic-typescript/package.json | 2 +- examples/typescript-esm/package.json | 2 +- examples/typescript-graphql-request/package.json | 2 +- examples/typescript-resolvers/package.json | 2 +- examples/vite/vite-react-cts/package.json | 2 +- examples/vite/vite-react-mts/package.json | 2 +- examples/vite/vite-react-ts/package.json | 2 +- package.json | 4 ++-- website/package.json | 2 +- yarn.lock | 8 ++++---- 10 files changed, 14 insertions(+), 14 deletions(-) diff --git a/examples/programmatic-typescript/package.json b/examples/programmatic-typescript/package.json index adb2e21b728..93e83d2df2a 100644 --- a/examples/programmatic-typescript/package.json +++ b/examples/programmatic-typescript/package.json @@ -19,7 +19,7 @@ "@graphql-tools/graphql-file-loader": "8.0.0", "@graphql-tools/load": "8.0.0", "@graphql-tools/schema": "10.0.0", - "graphql": "16.6.0", + "graphql": "16.8.0", "graphql-tag": "2.12.6", "prettier": "2.8.8" }, diff --git a/examples/typescript-esm/package.json b/examples/typescript-esm/package.json index 4f0baae5b59..0b85df7c487 100644 --- a/examples/typescript-esm/package.json +++ b/examples/typescript-esm/package.json @@ -8,7 +8,7 @@ }, "dependencies": { "@graphql-typed-document-node/core": "3.2.0", - "graphql": "16.6.0" + "graphql": "16.8.0" }, "scripts": { "codegen": "graphql-codegen-esm --config codegen.cjs", diff --git a/examples/typescript-graphql-request/package.json b/examples/typescript-graphql-request/package.json index 212a1221b85..4efd09876e0 100644 --- a/examples/typescript-graphql-request/package.json +++ b/examples/typescript-graphql-request/package.json @@ -9,7 +9,7 @@ "jest": "28.1.3" }, "dependencies": { - "graphql": "16.6.0", + "graphql": "16.8.0", "graphql-yoga": "4.0.4", "graphql-request": "5.2.0" }, diff --git a/examples/typescript-resolvers/package.json b/examples/typescript-resolvers/package.json index 45d94b6179a..1d7c9b01c65 100644 --- a/examples/typescript-resolvers/package.json +++ b/examples/typescript-resolvers/package.json @@ -8,7 +8,7 @@ "@graphql-codegen/typescript-resolvers": "4.0.1" }, "dependencies": { - "graphql": "16.6.0", + "graphql": "16.8.0", "graphql-yoga": "4.0.4" }, "scripts": { diff --git a/examples/vite/vite-react-cts/package.json b/examples/vite/vite-react-cts/package.json index e8314f6aaaa..e7c2547fb87 100644 --- a/examples/vite/vite-react-cts/package.json +++ b/examples/vite/vite-react-cts/package.json @@ -15,7 +15,7 @@ "@apollo/client": "^3.7.10", "@graphql-typed-document-node/core": "3.2.0", "@vitejs/plugin-react-swc": "^3.0.0", - "graphql": "16.6.0", + "graphql": "16.8.0", "react": "^18.2.0", "react-dom": "^18.2.0", "vite": "^4.1.0" diff --git a/examples/vite/vite-react-mts/package.json b/examples/vite/vite-react-mts/package.json index 73b1372c259..97906ac50ff 100644 --- a/examples/vite/vite-react-mts/package.json +++ b/examples/vite/vite-react-mts/package.json @@ -15,7 +15,7 @@ "@apollo/client": "^3.7.10", "@graphql-typed-document-node/core": "3.2.0", "@vitejs/plugin-react-swc": "^3.0.0", - "graphql": "16.6.0", + "graphql": "16.8.0", "react": "^18.2.0", "react-dom": "^18.2.0", "vite": "^4.1.0" diff --git a/examples/vite/vite-react-ts/package.json b/examples/vite/vite-react-ts/package.json index 104b283ef21..f4dfb461222 100644 --- a/examples/vite/vite-react-ts/package.json +++ b/examples/vite/vite-react-ts/package.json @@ -15,7 +15,7 @@ "@apollo/client": "^3.7.10", "@graphql-typed-document-node/core": "3.2.0", "@vitejs/plugin-react-swc": "^3.0.0", - "graphql": "16.6.0", + "graphql": "16.8.0", "react": "^18.2.0", "react-dom": "^18.2.0", "vite": "^4.1.0" diff --git a/package.json b/package.json index 0378377311e..1c8deb525bc 100644 --- a/package.json +++ b/package.json @@ -54,7 +54,7 @@ "babel-jest": "29.6.4", "bob-the-bundler": "6.0.0", "eslint": "8.47.0", - "graphql": "16.6.0", + "graphql": "16.8.0", "husky": "8.0.3", "jest": "28.1.3", "jest-docblock": "29.6.3", @@ -85,7 +85,7 @@ "prettier": "2.8.8", "babel-jest": "29.6.4", "jest-runner": "28.1.3", - "graphql": "16.6.0", + "graphql": "16.8.0", "graphql-language-service-interface": "2.10.2", "**/apollo-language-server/graphql": "^16.0.0", "**/@types/graphql-upload/graphql": "^16.0.0", diff --git a/website/package.json b/website/package.json index b2469dd82a4..811641813ef 100644 --- a/website/package.json +++ b/website/package.json @@ -72,7 +72,7 @@ "classnames": "2.3.2", "date-fns": "2.29.3", "dedent": "0.7.0", - "graphql": "16.6.0", + "graphql": "16.8.0", "js-yaml": "4.1.0", "next": "13.4.2", "next-mdx-remote": "4.4.1", diff --git a/yarn.lock b/yarn.lock index 46740ca67fd..1fedd9dd83e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8628,10 +8628,10 @@ graphql-yoga@4.0.4: lru-cache "^10.0.0" tslib "^2.5.2" -graphql@16.6.0, graphql@^16.0.0, graphql@^16.6.0: - version "16.6.0" - resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.6.0.tgz#c2dcffa4649db149f6282af726c8c83f1c7c5fdb" - integrity sha512-KPIBPDlW7NxrbT/eh4qPXz5FiFdL5UbaA0XUNz2Rp3Z3hqBSkbj0GVjwFDztsWVauZUWsbKHgMg++sk8UX0bkw== +graphql@16.8.0, graphql@^16.0.0, graphql@^16.6.0: + version "16.8.0" + resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.8.0.tgz#374478b7f27b2dc6153c8f42c1b80157f79d79d4" + integrity sha512-0oKGaR+y3qcS5mCu1vb7KG+a89vjn06C7Ihq/dDl3jA+A8B3TKomvi3CiEcVLJQGalbu8F52LxkOym7U5sSfbg== gray-matter@^4.0.3: version "4.0.3" From c03e4654f0364d26c7b3cacc576dd668ff570589 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 26 Aug 2023 03:34:48 +0000 Subject: [PATCH 089/115] chore(deps): update dependency eslint to v8.48.0 (#9612) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- yarn.lock | 41 +++++++++++++++++++++++++++-------------- 1 file changed, 27 insertions(+), 14 deletions(-) diff --git a/yarn.lock b/yarn.lock index 1fedd9dd83e..08c2ab92899 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1900,9 +1900,9 @@ eslint-visitor-keys "^3.3.0" "@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.6.0", "@eslint-community/regexpp@^4.6.1": - version "4.7.0" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.7.0.tgz#96e7c05e738327602ae5942437f9c6b177ec279a" - integrity sha512-+HencqxU7CFJnQb7IKtuNBqS6Yx3Tz4kOL8BJXo+JyeiBm5MEX6pO8onXDkjrkCRlfYXS1Axro15ZjVFe9YgsA== + version "4.8.0" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.8.0.tgz#11195513186f68d42fbf449f9a7136b2c0c92005" + integrity sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg== "@eslint/eslintrc@^2.1.2": version "2.1.2" @@ -1920,9 +1920,9 @@ strip-json-comments "^3.1.1" "@eslint/js@^8.47.0": - version "8.47.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.47.0.tgz#5478fdf443ff8158f9de171c704ae45308696c7d" - integrity sha512-P6omY1zv5MItm93kLM8s2vr1HICJH8v0dvddDhysbIuZ+vcjOHg5Zbkf1mTkcmi2JA9oBG2anOkRnW8WJTS8Og== + version "8.48.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.48.0.tgz#642633964e217905436033a2bd08bf322849b7fb" + integrity sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw== "@floating-ui/core@^1.2.1": version "1.2.1" @@ -8070,14 +8070,15 @@ find-yarn-workspace-root@^2.0.0: micromatch "^4.0.2" flat-cache@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" - integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + version "3.1.0" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.1.0.tgz#0e54ab4a1a60fe87e2946b6b00657f1c99e1af3f" + integrity sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew== dependencies: - flatted "^3.1.0" + flatted "^3.2.7" + keyv "^4.5.3" rimraf "^3.0.2" -flatted@^3.1.0: +flatted@^3.2.7: version "3.2.7" resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== @@ -8427,9 +8428,9 @@ globals@^11.1.0: integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== globals@^13.19.0: - version "13.20.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" - integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== + version "13.21.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.21.0.tgz#163aae12f34ef502f5153cfbdd3600f36c63c571" + integrity sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg== dependencies: type-fest "^0.20.2" @@ -10113,6 +10114,11 @@ jsesc@~0.5.0: resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== +json-buffer@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" + integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== + json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" @@ -10252,6 +10258,13 @@ katex@^0.16.0, katex@^0.16.7: dependencies: commander "^8.3.0" +keyv@^4.5.3: + version "4.5.3" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.3.tgz#00873d2b046df737963157bd04f294ca818c9c25" + integrity sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug== + dependencies: + json-buffer "3.0.1" + khroma@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/khroma/-/khroma-2.0.0.tgz#7577de98aed9f36c7a474c4d453d94c0d6c6588b" From 9df36440878a4af53d83b1989bb01e12a74642db Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 28 Aug 2023 00:20:28 -0400 Subject: [PATCH 090/115] chore(deps): update dependency tsup to v7 (#9622) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- examples/programmatic-typescript/package.json | 2 +- yarn.lock | 24 +++++++++++++++++-- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/examples/programmatic-typescript/package.json b/examples/programmatic-typescript/package.json index 93e83d2df2a..0f73e93fa91 100644 --- a/examples/programmatic-typescript/package.json +++ b/examples/programmatic-typescript/package.json @@ -25,6 +25,6 @@ }, "devDependencies": { "@types/node": "18.17.11", - "tsup": "6.7.0" + "tsup": "7.2.0" } } diff --git a/yarn.lock b/yarn.lock index 08c2ab92899..9f6fd415917 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7266,7 +7266,7 @@ esbuild@^0.17.6, esbuild@~0.17.6: "@esbuild/win32-ia32" "0.17.12" "@esbuild/win32-x64" "0.17.12" -esbuild@^0.18.10: +esbuild@^0.18.10, esbuild@^0.18.2: version "0.18.20" resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.18.20.tgz#4709f5a34801b43b799ab7d6d82f7284a9b7a7a6" integrity sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA== @@ -14463,7 +14463,27 @@ tslib@~2.5.0: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.2.tgz#1b6f07185c881557b0ffa84b111a0106989e8338" integrity sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA== -tsup@6.7.0, tsup@^6.5.0: +tsup@7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/tsup/-/tsup-7.2.0.tgz#bb24c0d5e436477900c712e42adc67200607303c" + integrity sha512-vDHlczXbgUvY3rWvqFEbSqmC1L7woozbzngMqTtL2PGBODTtWlRwGDDawhvWzr5c1QjKe4OAKqJGfE1xeXUvtQ== + dependencies: + bundle-require "^4.0.0" + cac "^6.7.12" + chokidar "^3.5.1" + debug "^4.3.1" + esbuild "^0.18.2" + execa "^5.0.0" + globby "^11.0.3" + joycon "^3.0.1" + postcss-load-config "^4.0.1" + resolve-from "^5.0.0" + rollup "^3.2.5" + source-map "0.8.0-beta.0" + sucrase "^3.20.3" + tree-kill "^1.2.2" + +tsup@^6.5.0: version "6.7.0" resolved "https://registry.yarnpkg.com/tsup/-/tsup-6.7.0.tgz#416f350f32a07b6ae86792ad7e52b0cafc566d64" integrity sha512-L3o8hGkaHnu5TdJns+mCqFsDBo83bJ44rlK7e6VdanIvpea4ArPcU3swWGsLVbXak1PqQx/V+SSmFPujBK+zEQ== From 23d8796a048c9d72b92429942d488c7483b500db Mon Sep 17 00:00:00 2001 From: Fran Dios Date: Tue, 26 Sep 2023 00:38:10 +0900 Subject: [PATCH 091/115] perf(watcher): ignore events in `.git` directory (#9556) * perf(watcher): ignore events in .git directory * Create heavy-jars-notice.md --------- Co-authored-by: Saihajpreet Singh --- .changeset/heavy-jars-notice.md | 5 +++++ packages/graphql-codegen-cli/src/utils/watcher.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/heavy-jars-notice.md diff --git a/.changeset/heavy-jars-notice.md b/.changeset/heavy-jars-notice.md new file mode 100644 index 00000000000..66bc58c88c8 --- /dev/null +++ b/.changeset/heavy-jars-notice.md @@ -0,0 +1,5 @@ +--- +"@graphql-codegen/cli": patch +--- + +ignore events in `.git` directory diff --git a/packages/graphql-codegen-cli/src/utils/watcher.ts b/packages/graphql-codegen-cli/src/utils/watcher.ts index a03b9438465..b2420f65cfa 100644 --- a/packages/graphql-codegen-cli/src/utils/watcher.ts +++ b/packages/graphql-codegen-cli/src/utils/watcher.ts @@ -84,7 +84,7 @@ export const createWatcher = ( }, 100); emitWatching(watchDirectory); - const ignored: string[] = []; + const ignored: string[] = ['**/.git/**']; for (const entry of Object.keys(config.generates).map(filename => ({ filename, config: normalizeOutputParam(config.generates[filename]), From 95cdf709a104f5743468bf87754d1ccb9b5e9194 Mon Sep 17 00:00:00 2001 From: valley <69236698+cksal0805@users.noreply.github.com> Date: Thu, 12 Oct 2023 04:39:03 +0900 Subject: [PATCH 092/115] Fix docs typo (#9700) --- packages/plugins/typescript/typescript/src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugins/typescript/typescript/src/config.ts b/packages/plugins/typescript/typescript/src/config.ts index c790f1d9d1a..b9aed7cf961 100644 --- a/packages/plugins/typescript/typescript/src/config.ts +++ b/packages/plugins/typescript/typescript/src/config.ts @@ -141,7 +141,7 @@ export interface TypeScriptPluginConfig extends RawTypesConfig { * 'path/to/file.ts': { * plugins: ['typescript'], * config: { - * enumsAsTypes: true + * enumsAsTypes: true, * futureProofEnums: true * } * } From 812a93f2523cff38930c9d7d16f10cfbdb5e602d Mon Sep 17 00:00:00 2001 From: Dimitri POSTOLOV Date: Wed, 11 Oct 2023 22:00:40 +0200 Subject: [PATCH 093/115] disallow cmd+k for mendable search in website (#9599) --- website/src/components/Search.tsx | 35 +++++++++++++++++-------------- website/theme.config.tsx | 1 - yarn.lock | 12 +++++------ 3 files changed, 25 insertions(+), 23 deletions(-) diff --git a/website/src/components/Search.tsx b/website/src/components/Search.tsx index 3f4a0a37e1f..772a3c6fa71 100644 --- a/website/src/components/Search.tsx +++ b/website/src/components/Search.tsx @@ -6,22 +6,25 @@ export function Search() { const isMounted = useMounted(); return (

    - 🤖} - userIcon={🧑‍💻} - messageSettings={{ - openSourcesInNewTab: false, - prettySources: true, - }} - welcomeMessage="Hi, I'm your AI assistant. How can I help you?" - /> + {isMounted && ( + 🤖} + userIcon={🧑‍💻} + messageSettings={{ + openSourcesInNewTab: false, + prettySources: true, + }} + welcomeMessage="Hi, I'm your AI assistant. How can I help you?" + cmdShortcutKey="" + /> + )}
    ); } diff --git a/website/theme.config.tsx b/website/theme.config.tsx index 5a2fa0919b9..e654a2cb711 100644 --- a/website/theme.config.tsx +++ b/website/theme.config.tsx @@ -9,7 +9,6 @@ export default defineConfig({ search: { component: Search, }, - main({ children }) { const { resolvedTheme } = useTheme(); const { route } = useRouter(); diff --git a/yarn.lock b/yarn.lock index 9f6fd415917..546310d6324 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4510,16 +4510,16 @@ resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.2.tgz#fc25ad9943bcac11cceb8168db4f275e0e72e756" integrity sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg== -"@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" - integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== - -"@types/unist@^3.0.0": +"@types/unist@*", "@types/unist@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.0.tgz#988ae8af1e5239e89f9fbb1ade4c935f4eeedf9a" integrity sha512-MFETx3tbTjE7Uk6vvnWINA/1iJ7LuMdO4fcq8UfF0pRbj01aGLduVvQcRyswuACJdpnHgg8E3rQLhaRdNEJS0w== +"@types/unist@^2.0.0", "@types/unist@^2.0.2": + version "2.0.6" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" + integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== + "@types/ws@^8.0.0": version "8.5.4" resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.4.tgz#bb10e36116d6e570dd943735f86c933c1587b8a5" From 059bd18b9f99d36fb13798a53bc4f41742325988 Mon Sep 17 00:00:00 2001 From: Dimitri POSTOLOV Date: Wed, 11 Oct 2023 22:24:21 +0200 Subject: [PATCH 094/115] GraphQL-Codegen x Nextra 3 (#9704) --- website/next-sitemap.config.cjs | 1 + website/package.json | 8 +- website/src/components/plugin.tsx | 8 +- website/src/components/plugins-page.tsx | 8 +- website/src/pages/_app.mdx | 5 - website/src/pages/_app.tsx | 6 + website/src/pages/_meta.json | 21 - website/src/pages/_meta.ts | 21 + website/src/pages/docs/_meta.json | 9 - website/src/pages/docs/_meta.ts | 9 + website/src/pages/docs/advanced/_meta.json | 7 - website/src/pages/docs/advanced/_meta.ts | 7 + .../pages/docs/config-reference/_meta.json | 10 - .../src/pages/docs/config-reference/_meta.ts | 10 + .../src/pages/docs/custom-codegen/_meta.json | 8 - .../src/pages/docs/custom-codegen/_meta.ts | 8 + .../src/pages/docs/getting-started/_meta.json | 6 - .../src/pages/docs/getting-started/_meta.ts | 6 + .../src/pages/docs/getting-started/index.mdx | 54 +- website/src/pages/docs/guides/_meta.json | 11 - website/src/pages/docs/guides/_meta.ts | 11 + ...-server-apollo-yoga-with-server-preset.mdx | 18 +- .../guides/graphql-server-apollo-yoga.mdx | 18 +- website/src/pages/docs/guides/react-vue.mdx | 54 +- .../src/pages/docs/integrations/_meta.json | 8 - website/src/pages/docs/integrations/_meta.ts | 8 + website/src/pages/docs/migration/_meta.json | 6 - website/src/pages/docs/migration/_meta.ts | 6 + .../src/pages/docs/migration/from-0-18.mdx | 26 +- website/src/pages/docs/migration/from-4-0.mdx | 22 +- website/src/pages/plugins/_meta.json | 12 - website/src/pages/plugins/_meta.ts | 12 + website/src/pages/plugins/c-sharp/_meta.json | 3 - website/src/pages/plugins/c-sharp/_meta.ts | 3 + website/src/pages/plugins/dart/_meta.json | 3 - website/src/pages/plugins/dart/_meta.ts | 3 + website/src/pages/plugins/flow/_meta.json | 4 - website/src/pages/plugins/flow/_meta.ts | 4 + website/src/pages/plugins/java/_meta.json | 6 - website/src/pages/plugins/java/_meta.ts | 6 + website/src/pages/plugins/other/_meta.json | 11 - website/src/pages/plugins/other/_meta.ts | 11 + .../pages/plugins/other/fragment-matcher.mdx | 10 +- website/src/pages/plugins/presets/_meta.json | 6 - website/src/pages/plugins/presets/_meta.ts | 6 + .../src/pages/plugins/typescript/_meta.json | 31 - website/src/pages/plugins/typescript/_meta.ts | 31 + yarn.lock | 1610 ++++++++++++----- 48 files changed, 1406 insertions(+), 766 deletions(-) delete mode 100644 website/src/pages/_app.mdx create mode 100644 website/src/pages/_app.tsx delete mode 100644 website/src/pages/_meta.json create mode 100644 website/src/pages/_meta.ts delete mode 100644 website/src/pages/docs/_meta.json create mode 100644 website/src/pages/docs/_meta.ts delete mode 100644 website/src/pages/docs/advanced/_meta.json create mode 100644 website/src/pages/docs/advanced/_meta.ts delete mode 100644 website/src/pages/docs/config-reference/_meta.json create mode 100644 website/src/pages/docs/config-reference/_meta.ts delete mode 100644 website/src/pages/docs/custom-codegen/_meta.json create mode 100644 website/src/pages/docs/custom-codegen/_meta.ts delete mode 100644 website/src/pages/docs/getting-started/_meta.json create mode 100644 website/src/pages/docs/getting-started/_meta.ts delete mode 100644 website/src/pages/docs/guides/_meta.json create mode 100644 website/src/pages/docs/guides/_meta.ts delete mode 100644 website/src/pages/docs/integrations/_meta.json create mode 100644 website/src/pages/docs/integrations/_meta.ts delete mode 100644 website/src/pages/docs/migration/_meta.json create mode 100644 website/src/pages/docs/migration/_meta.ts delete mode 100644 website/src/pages/plugins/_meta.json create mode 100644 website/src/pages/plugins/_meta.ts delete mode 100644 website/src/pages/plugins/c-sharp/_meta.json create mode 100644 website/src/pages/plugins/c-sharp/_meta.ts delete mode 100644 website/src/pages/plugins/dart/_meta.json create mode 100644 website/src/pages/plugins/dart/_meta.ts delete mode 100644 website/src/pages/plugins/flow/_meta.json create mode 100644 website/src/pages/plugins/flow/_meta.ts delete mode 100644 website/src/pages/plugins/java/_meta.json create mode 100644 website/src/pages/plugins/java/_meta.ts delete mode 100644 website/src/pages/plugins/other/_meta.json create mode 100644 website/src/pages/plugins/other/_meta.ts delete mode 100644 website/src/pages/plugins/presets/_meta.json create mode 100644 website/src/pages/plugins/presets/_meta.ts delete mode 100644 website/src/pages/plugins/typescript/_meta.json create mode 100644 website/src/pages/plugins/typescript/_meta.ts diff --git a/website/next-sitemap.config.cjs b/website/next-sitemap.config.cjs index b6a53bd2aa3..f4a1eec6a39 100644 --- a/website/next-sitemap.config.cjs +++ b/website/next-sitemap.config.cjs @@ -2,4 +2,5 @@ module.exports = { siteUrl: process.env.SITE_URL || 'https://the-guild.dev/graphql/codegen', generateIndexSitemap: false, + exclude: ['*/_meta'], }; diff --git a/website/package.json b/website/package.json index 811641813ef..378b47383a8 100644 --- a/website/package.json +++ b/website/package.json @@ -68,17 +68,17 @@ "@graphql-codegen/client-preset": "4.1.0", "@mendable/search": "0.0.155", "@monaco-editor/react": "4.5.2", - "@theguild/components": "5.2.1", + "@theguild/components": "^6.0.1", "classnames": "2.3.2", "date-fns": "2.29.3", "dedent": "0.7.0", "graphql": "16.8.0", "js-yaml": "4.1.0", - "next": "13.4.2", + "next": "^13.5.4", "next-mdx-remote": "4.4.1", "next-sitemap": "4.2.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", "react-markdown": "8.0.7", "react-select": "5.7.4", "typescript-json-schema": "0.56.0" diff --git a/website/src/components/plugin.tsx b/website/src/components/plugin.tsx index b7c7705229f..bf33afcfbec 100644 --- a/website/src/components/plugin.tsx +++ b/website/src/components/plugin.tsx @@ -1,15 +1,15 @@ import { ReactElement } from 'react'; -import { useSSG, Tab, Tabs, Callout } from '@theguild/components'; +import { useData, Tabs, Callout } from '@theguild/components'; import { MDXRemote } from 'next-mdx-remote'; export function PluginHeader(): ReactElement { // Get the data from SSG, and render it as a component. - const { compiledHeader } = useSSG(); - return ; + const { compiledHeader } = useData(); + return ; } export const PluginApiDocs = (): ReactElement => { // Get the data from SSG, and render it as a component. - const { compiledSource } = useSSG(); + const { compiledSource } = useData(); return ; }; diff --git a/website/src/components/plugins-page.tsx b/website/src/components/plugins-page.tsx index 97825f0bb87..f9b3f94a4b6 100644 --- a/website/src/components/plugins-page.tsx +++ b/website/src/components/plugins-page.tsx @@ -1,5 +1,5 @@ import { useMemo } from 'react'; -import { fetchPackageInfo, MarketplaceSearch, useSSG } from '@theguild/components'; +import { fetchPackageInfo, MarketplaceSearch, useData } from '@theguild/components'; import { compareDesc } from 'date-fns'; import { CategoryToPackages } from '@/category-to-packages.mjs'; import { ALL_TAGS, Icon, icons, PACKAGES } from '@/lib/plugins'; @@ -39,16 +39,14 @@ export const getStaticProps = async () => { return { props: { // We add an `ssg` field to the page props, - // which will be provided to the Nextra's `useSSG` hook. + // which will be provided to the Nextra's `useData` hook. ssg: plugins, }, - // Revalidate at most once every 1 hour - revalidate: 60 * 60, }; }; export function PluginsPage() { - const plugins = useSSG() as Plugin[]; + const plugins = useData() as Plugin[]; const marketplaceItems = useMemo( () => diff --git a/website/src/pages/_app.mdx b/website/src/pages/_app.mdx deleted file mode 100644 index e98f754d389..00000000000 --- a/website/src/pages/_app.mdx +++ /dev/null @@ -1,5 +0,0 @@ -import '@theguild/components/style.css' - -export default function App({ Component, pageProps }) { - return -} diff --git a/website/src/pages/_app.tsx b/website/src/pages/_app.tsx new file mode 100644 index 00000000000..9a844a30e2d --- /dev/null +++ b/website/src/pages/_app.tsx @@ -0,0 +1,6 @@ +import '@theguild/components/style.css'; +import { AppProps } from 'next/app'; + +export default function App({ Component, pageProps }: AppProps) { + return ; +} diff --git a/website/src/pages/_meta.json b/website/src/pages/_meta.json deleted file mode 100644 index 6fcdd3013b5..00000000000 --- a/website/src/pages/_meta.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "index": { - "title": "Home", - "type": "page", - "display": "hidden", - "theme": { - "layout": "raw" - } - }, - "docs": { - "title": "Docs", - "type": "page" - }, - "plugins": { - "title": "Plugins", - "type": "page", - "theme": { - "layout": "raw" - } - } -} diff --git a/website/src/pages/_meta.ts b/website/src/pages/_meta.ts new file mode 100644 index 00000000000..0d64c5e8719 --- /dev/null +++ b/website/src/pages/_meta.ts @@ -0,0 +1,21 @@ +export default { + index: { + title: 'Home', + type: 'page', + display: 'hidden', + theme: { + layout: 'raw', + }, + }, + docs: { + title: 'Docs', + type: 'page', + }, + plugins: { + title: 'Plugins', + type: 'page', + theme: { + layout: 'raw', + }, + }, +}; diff --git a/website/src/pages/docs/_meta.json b/website/src/pages/docs/_meta.json deleted file mode 100644 index 35c1ed7de7c..00000000000 --- a/website/src/pages/docs/_meta.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "getting-started": "Getting Started", - "guides": "Guides", - "config-reference": "Config Reference", - "advanced": "Advanced Usage", - "integrations": "Integrations", - "custom-codegen": "Writing Plugins", - "migration": "Migration Guides" -} diff --git a/website/src/pages/docs/_meta.ts b/website/src/pages/docs/_meta.ts new file mode 100644 index 00000000000..137ac140fd3 --- /dev/null +++ b/website/src/pages/docs/_meta.ts @@ -0,0 +1,9 @@ +export default { + 'getting-started': 'Getting Started', + guides: 'Guides', + 'config-reference': 'Config Reference', + advanced: 'Advanced Usage', + integrations: 'Integrations', + 'custom-codegen': 'Writing Plugins', + migration: 'Migration Guides', +}; diff --git a/website/src/pages/docs/advanced/_meta.json b/website/src/pages/docs/advanced/_meta.json deleted file mode 100644 index 4ca35c9e8ba..00000000000 --- a/website/src/pages/docs/advanced/_meta.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "generated-files-colocation": "Generated files colocation", - "programmatic-usage": "Programmatic Usage", - "how-does-it-work": "How does it work?", - "profiler": "Profiler", - "document-transform": "Document Transform" -} diff --git a/website/src/pages/docs/advanced/_meta.ts b/website/src/pages/docs/advanced/_meta.ts new file mode 100644 index 00000000000..9f28630f660 --- /dev/null +++ b/website/src/pages/docs/advanced/_meta.ts @@ -0,0 +1,7 @@ +export default { + 'generated-files-colocation': 'Generated files colocation', + 'programmatic-usage': 'Programmatic Usage', + 'how-does-it-work': 'How does it work?', + profiler: 'Profiler', + 'document-transform': 'Document Transform', +}; diff --git a/website/src/pages/docs/config-reference/_meta.json b/website/src/pages/docs/config-reference/_meta.json deleted file mode 100644 index f1a5b824d8f..00000000000 --- a/website/src/pages/docs/config-reference/_meta.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "codegen-config": "codegen.ts", - "schema-field": "schema field", - "documents-field": "documents field", - "config-field": "plugin config", - "require-field": "require field", - "naming-convention": "Naming Convention", - "lifecycle-hooks": "Lifecycle Hooks", - "multiproject-config": "Multi Project" -} diff --git a/website/src/pages/docs/config-reference/_meta.ts b/website/src/pages/docs/config-reference/_meta.ts new file mode 100644 index 00000000000..32b75d7850a --- /dev/null +++ b/website/src/pages/docs/config-reference/_meta.ts @@ -0,0 +1,10 @@ +export default { + 'codegen-config': 'codegen.ts', + 'schema-field': 'schema field', + 'documents-field': 'documents field', + 'config-field': 'plugin config', + 'require-field': 'require field', + 'naming-convention': 'Naming Convention', + 'lifecycle-hooks': 'Lifecycle Hooks', + 'multiproject-config': 'Multi Project', +}; diff --git a/website/src/pages/docs/custom-codegen/_meta.json b/website/src/pages/docs/custom-codegen/_meta.json deleted file mode 100644 index dce618ba955..00000000000 --- a/website/src/pages/docs/custom-codegen/_meta.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "index": "What are Plugins?", - "plugin-structure": "Plugin structure", - "validate-configuration": "Validate Configuration", - "extend-schema": "Extend Schema", - "using-visitor": "Using Visitor Pattern", - "contributing": "Contributing" -} diff --git a/website/src/pages/docs/custom-codegen/_meta.ts b/website/src/pages/docs/custom-codegen/_meta.ts new file mode 100644 index 00000000000..3f42a6de498 --- /dev/null +++ b/website/src/pages/docs/custom-codegen/_meta.ts @@ -0,0 +1,8 @@ +export default { + index: 'What are Plugins?', + 'plugin-structure': 'Plugin structure', + 'validate-configuration': 'Validate Configuration', + 'extend-schema': 'Extend Schema', + 'using-visitor': 'Using Visitor Pattern', + contributing: 'Contributing', +}; diff --git a/website/src/pages/docs/getting-started/_meta.json b/website/src/pages/docs/getting-started/_meta.json deleted file mode 100644 index 7d24068cb9f..00000000000 --- a/website/src/pages/docs/getting-started/_meta.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "index": "Introduction", - "installation": "Installation", - "development-workflow": "Development workflow", - "esm-typescript-usage": "ESM TypeScript usage" -} diff --git a/website/src/pages/docs/getting-started/_meta.ts b/website/src/pages/docs/getting-started/_meta.ts new file mode 100644 index 00000000000..07d5728304b --- /dev/null +++ b/website/src/pages/docs/getting-started/_meta.ts @@ -0,0 +1,6 @@ +export default { + index: 'Introduction', + installation: 'Installation', + 'development-workflow': 'Development workflow', + 'esm-typescript-usage': 'ESM TypeScript usage', +}; diff --git a/website/src/pages/docs/getting-started/index.mdx b/website/src/pages/docs/getting-started/index.mdx index c728a668a61..45e5d8e4277 100644 --- a/website/src/pages/docs/getting-started/index.mdx +++ b/website/src/pages/docs/getting-started/index.mdx @@ -3,7 +3,7 @@ title: Introduction description: GraphQL Code Generator is a plugin-based tool that helps you get the best out of your GraphQL stack. From back-end to front-end, GraphQL Code Generator automates the generation of typed Queries, Mutations and, Subscriptions for React, Vue, Angular, Next.js, Svelte, whether you are using Apollo Client, URQL or, React Query. --- -import { Tabs, Tab, Callout } from '@theguild/components' +import { Tabs, Callout } from '@theguild/components' # Introduction to GraphQL Code Generator @@ -45,7 +45,7 @@ The following sections showcase why GraphQL Code Generator is a game-changer for Most client-side implementations without GraphQL Code Generator would query the API as showcased in the following examples: - + ```tsx import { useQuery } from 'urql' @@ -81,9 +81,9 @@ const Posts = () => { // … } ``` - + - + ```tsx import { request, gql } from 'graphql-request' import { useQuery } from '@tanstack/react-query' @@ -123,9 +123,9 @@ const Posts = () => { // … } ``` - + - + ```vue