Chapter 2. New features and enhancements
2.1. Base Developer Image based on RHEL 9 is available Copy linkLink copied to clipboard!
With this release, the Base Developer Image based on RHEL 9 is available. This image contains the minimal dependencies required to run Dev Spaces workspaces with support for features such as Podman, and persistent home. The Base Developer Image is available at registry.redhat.io/devspaces/udi-base-rhel9.
Additional resources
2.2. Disable "Install from VSIX…" feature in Visual Studio Code - Open Source ("Code - OSS") Copy linkLink copied to clipboard!
Previously, users were able to manually download and install unapproved Visual Studio Code extensions in the .vsix format. This could lead to the installation of potentially malicious extensions.
With this release, admins can use ConfigMap to disable the Install from VSIX… feature and prevent the download and installation of unapproved extensions.
Additional resources
2.3. Improve mounting certs into user containers Copy linkLink copied to clipboard!
The process of mounting certificates into user containers has been improved in this release:
-
The obsolete
che-trusted-ca-certsConfigMap that was used for mounting certificates into the/public-certsdirectory was removed. -
The
ca-certs-mergedConfigMap is now created in the user namespace and is merged either into the/public-certsdirectory or/etc/pki/ca-trust/extracted/pem, depending on the value ofspec.devEnvironments.trustedCerts.disableWorkspaceCaBundleMountdefined in the Custom Resource.
More details about importing untrusted TLS certificates are available in the official documentation.
Additional resources
2.4. Microsoft Azure DevOps Server (TFS) support Copy linkLink copied to clipboard!
Starting from this release, you can configure a Personal Access Token (PAT) for accessing a Microsoft Azure DevOps Server (TFS) instance hosted on-premise.
Learn more about the PAT setup in the official documentation
OAuth 2.0 is not currently supported on the Microsoft Azure DevOps Server.
Additional resources
2.5. Allow to configure product.json for Visual Studio Code - Open Source using ConfigMap Copy linkLink copied to clipboard!
With this release, you can configure not only settings.json and extensions.json, but also product.json for Visual Studio Code - Open Source editor by using a dedicated ConfigMap:
apiVersion: v1
kind: ConfigMap
metadata:
name: vscode-editor-configurations
data:
extensions.json: |
{
"recommendations": [
"dbaeumer.vscode-eslint",
"github.vscode-pull-request-github"
]
}
settings.json: |
{
"window.header": "A HEADER MESSAGE",
"window.commandCenter": false,
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#CCA700",
"titleBar.activeForeground": "#ffffff"
}
}
product.json: |
{
"extensionEnabledApiProposals": {
"ms-python.python": [
"contribEditorContentMenu",
"quickPickSortByLabel",
]
},
"trustedExtensionAuthAccess": [
"<publisher1>.<extension1>",
"<publisher2>.<extension2>"
]
}
Learn more about the procedure in the official documentation
Additional resources