ng-mocks 13.0.0 → 13.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/README.md +1 -0
- package/index.js +2 -1
- package/index.js.map +1 -0
- package/lib/mock-builder/promise/get-override-def.d.ts +1 -1
- package/lib/mock-component/render/get-key.d.ts +1 -4
- package/lib/mock-helper/events/mock-helper.event.d.ts +1 -1
- package/lib/mock-helper/events/mock-helper.trigger.d.ts +1 -1
- package/lib/mock-helper/find/func.parse-find-term.d.ts +1 -6
- package/lib/mock-helper/mock-helper.object.d.ts +3 -3
- package/lib/mock-helper/template-ref/detect-crawler.d.ts +1 -6
- package/lib/mock-instance/mock-instance-forgot-reset.d.ts +1 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
# [13.0.0](https://github.com/ike18t/ng-mocks/compare/v12.5.1...v13.0.0) (2022-01-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **a13:** creating known props and methods ([5386f77](https://github.com/ike18t/ng-mocks/commit/5386f77c51905d12868f55a873fb03ee80fa6d47))
|
|
7
|
+
* **a13:** parsing a9 declarations ([b12e00a](https://github.com/ike18t/ng-mocks/commit/b12e00af1b4b39bd74e6d8458909f6d4290b8e6f))
|
|
8
|
+
* **core:** correct resets on errors ([e3b1809](https://github.com/ike18t/ng-mocks/commit/e3b18090c543c397cb95d99db4e553fabacb12f7))
|
|
9
|
+
* **core:** ignoring host bindings in mocks [#1427](https://github.com/ike18t/ng-mocks/issues/1427) ([411842c](https://github.com/ike18t/ng-mocks/commit/411842c6350dfec6df5e25debca2ac36a0ed1d56))
|
|
10
|
+
* **core:** parsing only own declarations [#1587](https://github.com/ike18t/ng-mocks/issues/1587) ([978bdbc](https://github.com/ike18t/ng-mocks/commit/978bdbcb064c767acd6710099349f05ed09207a9))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **a13:** recursive declarations ([396573f](https://github.com/ike18t/ng-mocks/commit/396573fa7c46d005959994457398bf7490c320af))
|
|
16
|
+
* **a13:** support ([88c9752](https://github.com/ike18t/ng-mocks/commit/88c9752a6c2ef23264910794eaebb3a5408f8e65))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### BREAKING CHANGES
|
|
20
|
+
|
|
21
|
+
* **a13:** Angular 13 only support
|
|
22
|
+
|
|
1
23
|
# [13.0.0-alpha.6](https://github.com/ike18t/ng-mocks/compare/v13.0.0-alpha.5...v13.0.0-alpha.6) (2022-01-18)
|
|
2
24
|
|
|
3
25
|
|
package/README.md
CHANGED
|
@@ -16,6 +16,7 @@ The current version of the library **has been tested** and **can be used** with:
|
|
|
16
16
|
|
|
17
17
|
| Angular | ng-mocks | Jasmine | Jest | Ivy |
|
|
18
18
|
| ------: | :------: | :-----: | :--: | :-: |
|
|
19
|
+
| 14 | latest | yes | yes | yes |
|
|
19
20
|
| 13 | latest | yes | yes | yes |
|
|
20
21
|
| 12 | latest | yes | yes | yes |
|
|
21
22
|
| 11 | latest | yes | yes | yes |
|