From d05750fc26ff469c36c75db85c9cbe946da408b6 Mon Sep 17 00:00:00 2001 From: Justin Edelson Date: Fri, 25 Jun 2021 09:15:36 -0400 Subject: [PATCH] feat: require node 12 as minimum version. fixes #372 Support for TLS 1.0 and 1.1 is being retired by Adobe in mid-July. BREAKING CHANGE: Installation on Node 10 will now fail --- .github/workflows/ci.yml | 2 +- README.md | 1 - package.json | 4 ++-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 01eb8433..b287745d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - node-version: [10.x, 12.x, 14.x] + node-version: [12.x, 14.x] runs-on: ${{ matrix.os }} steps: diff --git a/README.md b/README.md index e31e8ded..803c335b 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,6 @@ Cloud Manager Plugin for the [Adobe I/O CLI](https://github.com/adobe/aio-cli) * [Adobe I/O CLI](https://github.com/adobe/aio-cli) * Node.js version compatibility: - * 10.x -- 10.22.0 or higher. * 12.x -- 12.0.0 or higher. * 14.x -- 14.0.0 or higher. * Use with odd Node versions is *not* recommended. diff --git a/package.json b/package.json index 2d53e55e..e87bda02 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "author": "Adobe Inc.", "bugs": "https://github.com/adobe/aio-cli-plugin-cloudmanager/issues", "dependencies": { - "@adobe/aio-lib-cloudmanager": "^0.3.3", + "@adobe/aio-lib-cloudmanager": "^1.0.0", "@adobe/aio-lib-core-config": "^2.0.0", "@adobe/aio-lib-core-logging": "^1.2.0", "@adobe/aio-lib-env": "^1.1.0", @@ -50,7 +50,7 @@ "tmp": "0.2.1" }, "engines": { - "node": ">=10.22.0" + "node": ">=12" }, "files": [ "/oclif.manifest.json",