Skip to content

Automated update for image history#1801

Open
Kaniska244 wants to merge 1 commit intomainfrom
automated-update-for-image-history-22951300319
Open

Automated update for image history#1801
Kaniska244 wants to merge 1 commit intomainfrom
automated-update-for-image-history-22951300319

Conversation

@Kaniska244
Copy link
Contributor

Automated update for image history

@Kaniska244 Kaniska244 requested a review from a team as a code owner March 11, 2026 18:43
Copilot AI review requested due to automatic review settings March 11, 2026 18:43
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR adds new generated history/<version>.md documentation snapshots for multiple Dev Container images, capturing their digests/tags and installed tool/runtime inventories for the v0.4.25 release line.

Changes:

  • Added a new Universal image history entry for version 5.1.5.
  • Added new history entries for multiple language/runtime images (Java/Java-8, .NET, JS/TS Node, Go, Rust, PHP, Jekyll, Conda images).
  • Added new history entries for base images (Debian, Ubuntu, Alpine) and C++ image.

Reviewed changes

Copilot reviewed 18 out of 18 changed files in this pull request and generated 4 comments.

Show a summary per file
File Description
src/universal/history/5.1.5.md Adds the Universal 5.1.5 image contents/tags/digest snapshot.
src/typescript-node/history/4.0.7.md Adds TypeScript-Node 4.0.7 multi-variant contents snapshot.
src/rust/history/2.0.9.md Adds Rust 2.0.9 multi-variant contents snapshot.
src/php/history/3.0.4.md Adds PHP 3.0.4 multi-variant contents snapshot.
src/miniconda/history/1.2.3.md Adds Miniconda 1.2.3 contents/tags/digest snapshot.
src/jekyll/history/2.2.7.md Adds Jekyll 2.2.7 multi-variant contents snapshot.
src/javascript-node/history/4.0.9.md Adds JavaScript-Node 4.0.9 multi-variant contents snapshot.
src/java/history/3.0.6.md Adds Java 3.0.6 multi-variant contents snapshot.
src/java-8/history/3.0.7.md Adds Java-8 3.0.7 multi-variant contents snapshot.
src/go/history/2.1.1.md Adds Go 2.1.1 multi-variant contents snapshot.
src/dotnet/history/2.0.6.md Adds .NET 2.0.6 multi-variant contents snapshot.
src/cpp/history/2.1.6.md Adds C++ 2.1.6 multi-variant contents snapshot.
src/base-ubuntu/history/2.1.7.md Adds Base Ubuntu 2.1.7 multi-variant contents snapshot.
src/base-debian/history/2.1.7.md Adds Base Debian 2.1.7 multi-variant contents snapshot.
src/base-alpine/history/3.0.3.md Adds Base Alpine 3.0.3 multi-variant contents snapshot.
src/anaconda/history/1.3.13.md Adds Anaconda 1.3.13 contents/tags/digest snapshot.
Comments suppressed due to low confidence (1)

src/java-8/history/3.0.7.md:114

  • The Java version field for the bookworm variant also includes the shell error ("/usr/local/openjdk-*/bin/java: No such file or directory"), indicating the history generation is probing a non-existent path and embedding the failure into the docs. Update the version-detection logic so the published history doesn’t include command errors.
| Language / runtime | Version | Path |
|--------------------|---------|------|
| [Java](https://adoptopenjdk.net/) | 1.8.0_482<br />bash: line 1: /usr/local/openjdk-*/bin/java: No such file or directory | /usr/local/sdkman/candidates/java/current<br />/usr/local |

| [Docker Compose](https://github.com/docker/compose) | 2.40.3 | /usr/local/bin |
| [rvm](https://github.com/rvm/rvm) | 1.29.12 | /usr/local/rvm |
| [GitHub CLI](https://github.com/cli/cli) | 2.88.0 |
| [yarn](https://yarnpkg.com/) | ! Corepack is about to download https://registry.yarnpkg.com/yarn/-/yarn-1.22.22.tgz<br />1.22.22 | /usr/bin |
Copy link

Copilot AI Mar 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The yarn version entry includes Corepack’s interactive download prompt output ("Corepack is about to download …"), which makes the history doc noisy and suggests the version-detection command is triggering a download. Adjust the history generation to query yarn’s version without producing the prompt (or suppress Corepack’s download prompt) so the table contains only the resolved yarn version.

Suggested change
| [yarn](https://yarnpkg.com/) | ! Corepack is about to download https://registry.yarnpkg.com/yarn/-/yarn-1.22.22.tgz<br />1.22.22 | /usr/bin |
| [yarn](https://yarnpkg.com/) | 1.22.22 | /usr/bin |

Copilot uses AI. Check for mistakes.

| Language / runtime | Version | Path |
|--------------------|---------|------|
| [Java](https://adoptopenjdk.net/) | 1.8.0_482<br />bash: line 1: /usr/local/openjdk-*/bin/java: No such file or directory | /usr/local/sdkman/candidates/java/current<br />/usr/local |
Copy link

Copilot AI Mar 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Java version field includes a shell error ("/usr/local/openjdk-*/bin/java: No such file or directory"). This indicates the history generation is attempting to query Java from a path that doesn’t exist in the image, and the resulting error is being embedded into the published history doc. Update the detection logic to use the correct java path (or guard the command) so the history output doesn’t include command failures.

This issue also appears on line 111 of the same file.

Suggested change
| [Java](https://adoptopenjdk.net/) | 1.8.0_482<br />bash: line 1: /usr/local/openjdk-*/bin/java: No such file or directory | /usr/local/sdkman/candidates/java/current<br />/usr/local |
| [Java](https://adoptopenjdk.net/) | 1.8.0_482 | /usr/local/sdkman/candidates/java/current<br />/usr/local |

Copilot uses AI. Check for mistakes.
```
mcr.microsoft.com/devcontainers/dotnet:2.0.6-10.0-noble
mcr.microsoft.com/devcontainers/dotnet:2.0.6-10.0
mcr.microsoft.com/devcontainers/dotnet:2.0.6-10.0-noble
Copy link

Copilot AI Mar 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Tags block contains a duplicate entry (the "2.0.6-10.0-noble" tag is listed twice). This looks like a generation issue and makes the rendered docs confusing; please dedupe and ensure the intended set of tags is listed (e.g., include the variant and/or base tags once each).

Suggested change
mcr.microsoft.com/devcontainers/dotnet:2.0.6-10.0-noble

Copilot uses AI. Check for mistakes.

| Language / runtime | Version | Path |
|--------------------|---------|------|
| [.NET](https://dotnet.microsoft.com/) | 10.0.200 () | /usr |
Copy link

Copilot AI Mar 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The .NET runtime version is shown as "10.0.200 ()" with empty parentheses, which reads like a formatting bug or missing value from the version probe. Please fix the history generation to either omit the parentheses or populate them with the expected additional version info (as done for 8.0/9.0 entries).

Suggested change
| [.NET](https://dotnet.microsoft.com/) | 10.0.200 () | /usr |
| [.NET](https://dotnet.microsoft.com/) | 10.0.200 | /usr |

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants