ts-jest 27.1.2 → 27.1.3

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
- bd2f45610719730fefd953f7489229846114d0d5
1
+ 6b3897298945bb32bd224a3d14c72c4f78ca90fa
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## [27.1.3](https://github.com/kulshekhar/ts-jest/compare/v27.1.2...v27.1.3) (2022-01-14)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **compiler:** update memory cache for compiler using received file content ([#3194](https://github.com/kulshekhar/ts-jest/issues/3194)) ([e4d9541](https://github.com/kulshekhar/ts-jest/commit/e4d9541f262ca14cb25563c757c0f2345dbf5c51))
7
+
8
+
9
+
1
10
  ## [27.1.2](https://github.com/kulshekhar/ts-jest/compare/v27.1.1...v27.1.2) (2021-12-15)
2
11
 
3
12
 
@@ -264,6 +264,7 @@ var TsCompiler = (function () {
264
264
  var hit = this._isFileInCache(fileName);
265
265
  if (!hit) {
266
266
  this._fileVersionCache.set(fileName, 1);
267
+ this._fileContentCache.set(fileName, contents);
267
268
  shouldIncrementProjectVersion = true;
268
269
  }
269
270
  else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ts-jest",
3
- "version": "27.1.2",
3
+ "version": "27.1.3",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "bin": {
@@ -91,7 +91,7 @@
91
91
  },
92
92
  "devDependencies": {
93
93
  "@commitlint/cli": "15.x",
94
- "@commitlint/config-angular": "^15.0.0",
94
+ "@commitlint/config-angular": "^16.0.0",
95
95
  "@jest/transform": "^27.4.2",
96
96
  "@jest/types": "^27.4.2",
97
97
  "@types/babel__core": "7.x",