Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
Eclipse Che 7.107.0 source code.tar.gz | 2025-07-30 | 234.7 kB | |
Eclipse Che 7.107.0 source code.zip | 2025-07-30 | 378.8 kB | |
README.md | 2025-07-30 | 3.2 kB | |
Totals: 3 Items | 616.7 kB | 1 |
Major Enhancements
Set the access mode for CDE PVCs in the CheCluster CR
With this release, you can set the access mode of Cloud Development Environment (CDE) persistent volume claims from the CheCluster custom resource:
apiVersion: org.eclipse.che/v2
kind: CheCluster
spec:
devEnvironments:
storage:
perUserStrategyPvcConfig:
storageAccessMode:
- ReadWriteMany
pvcStrategy: per-user
CDE persistent volume claims created after setting the storageAccessMode
in the CheCluster CR will use the specified access mode.
Show editors for supported architectures only
You can hide editors that do not support the current system architecture on the User Dashboard.
Supported architectures are defined in each editor’s metadata:
schemaVersion: 2.3.0
metadata:
name: che-code
displayName: VS Code - Open Source
description: Microsoft Visual Studio Code - Open Source IDE for Eclipse Che
tags:
- Tech-Preview
attributes:
arch:
- x86_64
- arm64
- s390x
- ppc64le
Support for copying /home/tooling/.config
to /home/user/.config
in the image entrypoint
Previously, when the spec.devEnvironments.persistUserHome
feature was enabled and you started a Cloud Development Environment (CDE) for the first time using a UDI based image, the files in the /home/tooling/.config
folder were not copied over to the /home/user/.config
folder. With the latest update to quay.io/devfile/universal-developer-image:latest
, the /home/tooling/.config
folder will be copied over to /home/user/.config
in the image entrypoint.
Update Traefik version to v3.4.0
The Traefik version used by the operator has been updated to the v3.4.0
version. More details about the new version are available in the official release notes.
Bug Fixes
GitLab for Non Standard Ports Fails
Before this release, GitLab OAuth integration did not work when GitLab was served on non-standard ports (i.e., other than 80 or 443). This issue has been resolved, and custom ports are now supported.
Always install release version of extensions
Before this release, Pre-Release
versions of extensions were being installed in certain situations when installing the extensions specified in the recommendations
section of the .vscode/extensions.json
file. This issue has been resolved, and will now install the Release
versions.