diff --git a/CHANGELOG.md b/CHANGELOG.md index d12f557120..49b437beca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# [27.0.0-next.7](https://github.com/kulshekhar/ts-jest/compare/v27.0.0-next.6...v27.0.0-next.7) (2021-02-24) + + +### Bug Fixes + +* **compiler:** exclude files in `outDir` from compiler source files ([#2375](https://github.com/kulshekhar/ts-jest/issues/2375)) ([ec68c74](https://github.com/kulshekhar/ts-jest/commit/ec68c74bccf56d682a7ed9e5c48ea676dcf3fbf9)), closes [#2350](https://github.com/kulshekhar/ts-jest/issues/2350) [#2374](https://github.com/kulshekhar/ts-jest/issues/2374) +* **config:** cache config and compiler correctly between runs ([#2356](https://github.com/kulshekhar/ts-jest/issues/2356)) ([5f91336](https://github.com/kulshekhar/ts-jest/commit/5f91336b9023da1051cc85b509ad02c525679fcb)) +* **config:** improve emit skipped error message ([#2358](https://github.com/kulshekhar/ts-jest/issues/2358)) ([2ae8df4](https://github.com/kulshekhar/ts-jest/commit/2ae8df4515d6f6e975e57719a89184b5583f9e2f)), closes [#2350](https://github.com/kulshekhar/ts-jest/issues/2350) +* **typings:** set correct typing for `tsconfig` option ([#2383](https://github.com/kulshekhar/ts-jest/issues/2383)) ([584324a](https://github.com/kulshekhar/ts-jest/commit/584324a60c0784275e9bf8bcfd0814735a250d24)), closes [#2368](https://github.com/kulshekhar/ts-jest/issues/2368) + + + ## [26.5.2](https://github.com/kulshekhar/ts-jest/compare/v26.5.1...v26.5.2) (2021-02-21) @@ -9,7 +21,6 @@ * **typings:** set correct typing for `tsconfig`/`tsConfig` option ([#2377](https://github.com/kulshekhar/ts-jest/issues/2377)) ([d4f6aff](https://github.com/kulshekhar/ts-jest/commit/d4f6aff3f181761bf25c64ff1a97dd19a69196f9)), closes [#2368](https://github.com/kulshekhar/ts-jest/issues/2368) - # [27.0.0-next.6](https://github.com/kulshekhar/ts-jest/compare/v27.0.0-next.5...v27.0.0-next.6) (2021-02-11) diff --git a/package-lock.json b/package-lock.json index 9766b29e16..ed43479697 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "ts-jest", - "version": "27.0.0-next.6", + "version": "27.0.0-next.7", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "27.0.0-next.6", + "version": "27.0.0-next.7", "license": "MIT", "dependencies": { "@types/jest": "26.x", @@ -29,41 +29,41 @@ "@jest/transform": "next", "@jest/types": "next", "@types/babel__core": "7.x", - "@types/buffer-from": "*", - "@types/cross-spawn": "*", - "@types/fs-extra": "*", - "@types/js-yaml": "*", + "@types/buffer-from": "latest", + "@types/cross-spawn": "latest", + "@types/fs-extra": "latest", + "@types/js-yaml": "latest", "@types/lodash": "4.x", "@types/micromatch": "4.x", - "@types/mkdirp": "*", + "@types/mkdirp": "latest", "@types/node": "14.x", "@types/node-fetch": "^2.5.8", "@types/react": "17.x", - "@types/semver": "*", - "@types/yargs": "*", + "@types/semver": "latest", + "@types/yargs": "latest", "@types/yargs-parser": "20.x", "@typescript-eslint/eslint-plugin": "4.x", "@typescript-eslint/parser": "4.x", "conventional-changelog-cli": "2.x", - "cross-spawn": "*", + "cross-spawn": "latest", "eslint": "7.x", - "eslint-config-prettier": "*", - "eslint-plugin-import": "*", - "eslint-plugin-jest": "*", - "eslint-plugin-jsdoc": "*", - "eslint-plugin-prettier": "*", - "execa": "*", + "eslint-config-prettier": "latest", + "eslint-plugin-import": "latest", + "eslint-plugin-jest": "latest", + "eslint-plugin-jsdoc": "latest", + "eslint-plugin-prettier": "latest", + "execa": "latest", "fs-extra": "9.x", - "glob-gitignore": "*", + "glob-gitignore": "latest", "husky": "4.x", "jest": "next", - "js-yaml": "*", + "js-yaml": "latest", "json-schema-to-typescript": "^10.1.3", - "lint-staged": "*", + "lint-staged": "latest", "node-fetch": "^2.6.1", - "npm-run-all": "*", + "npm-run-all": "latest", "prettier": "2.x", - "source-map": "*", + "source-map": "latest", "typescript": "^4.1.2" }, "engines": { @@ -71,7 +71,7 @@ }, "peerDependencies": { "jest": "27.0.0-next.3", - "typescript": "^4.2.2" + "typescript": ">=3.8 <5.0" } }, "node_modules/@apidevtools/json-schema-ref-parser": { diff --git a/package.json b/package.json index 4529db6639..6b9f7acf65 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ts-jest", - "version": "27.0.0-next.6", + "version": "27.0.0-next.7", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": {