From db5a9f51a51cebae9008c2bcc594cda0b4e1071c Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Tue, 1 Oct 2024 05:54:48 +0200 Subject: [PATCH] fix(deps): update to node.js 20.18.0 --- factory/.env | 10 +++++----- factory/CHANGELOG.md | 4 ++++ 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/factory/.env b/factory/.env index 70fdf2565a..b2fd0f70de 100644 --- a/factory/.env +++ b/factory/.env @@ -11,26 +11,26 @@ BASE_IMAGE='debian:12.7-slim' # Node Versions: https://nodejs.org/en/download/releases/ # master branch needs "Active LTS" version # use feature branch for "Maintenance LTS" or "Current" versions -FACTORY_DEFAULT_NODE_VERSION='20.17.0' +FACTORY_DEFAULT_NODE_VERSION='20.18.0' # Node Versions: https://nodejs.org/en/download/releases/ NODE_VERSION="${FACTORY_DEFAULT_NODE_VERSION}" # Update the FACTORY_VERSION to deploy cypress/factory if you make changes to # BASE_IMAGE, FACTORY_DEFAULT_NODE_VERSION, YARN_VERSION, factory.Dockerfile or installScripts -FACTORY_VERSION='4.2.1' +FACTORY_VERSION='4.2.2' # Chrome versions: https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable -CHROME_VERSION='129.0.6668.70-1' +CHROME_VERSION='129.0.6668.89-1' # Cypress versions: https://www.npmjs.com/package/cypress CYPRESS_VERSION='13.15.0' # Edge versions: https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-stable/ -EDGE_VERSION='129.0.2792.52-1' +EDGE_VERSION='129.0.2792.65-1' # Firefox versions: https://download-installer.cdn.mozilla.net/pub/firefox/releases/ -FIREFOX_VERSION='130.0.1' +FIREFOX_VERSION='131.0' # Yarn versions: https://www.npmjs.com/package/yarn and # https://classic.yarnpkg.com/latest-version diff --git a/factory/CHANGELOG.md b/factory/CHANGELOG.md index 5fb4707cc2..1774ce04b0 100644 --- a/factory/CHANGELOG.md +++ b/factory/CHANGELOG.md @@ -1,5 +1,9 @@ # Change log +## 4.2.2 + +- Updated default node version from `20.17.0` to `20.18.0`. Addresses [#1217](https://github.com/cypress-io/cypress-docker-images/issues/1217) for `cypress/base`, `cypress/browsers` and `cypress/included`. + ## 4.2.1 - Rebuilt factory with latest Debian `12.x` fixes. This removes the [CVE-2024-32002](https://nvd.nist.gov/vuln/detail/CVE-2024-32002), [CVE-2024-45490](https://nvd.nist.gov/vuln/detail/CVE-2024-45490), [CVE-2024-45491](https://nvd.nist.gov/vuln/detail/CVE-2024-45491) and [CVE-2024-45492](https://nvd.nist.gov/vuln/detail/CVE-2024-45492) vulnerabilities being reported in security scans. Addresses [#1217](https://github.com/cypress-io/cypress-docker-images/issues/1217) for `cypress/factory`.