Skip to content

Commit 9b7af03

Browse files
authored
chore: set minimum TS version to v4.5 (#14542)
1 parent 180bc8b commit 9b7af03

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: yarn test-ts --selectProjects ts-integration
5050
- name: type tests
5151
run: yarn test-ts --selectProjects type-tests
52-
- name: verify TypeScript@4.3 compatibility
52+
- name: verify TypeScript@5.0 compatibility
5353
run: yarn verify-old-ts
5454
- name: run ESLint with type info
5555
run: yarn lint-ts-files

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
### Chore & Maintenance
1717

1818
- `[*]` [**BREAKING**] Drop support for Node.js versions 14 and 19 ([#14460](https://github.com/jestjs/jest/pull/14460))
19+
- `[*]` [**BREAKING**] Drop support for `[email protected]`, minimum version is now `5.0` ([#14542](https://github.com/facebook/jest/pull/14542), [#12648](https://github.com/facebook/jest/pull/12648))
1920
- `[jest-cli, jest-config, @jest/types]` [**BREAKING**] Remove deprecated `--init` argument ([#14490](https://github.com/jestjs/jest/pull/14490))
2021

2122
## 29.7.0

scripts/verifyOldTs.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const tsConfig = {
3333
};
3434
/* eslint-enable */
3535

36-
const tsVersion = '4.3';
36+
const tsVersion = '5.0';
3737

3838
function smoketest() {
3939
const jestDirectory = path.resolve(

0 commit comments

Comments
 (0)