Skip to content
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

Use node v16 #1315

Merged
merged 3 commits into from
Apr 15, 2024
Merged
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
4 changes: 2 additions & 2 deletions .devcontainer/postCreateCommand.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ sleep 5
# Suppress warnings triggered by engine value package.json of a VS Code extension
yarn config set ignore-engines true -g

# We have to build with Node.js version 14
# Build with Node.js version 16
. $NVM_DIR/nvm.sh
nvm install 14
nvm install 16

# Appending this to .bashrc means shells opened within the project tree will use the Node.js version specified in .nvmrc in the project root,
# provided no overriding .nvmrc is found between the shell's cwd and that root folder.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [16.x]

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-formatter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [16.x]

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload-release-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [16.x]

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14
16
2 changes: 1 addition & 1 deletion docs/src/pages/en/contributing/building.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This page describes how to build the project from source.

## Prerequisites

Make sure you have [node v14](https://nodejs.org/) and [yarn v1](https://classic.yarnpkg.com/lang/en//) installed. If you need to switch between node versions, consider using [nvm](https://github.com/nvm-sh/nvm).
Make sure you have [node v16](https://nodejs.org/) and [yarn v1](https://classic.yarnpkg.com/lang/en//) installed. If you need to switch between node versions, consider using [nvm](https://github.com/nvm-sh/nvm).

## Building

Expand Down
2 changes: 1 addition & 1 deletion packages/driver.mssql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "sqltools-driver-mssql",
"displayName": "SQLTools Microsoft SQL Server/Azure",
"description": "SQLTools Microsoft SQL Server/Azure",
"version": "0.4.2",
"version": "0.4.3-SNAPSHOT",
"engines": {
"vscode": "^1.72.0"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/driver.mysql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "sqltools-driver-mysql",
"displayName": "SQLTools MySQL/MariaDB/TiDB",
"description": "SQLTools MySQL/MariaDB/TiDB",
"version": "0.6.1",
"version": "0.6.2-SNAPSHOT",
"engines": {
"vscode": "^1.72.0"
},
Expand Down Expand Up @@ -74,7 +74,7 @@
"concurrently": "^5.2.0",
"esbuild": "^0.15.7",
"lodash": "^4.17.19",
"mysql2": "~3.1.2",
"mysql2": "~3.9.4",
"rimraf": "^3.0.2",
"typescript": "~4.8.3",
"@vscode/vsce": "^2.19.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/driver.pg/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "sqltools-driver-pg",
"displayName": "SQLTools PostgreSQL/Cockroach Driver",
"description": "SQLTools PostgreSQL/Cockroach Driver",
"version": "0.5.3",
"version": "0.5.4-SNAPSHOT",
"engines": {
"vscode": "^1.72.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/driver.sqlite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "sqltools-driver-sqlite",
"displayName": "SQLTools SQLite",
"description": "SQLTools SQLite",
"version": "0.5.0",
"version": "0.5.1-SNAPSHOT",
"engines": {
"vscode": "^1.72.0"
},
Expand Down
Loading