jest-preset-angular 13.0.0-next.1 → 13.0.0
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 +24 -0
- package/package.json +21 -21
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# [13.0.0](https://github.com/thymikee/jest-preset-angular/compare/v13.0.0-next.1...v13.0.0) (2023-02-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add `jest-util` to list of `dependencies` ([#1777](https://github.com/thymikee/jest-preset-angular/issues/1777)) ([db8f7c9](https://github.com/thymikee/jest-preset-angular/commit/db8f7c90a5c2395ac7b6b24be9baf56331a57198)), closes [#1773](https://github.com/thymikee/jest-preset-angular/issues/1773)
|
|
7
|
+
* typo in `esbuild-check.js` ([#1806](https://github.com/thymikee/jest-preset-angular/issues/1806)) ([c2f2b61](https://github.com/thymikee/jest-preset-angular/commit/c2f2b611e8893b04904907e8255cd6a4b28dddf9))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* support Jest 29 ([#1937](https://github.com/thymikee/jest-preset-angular/issues/1937)) ([b0b57a7](https://github.com/thymikee/jest-preset-angular/commit/b0b57a7df09fe3d84baccdc4f032ffbb9235bb69)), closes [#1774](https://github.com/thymikee/jest-preset-angular/issues/1774)
|
|
13
|
+
* **config:** remove hardcoded logic setting `target` to `ES2015` ([#1788](https://github.com/thymikee/jest-preset-angular/issues/1788)) ([695c730](https://github.com/thymikee/jest-preset-angular/commit/695c73022c4011cca477b8d6d62c174a8c01a9ec))
|
|
14
|
+
* remove `destroyAfterEach` and `teardown` options ([#1768](https://github.com/thymikee/jest-preset-angular/issues/1768)) ([fe4c73b](https://github.com/thymikee/jest-preset-angular/commit/fe4c73b68536188fa6c89a35e60504bd7e7515df))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## BREAKING CHANGES
|
|
18
|
+
|
|
19
|
+
* Drop support for Angular 11, 12
|
|
20
|
+
* Jest 29 is required
|
|
21
|
+
* `destroyAfterEach` and `teardown` are no longer available to use, please use `testEnvironmentOptions` instead.
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
1
25
|
# [13.0.0-next.1](https://github.com/thymikee/jest-preset-angular/compare/v13.0.0-next.0...v13.0.0-next.1) (2023-01-27)
|
|
2
26
|
|
|
3
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jest-preset-angular",
|
|
3
|
-
"version": "13.0.0
|
|
3
|
+
"version": "13.0.0",
|
|
4
4
|
"description": "Jest preset configuration for Angular projects",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -63,31 +63,31 @@
|
|
|
63
63
|
"typescript": ">=4.4"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@angular-devkit/build-angular": "^15.1.
|
|
67
|
-
"@angular/animations": "^15.1.
|
|
68
|
-
"@angular/common": "^15.1.
|
|
69
|
-
"@angular/compiler": "^15.1.
|
|
70
|
-
"@angular/compiler-cli": "~15.1.
|
|
71
|
-
"@angular/core": "^15.1.
|
|
72
|
-
"@angular/platform-browser": "^15.1.
|
|
73
|
-
"@angular/platform-browser-dynamic": "^15.1.
|
|
74
|
-
"@commitlint/cli": "^17.4.
|
|
75
|
-
"@commitlint/config-angular": "^17.4.
|
|
76
|
-
"@jest/transform": "^29.4.
|
|
77
|
-
"@jest/types": "^29.4.
|
|
66
|
+
"@angular-devkit/build-angular": "^15.1.6",
|
|
67
|
+
"@angular/animations": "^15.1.5",
|
|
68
|
+
"@angular/common": "^15.1.5",
|
|
69
|
+
"@angular/compiler": "^15.1.5",
|
|
70
|
+
"@angular/compiler-cli": "~15.1.5",
|
|
71
|
+
"@angular/core": "^15.1.5",
|
|
72
|
+
"@angular/platform-browser": "^15.1.5",
|
|
73
|
+
"@angular/platform-browser-dynamic": "^15.1.5",
|
|
74
|
+
"@commitlint/cli": "^17.4.3",
|
|
75
|
+
"@commitlint/config-angular": "^17.4.3",
|
|
76
|
+
"@jest/transform": "^29.4.3",
|
|
77
|
+
"@jest/types": "^29.4.3",
|
|
78
78
|
"@types/jest": "^29.4.0",
|
|
79
|
-
"@types/node": "^18.
|
|
79
|
+
"@types/node": "^18.13.0",
|
|
80
80
|
"@types/semver": "^7.3.13",
|
|
81
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
82
|
-
"@typescript-eslint/parser": "^5.
|
|
81
|
+
"@typescript-eslint/eslint-plugin": "^5.51.0",
|
|
82
|
+
"@typescript-eslint/parser": "^5.51.0",
|
|
83
83
|
"chalk": "^4.1.2",
|
|
84
84
|
"conventional-changelog-cli": "^2.2.2",
|
|
85
85
|
"cross-env": "^7.0.3",
|
|
86
|
-
"eslint": "^8.
|
|
86
|
+
"eslint": "^8.33.0",
|
|
87
87
|
"eslint-config-prettier": "^8.6.0",
|
|
88
88
|
"eslint-plugin-import": "^2.27.5",
|
|
89
89
|
"eslint-plugin-jest": "^27.2.1",
|
|
90
|
-
"eslint-plugin-jsdoc": "^39.
|
|
90
|
+
"eslint-plugin-jsdoc": "^39.8.0",
|
|
91
91
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
92
92
|
"eslint-plugin-prettier": "^4.2.1",
|
|
93
93
|
"execa": "5.1.1",
|
|
@@ -95,15 +95,15 @@
|
|
|
95
95
|
"github-files-fetcher": "^1.6.0",
|
|
96
96
|
"glob": "^8.1.0",
|
|
97
97
|
"husky": "^8.0.3",
|
|
98
|
-
"jest": "^29.4.
|
|
98
|
+
"jest": "^29.4.3",
|
|
99
99
|
"jest-snapshot-serializer-raw": "^1.2.0",
|
|
100
100
|
"pinst": "^3.0.0",
|
|
101
|
-
"prettier": "^2.8.
|
|
101
|
+
"prettier": "^2.8.4",
|
|
102
102
|
"rimraf": "^4.1.2",
|
|
103
103
|
"rxjs": "^7.8.0",
|
|
104
104
|
"ts-node": "^10.9.1",
|
|
105
105
|
"tslib": "^2.4.1",
|
|
106
|
-
"typescript": "^4.9.
|
|
106
|
+
"typescript": "^4.9.5",
|
|
107
107
|
"zone.js": "^0.12.0"
|
|
108
108
|
},
|
|
109
109
|
"packageManager": "yarn@3.2.3"
|