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
52 changes: 26 additions & 26 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/astral.sh-uv/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "astral.sh/uv",
"id": "astral.sh-uv",
"version": "1.0.3",
"version": "1.0.4",
"description": "Install \"uv\" and \"uvx\" binaries",
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/astral.sh-uv",
"options": {
Expand Down
4 changes: 2 additions & 2 deletions src/astral.sh-uv/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ github_get_tag_for_version() {
return 1
fi
local repo="$1"
local version="$2"
local _version="$2"
local url="https://api.github.com/repos/$repo/releases"
local escaped_version
escaped_version="$(printf '%s' "$version" | sed 's/\./\\./g')"
escaped_version="$(printf '%s' "$_version" | sed 's/\./\\./g')"
curl -s "$url" | grep -Po '"tag_name": "\K.*?(?=")' | grep -E "^v?${escaped_version}$" | head -n 1
}
utils_check_version() {
Expand Down
4 changes: 2 additions & 2 deletions src/atuin.sh/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "atuin.sh",
"id": "atuin.sh",
"version": "1.0.2",
"version": "1.0.3",
"description": "Install \"atuin\" binary",
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/atuin.sh",
"options": {
Expand All @@ -14,4 +14,4 @@
"description": "Version of \"atuin\" to install."
}
}
}
}
4 changes: 2 additions & 2 deletions src/atuin.sh/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ github_get_tag_for_version() {
return 1
fi
local repo="$1"
local version="$2"
local _version="$2"
local url="https://api.github.com/repos/$repo/releases"
local escaped_version
escaped_version="$(printf '%s' "$version" | sed 's/\./\\./g')"
escaped_version="$(printf '%s' "$_version" | sed 's/\./\\./g')"
curl -s "$url" | grep -Po '"tag_name": "\K.*?(?=")' | grep -E "^v?${escaped_version}$" | head -n 1
}
utils_check_version() {
Expand Down
2 changes: 1 addition & 1 deletion src/bat/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bat",
"id": "bat",
"version": "1.0.0",
"version": "1.0.1",
"description": "Install \"bat\" binary",
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/bat",
"options": {
Expand Down
4 changes: 2 additions & 2 deletions src/bat/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ github_get_tag_for_version() {
return 1
fi
local repo="$1"
local version="$2"
local _version="$2"
local url="https://api.github.com/repos/$repo/releases"
local escaped_version
escaped_version="$(printf '%s' "$version" | sed 's/\./\\./g')"
escaped_version="$(printf '%s' "$_version" | sed 's/\./\\./g')"
curl -s "$url" | grep -Po '"tag_name": "\K.*?(?=")' | grep -E "^v?${escaped_version}$" | head -n 1
}
utils_check_version() {
Expand Down
2 changes: 1 addition & 1 deletion src/biomejs.dev/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "biomejs.dev",
"id": "biomejs.dev",
"version": "1.0.0",
"version": "1.0.1",
"description": "Install \"biome\" binary",
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/biomejs.dev",
"options": {
Expand Down
4 changes: 2 additions & 2 deletions src/biomejs.dev/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@ github_get_tag_for_version() {
return 1
fi
local repo="$1"
local version="$2"
local _version="$2"
local url="https://api.github.com/repos/$repo/releases"
local escaped_version
escaped_version="$(printf '%s' "$version" | sed 's/\./\\./g')"
escaped_version="$(printf '%s' "$_version" | sed 's/\./\\./g')"
curl -s "$url" | grep -Po '"tag_name": "\K.*?(?=")' | grep -E "^(cli/v|@biomejs/biome@)${escaped_version}$" | head -n 1
}
utils_check_version() {
Expand Down
4 changes: 2 additions & 2 deletions src/btop/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "btop",
"id": "btop",
"version": "1.0.2",
"version": "1.0.3",
"description": "Install \"btop\" binary",
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/btop",
"options": {
Expand All @@ -14,4 +14,4 @@
"description": "Version of \"btop\" to install."
}
}
}
}
4 changes: 2 additions & 2 deletions src/btop/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ github_get_tag_for_version() {
return 1
fi
local repo="$1"
local version="$2"
local _version="$2"
local url="https://api.github.com/repos/$repo/releases"
local escaped_version
escaped_version="$(printf '%s' "$version" | sed 's/\./\\./g')"
escaped_version="$(printf '%s' "$_version" | sed 's/\./\\./g')"
curl -s "$url" | grep -Po '"tag_name": "\K.*?(?=")' | grep -E "^v?${escaped_version}$" | head -n 1
}
utils_check_version() {
Expand Down
4 changes: 2 additions & 2 deletions src/charmbracelet-gum/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "charmbracelet/gum",
"id": "charmbracelet-gum",
"version": "1.0.3",
"version": "1.0.4",
"description": "Install \"gum\" binary",
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/charmbracelet-gum",
"options": {
Expand All @@ -14,4 +14,4 @@
"description": "Version of \"gum\" to install."
}
}
}
}
4 changes: 2 additions & 2 deletions src/charmbracelet-gum/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ github_get_tag_for_version() {
return 1
fi
local repo="$1"
local version="$2"
local _version="$2"
local url="https://api.github.com/repos/$repo/releases"
local escaped_version
escaped_version="$(printf '%s' "$version" | sed 's/\./\\./g')"
escaped_version="$(printf '%s' "$_version" | sed 's/\./\\./g')"
curl -s "$url" | grep -Po '"tag_name": "\K.*?(?=")' | grep -E "^v?${escaped_version}$" | head -n 1
}
utils_check_version() {
Expand Down
4 changes: 2 additions & 2 deletions src/chezmoi.io/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "chezmoi.io",
"id": "chezmoi.io",
"version": "1.0.1",
"version": "1.0.2",
"description": "Install \"chezmoi\" binary",
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/chezmoi.io",
"options": {
Expand All @@ -14,4 +14,4 @@
"description": "Version of \"chezmoi\" to install."
}
}
}
}
4 changes: 2 additions & 2 deletions src/chezmoi.io/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ github_get_tag_for_version() {
return 1
fi
local repo="$1"
local version="$2"
local _version="$2"
local url="https://api.github.com/repos/$repo/releases"
local escaped_version
escaped_version="$(printf '%s' "$version" | sed 's/\./\\./g')"
escaped_version="$(printf '%s' "$_version" | sed 's/\./\\./g')"
curl -s "$url" | grep -Po '"tag_name": "\K.*?(?=")' | grep -E "^v?${escaped_version}$" | head -n 1
}
utils_check_version() {
Expand Down
2 changes: 1 addition & 1 deletion src/delta/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "delta",
"id": "delta",
"version": "1.0.0",
"version": "1.0.1",
"description": "Install \"delta\" binary",
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/delta",
"options": {
Expand Down
4 changes: 2 additions & 2 deletions src/delta/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ github_get_tag_for_version() {
return 1
fi
local repo="$1"
local version="$2"
local _version="$2"
local url="https://api.github.com/repos/$repo/releases"
local escaped_version
escaped_version="$(printf '%s' "$version" | sed 's/\./\\./g')"
escaped_version="$(printf '%s' "$_version" | sed 's/\./\\./g')"
curl -s "$url" | grep -Po '"tag_name": "\K.*?(?=")' | grep -E "^v?${escaped_version}$" | head -n 1
}
utils_check_version() {
Expand Down
4 changes: 2 additions & 2 deletions src/fd/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fd",
"id": "fd",
"version": "1.0.0",
"version": "1.0.1",
"description": "Install \"fd\" binary",
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/fd",
"options": {
Expand All @@ -14,4 +14,4 @@
"description": "Version of \"fd\" to install."
}
}
}
}
4 changes: 2 additions & 2 deletions src/fd/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ github_get_tag_for_version() {
return 1
fi
local repo="$1"
local version="$2"
local _version="$2"
local url="https://api.github.com/repos/$repo/releases"
local escaped_version
escaped_version="$(printf '%s' "$version" | sed 's/\./\\./g')"
escaped_version="$(printf '%s' "$_version" | sed 's/\./\\./g')"
curl -s "$url" | grep -Po '"tag_name": "\K.*?(?=")' | grep -E "^v?${escaped_version}$" | head -n 1
}
utils_check_version() {
Expand Down
2 changes: 1 addition & 1 deletion src/icholy-ttygif/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "icholy/ttygif",
"id": "icholy-ttygif",
"version": "1.0.0",
"version": "1.0.1",
"description": "Install \"ttygif\" binary",
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/icholy-ttygif",
"options": {
Expand Down
4 changes: 2 additions & 2 deletions src/icholy-ttygif/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ github_get_tag_for_version() {
return 1
fi
local repo="$1"
local version="$2"
local _version="$2"
local url="https://api.github.com/repos/$repo/releases"
local escaped_version
escaped_version="$(printf '%s' "$version" | sed 's/\./\\./g')"
escaped_version="$(printf '%s' "$_version" | sed 's/\./\\./g')"
curl -s "$url" | grep -Po '"tag_name": "\K.*?(?=")' | grep -E "^v?${escaped_version}$" | head -n 1
}
utils_check_version() {
Expand Down
4 changes: 2 additions & 2 deletions src/jj-vcs.dev/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jj-vcs.dev",
"id": "jj-vcs.dev",
"version": "1.0.1",
"version": "1.0.2",
"description": "Install \"jj\" binary",
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/jj-vcs.dev",
"options": {
Expand All @@ -14,4 +14,4 @@
"description": "Version of \"jj\" to install."
}
}
}
}
4 changes: 2 additions & 2 deletions src/jj-vcs.dev/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,10 @@ github_get_tag_for_version() {
return 1
fi
local repo="$1"
local version="$2"
local _version="$2"
local url="https://api.github.com/repos/$repo/releases"
local escaped_version
escaped_version="$(printf '%s' "$version" | sed 's/\./\\./g')"
escaped_version="$(printf '%s' "$_version" | sed 's/\./\\./g')"
curl -s "$url" | grep -Po '"tag_name": "\K.*?(?=")' | grep -E "^v?${escaped_version}$" | head -n 1
}
utils_check_version() {
Expand Down
2 changes: 1 addition & 1 deletion src/k9scli.io/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "k9scli.io",
"id": "k9scli.io",
"version": "1.0.0",
"version": "1.0.1",
"description": "Install \"k9s\" binary",
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/k9scli.io",
"options": {
Expand Down
4 changes: 2 additions & 2 deletions src/k9scli.io/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ github_get_tag_for_version() {
return 1
fi
local repo="$1"
local version="$2"
local _version="$2"
local url="https://api.github.com/repos/$repo/releases"
local escaped_version
escaped_version="$(printf '%s' "$version" | sed 's/\./\\./g')"
escaped_version="$(printf '%s' "$_version" | sed 's/\./\\./g')"
curl -s "$url" | grep -Po '"tag_name": "\K.*?(?=")' | grep -E "^v?${escaped_version}$" | head -n 1
}
utils_check_version() {
Expand Down
2 changes: 1 addition & 1 deletion src/neovim.io/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "neovim.io",
"id": "neovim.io",
"version": "1.0.0",
"version": "1.0.1",
"description": "Install \"nvim\" binary",
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/neovim.io",
"options": {
Expand Down
4 changes: 2 additions & 2 deletions src/neovim.io/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@ github_get_tag_for_version() {
return 1
fi
local repo="$1"
local version="$2"
local _version="$2"
local url="https://api.github.com/repos/$repo/releases"
local escaped_version
escaped_version="$(printf '%s' "$version" | sed 's/\./\\./g')"
escaped_version="$(printf '%s' "$_version" | sed 's/\./\\./g')"
curl -s "$url" | grep -Po '"tag_name": "\K.*?(?=")' | grep -E "^v?${escaped_version}$" | head -n 1
}
utils_check_version() {
Expand Down
4 changes: 2 additions & 2 deletions src/opencode.ai/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "opencode.ai",
"id": "opencode.ai",
"version": "1.0.3",
"version": "1.0.4",
"description": "Install \"opencode\" binary",
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/opencode.ai",
"options": {
Expand All @@ -14,4 +14,4 @@
"description": "Version of \"opencode.ai\" to install."
}
}
}
}
4 changes: 2 additions & 2 deletions src/opencode.ai/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@ github_get_tag_for_version() {
return 1
fi
local repo="$1"
local version="$2"
local _version="$2"
local url="https://api.github.com/repos/$repo/releases"
local escaped_version
escaped_version="$(printf '%s' "$version" | sed 's/\./\\./g')"
escaped_version="$(printf '%s' "$_version" | sed 's/\./\\./g')"
curl -s "$url" | grep -Po '"tag_name": "\K.*?(?=")' | grep -E "^v?${escaped_version}$" | head -n 1
}
utils_check_version() {
Expand Down
2 changes: 1 addition & 1 deletion src/pi.dev/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pi.dev",
"id": "pi.dev",
"version": "1.0.0",
"version": "1.0.1",
"description": "Install \"pi\" binary",
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/pi.dev",
"options": {
Expand Down
4 changes: 2 additions & 2 deletions src/pi.dev/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ github_get_tag_for_version() {
return 1
fi
local repo="$1"
local version="$2"
local _version="$2"
local url="https://api.github.com/repos/$repo/releases"
local escaped_version
escaped_version="$(printf '%s' "$version" | sed 's/\./\\./g')"
escaped_version="$(printf '%s' "$_version" | sed 's/\./\\./g')"
curl -s "$url" | grep -Po '"tag_name": "\K.*?(?=")' | grep -E "^v?${escaped_version}$" | head -n 1
}
utils_check_version() {
Expand Down
2 changes: 1 addition & 1 deletion src/pulumi.com/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pulumi.com",
"id": "pulumi.com",
"version": "1.0.0",
"version": "1.0.1",
"description": "Install \"pulumi\" binary",
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/pulumi.com",
"options": {
Expand Down
Loading
Loading