From 7089fae878af70c65b0c1ee02ef793ca635afac8 Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Tue, 18 Nov 2025 09:17:38 +0100 Subject: [PATCH] feat: update BASE_IMAGE to debian:13.2-slim (trixie) Update also FACTORY_VERSION to 7.1.0 --- factory/.env | 4 ++-- factory/CHANGELOG.md | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/factory/.env b/factory/.env index b24c7f6e06..19bb9656f8 100644 --- a/factory/.env +++ b/factory/.env @@ -6,7 +6,7 @@ # Use Debian stable release https://www.debian.org/releases/stable/ # The Debian image cypress/factory is based on -BASE_IMAGE='debian:13.1-slim' +BASE_IMAGE='debian:13.2-slim' # Node Versions: https://nodejs.org/en/download/releases/ # master branch needs "Active LTS" version @@ -18,7 +18,7 @@ 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.3' +FACTORY_VERSION='7.1.0' # Cypress officially supports the latest 3 major versions of Chrome, Firefox, and Edge only diff --git a/factory/CHANGELOG.md b/factory/CHANGELOG.md index 612a0549e6..a61ba7d9a6 100644 --- a/factory/CHANGELOG.md +++ b/factory/CHANGELOG.md @@ -1,5 +1,9 @@ # Change log +## 7.1.0 + +- Updated Debian `BASE_IMAGE` from `debian:13.1-slim` to `debian:13.2-slim` using [Debian 13.2 (trixie)](https://www.debian.org/releases/trixie/). Addressed in [#1452](https://github.com/cypress-io/cypress-docker-images/issues/1452). + ## 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).