diff --git a/factory/.env b/factory/.env index 8cfc35d7db..b24c7f6e06 100644 --- a/factory/.env +++ b/factory/.env @@ -11,37 +11,37 @@ BASE_IMAGE='debian:13.1-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='24.11.0' +FACTORY_DEFAULT_NODE_VERSION='24.11.1' # 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='7.0.2' +FACTORY_VERSION='7.0.3' # Cypress officially supports the latest 3 major versions of Chrome, Firefox, and Edge only # Chrome versions: https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable # Linux/amd64 only # Earlier versions of Google Chrome may no longer be available from http://dl.google.com -CHROME_VERSION='142.0.7444.59-1' +CHROME_VERSION='142.0.7444.162-1' # Chrome for Testing versions: https://googlechromelabs.github.io/chrome-for-testing/ # not currently used for cypress/browsers and cypress/included images # Linux/amd64 only -CHROME_FOR_TESTING_VERSION='142.0.7444.59' +CHROME_FOR_TESTING_VERSION='142.0.7444.162' # Cypress versions: https://www.npmjs.com/package/cypress CYPRESS_VERSION='15.6.0' # Edge versions: https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-stable/ # Linux/amd64 only -EDGE_VERSION='142.0.3595.53-1' +EDGE_VERSION='142.0.3595.65-1' # Firefox versions: https://download-installer.cdn.mozilla.net/pub/firefox/releases/ # Linux/amd64 for all versions, Linux/arm64 for versions 136.0 and above -FIREFOX_VERSION='144.0.2' +FIREFOX_VERSION='145.0' # Geckodriver versions: https://github.com/mozilla/geckodriver/releases # Geckodriver documentation: https://firefox-source-docs.mozilla.org/testing/geckodriver/index.html diff --git a/factory/CHANGELOG.md b/factory/CHANGELOG.md index adf49db7de..612a0549e6 100644 --- a/factory/CHANGELOG.md +++ b/factory/CHANGELOG.md @@ -1,5 +1,9 @@ # Change log +## 7.0.3 + +- Updated `FACTORY_DEFAULT_NODE_VERSION` from `24.11.0` to `24.11.1`. Addressed in [#1451](https://github.com/cypress-io/cypress-docker-images/pull/1451). + ## 7.0.2 - Fixed Geckodriver installation script logic for Geckodriver versions > `0.99.x`. Addresses [#1444](https://github.com/cypress-io/cypress-docker-images/issues/1444).