Skip to content

Commit be093f3

Browse files
Merge branch 'master' into renovate/typescript-3.x
2 parents 12b11c3 + 62004c1 commit be093f3

14 files changed

Lines changed: 97 additions & 79 deletions

File tree

integration/graphql/package-lock.json

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integration/graphql/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"dependencies": {
1212
"@nestjs/common": "6.0.4",
1313
"@nestjs/core": "6.0.4",
14-
"@nestjs/graphql": "6.0.3",
14+
"@nestjs/graphql": "6.0.4",
1515
"apollo-server-express": "2.4.8",
16-
"graphql": "14.2.0",
16+
"graphql": "14.2.1",
1717
"graphql-tools": "4.0.4",
1818
"reflect-metadata": "0.1.13",
1919
"rxjs": "6.4.0",

integration/typegraphql/package-lock.json

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integration/typegraphql/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
"dependencies": {
1212
"@nestjs/common": "6.0.4",
1313
"@nestjs/core": "6.0.4",
14-
"@nestjs/graphql": "6.0.3",
14+
"@nestjs/graphql": "6.0.4",
1515
"apollo-server-express": "2.4.8",
1616
"class-transformer": "0.2.0",
1717
"class-validator": "0.9.1",
18-
"graphql": "14.2.0",
18+
"graphql": "14.2.1",
1919
"graphql-tools": "4.0.4",
2020
"reflect-metadata": "0.1.13",
2121
"rxjs": "6.4.0",

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"fastify-cors": "2.1.2",
5656
"fastify-formbody": "3.1.0",
5757
"fastify-multipart": "0.7.0",
58-
"graphql": "14.2.0",
58+
"graphql": "14.2.1",
5959
"grpc": "1.19.0",
6060
"http2": "3.3.7",
6161
"iterare": "1.1.2",

packages/microservices/listeners-controller.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ export class ListenersController {
4848
}
4949
server.addHandler(
5050
pattern,
51-
data => {
51+
async data => {
5252
const contextId = createContextId();
53-
const contextInstance = this.injector.loadPerContext(
53+
const contextInstance = await this.injector.loadPerContext(
5454
instance,
5555
module,
5656
collection,

packages/platform-fastify/adapters/fastify-adapter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export class FastifyAdapter extends AbstractHttpAdapter {
104104
}
105105

106106
public enableCors(options: CorsOptions) {
107-
this.register(cors, { options });
107+
this.register(cors, options);
108108
}
109109

110110
public registerParserMiddleware() {

sample/07-sequelize/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
"reflect-metadata": "0.1.13",
1818
"rxjs": "6.4.0",
1919
"sequelize": "5.2.8",
20-
"sequelize-typescript": "0.6.8",
20+
"sequelize-typescript": "0.6.9",
2121
"typescript": "3.4.1"
2222
},
2323
"devDependencies": {
2424
"@types/node": "10.14.4",
25-
"@types/sequelize": "4.27.44",
25+
"@types/sequelize": "4.27.46",
2626
"ts-node": "8.0.3",
2727
"tslint": "5.14.0"
2828
}

sample/12-graphql-apollo/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
"dependencies": {
1313
"@nestjs/common": "6.0.4",
1414
"@nestjs/core": "6.0.4",
15-
"@nestjs/graphql": "6.0.3",
15+
"@nestjs/graphql": "6.0.4",
1616
"@nestjs/platform-express": "6.0.4",
1717
"apollo-server-express": "2.4.8",
1818
"class-transformer": "0.2.0",
1919
"class-validator": "0.9.1",
20-
"graphql": "14.2.0",
20+
"graphql": "14.2.1",
2121
"graphql-subscriptions": "1.0.0",
2222
"reflect-metadata": "0.1.13",
2323
"rxjs": "6.4.0",

0 commit comments

Comments
 (0)