Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: '18'
node-version: '22'
cache: 'yarn'
registry-url: 'https://registry.npmjs.org/'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 22.x
cache: 'yarn'

- run: yarn install
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 22.x
cache: 'yarn'

- name: Set package version from git tag
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 22.x
- uses: actions/setup-python@v2
with:
python-version: 3.8.12
Expand Down
8 changes: 4 additions & 4 deletions packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deepnote/sql-language-server",
"version": "2.0.3",
"version": "3.0.0",
"main": "dist/src/index.js",
"bin": {
"sql-language-server": "./npm_bin/cli.js"
Expand All @@ -21,7 +21,7 @@
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
"node": ">=22.0.0"
},
"scripts": {
"compile:cli": "esbuild bin/cli.ts --bundle --platform=node --external:pg-native --external:aws-sdk --external:mock-aws-s3 --external:nock --external:ssh2 --external:cpu-features --outfile=dist/cli.js",
Expand All @@ -42,8 +42,8 @@
"LICENSE"
],
"dependencies": {
"@deepnote/sql-parser": "^2.0.0",
"@deepnote/sqlint": "^2.0.0",
"@deepnote/sql-parser": "^3.0.0",
"@deepnote/sqlint": "^3.0.0",
"@google-cloud/bigquery": "^8.1.1",
"@types/pg": "^8.6.6",
"@types/yargs": "^17.0.8",
Expand Down
4 changes: 2 additions & 2 deletions packages/sql-parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "joe-re<joe.tialtngo@gmail.com>",
"name": "@deepnote/sql-parser",
"description": "sql parser for nodejs",
"version": "2.0.0",
"version": "3.0.0",
"typings": "index.d.ts",
"scripts": {
"test": "jest",
Expand All @@ -18,7 +18,7 @@
"LICENSE"
],
"engines": {
"node": ">=0.8.0"
"node": ">=22.0.0"
},
"devDependencies": {
"jest": "^26.0.1"
Expand Down
7 changes: 5 additions & 2 deletions packages/sqlint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deepnote/sqlint",
"version": "2.0.1",
"version": "3.0.0",
"main": "dist/src/index",
"bin": "bin/cli.js",
"author": "joe-re<joe.tialtngo@gmail.com>",
Expand All @@ -21,6 +21,9 @@
"autofix",
"beautify"
],
"engines": {
"node": ">=22.0.0"
},
"bugs": {
"url": "https://github.com/joe-re/sql-language-server/issues"
},
Expand All @@ -32,7 +35,7 @@
],
"types": "./dist/src",
"dependencies": {
"@deepnote/sql-parser": "^2.0.0",
"@deepnote/sql-parser": "^3.0.0",
"ajv": "^6.12.2",
"chalk": "^4.0.0",
"js-yaml": "^4.1.1",
Expand Down