diff --git a/.github/workflows/alpine.yml b/.github/workflows/alpine.yml index c918e3e69..109dce1ab 100644 --- a/.github/workflows/alpine.yml +++ b/.github/workflows/alpine.yml @@ -16,10 +16,10 @@ jobs: matrix: node: - 14 - # Node 16+ are perma-red for the tests right now - # - 16 - # - 18 - # - 19 + - 16 + - 18 + - 19 + - 20 steps: - name: Install Alpine build tools diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 4d41f6567..b0b3fc9dc 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -13,20 +13,11 @@ jobs: strategy: fail-fast: false matrix: - node: - - 14 - - 16 - - 18 - include: - - node: 14 - gcc: "gcc-6" - gpp: "g++-6" - os: ubuntu-18.04 - node: 16 gcc: "gcc-8" gpp: "g++-8" - os: ubuntu-18.04 + os: ubuntu-20.04 - node: 18 gcc: "gcc-8" gpp: "g++-8" @@ -35,6 +26,10 @@ jobs: gcc: "gcc-8" gpp: "g++-8" os: ubuntu-20.04 + - node: 20 + gcc: "gcc-10" + gpp: "g++-10" + os: ubuntu-22.04 steps: diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index e03df1faa..861c7e954 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -18,6 +18,7 @@ jobs: - 16 - 18 - 19 + - 20 steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 0ee040ef0..6c44bb087 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -18,6 +18,7 @@ jobs: - 16 - 18 - 19 + - 20 architecture: - x64 diff --git a/README.md b/README.md index f08caf777..981ad61b9 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ Below is a quick guide for minimum and maximum supported versions of node-sass: NodeJS | Supported node-sass version | Node Module --------|-----------------------------|------------ +Node 20 | 9.0+ | 115 Node 19 | 8.0+ | 111 Node 18 | 8.0+ | 108 Node 17 | 7.0+, <8.0 | 102 diff --git a/appveyor.yml b/appveyor.yml index 4a6837ddd..01407cba4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -45,6 +45,9 @@ - nodejs_version: 19 GYP_MSVS_VERSION: 2019 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 + - nodejs_version: 20 + GYP_MSVS_VERSION: 2019 + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 install: diff --git a/lib/extensions.js b/lib/extensions.js index 4622f5dc5..24314b8bd 100644 --- a/lib/extensions.js +++ b/lib/extensions.js @@ -84,6 +84,7 @@ function getHumanNodeVersion(abi) { case 102: return 'Node.js 17.x'; case 108: return 'Node.js 18.x'; case 111: return 'Node.js 19.x'; + case 115: return 'Node.js 20.x'; default: return false; } } diff --git a/package.json b/package.json index 7139aa80e..05faee8de 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-sass", - "version": "8.0.0", + "version": "9.0.0", "libsass": "3.5.5", "description": "Wrapper around libsass", "license": "MIT",