Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update to Debian 12 (bookworm) #1057

Merged
merged 1 commit into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ jobs:
name: check git version
command: |
ACTUAL_VERSION=$(docker compose run test-factory-all-included git --version)
if [ "git version 2.30.2" != "${ACTUAL_VERSION}" ]; then
echo "Version mismatch, git package version: git version 2.30.2 != ${ACTUAL_VERSION}"
if [ "git version 2.39.2" != "${ACTUAL_VERSION}" ]; then
echo "Version mismatch, git package version: git version 2.39.2 != ${ACTUAL_VERSION}"
exit 1;
fi
echo "Version ${ACTUAL_VERSION} confirmed"
Expand Down
4 changes: 2 additions & 2 deletions factory/.env
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## to setup a one off branch and create at a PR to it to release resulting images.

# The debian image the factory is based on
BASE_IMAGE='debian:bullseye-slim'
BASE_IMAGE='debian:12-slim'

# Node Versions: https://nodejs.org/en/download/releases/
FACTORY_DEFAULT_NODE_VERSION='20.13.1'
Expand All @@ -14,7 +14,7 @@ FACTORY_DEFAULT_NODE_VERSION='20.13.1'
NODE_VERSION="${FACTORY_DEFAULT_NODE_VERSION}"

# Update this to deploy the docker factory if you make changes to factory.Dockerfile or install scripts
FACTORY_VERSION='3.5.7'
FACTORY_VERSION='4.0.0'

# Chrome versions: https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable
CHROME_VERSION='125.0.6422.60-1'
Expand Down
4 changes: 4 additions & 0 deletions factory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change log

## 4.0.0

* Updated Debian base image to `debian:12-slim` (codename `bookworm`). Addressed in [#1057](https://github.com/cypress-io/cypress-docker-images/pull/1057)

## 3.5.7

* Updated Yarn (v1 Classic) version from `1.22.19` to `1.22.22`. Addressed in [#1071](https://github.com/cypress-io/cypress-docker-images/pull/1071)
Expand Down