Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Notable changes.

## June 2025

### [0.79.0]
- Redirect devcontainers-contrib to devcontainers-extra (https://github.com/microsoft/vscode-remote-release/issues/11046)

### [0.78.0]
- Fix: Handle missing features (https://github.com/devcontainers/cli/pull/1040)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@devcontainers/cli",
"description": "Dev Containers CLI",
"version": "0.78.0",
"version": "0.79.0",
"bin": {
"devcontainer": "devcontainer.js"
},
Expand Down
5 changes: 5 additions & 0 deletions src/spec-configuration/containerCollectionsOCI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,11 @@ export function getRef(output: Log, input: string): OCIRef | undefined {

const splitOnSlash = resource.split('/');

if (splitOnSlash[1] === 'devcontainers-contrib') {
output.write(`Redirecting 'devcontainers-contrib' to 'devcontainers-extra'.`);
splitOnSlash[1] = 'devcontainers-extra';
}

const id = splitOnSlash[splitOnSlash.length - 1]; // Aka 'featureName' - Eg: 'ruby'
const owner = splitOnSlash[1];
const registry = splitOnSlash[0];
Expand Down
Loading