Chapter 2. New features and enhancements


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

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

The process of mounting certificates into user containers has been improved in this release:

  • The obsolete che-trusted-ca-certs ConfigMap that was used for mounting certificates into the /public-certs directory was removed.
  • The ca-certs-merged ConfigMap is now created in the user namespace and is merged either into the /public-certs directory or /etc/pki/ca-trust/extracted/pem, depending on the value of spec.devEnvironments.trustedCerts.disableWorkspaceCaBundleMount defined 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

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

Note

OAuth 2.0 is not currently supported on the Microsoft Azure DevOps Server.

Additional resources

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

Red Hat logoGithubredditYoutubeTwitter

Learn

Try, buy, & sell

Communities

About Red Hat Documentation

We help Red Hat users innovate and achieve their goals with our products and services with content they can trust. Explore our recent updates.

Making open source more inclusive

Red Hat is committed to replacing problematic language in our code, documentation, and web properties. For more details, see the Red Hat Blog.

About Red Hat

We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.

Theme

© 2026 Red Hat
Back to top