From 5a54480b927d3debaf1af107da36c23e56b62583 Mon Sep 17 00:00:00 2001 From: Enda Date: Fri, 5 Feb 2021 15:29:46 +0000 Subject: [PATCH] chore: prepare 1.1.1 release (#2263) --- docs/CHANGELOG.md | 6 ++++++ integration/package.json | 2 +- lerna.json | 2 +- packages/create-graphback/package.json | 2 +- packages/graphback-cli/package.json | 4 ++-- packages/graphback-codegen-client/package.json | 4 ++-- packages/graphback-codegen-schema/package.json | 4 ++-- packages/graphback-core/package.json | 2 +- packages/graphback-datasync/package.json | 10 +++++----- packages/graphback-keycloak-authz/package.json | 4 ++-- packages/graphback-runtime-knex/package.json | 6 +++--- packages/graphback-runtime-mongodb/package.json | 6 +++--- packages/graphback/package.json | 8 ++++---- packages/graphql-migrations/package.json | 4 ++-- packages/graphql-serve/package.json | 14 +++++++------- performance/package.json | 4 ++-- .../package.json | 10 +++++----- templates/ts-apollo-mongodb-backend/package.json | 8 ++++---- .../package.json | 8 ++++---- templates/ts-apollo-postgres-backend/package.json | 10 +++++----- templates/ts-fastify-mongodb-backend/package.json | 8 ++++---- templates/ts-react-apollo-client/package.json | 4 ++-- 22 files changed, 68 insertions(+), 62 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 2248aa6a79..c7e7d3afbd 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -3,6 +3,12 @@ id: releases title: Release Notes --- +## 1.1.1 (2021-02-06) + +#### Bug Fixes + +* [#2261](https://github.com/aerogear/graphback/pull/2261) fix: import format was throwing an error ([@craicoverflow](https://github.com/craicoverflow)) + ## 1.1.0 (2020-10-06) #### Bug Fixes diff --git a/integration/package.json b/integration/package.json index 5afbd0d113..c1714b3ca8 100644 --- a/integration/package.json +++ b/integration/package.json @@ -1,6 +1,6 @@ { "name": "graphback-integration-tests", - "version": "1.1.0", + "version": "1.1.1", "private": true, "description": "Integration tests", "main": "index.js", diff --git a/lerna.json b/lerna.json index c16d5050e9..0c054bd34a 100644 --- a/lerna.json +++ b/lerna.json @@ -7,5 +7,5 @@ ], "npmClient": "yarn", "useWorkspaces": true, - "version": "1.1.0" + "version": "1.1.1" } diff --git a/packages/create-graphback/package.json b/packages/create-graphback/package.json index 7c3e1dcef8..4c8fb57976 100644 --- a/packages/create-graphback/package.json +++ b/packages/create-graphback/package.json @@ -1,6 +1,6 @@ { "name": "create-graphback", - "version": "1.1.0", + "version": "1.1.1", "description": "Create production-ready GraphQL servers using Graphback", "main": "dist/index.js", "bin": { diff --git a/packages/graphback-cli/package.json b/packages/graphback-cli/package.json index b80b6dd066..51c18037f8 100644 --- a/packages/graphback-cli/package.json +++ b/packages/graphback-cli/package.json @@ -1,6 +1,6 @@ { "name": "graphback-cli", - "version": "1.1.0", + "version": "1.1.1", "description": "Auto generate resolvers on top of the graphql and database of your choice", "main": "dist/index.js", "bin": { @@ -48,7 +48,7 @@ "chalk": "2.4.2", "chokidar": "3.4.3", "debounce": "1.2.0", - "graphback": "1.1.0", + "graphback": "1.1.1", "graphql-config": "3.2.0", "node-emoji": "1.10.0", "yargs": "16.2.0" diff --git a/packages/graphback-codegen-client/package.json b/packages/graphback-codegen-client/package.json index 97830493f4..12102852bd 100644 --- a/packages/graphback-codegen-client/package.json +++ b/packages/graphback-codegen-client/package.json @@ -1,6 +1,6 @@ { "name": "@graphback/codegen-client", - "version": "1.1.0", + "version": "1.1.1", "description": "GraphQL-Code-Generator compatible client side queries generator", "main": "dist/index.js", "types": "types/index.d.ts", @@ -42,7 +42,7 @@ "typescript": "4.1.3" }, "dependencies": { - "@graphback/core": "1.1.0", + "@graphback/core": "1.1.1", "pluralize": "8.0.0" }, "peerDependencies": { diff --git a/packages/graphback-codegen-schema/package.json b/packages/graphback-codegen-schema/package.json index 6e00a695be..32dae71e0c 100644 --- a/packages/graphback-codegen-schema/package.json +++ b/packages/graphback-codegen-schema/package.json @@ -1,6 +1,6 @@ { "name": "@graphback/codegen-schema", - "version": "1.1.0", + "version": "1.1.1", "description": "GraphQL-Code-Generator compatibile schema generator", "main": "dist/index.js", "types": "types/index.d.ts", @@ -43,7 +43,7 @@ "typescript": "4.1.3" }, "dependencies": { - "@graphback/core": "1.1.0", + "@graphback/core": "1.1.1", "@graphql-tools/utils": "7.1.4", "graphql-compose": "7.23.0", "graphql-metadata": "0.7.6", diff --git a/packages/graphback-core/package.json b/packages/graphback-core/package.json index d48004ead4..bada60253f 100644 --- a/packages/graphback-core/package.json +++ b/packages/graphback-core/package.json @@ -1,6 +1,6 @@ { "name": "@graphback/core", - "version": "1.1.0", + "version": "1.1.1", "description": "Api for building Graphback generator metadata", "main": "dist/index.js", "types": "types/index.d.ts", diff --git a/packages/graphback-datasync/package.json b/packages/graphback-datasync/package.json index 42f5e1c545..0ba84b2965 100644 --- a/packages/graphback-datasync/package.json +++ b/packages/graphback-datasync/package.json @@ -1,6 +1,6 @@ { "name": "@graphback/datasync", - "version": "1.1.0", + "version": "1.1.1", "description": "Datasync Plugin for Graphback", "main": "dist/index.js", "types": "types/index.d.ts", @@ -44,11 +44,11 @@ "typescript": "4.1.3" }, "dependencies": { - "@graphback/codegen-schema": "1.1.0", - "@graphback/core": "1.1.0", - "@graphback/runtime-mongo": "1.1.0", + "@graphback/codegen-schema": "1.1.1", + "@graphback/core": "1.1.1", + "@graphback/runtime-mongo": "1.1.1", "@graphql-tools/utils": "7.1.4", - "graphback": "1.1.0", + "graphback": "1.1.1", "graphql-compose": "7.23.0", "graphql-metadata": "0.7.6", "graphql-subscriptions": "1.1.0", diff --git a/packages/graphback-keycloak-authz/package.json b/packages/graphback-keycloak-authz/package.json index d17c1b5901..6ca3b9a0dd 100644 --- a/packages/graphback-keycloak-authz/package.json +++ b/packages/graphback-keycloak-authz/package.json @@ -1,6 +1,6 @@ { "name": "@graphback/keycloak-authz", - "version": "1.1.0", + "version": "1.1.1", "description": "Add Keycloak auth to Graphback runtime applications", "main": "dist/index.js", "types": "types/index.d.ts", @@ -43,7 +43,7 @@ "typescript": "4.1.3" }, "dependencies": { - "@graphback/core": "1.1.0", + "@graphback/core": "1.1.1", "graphql-subscriptions": "1.1.0" }, "peerDependencies": { diff --git a/packages/graphback-runtime-knex/package.json b/packages/graphback-runtime-knex/package.json index 52a937646c..e427cdcc80 100644 --- a/packages/graphback-runtime-knex/package.json +++ b/packages/graphback-runtime-knex/package.json @@ -1,6 +1,6 @@ { "name": "@graphback/runtime-knex", - "version": "1.1.0", + "version": "1.1.1", "description": "Graphback Runtime Knex.js integration", "main": "dist/index.js", "types": "types/index.d.ts", @@ -35,7 +35,7 @@ "@types/jest": "26.0.19", "@types/node": "12.19.9", "graphql": "15.4.0", - "graphql-migrations": "1.1.0", + "graphql-migrations": "1.1.1", "jest": "26.6.3", "rimraf": "3.0.2", "sqlite3": "5.0.0", @@ -45,7 +45,7 @@ "typescript": "4.1.3" }, "dependencies": { - "@graphback/core": "1.1.0", + "@graphback/core": "1.1.1", "dataloader": "2.0.0", "graphql-subscriptions": "1.1.0" }, diff --git a/packages/graphback-runtime-mongodb/package.json b/packages/graphback-runtime-mongodb/package.json index f4e6844de7..b82f71f08e 100644 --- a/packages/graphback-runtime-mongodb/package.json +++ b/packages/graphback-runtime-mongodb/package.json @@ -1,6 +1,6 @@ { "name": "@graphback/runtime-mongo", - "version": "1.1.0", + "version": "1.1.1", "description": "Graphback runtime mongodb", "main": "dist/index.js", "types": "types/index.d.ts", @@ -31,7 +31,7 @@ "access": "public" }, "devDependencies": { - "@graphback/codegen-schema": "1.1.0", + "@graphback/codegen-schema": "1.1.1", "@types/jest": "26.0.19", "@types/node": "12.19.9", "graphql": "15.4.0", @@ -45,7 +45,7 @@ "typescript": "4.1.3" }, "dependencies": { - "@graphback/core": "1.1.0", + "@graphback/core": "1.1.1", "@types/mongodb": "3.6.3", "dataloader": "2.0.0", "escape-string-regexp": "4.0.0", diff --git a/packages/graphback/package.json b/packages/graphback/package.json index 07a67e8b35..c6e2322953 100644 --- a/packages/graphback/package.json +++ b/packages/graphback/package.json @@ -1,6 +1,6 @@ { "name": "graphback", - "version": "1.1.0", + "version": "1.1.1", "description": "Auto generate resolvers on top of the graphql and database of your choice", "main": "dist/index.js", "types": "types/index.d.ts", @@ -39,9 +39,9 @@ }, "license": "Apache-2.0", "dependencies": { - "@graphback/codegen-client": "1.1.0", - "@graphback/codegen-schema": "1.1.0", - "@graphback/core": "1.1.0", + "@graphback/codegen-client": "1.1.1", + "@graphback/codegen-schema": "1.1.1", + "@graphback/core": "1.1.1", "@graphql-tools/merge": "6.2.6", "graphql-subscriptions": "1.1.0", "tslib": "2.0.3" diff --git a/packages/graphql-migrations/package.json b/packages/graphql-migrations/package.json index 70b63a664f..38c47b79ad 100644 --- a/packages/graphql-migrations/package.json +++ b/packages/graphql-migrations/package.json @@ -1,6 +1,6 @@ { "name": "graphql-migrations", - "version": "1.1.0", + "version": "1.1.1", "description": "Create & migrate Databases from GraphQL Schema", "main": "dist/index.js", "types": "types/index.d.ts", @@ -23,7 +23,7 @@ "test": "jest" }, "dependencies": { - "@graphback/core": "1.1.0", + "@graphback/core": "1.1.1", "@graphql-inspector/core": "2.3.0", "@types/jest": "26.0.19", "case": "1.6.3", diff --git a/packages/graphql-serve/package.json b/packages/graphql-serve/package.json index db4d519753..0d28846515 100644 --- a/packages/graphql-serve/package.json +++ b/packages/graphql-serve/package.json @@ -1,6 +1,6 @@ { "name": "graphql-serve", - "version": "1.1.0", + "version": "1.1.1", "main": "dist/index.js", "types": "types/index.d.ts", "license": "Apache 2.0", @@ -45,11 +45,11 @@ "typescript": "4.1.3" }, "dependencies": { - "@graphback/codegen-client": "1.1.0", - "@graphback/codegen-schema": "1.1.0", - "@graphback/core": "1.1.0", - "@graphback/datasync": "1.1.0", - "@graphback/runtime-mongo": "1.1.0", + "@graphback/codegen-client": "1.1.1", + "@graphback/codegen-schema": "1.1.1", + "@graphback/core": "1.1.1", + "@graphback/datasync": "1.1.1", + "@graphback/runtime-mongo": "1.1.1", "@graphql-tools/graphql-file-loader": "6.2.6", "@graphql-tools/load": "6.2.5", "apollo-server-express": "2.19.0", @@ -58,7 +58,7 @@ "express": "4.17.1", "get-port": "5.1.1", "glob": "7.1.6", - "graphback": "1.1.0", + "graphback": "1.1.1", "graphql": "15.4.0", "mongodb": "3.6.3", "mongodb-memory-server": "6.9.2", diff --git a/performance/package.json b/performance/package.json index 324e3bb483..6b3b3be0aa 100644 --- a/performance/package.json +++ b/performance/package.json @@ -1,6 +1,6 @@ { "name": "graphback-benchmarks", - "version": "1.1.0", + "version": "1.1.1", "private": true, "description": "Benchmarks for Graphback, a fast and low-overhead web framework.", "scripts": { @@ -31,7 +31,7 @@ "fastify": "3.2.1", "fastify-gql": "5.7.0", "fastify-healthcheck": "3.0.0", - "graphback": "1.1.0", + "graphback": "1.1.1", "graphql-api-koa": "6.0.0", "hapi": "18.1.0", "inquirer": "7.3.3", diff --git a/templates/ts-apollo-mongo-apache-kafka-backend/package.json b/templates/ts-apollo-mongo-apache-kafka-backend/package.json index 2357af334f..fc22b70ed5 100644 --- a/templates/ts-apollo-mongo-apache-kafka-backend/package.json +++ b/templates/ts-apollo-mongo-apache-kafka-backend/package.json @@ -1,6 +1,6 @@ { "name": "graphback-templates-apollo-kafka-mongo", - "version": "1.1.0", + "version": "1.1.1", "description": "Graphback runtime template with Apollo Server, Kafka and MongoDb", "private": true, "main": "dist/index.js", @@ -13,16 +13,16 @@ }, "license": "Apache 2.0", "dependencies": { - "@graphback/runtime-mongo": "1.1.0", + "@graphback/runtime-mongo": "1.1.1", "@aerogear/graphql-kafka-subscriptions": "0.4.1", "apollo-server-express": "2.19.0", "cors": "2.8.5", "dotenv": "8.2.0", "express": "4.17.1", - "graphback": "1.1.0", + "graphback": "1.1.1", "graphql": "15.4.0", "graphql-config": "3.2.0", - "graphql-subscriptions": "1.1.0", + "graphql-subscriptions": "1.1.1", "graphql-tag": "2.11.0", "mongodb": "3.6.3" }, @@ -34,7 +34,7 @@ "@types/graphql": "14.2.3", "@types/node-fetch": "2.5.7", "@types/uuid": "8.3.0", - "graphback-cli": "1.1.0", + "graphback-cli": "1.1.1", "graphql-cli": "4.1.0", "ts-node": "9.1.1", "tslint": "6.1.3", diff --git a/templates/ts-apollo-mongodb-backend/package.json b/templates/ts-apollo-mongodb-backend/package.json index 0c5344e654..9b3943ac7f 100644 --- a/templates/ts-apollo-mongodb-backend/package.json +++ b/templates/ts-apollo-mongodb-backend/package.json @@ -1,6 +1,6 @@ { "name": "graphback-templates-mongodb-runtime", - "version": "1.1.0", + "version": "1.1.1", "description": "Graphback runtime template with Apollo Server and MongoDb", "private": true, "main": "dist/index.js", @@ -13,12 +13,12 @@ }, "license": "Apache 2.0", "dependencies": { - "@graphback/runtime-mongo": "1.1.0", + "@graphback/runtime-mongo": "1.1.1", "apollo-server-express": "2.19.0", "cors": "2.8.5", "dotenv": "8.2.0", "express": "4.17.1", - "graphback": "1.1.0", + "graphback": "1.1.1", "graphql": "15.4.0", "graphql-config": "3.2.0", "graphql-subscriptions": "1.1.0", @@ -32,7 +32,7 @@ "@types/glob": "7.1.3", "@types/graphql": "14.2.3", "@types/node-fetch": "2.5.7", - "graphback-cli": "1.1.0", + "graphback-cli": "1.1.1", "graphql-cli": "4.1.0", "ts-node": "9.1.1", "tslint": "6.1.3", diff --git a/templates/ts-apollo-mongodb-datasync-backend/package.json b/templates/ts-apollo-mongodb-datasync-backend/package.json index 4589b16d3a..e6eac38648 100644 --- a/templates/ts-apollo-mongodb-datasync-backend/package.json +++ b/templates/ts-apollo-mongodb-datasync-backend/package.json @@ -1,6 +1,6 @@ { "name": "graphback-templates-mongodb-datasync-runtime", - "version": "1.1.0", + "version": "1.1.1", "description": "Graphback with Data Synchronization runtime template with Apollo Server and MongoDb", "private": true, "main": "dist/index.js", @@ -13,12 +13,12 @@ }, "license": "Apache 2.0", "dependencies": { - "@graphback/datasync": "1.1.0", + "@graphback/datasync": "1.1.1", "apollo-server-express": "2.19.0", "cors": "2.8.5", "dotenv": "8.2.0", "express": "4.17.1", - "graphback": "1.1.0", + "graphback": "1.1.1", "graphql": "15.4.0", "graphql-config": "3.2.0", "graphql-subscriptions": "1.1.0", @@ -32,7 +32,7 @@ "@types/glob": "7.1.3", "@types/graphql": "14.2.3", "@types/node-fetch": "2.5.7", - "graphback-cli": "1.1.0", + "graphback-cli": "1.1.1", "graphql-cli": "4.1.0", "ts-node": "9.1.1", "tslint": "6.1.3", diff --git a/templates/ts-apollo-postgres-backend/package.json b/templates/ts-apollo-postgres-backend/package.json index 7a20de1947..483a913138 100644 --- a/templates/ts-apollo-postgres-backend/package.json +++ b/templates/ts-apollo-postgres-backend/package.json @@ -1,6 +1,6 @@ { "name": "graphback-templates-runtime-postgres", - "version": "1.1.0", + "version": "1.1.1", "description": "Graphback runtime template with Apollo Server and PostgreSQL", "private": true, "main": "dist/index.js", @@ -13,15 +13,15 @@ }, "license": "Apache 2.0", "dependencies": { - "@graphback/runtime-knex": "1.1.0", + "@graphback/runtime-knex": "1.1.1", "apollo-server-express": "2.19.0", "cors": "2.8.5", "dotenv": "8.2.0", "express": "4.17.1", - "graphback": "1.1.0", + "graphback": "1.1.1", "graphql": "15.4.0", "graphql-config": "3.2.0", - "graphql-migrations": "1.1.0", + "graphql-migrations": "1.1.1", "graphql-subscriptions": "1.1.0", "graphql-tag": "2.11.0", "knex": "0.21.13", @@ -34,7 +34,7 @@ "@types/glob": "7.1.3", "@types/graphql": "14.2.3", "@types/node-fetch": "2.5.7", - "graphback-cli": "1.1.0", + "graphback-cli": "1.1.1", "graphql-cli": "4.1.0", "ts-node": "9.1.1", "tslint": "6.1.3", diff --git a/templates/ts-fastify-mongodb-backend/package.json b/templates/ts-fastify-mongodb-backend/package.json index 95aa26490e..d488f31c27 100644 --- a/templates/ts-fastify-mongodb-backend/package.json +++ b/templates/ts-fastify-mongodb-backend/package.json @@ -1,6 +1,6 @@ { "name": "graphback-fastify-templates-mongodb-runtime", - "version": "1.1.0", + "version": "1.1.1", "description": "Graphback runtime template with Fastify and MongoDb", "private": true, "main": "dist/index.js", @@ -13,12 +13,12 @@ }, "license": "Apache 2.0", "dependencies": { - "@graphback/runtime-mongo": "1.1.0", + "@graphback/runtime-mongo": "1.1.1", "@graphql-tools/schema": "7.1.2", "dotenv": "8.2.0", "fastify": "3.9.2", "fastify-cors": "4.1.0", - "graphback": "1.1.0", + "graphback": "1.1.1", "graphql": "15.4.0", "graphql-config": "3.2.0", "graphql-subscriptions": "1.1.0", @@ -34,7 +34,7 @@ "@types/graphql": "14.2.3", "@types/node": "14.14.14", "@types/node-fetch": "2.5.7", - "graphback-cli": "1.1.0", + "graphback-cli": "1.1.1", "graphql-cli": "4.1.0", "ts-node": "9.1.1", "tslint": "6.1.3", diff --git a/templates/ts-react-apollo-client/package.json b/templates/ts-react-apollo-client/package.json index a1720dc04c..9e5cfa2094 100644 --- a/templates/ts-react-apollo-client/package.json +++ b/templates/ts-react-apollo-client/package.json @@ -1,6 +1,6 @@ { "name": "react-client-example", - "version": "1.1.0", + "version": "1.1.1", "private": true, "devDependencies": { "@graphql-cli/codegen": "1.17.16", @@ -8,7 +8,7 @@ "@graphql-codegen/typescript": "1.19.0", "@graphql-codegen/typescript-operations": "1.17.12", "@graphql-codegen/typescript-react-apollo": "2.2.1", - "graphback-cli": "1.1.0", + "graphback-cli": "1.1.1", "graphql": "15.4.0", "graphql-cli": "4.1.0", "tslint": "6.1.3",