ts-jest 29.0.0-next.1 → 29.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/.ts-jest-digest +1 -1
- package/CHANGELOG.md +22 -0
- package/package.json +8 -8
package/.ts-jest-digest
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
f9fb4e4bd207c5c42e82ee8e8107b923ea6a903b
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
# [29.0.0](https://github.com/kulshekhar/ts-jest/compare/v29.0.0-next.1...v29.0.0) (2022-09-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* drop Node 12 and Node 17 support ([#3787](https://github.com/kulshekhar/ts-jest/issues/3787)) ([0f1de16](https://github.com/kulshekhar/ts-jest/commit/0f1de16608dcc7a8ab00bf7fd6a01ebcec6a210a))
|
|
7
|
+
* migrate globals config to transformer config ([#3780](https://github.com/kulshekhar/ts-jest/issues/3780)) ([31e5843](https://github.com/kulshekhar/ts-jest/commit/31e584355434c4fc96022f9e8b41f04c11d24343))
|
|
8
|
+
* support Jest 29 ([#3767](https://github.com/kulshekhar/ts-jest/issues/3767)) ([94b553b](https://github.com/kulshekhar/ts-jest/commit/94b553ba085c52db60f7a7078e3a74d9a02121b1))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### DEPRECATIONS
|
|
12
|
+
|
|
13
|
+
* Define `ts-jest` config under `globals` is now deprecated. Please define the config via transformer config instead.
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### BREAKING CHANGES
|
|
17
|
+
|
|
18
|
+
* Only Node 14, 16 and 18 are supported
|
|
19
|
+
* **Jest 29** is required.
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
1
23
|
# [29.0.0-next.1](https://github.com/kulshekhar/ts-jest/compare/v29.0.0-next.0...v29.0.0-next.1) (2022-09-02)
|
|
2
24
|
|
|
3
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ts-jest",
|
|
3
|
-
"version": "29.0.0
|
|
3
|
+
"version": "29.0.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"bin": {
|
|
@@ -91,8 +91,8 @@
|
|
|
91
91
|
"devDependencies": {
|
|
92
92
|
"@commitlint/cli": "17.x",
|
|
93
93
|
"@commitlint/config-angular": "^17.1.0",
|
|
94
|
-
"@jest/transform": "^29.0.
|
|
95
|
-
"@jest/types": "^29.0.
|
|
94
|
+
"@jest/transform": "^29.0.2",
|
|
95
|
+
"@jest/types": "^29.0.2",
|
|
96
96
|
"@types/babel__core": "7.x",
|
|
97
97
|
"@types/cross-spawn": "latest",
|
|
98
98
|
"@types/fs-extra": "latest",
|
|
@@ -108,12 +108,12 @@
|
|
|
108
108
|
"@types/semver": "latest",
|
|
109
109
|
"@types/yargs": "latest",
|
|
110
110
|
"@types/yargs-parser": "21.x",
|
|
111
|
-
"@typescript-eslint/eslint-plugin": "^5.36.
|
|
112
|
-
"@typescript-eslint/parser": "^5.36.
|
|
113
|
-
"babel-jest": "^29.0.
|
|
111
|
+
"@typescript-eslint/eslint-plugin": "^5.36.2",
|
|
112
|
+
"@typescript-eslint/parser": "^5.36.2",
|
|
113
|
+
"babel-jest": "^29.0.2",
|
|
114
114
|
"conventional-changelog-cli": "2.x",
|
|
115
115
|
"cross-spawn": "latest",
|
|
116
|
-
"esbuild": "~0.15.
|
|
116
|
+
"esbuild": "~0.15.7",
|
|
117
117
|
"eslint": "^8.23.0",
|
|
118
118
|
"eslint-config-prettier": "latest",
|
|
119
119
|
"eslint-plugin-import": "latest",
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
"glob": "^8.0.3",
|
|
127
127
|
"glob-gitignore": "latest",
|
|
128
128
|
"husky": "4.x",
|
|
129
|
-
"jest": "^29.0.
|
|
129
|
+
"jest": "^29.0.2",
|
|
130
130
|
"jest-snapshot-serializer-raw": "^1.2.0",
|
|
131
131
|
"js-yaml": "latest",
|
|
132
132
|
"json-schema-to-typescript": "^11.0.2",
|