From 3de5c77cf2278047c6123b5e2ba0e0dfd1df6236 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Sep 2021 21:23:15 -0400 Subject: [PATCH] Version Packages (#72) Co-authored-by: github-actions[bot] --- .changeset/funny-pans-dress.md | 5 ----- .changeset/neat-zoos-explode.md | 5 ----- examples/cra/package.json | 4 ++-- examples/github/package.json | 2 +- examples/mercurius/package.json | 2 +- examples/react/package.json | 4 ++-- examples/vite-example/package.json | 2 +- packages/cli/package.json | 2 +- packages/gqty/CHANGELOG.md | 6 ++++++ packages/gqty/package.json | 2 +- packages/logger/CHANGELOG.md | 8 ++++++++ packages/logger/package.json | 6 +++--- packages/react/package.json | 2 +- packages/subscriptions/package.json | 2 +- pnpm-lock.yaml | 22 +++++++++++----------- 15 files changed, 39 insertions(+), 35 deletions(-) delete mode 100644 .changeset/funny-pans-dress.md delete mode 100644 .changeset/neat-zoos-explode.md diff --git a/.changeset/funny-pans-dress.md b/.changeset/funny-pans-dress.md deleted file mode 100644 index b681d24d0..000000000 --- a/.changeset/funny-pans-dress.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@gqty/logger': patch ---- - -Add incremental ID to log diff --git a/.changeset/neat-zoos-explode.md b/.changeset/neat-zoos-explode.md deleted file mode 100644 index 2a086b74f..000000000 --- a/.changeset/neat-zoos-explode.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'gqty': patch ---- - -fix undefined object types names diff --git a/examples/cra/package.json b/examples/cra/package.json index bccd9bb23..25a38c0bd 100644 --- a/examples/cra/package.json +++ b/examples/cra/package.json @@ -34,7 +34,7 @@ "@emotion/react": "^11.4.1", "@emotion/styled": "^11.3.0", "@gqty/cli": "workspace:^1.1.0", - "@gqty/logger": "workspace:^1.0.2", + "@gqty/logger": "workspace:^1.0.3", "@gqty/react": "workspace:^1.1.0", "@gqty/subscriptions": "workspace:^1.0.1", "@testing-library/jest-dom": "^5.14.1", @@ -46,7 +46,7 @@ "@types/react-dom": "^17.0.9", "@types/react-router-dom": "^5.1.8", "framer-motion": "^4.1.17", - "gqty": "workspace:^1.1.0", + "gqty": "workspace:^1.1.1", "graphql": "^15.5.2", "prop-types": "^15.7.2", "react": "^17.0.2", diff --git a/examples/github/package.json b/examples/github/package.json index 481dac476..e8f751929 100644 --- a/examples/github/package.json +++ b/examples/github/package.json @@ -12,7 +12,7 @@ "dependencies": { "@gqty/cli": "workspace:^1.1.0", "dotenv": "^10.0.0", - "gqty": "workspace:^1.1.0", + "gqty": "workspace:^1.1.1", "test-utils": "workspace:^0.1.0" }, "devDependencies": { diff --git a/examples/mercurius/package.json b/examples/mercurius/package.json index 48481bc8d..2b6149b87 100644 --- a/examples/mercurius/package.json +++ b/examples/mercurius/package.json @@ -36,7 +36,7 @@ "@gqty/cli": "workspace:^1.1.0", "@graphql-typed-document-node/core": "^3.1.0", "fastify": "^3.20.2", - "gqty": "workspace:^1.1.0", + "gqty": "workspace:^1.1.1", "graphql": "^15.5.2", "lodash": "^4.17.21", "mercurius": "^8.1.3", diff --git a/examples/react/package.json b/examples/react/package.json index ec294b3db..4416b3f9c 100644 --- a/examples/react/package.json +++ b/examples/react/package.json @@ -14,7 +14,7 @@ "@emotion/react": "^11.4.1", "@emotion/styled": "^11.3.0", "@gqty/cli": "workspace:^1.1.0", - "@gqty/logger": "workspace:^1.0.2", + "@gqty/logger": "workspace:^1.0.3", "@gqty/react": "workspace:^1.1.0", "@gqty/subscriptions": "workspace:^1.0.1", "@react-native-async-storage/async-storage": "^1.15.7", @@ -26,7 +26,7 @@ "fastify": "^3.20.2", "fastify-nextjs": "^6.0.0", "framer-motion": "^4.1.17", - "gqty": "workspace:^1.1.0", + "gqty": "workspace:^1.1.1", "graphql": "^15.5.2", "graphql-upload": "^12.0.0", "localforage": "^1.10.0", diff --git a/examples/vite-example/package.json b/examples/vite-example/package.json index c9c8dc600..fc965d5cf 100644 --- a/examples/vite-example/package.json +++ b/examples/vite-example/package.json @@ -11,7 +11,7 @@ "dependencies": { "@gqty/cli": "workspace:^1.1.0", "@gqty/react": "workspace:^1.1.0", - "gqty": "workspace:^1.1.0", + "gqty": "workspace:^1.1.1", "react": "^17.0.2", "react-dom": "^17.0.2" }, diff --git a/packages/cli/package.json b/packages/cli/package.json index 2769d4d36..98070d8f3 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -48,7 +48,7 @@ "commander": "^8.1.0", "cosmiconfig": "^7.0.1", "cross-fetch": "^3.1.4", - "gqty": "workspace:^1.1.0", + "gqty": "workspace:^1.1.1", "mkdirp": "^1.0.4", "prettier": "^2.3.2" }, diff --git a/packages/gqty/CHANGELOG.md b/packages/gqty/CHANGELOG.md index 2354c8b5c..dc8751a3e 100644 --- a/packages/gqty/CHANGELOG.md +++ b/packages/gqty/CHANGELOG.md @@ -1,5 +1,11 @@ # gqty +## 1.1.1 + +### Patch Changes + +- 6703c2f: fix undefined object types names + ## 1.1.0 ### Minor Changes diff --git a/packages/gqty/package.json b/packages/gqty/package.json index 4be1ffbdc..54541da5d 100644 --- a/packages/gqty/package.json +++ b/packages/gqty/package.json @@ -1,6 +1,6 @@ { "name": "gqty", - "version": "1.1.0", + "version": "1.1.1", "description": "gqty client without queries", "homepage": "https://gqty.dev", "repository": { diff --git a/packages/logger/CHANGELOG.md b/packages/logger/CHANGELOG.md index db3d6a69c..8fac7f809 100644 --- a/packages/logger/CHANGELOG.md +++ b/packages/logger/CHANGELOG.md @@ -1,5 +1,13 @@ # @gqty/logger +## 1.0.3 + +### Patch Changes + +- cc39983: Add incremental ID to log +- Updated dependencies [6703c2f] + - gqty@1.1.1 + ## 1.0.2 ### Patch Changes diff --git a/packages/logger/package.json b/packages/logger/package.json index b4692252f..a067b0670 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -1,6 +1,6 @@ { "name": "@gqty/logger", - "version": "1.0.2", + "version": "1.0.3", "homepage": "https://gqty.dev", "repository": { "type": "git", @@ -43,7 +43,7 @@ "@size-limit/preset-small-lib": "^5.0.3", "@types/prettier": "^2.3.2", "bob-esbuild-cli": "^1.0.1", - "gqty": "workspace:^1.1.0", + "gqty": "workspace:^1.1.1", "jest": "^27.1.0", "rimraf": "^3.0.2", "size-limit": "^5.0.3", @@ -52,7 +52,7 @@ "typescript": "^4.4.2" }, "peerDependencies": { - "gqty": "workspace:^1.0.2" + "gqty": "workspace:^1.1.1" }, "engines": { "node": ">=12" diff --git a/packages/react/package.json b/packages/react/package.json index f8b543178..45d1c5775 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -50,7 +50,7 @@ "@types/react-dom": "^17.0.9", "bob-esbuild-cli": "^1.0.1", "get-port": "^5.1.1", - "gqty": "workspace:^1.1.0", + "gqty": "workspace:^1.1.1", "graphql": "^15.5.2", "jest": "^27.1.0", "react": "^17.0.2", diff --git a/packages/subscriptions/package.json b/packages/subscriptions/package.json index 03e9dd45d..946207bae 100644 --- a/packages/subscriptions/package.json +++ b/packages/subscriptions/package.json @@ -38,7 +38,7 @@ "devDependencies": { "@types/ws": "^7.4.7", "bob-esbuild-cli": "^1.0.1", - "gqty": "workspace:^1.1.0", + "gqty": "workspace:^1.1.1", "graphql": "^15.5.2", "test-utils": "workspace:^0.1.0", "tslib": "^2.3.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f5dad3dc6..6f5e12bb1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,7 +76,7 @@ importers: '@emotion/react': ^11.4.1 '@emotion/styled': ^11.3.0 '@gqty/cli': workspace:^1.1.0 - '@gqty/logger': workspace:^1.0.2 + '@gqty/logger': workspace:^1.0.3 '@gqty/react': workspace:^1.1.0 '@gqty/subscriptions': workspace:^1.0.1 '@testing-library/jest-dom': ^5.14.1 @@ -88,7 +88,7 @@ importers: '@types/react-dom': ^17.0.9 '@types/react-router-dom': ^5.1.8 framer-motion: ^4.1.17 - gqty: workspace:^1.1.0 + gqty: workspace:^1.1.1 graphql: ^15.5.2 prop-types: ^15.7.2 react: ^17.0.2 @@ -131,7 +131,7 @@ importers: specifiers: '@gqty/cli': workspace:^1.1.0 dotenv: ^10.0.0 - gqty: workspace:^1.1.0 + gqty: workspace:^1.1.1 isomorphic-unfetch: ^3.1.0 jest: ^27.1.0 test-utils: workspace:^0.1.0 @@ -153,7 +153,7 @@ importers: '@types/randomstring': ^1.1.7 bob-esbuild-cli: ^1.0.1 fastify: ^3.20.2 - gqty: workspace:^1.1.0 + gqty: workspace:^1.1.1 graphql: ^15.5.2 jest: ^27.1.0 lodash: ^4.17.21 @@ -195,7 +195,7 @@ importers: '@emotion/react': ^11.4.1 '@emotion/styled': ^11.3.0 '@gqty/cli': workspace:^1.1.0 - '@gqty/logger': workspace:^1.0.2 + '@gqty/logger': workspace:^1.0.3 '@gqty/react': workspace:^1.1.0 '@gqty/subscriptions': workspace:^1.0.1 '@react-native-async-storage/async-storage': ^1.15.7 @@ -214,7 +214,7 @@ importers: fastify: ^3.20.2 fastify-nextjs: ^6.0.0 framer-motion: ^4.1.17 - gqty: workspace:^1.1.0 + gqty: workspace:^1.1.1 graphql: ^15.5.2 graphql-upload: ^12.0.0 jest: ^27.1.0 @@ -297,7 +297,7 @@ importers: '@types/react': ^17.0.19 '@types/react-dom': ^17.0.9 '@vitejs/plugin-react-refresh': ^1.3.6 - gqty: workspace:^1.1.0 + gqty: workspace:^1.1.1 react: ^17.0.2 react-dom: ^17.0.2 typescript: ^4.4.2 @@ -465,7 +465,7 @@ importers: commander: ^8.1.0 cosmiconfig: ^7.0.1 cross-fetch: ^3.1.4 - gqty: workspace:^1.1.0 + gqty: workspace:^1.1.1 graphql: ^15.5.2 mkdirp: ^1.0.4 open-cli: ^7.0.1 @@ -592,7 +592,7 @@ importers: '@size-limit/preset-small-lib': ^5.0.3 '@types/prettier': ^2.3.2 bob-esbuild-cli: ^1.0.1 - gqty: workspace:^1.1.0 + gqty: workspace:^1.1.1 jest: ^27.1.0 prettier: ^2.3.2 rimraf: ^3.0.2 @@ -628,7 +628,7 @@ importers: '@types/react-dom': ^17.0.9 bob-esbuild-cli: ^1.0.1 get-port: ^5.1.1 - gqty: workspace:^1.1.0 + gqty: workspace:^1.1.1 graphql: ^15.5.2 jest: ^27.1.0 react: ^17.0.2 @@ -671,7 +671,7 @@ importers: specifiers: '@types/ws': ^7.4.7 bob-esbuild-cli: ^1.0.1 - gqty: workspace:^1.1.0 + gqty: workspace:^1.1.1 graphql: ^15.5.2 isomorphic-ws: ^4.0.1 test-utils: workspace:^0.1.0