Skip to content

Drop Node 12 support #314

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

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions .changeset/twelve-peas-approve.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
'@graphql-codegen/c-sharp': major
'@graphql-codegen/c-sharp-common': major
'@graphql-codegen/c-sharp-operations': major
'@graphql-codegen/flutter-freezed': major
'@graphql-codegen/flow': major
'@graphql-codegen/flow-operations': major
'@graphql-codegen/flow-resolvers': major
'@graphql-codegen/java-apollo-android': major
'@graphql-codegen/java-common': major
'@graphql-codegen/java': major
'@graphql-codegen/kotlin': major
'@graphql-codegen/java-resolvers': major
'@graphql-codegen/hasura-allow-list': major
'@graphql-codegen/jsdoc': major
'@graphql-codegen/urql-introspection': major
'@graphql-codegen/typescript-apollo-angular': major
'@graphql-codegen/typescript-apollo-client-helpers': major
'@graphql-codegen/typescript-enum-array': major
'@graphql-codegen/typescript-generic-sdk': major
'@graphql-codegen/typescript-graphql-apollo': major
'@graphql-codegen/typescript-graphql-files-modules': major
'@graphql-codegen/typescript-graphql-request': major
'@graphql-codegen/typescript-jit-sdk': major
'@graphql-codegen/typescript-mongodb': major
'@graphql-codegen/typescript-msw': major
'@graphql-codegen/named-operations-object': major
'@graphql-codegen/typescript-nhost': major
'@graphql-codegen/typescript-oclif': major
'@graphql-codegen/typescript-react-apollo': major
'@graphql-codegen/typescript-react-offix': major
'@graphql-codegen/typescript-react-query': major
'@graphql-codegen/typescript-rtk-query': major
'@graphql-codegen/typescript-stencil-apollo': major
'@graphql-codegen/typescript-type-graphql': major
'@graphql-codegen/typescript-urql': major
'@graphql-codegen/typescript-urql-graphcache': major
'@graphql-codegen/urql-svelte-operations-store': major
'@graphql-codegen/typescript-vue-apollo': major
'@graphql-codegen/typescript-vue-apollo-smart-ops': major
'@graphql-codegen/typescript-vue-urql': major
'@graphql-codegen/import-types-preset': major
'@graphql-codegen/near-operation-file-preset': major
---

Drops Node 12 support.

Node 12 stopped receiving active support from October 2020, and security support from April 2022. If you are using Node 12, you should update to a supported runtime.

This changeset does not include code changes, so plugins may still work with Node 12. However, we have stopped running unit tests in CI on Node 12.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest] # remove windows to speed up the tests
node_version: [12, 14, 16, 18]
node_version: [14, 16, 18]
graphql_version: [15, 16]
include:
- node-version: 12
- node-version: 18
os: windows-latest
graphql_version: 16
steps:
Expand Down