-
-
Notifications
You must be signed in to change notification settings - Fork 525
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support typescript 4.9, drop support for typescript 4.2, 4.3 #1467
Conversation
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit 80c021a:
|
"url-loader": "^4.1.1", | ||
"webpack": "^5.68.0", | ||
"webpack-dev-server": "^3.11.2" | ||
}, | ||
"peerDependencies": { | ||
"typescript": ">= 4.2.x <= 4.8.x" | ||
"typescript": ">= 4.4.x <= 4.9.x" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you happen to know how old TS 4.2/4.3 is? I wonder if it's safe to drop support for them.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TS 4.2 is 1 year and 9 months old, TS 4.3 is 1 year and 6 months old. According to the release notes, no breaking changes would block migration to TS 4.4.
See TS 4.3 breaking changes and TS 4.4 breaking changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for looking that up! That's lovely, let's drop their support and introduce 4.9.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is great. Thanks for working on this, @wtchnm 👏
Sure, thanks for your amazing work on this lib! |
Released: v0.49.0 🎉This has been released in v0.49.0! Make sure to always update to the latest version ( Predictable release automation by @ossjs/release. |
@kettanaito Can you also do this for the msw@next node :
|
Hey, @andykenward. Sure, will update that release as well when I have a minute. |
#1462