diff --git a/factory/.env b/factory/.env index dd6bf5c309..e638fcef8b 100644 --- a/factory/.env +++ b/factory/.env @@ -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='6.1.0' +FACTORY_VERSION='6.1.1' # Chrome versions: https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable # Linux/amd64 only diff --git a/factory/CHANGELOG.md b/factory/CHANGELOG.md index 3a9e4429c6..ee3270b48c 100644 --- a/factory/CHANGELOG.md +++ b/factory/CHANGELOG.md @@ -1,5 +1,9 @@ # Change log +## 6.1.1 + +- Factory now defaults to setting `DBUS_SESSION_BUS_ADDRESS` to `disabled:`, which prevents Electron from attempting to connect to dbus. Addressed in [#1415](https://github.com/cypress-io/cypress-docker-images/pull/1415). + ## 6.1.0 - Updated Debian `BASE_IMAGE` from `debian:13.0-slim` to `debian:13.1-slim` using [Debian 13.1 (trixie)](https://www.debian.org/releases/trixie/). Addresses [#1412](https://github.com/cypress-io/cypress-docker-images/issues/1412). diff --git a/factory/factory.Dockerfile b/factory/factory.Dockerfile index 53c1af5f18..b9d9798517 100644 --- a/factory/factory.Dockerfile +++ b/factory/factory.Dockerfile @@ -142,3 +142,6 @@ ONBUILD RUN apt-get purge -y --auto-remove \ && rm -rf /var/lib/apt/lists/* \ # Remove cypress install scripts && rm -rf /opt/installScripts + +# Disable dbus connections +ONBUILD ENV DBUS_SYSTEM_BUS_ADDRESS='disabled:'