From 46024dbd7cbaceece94a07297f0338a0683015ae Mon Sep 17 00:00:00 2001 From: Ewoud Kohl van Wijngaarden Date: Thu, 19 Dec 2024 15:13:01 +0100 Subject: [PATCH] Fixes #38115 - Drop Ruby 2.7 and NodeJS 14 support We no longer have deployment targets with these versions and it's holding back use of the latest libraries. --- .github/matrix.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/matrix.json b/.github/matrix.json index d25683bb82c..e51023f4e5c 100644 --- a/.github/matrix.json +++ b/.github/matrix.json @@ -1,5 +1,5 @@ { "postgresql": ["13"], - "ruby": ["2.7", "3.0"], - "node": ["14", "18"] + "ruby": ["3.0"], + "node": ["18"] } diff --git a/package.json b/package.json index 269f4794ec6..41522df766c 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "description": "Foreman isn't really a node module, these are just dependencies needed to build the webpack bundle. 'dependencies' are the asset libraries in use and 'devDependencies' are used for the build process.", "private": true, "engines": { - "node": ">=14.0.0 <21.0.0" + "node": ">=18.0.0 <21.0.0" }, "scripts": { "lint": "tfm-lint",