Skip to content

Remove support for node 16 #936

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

Merged
merged 3 commits into from
May 28, 2024
Merged

Remove support for node 16 #936

merged 3 commits into from
May 28, 2024

Conversation

lizkenyon
Copy link
Contributor

WHY are these changes introduced?

Fixes #0000

WHAT is this pull request doing?

Type of change

  • Patch: Bug (non-breaking change which fixes an issue)
  • Minor: New feature (non-breaking change which adds functionality)
  • Major: Breaking change (fix or feature that would cause existing functionality to not work as expected)

Checklist

  • I have used yarn changeset to create a draft changelog entry (do NOT update the CHANGELOG.md files manually)
  • I have added/updated tests for this change
  • I have documented new APIs/updated the documentation for modified APIs (for public APIs)

@lizkenyon lizkenyon requested a review from a team as a code owner May 24, 2024 20:32
@@ -3,7 +3,8 @@
"compilerOptions": {
"baseUrl": ".",
"outDir": ".",
"rootDir": "."
"rootDir": ".",
"useDefineForClassFields": false
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Our tests were failing before adding this.
We can either use this option or update our test code.
microsoft/TypeScript#52331

@@ -7,7 +7,7 @@
"pretty": true,
"module": "Node16",
"moduleResolution": "Node16",
"target": "ES2021",
"target": "ES2022",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated to this because of this recommendation

@lizkenyon lizkenyon changed the title [WIP] Remove support for node 16, add support for node 22 Remove support for node 16 May 28, 2024
Copy link
Contributor

@paulomarg paulomarg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just one nit.

@@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: [16, 18, 20]
version: [18, 20, 22]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will this break CI since we'll still be using assert?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, forgot to remove that as I was splitting out. Removed now.

@lizkenyon lizkenyon merged commit b9e7bb6 into main May 28, 2024
13 checks passed
@lizkenyon lizkenyon deleted the drop-node-16 branch May 28, 2024 19:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants