Skip to content
This repository was archived by the owner on Nov 21, 2024. It is now read-only.

Commit 83ca217

Browse files
committed
Merge branch 'release/4.1.4'
2 parents 664ac00 + 596ab01 commit 83ca217

File tree

6 files changed

+3159
-2798
lines changed

6 files changed

+3159
-2798
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [4.1.4](https://github.com/rucken/todo-nestjs/compare/4.1.3...4.1.4) (2019-05-10)
2+
3+
4+
### Bug Fixes
5+
6+
* Update dependencies ([638b9e2](https://github.com/rucken/todo-nestjs/commit/638b9e2))
7+
8+
9+
110
## [4.1.3](https://github.com/rucken/todo-nestjs/compare/4.1.2...4.1.3) (2019-04-23)
211

312

apps/demo/src/app/config/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
} from '@rucken/auth-nestjs';
1313
import { CORE_APP_FILTERS, CORE_APP_PIPES, CORE_CONFIG_TOKEN, DEFAULT_CORE_CONFIG } from '@rucken/core-nestjs';
1414
import { ConnectionString } from 'connection-string';
15-
import { load } from 'dotenv';
15+
import { config as load } from 'dotenv';
1616
import { accessSync, readFileSync } from 'fs';
1717
import * as path from 'path';
1818
import { IDemoConfig } from './config.interface';

apps/demo/src/main.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { NestFactory } from '@nestjs/core';
2+
import { NestExpressApplication } from '@nestjs/platform-express';
23
import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger';
34
import 'reflect-metadata';
45
import { register } from 'tsconfig-paths';
@@ -22,7 +23,7 @@ async function bootstrap() {
2223
/**
2324
* Create nest application
2425
*/
25-
const app = await NestFactory.create(
26+
const app = await NestFactory.create<NestExpressApplication>(
2627
AppModule.forRoot({
2728
providers: [...config.core.providers(), ...config.auth.providers()],
2829
passportProviders: config.auth.passportProviders()

libs/rucken/todo-nestjs/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rucken/todo-nestjs",
3-
"version": "4.1.3",
3+
"version": "4.1.4",
44
"engines": {
55
"node": ">=11",
66
"npm": ">=6.5.0"
@@ -49,15 +49,15 @@
4949
"main": "index.js",
5050
"types": "index.d.ts",
5151
"dependencies": {
52-
"@nestjs/common": "5.7.4",
53-
"@nestjs/core": "5.7.4",
54-
"@nestjs/passport": "5.1.0",
55-
"@nestjs/swagger": "2.5.1",
56-
"@nestjs/typeorm": "5.3.0",
52+
"@nestjs/common": "6.1.1",
53+
"@nestjs/core": "6.1.1",
54+
"@nestjs/passport": "6.0.0",
55+
"@nestjs/swagger": "3.0.2",
56+
"@nestjs/typeorm": "6.1.0",
5757
"class-transformer": "0.2.0",
5858
"class-validator": "0.9.1",
5959
"node-django-hashers": "1.1.6",
60-
"highlight.js": "9.13.1",
61-
"@rucken/core-nestjs": "1.0.10"
60+
"highlight.js": "9.15.6",
61+
"@rucken/core-nestjs": "1.0.12"
6262
}
6363
}

0 commit comments

Comments
 (0)