From fe18ee91f2b13f78028b479c7399ee54193111ca Mon Sep 17 00:00:00 2001 From: Simone Busoli Date: Fri, 19 Jan 2024 13:16:27 +0100 Subject: [PATCH] chore(release): :rocket: - create-react-app@3.3.0 - fastify-ssr@4.3.0 - graphql-hooks-full-ws-transport-example@1.3.0 - persisted-queries-client@2.3.0 - subscription@3.3.0 - typescript-example@3.3.0 - graphql-hooks@6.4.0 - graphql-hooks-memcache@3.2.0 --- examples/create-react-app/CHANGELOG.md | 8 ++++++++ examples/create-react-app/package-lock.json | 8 ++++---- examples/create-react-app/package.json | 6 +++--- examples/fastify-ssr/CHANGELOG.md | 8 ++++++++ examples/fastify-ssr/package.json | 6 +++--- examples/full-ws-transport/CHANGELOG.md | 8 ++++++++ examples/full-ws-transport/package.json | 4 ++-- examples/persisted-queries/client/CHANGELOG.md | 8 ++++++++ examples/persisted-queries/client/package.json | 6 +++--- examples/subscription/CHANGELOG.md | 8 ++++++++ examples/subscription/package-lock.json | 2 +- examples/subscription/package.json | 6 +++--- examples/typescript/CHANGELOG.md | 8 ++++++++ examples/typescript/package-lock.json | 8 ++++---- examples/typescript/package.json | 6 +++--- packages/graphql-hooks-memcache/CHANGELOG.md | 8 ++++++++ packages/graphql-hooks-memcache/package.json | 2 +- packages/graphql-hooks/CHANGELOG.md | 8 ++++++++ packages/graphql-hooks/package.json | 4 ++-- 19 files changed, 93 insertions(+), 29 deletions(-) diff --git a/examples/create-react-app/CHANGELOG.md b/examples/create-react-app/CHANGELOG.md index 4c46778a..1f44ef5e 100644 --- a/examples/create-react-app/CHANGELOG.md +++ b/examples/create-react-app/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.3.0](https://github.com/nearform/graphql-hooks/compare/create-react-app@3.2.5...create-react-app@3.3.0) (2024-01-19) + +**Note:** Version bump only for package create-react-app + + + + + ## [3.2.5](https://github.com/nearform/graphql-hooks/compare/create-react-app@3.2.4...create-react-app@3.2.5) (2023-10-02) **Note:** Version bump only for package create-react-app diff --git a/examples/create-react-app/package-lock.json b/examples/create-react-app/package-lock.json index d470bde8..f98f0cfa 100644 --- a/examples/create-react-app/package-lock.json +++ b/examples/create-react-app/package-lock.json @@ -1,15 +1,15 @@ { "name": "create-react-app", - "version": "3.2.5", + "version": "3.3.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "create-react-app", - "version": "3.2.5", + "version": "3.3.0", "dependencies": { - "graphql-hooks": "^6.3.1", - "graphql-hooks-memcache": "^3.1.3", + "graphql-hooks": "^6.4.0", + "graphql-hooks-memcache": "^3.2.0", "json-graphql-server": "^2.3.1", "prop-types": "^15.7.2", "react": "^18.0.0", diff --git a/examples/create-react-app/package.json b/examples/create-react-app/package.json index 6c9a6dcc..a1b0dfb7 100644 --- a/examples/create-react-app/package.json +++ b/examples/create-react-app/package.json @@ -1,13 +1,13 @@ { "name": "create-react-app", - "version": "3.2.6", + "version": "3.3.0", "private": true, "engines": { "node": ">=12.0.0" }, "dependencies": { - "graphql-hooks": "^6.3.1", - "graphql-hooks-memcache": "^3.1.3", + "graphql-hooks": "^6.4.0", + "graphql-hooks-memcache": "^3.2.0", "json-graphql-server": "^2.3.1", "prop-types": "^15.7.2", "react": "^18.0.0", diff --git a/examples/fastify-ssr/CHANGELOG.md b/examples/fastify-ssr/CHANGELOG.md index b554d2d0..3714ed6e 100644 --- a/examples/fastify-ssr/CHANGELOG.md +++ b/examples/fastify-ssr/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.3.0](https://github.com/nearform/graphql-hooks/compare/fastify-ssr@4.2.5...fastify-ssr@4.3.0) (2024-01-19) + +**Note:** Version bump only for package fastify-ssr + + + + + ## [4.2.5](https://github.com/nearform/graphql-hooks/compare/fastify-ssr@4.2.4...fastify-ssr@4.2.5) (2023-10-02) **Note:** Version bump only for package fastify-ssr diff --git a/examples/fastify-ssr/package.json b/examples/fastify-ssr/package.json index 42721927..9c5c48b5 100644 --- a/examples/fastify-ssr/package.json +++ b/examples/fastify-ssr/package.json @@ -1,6 +1,6 @@ { "name": "fastify-ssr", - "version": "4.2.6", + "version": "4.3.0", "private": true, "description": "", "type": "module", @@ -27,8 +27,8 @@ "@fastify/static": "^6.5.0", "babel-plugin-dynamic-import-node": "^2.2.0", "fastify": "^4.2.0", - "graphql-hooks": "^6.3.1", - "graphql-hooks-memcache": "^3.1.3", + "graphql-hooks": "^6.4.0", + "graphql-hooks-memcache": "^3.2.0", "graphql-hooks-ssr": "^3.0.1", "isomorphic-unfetch": "^4.0.2", "mercurius": "^13.1.0", diff --git a/examples/full-ws-transport/CHANGELOG.md b/examples/full-ws-transport/CHANGELOG.md index 3aaae3a0..e3727d6b 100644 --- a/examples/full-ws-transport/CHANGELOG.md +++ b/examples/full-ws-transport/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.3.0](https://github.com/nearform/graphql-hooks/compare/graphql-hooks-full-ws-transport-example@1.2.5...graphql-hooks-full-ws-transport-example@1.3.0) (2024-01-19) + +**Note:** Version bump only for package graphql-hooks-full-ws-transport-example + + + + + ## [1.2.5](https://github.com/nearform/graphql-hooks/compare/graphql-hooks-full-ws-transport-example@1.2.4...graphql-hooks-full-ws-transport-example@1.2.5) (2023-10-02) **Note:** Version bump only for package graphql-hooks-full-ws-transport-example diff --git a/examples/full-ws-transport/package.json b/examples/full-ws-transport/package.json index 44444c60..b4e068d5 100644 --- a/examples/full-ws-transport/package.json +++ b/examples/full-ws-transport/package.json @@ -1,10 +1,10 @@ { "name": "graphql-hooks-full-ws-transport-example", - "version": "1.2.6", + "version": "1.3.0", "private": true, "dependencies": { "fastify": "^4.2.0", - "graphql-hooks": "^6.3.1", + "graphql-hooks": "^6.4.0", "graphql-ws": "^5.5.5", "mercurius": "^13.1.0", "react": "^18.0.0", diff --git a/examples/persisted-queries/client/CHANGELOG.md b/examples/persisted-queries/client/CHANGELOG.md index dd819b12..f60b482b 100644 --- a/examples/persisted-queries/client/CHANGELOG.md +++ b/examples/persisted-queries/client/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.3.0](https://github.com/nearform/graphql-hooks/compare/persisted-queries-client@2.2.5...persisted-queries-client@2.3.0) (2024-01-19) + +**Note:** Version bump only for package persisted-queries-client + + + + + ## [2.2.5](https://github.com/nearform/graphql-hooks/compare/persisted-queries-client@2.2.4...persisted-queries-client@2.2.5) (2023-10-02) **Note:** Version bump only for package persisted-queries-client diff --git a/examples/persisted-queries/client/package.json b/examples/persisted-queries/client/package.json index 37e495eb..4897d860 100644 --- a/examples/persisted-queries/client/package.json +++ b/examples/persisted-queries/client/package.json @@ -1,14 +1,14 @@ { "name": "persisted-queries-client", - "version": "2.2.6", + "version": "2.3.0", "private": true, "dependencies": { "@types/jest": "^29.0.3", "@types/node": "^20.3.1", "@types/react": "^18.0.0", "@types/react-dom": "^18.0.0", - "graphql-hooks": "^6.3.1", - "graphql-hooks-memcache": "^3.1.3", + "graphql-hooks": "^6.4.0", + "graphql-hooks-memcache": "^3.2.0", "react": "^18.0.0", "react-dom": "^18.0.0", "react-scripts": "^5.0.0", diff --git a/examples/subscription/CHANGELOG.md b/examples/subscription/CHANGELOG.md index c42a2c7e..b3acffb9 100644 --- a/examples/subscription/CHANGELOG.md +++ b/examples/subscription/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.3.0](https://github.com/nearform/graphql-hooks/compare/subscription@3.2.5...subscription@3.3.0) (2024-01-19) + +**Note:** Version bump only for package subscription + + + + + ## [3.2.5](https://github.com/nearform/graphql-hooks/compare/subscription@3.2.4...subscription@3.2.5) (2023-10-02) **Note:** Version bump only for package subscription diff --git a/examples/subscription/package-lock.json b/examples/subscription/package-lock.json index 0a83b319..1569e305 100644 --- a/examples/subscription/package-lock.json +++ b/examples/subscription/package-lock.json @@ -1,6 +1,6 @@ { "name": "subscription", - "version": "3.2.5", + "version": "3.3.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/examples/subscription/package.json b/examples/subscription/package.json index 8e230448..12e42ef8 100644 --- a/examples/subscription/package.json +++ b/examples/subscription/package.json @@ -1,6 +1,6 @@ { "name": "subscription", - "version": "3.2.6", + "version": "3.3.0", "private": true, "type": "module", "engines": { @@ -20,8 +20,8 @@ "babel-plugin-dynamic-import-node": "^2.2.0", "fastify": "^4.2.0", "graphql": "^16.6.0", - "graphql-hooks": "^6.3.1", - "graphql-hooks-memcache": "^3.1.3", + "graphql-hooks": "^6.4.0", + "graphql-hooks-memcache": "^3.2.0", "lowdb": "^6.0.1", "mercurius": "^13.1.0", "mqemitter-redis": "^5.0.0", diff --git a/examples/typescript/CHANGELOG.md b/examples/typescript/CHANGELOG.md index 6507eeea..7f5cb4c7 100644 --- a/examples/typescript/CHANGELOG.md +++ b/examples/typescript/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.3.0](https://github.com/nearform/graphql-hooks/compare/typescript-example@3.2.5...typescript-example@3.3.0) (2024-01-19) + +**Note:** Version bump only for package typescript-example + + + + + ## [3.2.5](https://github.com/nearform/graphql-hooks/compare/typescript-example@3.2.4...typescript-example@3.2.5) (2023-10-02) **Note:** Version bump only for package typescript-example diff --git a/examples/typescript/package-lock.json b/examples/typescript/package-lock.json index eef29dd7..8a425d44 100644 --- a/examples/typescript/package-lock.json +++ b/examples/typescript/package-lock.json @@ -1,19 +1,19 @@ { "name": "typescript-example", - "version": "3.2.5", + "version": "3.3.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "typescript-example", - "version": "3.2.5", + "version": "3.3.0", "dependencies": { "@types/jest": "^29.0.3", "@types/node": "^20.3.1", "@types/react": "^18.0.0", "@types/react-dom": "^18.0.0", - "graphql-hooks": "^6.3.1", - "graphql-hooks-memcache": "^3.1.3", + "graphql-hooks": "^6.4.0", + "graphql-hooks-memcache": "^3.2.0", "react": "^18.0.0", "react-dom": "^18.0.0", "react-scripts": "^5.0.0", diff --git a/examples/typescript/package.json b/examples/typescript/package.json index bd0cfb66..6347e331 100644 --- a/examples/typescript/package.json +++ b/examples/typescript/package.json @@ -1,14 +1,14 @@ { "name": "typescript-example", - "version": "3.2.6", + "version": "3.3.0", "private": true, "dependencies": { "@types/jest": "^29.0.3", "@types/node": "^20.3.1", "@types/react": "^18.0.0", "@types/react-dom": "^18.0.0", - "graphql-hooks": "^6.3.1", - "graphql-hooks-memcache": "^3.1.3", + "graphql-hooks": "^6.4.0", + "graphql-hooks-memcache": "^3.2.0", "react": "^18.0.0", "react-dom": "^18.0.0", "react-scripts": "^5.0.0", diff --git a/packages/graphql-hooks-memcache/CHANGELOG.md b/packages/graphql-hooks-memcache/CHANGELOG.md index 428dfaaf..5217ab18 100644 --- a/packages/graphql-hooks-memcache/CHANGELOG.md +++ b/packages/graphql-hooks-memcache/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.2.0](https://github.com/nearform/graphql-hooks/compare/graphql-hooks-memcache@3.1.3...graphql-hooks-memcache@3.2.0) (2024-01-19) + +**Note:** Version bump only for package graphql-hooks-memcache + + + + + ## [3.1.3](https://github.com/nearform/graphql-hooks/compare/graphql-hooks-memcache@3.1.2...graphql-hooks-memcache@3.1.3) (2023-07-18) diff --git a/packages/graphql-hooks-memcache/package.json b/packages/graphql-hooks-memcache/package.json index 8f373ac3..1ea7abe5 100644 --- a/packages/graphql-hooks-memcache/package.json +++ b/packages/graphql-hooks-memcache/package.json @@ -1,6 +1,6 @@ { "name": "graphql-hooks-memcache", - "version": "3.1.3", + "version": "3.2.0", "description": "In memory cache for graphql-hooks", "main": "lib/graphql-hooks-memcache.js", "module": "es/graphql-hooks-memcache.js", diff --git a/packages/graphql-hooks/CHANGELOG.md b/packages/graphql-hooks/CHANGELOG.md index f85cb8b8..fae77ca5 100644 --- a/packages/graphql-hooks/CHANGELOG.md +++ b/packages/graphql-hooks/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.4.0](https://github.com/nearform/graphql-hooks/compare/graphql-hooks@6.3.1...graphql-hooks@6.4.0) (2024-01-19) + +**Note:** Version bump only for package graphql-hooks + + + + + ## [6.3.1](https://github.com/nearform/graphql-hooks/compare/graphql-hooks@6.3.0...graphql-hooks@6.3.1) (2023-10-02) diff --git a/packages/graphql-hooks/package.json b/packages/graphql-hooks/package.json index 03820509..cd58345d 100644 --- a/packages/graphql-hooks/package.json +++ b/packages/graphql-hooks/package.json @@ -1,6 +1,6 @@ { "name": "graphql-hooks", - "version": "6.3.2", + "version": "6.4.0", "description": "Graphql Hooks", "main": "lib/graphql-hooks.js", "module": "es/graphql-hooks.js", @@ -47,7 +47,7 @@ "@types/extract-files": "^8.1.1", "cross-env": "^7.0.3", "formdata-node": "^4.3.2", - "graphql-hooks-memcache": "^3.1.3", + "graphql-hooks-memcache": "^3.2.0", "graphql-hooks-ssr": "^3.0.1", "graphql-ws": "^5.5.5", "jest-fetch-mock": "^3.0.0",