Skip to content

Commit

Permalink
Merge pull request #1153 from nestjs/next
Browse files Browse the repository at this point in the history
Next
  • Loading branch information
BrunnerLivio authored May 13, 2021
2 parents 97738af + 6ba1836 commit d5226a9
Show file tree
Hide file tree
Showing 10 changed files with 26,487 additions and 446 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# [7.2.0-next.0](https://github.com/nestjs/terminus/compare/7.1.2...7.2.0-next.0) (2021-04-11)


### Bug Fixes

* **deps:** update dependency @grpc/proto-loader to v0.6.0 ([e00f738](https://github.com/nestjs/terminus/commit/e00f73887e48300f6d4c0f7b6ebb4f94160bbcf5))
* **deps:** update dependency @nestjs/mongoose to v7.2.4 ([1d0d26e](https://github.com/nestjs/terminus/commit/1d0d26e6cc0a8dc24466ffcf799158b65a7f049e))
* **deps:** update dependency @nestjs/terminus to v7.1.2 ([9d0c98e](https://github.com/nestjs/terminus/commit/9d0c98e47eef066a55a1a35c6c1fda60a359364f))
* **deps:** update dependency fastify to v3.14.2 ([710055b](https://github.com/nestjs/terminus/commit/710055bbc40e996dce9fe9cf34523b6186184239))
* **deps:** update dependency redis to v3.1.0 ([7e83581](https://github.com/nestjs/terminus/commit/7e835818edcbebb3f5813ee110d0ecdb776906d5))
* **deps:** update dependency rxjs to v6.6.7 ([de4da85](https://github.com/nestjs/terminus/commit/de4da85b31f152eb198e7933772a8829984b3bb3))


### Features

* **health:** add `httpClient` as option ([25a428c](https://github.com/nestjs/terminus/commit/25a428c80c9f2b521f7d528fe6d7685be3ea0b1d)), closes [#1151](https://github.com/nestjs/terminus/issues/1151)

## [7.1.2](https://github.com/nestjs/terminus/compare/7.1.1...7.1.2) (2021-04-04)


Expand Down
5 changes: 4 additions & 1 deletion e2e/helper/bootstrap-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ class ApplicationModule {
useMongoose: boolean,
useSequelize: boolean,
): DynamicModule {
const imports = [TerminusModule.forRootAsync(options)];
const imports = [
TerminusModule.forRootAsync(options),
...(options.imports || []),
];

if (useDb) {
imports.push(DbModule);
Expand Down
Loading

0 comments on commit d5226a9

Please sign in to comment.