From 88e7dd4b99f52c118741757e8e563e7defc5cdd8 Mon Sep 17 00:00:00 2001 From: MG Date: Sun, 15 Nov 2020 08:04:35 +0100 Subject: [PATCH] chore(release): 11.0.0 # [11.0.0](https://github.com/ike18t/ng-mocks/compare/v10.5.4...v11.0.0) (2020-11-15) ### Bug Fixes * removing deprecations ([2625352](https://github.com/ike18t/ng-mocks/commit/262535265cf09e151e7a578f1325fd7cd8067352)) * respecting internals vs externals ([d4abf41](https://github.com/ike18t/ng-mocks/commit/d4abf41d996763fdb90ec77992055ed5164d9081)), closes [#44](https://github.com/ike18t/ng-mocks/issues/44) ### Features * angular 11 support ([eef7b94](https://github.com/ike18t/ng-mocks/commit/eef7b94381a5cd1da4468ea9364ead480a62aa10)) ### BREAKING CHANGES * respects internals vs externals, to access them use guts or MockBuilder * removed NG_GUARDS, use NG_MOCKS_GUARDS * removed NG_INTERCEPTORS, use NG_MOCKS_INTERCEPTORS * removed custom meta in MockComponent * removed MockHelper, use ngMocks * A11 --- CHANGELOG.md | 23 +++++++++++++++++++++++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 371641d1f6..e5c3b37d23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +# [11.0.0](https://github.com/ike18t/ng-mocks/compare/v10.5.4...v11.0.0) (2020-11-15) + + +### Bug Fixes + +* removing deprecations ([2625352](https://github.com/ike18t/ng-mocks/commit/262535265cf09e151e7a578f1325fd7cd8067352)) +* respecting internals vs externals ([d4abf41](https://github.com/ike18t/ng-mocks/commit/d4abf41d996763fdb90ec77992055ed5164d9081)), closes [#44](https://github.com/ike18t/ng-mocks/issues/44) + + +### Features + +* angular 11 support ([eef7b94](https://github.com/ike18t/ng-mocks/commit/eef7b94381a5cd1da4468ea9364ead480a62aa10)) + + +### BREAKING CHANGES + +* respects internals vs externals, to access them use guts or MockBuilder +* removed NG_GUARDS, use NG_MOCKS_GUARDS +* removed NG_INTERCEPTORS, use NG_MOCKS_INTERCEPTORS +* removed custom meta in MockComponent +* removed MockHelper, use ngMocks +* A11 + ## [10.5.4](https://github.com/ike18t/ng-mocks/compare/v10.5.3...v10.5.4) (2020-11-14) diff --git a/package-lock.json b/package-lock.json index 3b67ff1ba6..762e7827fa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ng-mocks", - "version": "10.5.4", + "version": "11.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 0146e62548..cb3bcfb0fa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ng-mocks", - "version": "10.5.4", + "version": "11.0.0", "description": "A library creating angular mock components, directives, pipes, services, providers and modules in unit tests, which also includes shallow rendering and precise stubs to dump child dependencies.", "main": "dist/index.js", "types": "dist/index.d.ts",