Automatically Update the Hidden Dependencies in Your DevContainer

Table of Contents

Renovate is able to update the DevContainer feature versions, but it is not able to update the hidden dependencies in the .devcontainer/devcontainer.json file, like for example the node and npm versions in this example:

"features": {
  "myociregistry.local/devcontainer/features/node:1.1.0": {
  "version": "18.20.5",
  "npmVersion": "10.5.0"
  }
},

To update these dependencies, you can use define a customManagers in the Renovate configuration file:

  "customManagers": [
    {
      "customType": "regex",
      "description": "Update version fields in devcontainer.json",
      "fileMatch": ["(^|/)devcontainer\\.json$"],
      "matchStrings": [
        "// renovate: datasource=(?<datasource>[a-z-]+?)(?: depName=(?<depName>.+?))?
        packageName=(?<packageName>.+?)\\s+\"\\w*[Vv]ersion\":\\s*\"(?<currentValue>[^\"]+)\""
      ]
    }
  ],

To make this work we need to add a comment to the devcontainer.json file with the following format:

"features": {
  "myociregistry.local/devcontainer/features/node:1.1.0": {
    // renovate: datasource=node depName=node packageName=node
    "version": "18.20.5",
    // renovate: datasource=npm depName=npm packageName=npm
    "npmVersion": "10.5.0"
  }
},

With that in place, Renovate will be able to update the node and npm versions in the devcontainer.json file.

Related Posts

Building Spring Boot Docker Image

Pre-Requirements Developer Environment ready with Docker, JDK, IDE A Java Spring Boot Project with a h2 in-memory DB Docker Hub account Create Docker File Create a Dockerfile with the following content:

Read More

Spring Boot on Kubernetes

Enable Kubernetes in Docker Desktop We will use Docker Desktop to provide us a Test Kubernetes Environment.

Read More

Automatically Update the Hidden Dependencies in Your Dockerfiles

You have probably already heard about Renovate - the fantastic tool that helps you to keep your dependencies up to date. But today, we want to look at an edge case: how to keep your dependencies in your dependencies up to date (also called hidden dependencies)?

Read More