Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit e035572

Browse files
committed
fix: various updates
1 parent 768cfd0 commit e035572

File tree

9 files changed

+22
-13
lines changed

9 files changed

+22
-13
lines changed

docs/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ id: releases
33
title: Release Notes
44
---
55

6+
## 1.1.2 (2021-02-06)
7+
8+
#### Bug Fixes
9+
10+
* [#2269](https://github.com/aerogear/graphback/pull/2269) replaced _id with id in client and postgres template ([@RinkiyaKeDad](https://github.com/RinkiyaKeDad))
11+
12+
* [#2261](https://github.com/aerogear/graphback/pull/2267) update import format [@namit-chandwani](https://github.com/namit-chandwani))
13+
14+
615
## 1.1.1 (2021-02-06)
716

817
#### Bug Fixes

docs/datasync/conflict-resolution-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ An example mutation can be found at the end of this page.
7474

7575
### Modify the template to use `createDataSyncAPI`
7676

77-
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`:
77+
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`:
7878

7979
```typescript
8080
import { createDataSyncAPI } from '@graphback/datasync'

docs/datasync/delta-queries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ The `DeltaList` is a container for `Delta` type, which also returns a `lastSync`
9191

9292
### Modify the template to use `createDataSyncAPI`
9393

94-
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`:
94+
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`:
9595

9696
```typescript
9797
import { createDataSyncAPI } from '@graphback/datasync'

scripts/release-procedure.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ A small amount of preparation needs to take place before this process kicks off.
1818

1919
Ensure the Git repository is clean and there are no outstanding changes.
2020

21-
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`.
21+
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`.
2222

2323
[source, sh]
2424
--
25-
git checkout templates-release
25+
git checkout templates-1.0.0
2626
git reset --hard upstream/master
2727
git push -f
2828
--

templates/ts-apollo-mongo-apache-kafka-backend/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphback-templates-apollo-kafka-mongo",
3-
"version": "1.1.1",
3+
"version": "1.0.0",
44
"description": "Graphback runtime template with Apollo Server, Kafka and MongoDb",
55
"private": true,
66
"main": "dist/index.js",
@@ -13,16 +13,16 @@
1313
},
1414
"license": "Apache 2.0",
1515
"dependencies": {
16-
"@graphback/runtime-mongo": "1.1.1",
16+
"@graphback/runtime-mongo": "1.1.2",
1717
"@aerogear/graphql-kafka-subscriptions": "0.4.1",
1818
"apollo-server-express": "2.19.0",
1919
"cors": "2.8.5",
2020
"dotenv": "8.2.0",
2121
"express": "4.17.1",
22-
"graphback": "1.1.1",
22+
"graphback": "1.1.2",
2323
"graphql": "15.4.0",
2424
"graphql-config": "3.2.0",
25-
"graphql-subscriptions": "1.1.1",
25+
"graphql-subscriptions": "1.1.2",
2626
"graphql-tag": "2.11.0",
2727
"mongodb": "3.6.3"
2828
},
@@ -34,7 +34,7 @@
3434
"@types/graphql": "14.2.3",
3535
"@types/node-fetch": "2.5.7",
3636
"@types/uuid": "8.3.0",
37-
"graphback-cli": "1.1.1",
37+
"graphback-cli": "1.1.2",
3838
"graphql-cli": "4.1.0",
3939
"ts-node": "9.1.1",
4040
"tslint": "6.1.3",

website/versioned_docs/version-0.16.x/datasync/conflict-resolution-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ An example mutation can be found at the end of this page.
7474

7575
### Modify the template to use `createDataSyncAPI`
7676

77-
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`:
77+
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`:
7878

7979
```typescript
8080
import { createDataSyncAPI } from '@graphback/datasync'

website/versioned_docs/version-0.16.x/datasync/delta-queries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ The `DeltaList` is a container for `Delta` type, which also returns a `lastSync`
9191

9292
### Modify the template to use `createDataSyncAPI`
9393

94-
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`:
94+
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`:
9595

9696
```typescript
9797
import { createDataSyncAPI } from '@graphback/datasync'

website/versioned_docs/version-1.0/datasync/conflict-resolution-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ An example mutation can be found at the end of this page.
7474

7575
### Modify the template to use `createDataSyncAPI`
7676

77-
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`:
77+
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`:
7878

7979
```typescript
8080
import { createDataSyncAPI } from '@graphback/datasync'

website/versioned_docs/version-1.0/datasync/delta-queries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ The `DeltaList` is a container for `Delta` type, which also returns a `lastSync`
9191

9292
### Modify the template to use `createDataSyncAPI`
9393

94-
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`:
94+
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`:
9595

9696
```typescript
9797
import { createDataSyncAPI } from '@graphback/datasync'

0 commit comments

Comments
 (0)