From 5ded6cc120abbac9d3b32973f423337641ade3ad Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:26:20 +0000 Subject: [PATCH 1/2] Initial plan From 8fab1315fee3b348b58111eef926b694036c1283 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:32:55 +0000 Subject: [PATCH 2/2] feat(run-script): soft-depend on add-script, bump minor to 1.2.0 Agent-Logs-Url: https://github.com/devcontainer-community/devcontainer-features/sessions/0115b421-b4bc-4c60-8bdc-8e06e27e20d9 Co-authored-by: sebst <592313+sebst@users.noreply.github.com> --- README.md | 2 +- src/run-script/devcontainer-feature.json | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8984a0c..d1e1934 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ | [rclone](https://github.com/devcontainer-community/devcontainer-features/tree/main/src/rclone.org) | `rclone` — sync files to/from cloud storage | gh release | 1.0.3 | | [restic.net](https://github.com/devcontainer-community/devcontainer-features/tree/main/src/restic.net) | `restic` — fast, encrypted, deduplicated backups | gh release | 1.0.3 | | [ripgrep](https://github.com/devcontainer-community/devcontainer-features/tree/main/src/ripgrep) | `rg` — fast grep alternative (ripgrep) | gh release | 1.0.3 | -| [run-script](https://github.com/devcontainer-community/devcontainer-features/tree/main/src/run-script) | Run a script from a URL or inline text during devcontainer build | custom | 1.1.2 | +| [run-script](https://github.com/devcontainer-community/devcontainer-features/tree/main/src/run-script) | Run a script from a URL or inline text during devcontainer build | custom | 1.2.0 | | [schpet/linear-cli](https://github.com/devcontainer-community/devcontainer-features/tree/main/src/schpet-linear-cli) | `linear` — CLI to access linear.com issue tracker | gh release | 1.0.4 | | [smallstep.com](https://github.com/devcontainer-community/devcontainer-features/tree/main/src/smallstep.com) | `step` — zero-trust security toolkit and CA | gh release | 1.0.4 | | [socket.dev/sfw-free](https://github.com/devcontainer-community/devcontainer-features/tree/main/src/socket.dev-sfw-free) | `sfw` — network security proxy that blocks malicious dependencies | gh release | 1.0.2 | diff --git a/src/run-script/devcontainer-feature.json b/src/run-script/devcontainer-feature.json index 6003ee4..b803f25 100644 --- a/src/run-script/devcontainer-feature.json +++ b/src/run-script/devcontainer-feature.json @@ -1,7 +1,7 @@ { "name": "run-script", "id": "run-script", - "version": "1.1.2", + "version": "1.2.0", "description": "Run a script from a URL or inline text during devcontainer build", "documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/run-script", "options": { @@ -17,6 +17,7 @@ } }, "installsAfter": [ - "ghcr.io/devcontainer-community/devcontainer-features/ca-certificates:latest" + "ghcr.io/devcontainer-community/devcontainer-features/ca-certificates:latest", + "ghcr.io/devcontainer-community/devcontainer-features/add-script:latest" ] }