ts-jest 28.0.3 → 28.0.4

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 CHANGED
@@ -1 +1 @@
1
- 159743cd9897e435c297560fc7e873b39bceb367
1
+ 3ec913f3824bb3d8e0a11ca9d34fe5f15cb00d40
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## [28.0.4](https://github.com/kulshekhar/ts-jest/compare/v28.0.3...v28.0.4) (2022-06-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * remove `@types/jest` from peer deps ([#3592](https://github.com/kulshekhar/ts-jest/issues/3592)) ([b66b656](https://github.com/kulshekhar/ts-jest/commit/b66b656e0f29eea9234a4d1e883c6d249437f03c))
7
+
8
+
9
+
1
10
  ## [28.0.3](https://github.com/kulshekhar/ts-jest/compare/v28.0.2...v28.0.3) (2022-05-23)
2
11
 
3
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ts-jest",
3
- "version": "28.0.3",
3
+ "version": "28.0.4",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "bin": {
@@ -62,7 +62,6 @@
62
62
  },
63
63
  "peerDependencies": {
64
64
  "@babel/core": ">=7.0.0-beta.0 <8",
65
- "@types/jest": "^27.0.0",
66
65
  "babel-jest": "^28.0.0",
67
66
  "jest": "^28.0.0",
68
67
  "typescript": ">=4.3"
@@ -71,9 +70,6 @@
71
70
  "@babel/core": {
72
71
  "optional": true
73
72
  },
74
- "@types/jest": {
75
- "optional": true
76
- },
77
73
  "babel-jest": {
78
74
  "optional": true
79
75
  },
@@ -113,7 +109,7 @@
113
109
  "@typescript-eslint/parser": "^5.3.0",
114
110
  "conventional-changelog-cli": "2.x",
115
111
  "cross-spawn": "latest",
116
- "esbuild": "~0.14.2",
112
+ "esbuild": "~0.14.42",
117
113
  "eslint": "^8.4.1",
118
114
  "eslint-config-prettier": "latest",
119
115
  "eslint-plugin-import": "latest",
@@ -123,7 +119,7 @@
123
119
  "eslint-plugin-prettier": "latest",
124
120
  "execa": "5.1.1",
125
121
  "fs-extra": "10.x",
126
- "glob": "^8.0.1",
122
+ "glob": "^8.0.3",
127
123
  "glob-gitignore": "latest",
128
124
  "husky": "4.x",
129
125
  "jest": "^28.0.0",
package/renovate.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "extends": [
3
+ ":dependencyDashboard",
4
+ "group:babelMonorepo",
5
+ "group:commitlintMonorepo",
6
+ "group:docusaurusMonorepo",
7
+ ":prHourlyLimit2",
8
+ "workarounds:all"
9
+ ],
10
+ "timezone": "UTC",
11
+ "rangeStrategy": "bump",
12
+ "separateMajorMinor": true,
13
+ "prConcurrentLimit": 2,
14
+ "semanticCommits": "enabled",
15
+ "commitMessagePrefix": "build(deps):",
16
+ "ignorePaths": ["examples/react-app"],
17
+ "ignoreDeps": [
18
+ "@mdx-js/react",
19
+ "@types/react",
20
+ "execa",
21
+ "chalk",
22
+ "husky"
23
+ ],
24
+ "packageRules": [
25
+ {
26
+ "matchPaths": ["examples/**"],
27
+ "matchUpdateTypes": ["major"],
28
+ "enabled": false
29
+ },
30
+ {
31
+ "matchPaths": ["examples/react-app"],
32
+ "enabled": false
33
+ },
34
+ {
35
+ "matchPaths": ["package.json"],
36
+ "matchPackagePatterns": ["jest"],
37
+ "excludePackageNames": ["eslint-plugin-jest"],
38
+ "matchUpdateTypes": ["patch", "minor"],
39
+ "groupName": "Jest packages"
40
+ },
41
+ {
42
+ "extends": ["packages:eslint"],
43
+ "groupName": "ESLint packages"
44
+ },
45
+ {
46
+ "matchPackagePrefixes": ["esbuild"],
47
+ "groupName": "Esbuild packages"
48
+ },
49
+ {
50
+ "matchFiles": ["package.json"],
51
+ "matchDepTypes": ["dependencies", "optionalDependencies"],
52
+ "rangeStrategy": "in-range-only"
53
+ },
54
+ {
55
+ "matchPaths": ["e2e/**"],
56
+ "matchPackageNames": [
57
+ "react",
58
+ "react-intl"
59
+ ],
60
+ "groupName": "React e2e packages",
61
+ "enabled": true
62
+ },
63
+ {
64
+ "matchDepTypes": ["peerDependencies"],
65
+ "enabled": false
66
+ }
67
+ ]
68
+ }