diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index c7e7d3afbd..a3c6708fb3 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -3,6 +3,15 @@ id: releases title: Release Notes --- +## 1.1.2 (2021-02-06) + +#### Bug Fixes + +* [#2269](https://github.com/aerogear/graphback/pull/2269) replaced _id with id in client and postgres template ([@RinkiyaKeDad](https://github.com/RinkiyaKeDad)) + +* [#2261](https://github.com/aerogear/graphback/pull/2267) update import format [@namit-chandwani](https://github.com/namit-chandwani)) + + ## 1.1.1 (2021-02-06) #### Bug Fixes diff --git a/docs/datasync/conflict-resolution-intro.md b/docs/datasync/conflict-resolution-intro.md index b87de070c3..875c2aa600 100644 --- a/docs/datasync/conflict-resolution-intro.md +++ b/docs/datasync/conflict-resolution-intro.md @@ -74,7 +74,7 @@ An example mutation can be found at the end of this page. ### Modify the template to use `createDataSyncAPI` -In the [`src/index.ts`](https://github.com/aerogear/graphback/blob/templates-release/templates/ts-apollo-mongodb-backend/src/index.ts) file of the template, use `createDataSyncAPI` instead of `buildGraphbackAPI`: +In the [`src/index.ts`](https://github.com/aerogear/graphback/blob/templates-1.0.0/templates/ts-apollo-mongodb-backend/src/index.ts) file of the template, use `createDataSyncAPI` instead of `buildGraphbackAPI`: ```typescript import { createDataSyncAPI } from '@graphback/datasync' diff --git a/docs/datasync/delta-queries.md b/docs/datasync/delta-queries.md index a77854017d..d3490eb006 100644 --- a/docs/datasync/delta-queries.md +++ b/docs/datasync/delta-queries.md @@ -91,7 +91,7 @@ The `DeltaList` is a container for `Delta` type, which also returns a `lastSync` ### Modify the template to use `createDataSyncAPI` -In the [`src/index.ts`](https://github.com/aerogear/graphback/blob/templates-release/templates/ts-apollo-mongodb-backend/src/index.ts) file of the template, use `createDataSyncAPI` instead of `buildGraphbackAPI`: +In the [`src/index.ts`](https://github.com/aerogear/graphback/blob/templates-1.0.0/templates/ts-apollo-mongodb-backend/src/index.ts) file of the template, use `createDataSyncAPI` instead of `buildGraphbackAPI`: ```typescript import { createDataSyncAPI } from '@graphback/datasync' diff --git a/scripts/release-procedure.adoc b/scripts/release-procedure.adoc index 02fb030819..8becc2a32d 100644 --- a/scripts/release-procedure.adoc +++ b/scripts/release-procedure.adoc @@ -18,11 +18,11 @@ A small amount of preparation needs to take place before this process kicks off. Ensure the Git repository is clean and there are no outstanding changes. -Next, check to ensure that `templates-release` branch is up to date with `master`. In the following example `upstream` = `git@github.com:aerogear/graphback.git`. +Next, check to ensure that `templates-1.0.0` branch is up to date with `master`. In the following example `upstream` = `git@github.com:aerogear/graphback.git`. [source, sh] -- -git checkout templates-release +git checkout templates-1.0.0 git reset --hard upstream/master git push -f -- diff --git a/templates/ts-apollo-mongo-apache-kafka-backend/package.json b/templates/ts-apollo-mongo-apache-kafka-backend/package.json index fc22b70ed5..b59706a8a0 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.1", + "version": "1.0.0", "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.1", + "@graphback/runtime-mongo": "1.1.2", "@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.1", + "graphback": "1.1.2", "graphql": "15.4.0", "graphql-config": "3.2.0", - "graphql-subscriptions": "1.1.1", + "graphql-subscriptions": "1.1.2", "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.1", + "graphback-cli": "1.1.2", "graphql-cli": "4.1.0", "ts-node": "9.1.1", "tslint": "6.1.3", diff --git a/website/versioned_docs/version-0.16.x/datasync/conflict-resolution-intro.md b/website/versioned_docs/version-0.16.x/datasync/conflict-resolution-intro.md index b8d0dd199e..93a98dc1aa 100644 --- a/website/versioned_docs/version-0.16.x/datasync/conflict-resolution-intro.md +++ b/website/versioned_docs/version-0.16.x/datasync/conflict-resolution-intro.md @@ -74,7 +74,7 @@ An example mutation can be found at the end of this page. ### Modify the template to use `createDataSyncAPI` -In the [`src/index.ts`](https://github.com/aerogear/graphback/blob/templates-release/templates/ts-apollo-mongodb-backend/src/index.ts) file of the template, use `createDataSyncAPI` instead of `buildGraphbackAPI`: +In the [`src/index.ts`](https://github.com/aerogear/graphback/blob/templates-1.0.0/templates/ts-apollo-mongodb-backend/src/index.ts) file of the template, use `createDataSyncAPI` instead of `buildGraphbackAPI`: ```typescript import { createDataSyncAPI } from '@graphback/datasync' diff --git a/website/versioned_docs/version-0.16.x/datasync/delta-queries.md b/website/versioned_docs/version-0.16.x/datasync/delta-queries.md index 37064f6d13..2666bc71fd 100644 --- a/website/versioned_docs/version-0.16.x/datasync/delta-queries.md +++ b/website/versioned_docs/version-0.16.x/datasync/delta-queries.md @@ -91,7 +91,7 @@ The `DeltaList` is a container for `Delta` type, which also returns a `lastSync` ### Modify the template to use `createDataSyncAPI` -In the [`src/index.ts`](https://github.com/aerogear/graphback/blob/templates-release/templates/ts-apollo-mongodb-backend/src/index.ts) file of the template, use `createDataSyncAPI` instead of `buildGraphbackAPI`: +In the [`src/index.ts`](https://github.com/aerogear/graphback/blob/templates-1.0.0/templates/ts-apollo-mongodb-backend/src/index.ts) file of the template, use `createDataSyncAPI` instead of `buildGraphbackAPI`: ```typescript import { createDataSyncAPI } from '@graphback/datasync' diff --git a/website/versioned_docs/version-1.0/datasync/conflict-resolution-intro.md b/website/versioned_docs/version-1.0/datasync/conflict-resolution-intro.md index b87de070c3..875c2aa600 100644 --- a/website/versioned_docs/version-1.0/datasync/conflict-resolution-intro.md +++ b/website/versioned_docs/version-1.0/datasync/conflict-resolution-intro.md @@ -74,7 +74,7 @@ An example mutation can be found at the end of this page. ### Modify the template to use `createDataSyncAPI` -In the [`src/index.ts`](https://github.com/aerogear/graphback/blob/templates-release/templates/ts-apollo-mongodb-backend/src/index.ts) file of the template, use `createDataSyncAPI` instead of `buildGraphbackAPI`: +In the [`src/index.ts`](https://github.com/aerogear/graphback/blob/templates-1.0.0/templates/ts-apollo-mongodb-backend/src/index.ts) file of the template, use `createDataSyncAPI` instead of `buildGraphbackAPI`: ```typescript import { createDataSyncAPI } from '@graphback/datasync' diff --git a/website/versioned_docs/version-1.0/datasync/delta-queries.md b/website/versioned_docs/version-1.0/datasync/delta-queries.md index a77854017d..d3490eb006 100644 --- a/website/versioned_docs/version-1.0/datasync/delta-queries.md +++ b/website/versioned_docs/version-1.0/datasync/delta-queries.md @@ -91,7 +91,7 @@ The `DeltaList` is a container for `Delta` type, which also returns a `lastSync` ### Modify the template to use `createDataSyncAPI` -In the [`src/index.ts`](https://github.com/aerogear/graphback/blob/templates-release/templates/ts-apollo-mongodb-backend/src/index.ts) file of the template, use `createDataSyncAPI` instead of `buildGraphbackAPI`: +In the [`src/index.ts`](https://github.com/aerogear/graphback/blob/templates-1.0.0/templates/ts-apollo-mongodb-backend/src/index.ts) file of the template, use `createDataSyncAPI` instead of `buildGraphbackAPI`: ```typescript import { createDataSyncAPI } from '@graphback/datasync'