diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..d6b0eea --- /dev/null +++ b/.prettierrc @@ -0,0 +1,11 @@ +{ + "useTabs": false, + "tabWidth": 4, + "printWidth": 30, + "singleQuote": true, + "trailingComma": "es5", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "semi": true, + "arrowParens": "always" + } \ No newline at end of file diff --git a/build/increment-patch.sh b/build/increment-patch.sh new file mode 100755 index 0000000..5995d57 --- /dev/null +++ b/build/increment-patch.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +# Increments the patch version (x.y.z -> x.y.) of all devcontainer-template.json files in the src/ directory. +# Expects a ''.prettierrc' config file in the root + +cd "$(dirname "${BASH_SOURCE[0]}")/.." || exit 1 + +find src/ -name 'devcontainer-template.json' -exec bash -c ' + for file; do + version=$(jq -r ".version" "$file") + IFS="." read -r major minor patch <<< "$version" + new_patch=$((patch + 1)) + new_version="$major.$minor.$new_patch" + jq ".version = \"$new_version\"" "$file" > tmp.$$.json && mv tmp.$$.json "$file" + done +' bash {} + + +npx prettier --write src/**/devcontainer-template.json \ No newline at end of file diff --git a/src/alpine/devcontainer-template.json b/src/alpine/devcontainer-template.json index 0b6bd45..8ce550f 100644 --- a/src/alpine/devcontainer-template.json +++ b/src/alpine/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "alpine", - "version": "3.2.1", + "version": "3.2.2", "name": "Alpine", "description": "Simple Alpine container with Git installed.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/alpine", @@ -19,9 +19,7 @@ "default": "3.20" } }, - "platforms": [ - "Any" - ], + "platforms": ["Any"], "optionalPaths": [ ".github/*" ] diff --git a/src/anaconda-postgres/devcontainer-template.json b/src/anaconda-postgres/devcontainer-template.json index 3445cb7..087cad1 100644 --- a/src/anaconda-postgres/devcontainer-template.json +++ b/src/anaconda-postgres/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "anaconda-postgres", - "version": "2.0.1", + "version": "2.0.2", "name": "Anaconda (Python 3) & PostgreSQL", "description": "Develop Anaconda & PostgreSQL applications in Python3. Installs dependencies from your environment.yml file and the Python extension.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/anaconda-postgres", diff --git a/src/anaconda/devcontainer-template.json b/src/anaconda/devcontainer-template.json index 5f7937c..a2cd8f9 100644 --- a/src/anaconda/devcontainer-template.json +++ b/src/anaconda/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "anaconda", - "version": "2.0.1", + "version": "2.0.2", "name": "Anaconda (Python 3)", "description": "Develop Anaconda applications in Python3. Installs dependencies from your environment.yml file and the Python extension.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/anaconda", @@ -13,4 +13,4 @@ "optionalPaths": [ ".github/*" ] -} \ No newline at end of file +} diff --git a/src/cpp-mariadb/devcontainer-template.json b/src/cpp-mariadb/devcontainer-template.json index 364c3fe..543cd70 100644 --- a/src/cpp-mariadb/devcontainer-template.json +++ b/src/cpp-mariadb/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "cpp-mariadb", - "version": "3.0.1", + "version": "3.0.2", "name": "C++ & MariaDB", "description": "Develop C++ applications on Linux. Includes Debian C++ build tools.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/cpp-mariadb", @@ -30,10 +30,8 @@ "default": "none" } }, - "platforms": [ - "C++" - ], + "platforms": ["C++"], "optionalPaths": [ ".github/*" ] -} \ No newline at end of file +} diff --git a/src/cpp/devcontainer-template.json b/src/cpp/devcontainer-template.json index 3225404..31ca873 100644 --- a/src/cpp/devcontainer-template.json +++ b/src/cpp/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "cpp", - "version": "3.0.1", + "version": "3.0.2", "name": "C++", "description": "Develop C++ applications on Linux. Includes Debian C++ build tools.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/cpp", @@ -30,9 +30,7 @@ "default": "none" } }, - "platforms": [ - "C++" - ], + "platforms": ["C++"], "optionalPaths": [ ".github/*" ] diff --git a/src/debian/devcontainer-template.json b/src/debian/devcontainer-template.json index 6fbd429..528ab3c 100644 --- a/src/debian/devcontainer-template.json +++ b/src/debian/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "debian", - "version": "3.0.1", + "version": "3.0.2", "name": "Debian", "description": "Simple Debian container with Git installed.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/debian", @@ -17,9 +17,7 @@ "default": "bullseye" } }, - "platforms": [ - "Any" - ], + "platforms": ["Any"], "optionalPaths": [ ".github/*" ] diff --git a/src/docker-existing-docker-compose/devcontainer-template.json b/src/docker-existing-docker-compose/devcontainer-template.json index 085da7c..af6f660 100644 --- a/src/docker-existing-docker-compose/devcontainer-template.json +++ b/src/docker-existing-docker-compose/devcontainer-template.json @@ -1,14 +1,12 @@ { "id": "docker-existing-docker-compose", - "version": "1.2.2", + "version": "1.2.3", "name": "Existing Docker Compose (Extend)", "description": "Sample illustrating how to extend an existing Docker Compose file for use in a dev container.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/docker-existing-docker-compose", "publisher": "Dev Container Spec Maintainers", "licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE", - "platforms": [ - "Any" - ], + "platforms": ["Any"], "optionalPaths": [ ".github/*" ] diff --git a/src/docker-existing-dockerfile/devcontainer-template.json b/src/docker-existing-dockerfile/devcontainer-template.json index 5c2124b..585a9c3 100644 --- a/src/docker-existing-dockerfile/devcontainer-template.json +++ b/src/docker-existing-dockerfile/devcontainer-template.json @@ -1,14 +1,12 @@ { "id": "docker-existing-dockerfile", - "version": "1.3.1", + "version": "1.3.2", "name": "Existing Dockerfile", "description": "Sample illustrating reuse of an existing Dockefile.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/docker-existing-dockerfile", "publisher": "Dev Container Spec Maintainers", "licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE", - "platforms": [ - "Any" - ], + "platforms": ["Any"], "optionalPaths": [ ".github/*" ] diff --git a/src/docker-in-docker/devcontainer-template.json b/src/docker-in-docker/devcontainer-template.json index cd3b2a4..e3a132b 100644 --- a/src/docker-in-docker/devcontainer-template.json +++ b/src/docker-in-docker/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "docker-in-docker", - "version": "1.3.1", + "version": "1.3.2", "name": "Docker in Docker", "description": "Create child containers _inside_ a container, independent from the host's docker instance. Installs Docker extension in the container along with needed CLIs.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/docker-in-docker", @@ -38,9 +38,7 @@ "default": "true" } }, - "platforms": [ - "Any" - ], + "platforms": ["Any"], "optionalPaths": [ ".github/*" ] diff --git a/src/docker-outside-of-docker-compose/devcontainer-template.json b/src/docker-outside-of-docker-compose/devcontainer-template.json index 43cc3f4..8e5380b 100644 --- a/src/docker-outside-of-docker-compose/devcontainer-template.json +++ b/src/docker-outside-of-docker-compose/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "docker-outside-of-docker-compose", - "version": "2.3.1", + "version": "2.3.2", "name": "Docker outside of Docker Compose", "description": "Access your host's Docker install from inside a container when using Docker Compose. Installs Docker extension in the container along with needed CLIs.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/docker-outside-of-docker-compose", @@ -38,9 +38,7 @@ "default": "true" } }, - "platforms": [ - "Any" - ], + "platforms": ["Any"], "optionalPaths": [ ".github/*" ] diff --git a/src/docker-outside-of-docker/devcontainer-template.json b/src/docker-outside-of-docker/devcontainer-template.json index d853b55..10ec2a9 100644 --- a/src/docker-outside-of-docker/devcontainer-template.json +++ b/src/docker-outside-of-docker/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "docker-outside-of-docker", - "version": "1.3.1", + "version": "1.3.2", "name": "Docker outside of Docker", "description": "Access your host's Docker install from inside a dev container. Installs Docker extension in the container along with needed CLIs.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/docker-outside-of-docker", @@ -38,9 +38,7 @@ "default": "true" } }, - "platforms": [ - "Any" - ], + "platforms": ["Any"], "optionalPaths": [ ".github/*" ] diff --git a/src/dotnet-fsharp/devcontainer-template.json b/src/dotnet-fsharp/devcontainer-template.json index fece16b..3ba298e 100644 --- a/src/dotnet-fsharp/devcontainer-template.json +++ b/src/dotnet-fsharp/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "dotnet-fsharp", - "version": "3.1.1", + "version": "3.1.2", "name": "F# (.NET)", "description": "Develop F# and .NET based applications. Includes all needed SDKs, extensions, and dependencies.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/dotnet-fsharp", diff --git a/src/dotnet-mssql/devcontainer-template.json b/src/dotnet-mssql/devcontainer-template.json index 54af19b..62d4a5a 100644 --- a/src/dotnet-mssql/devcontainer-template.json +++ b/src/dotnet-mssql/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "dotnet-mssql", - "version": "3.3.0", + "version": "3.3.1", "name": "C# (.NET) and MS SQL", "description": "Develop C# and .NET Core based applications. Includes all needed SDKs, extensions, dependencies and an MS SQL container for parallel database development. Adds an additional MS SQL container to the C# (.NET Core) container definition and deploys any .dacpac files from the mssql .devcontainer folder.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/dotnet-mssql", @@ -20,7 +20,7 @@ "7.0-bullseye", "6.0-bullseye", "8.0-noble", - "8.0-jammy", + "8.0-jammy", "7.0-jammy", "6.0-jammy", "6.0-focal" diff --git a/src/dotnet-postgres/devcontainer-template.json b/src/dotnet-postgres/devcontainer-template.json index c344da0..5f93e7f 100644 --- a/src/dotnet-postgres/devcontainer-template.json +++ b/src/dotnet-postgres/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "dotnet-postgres", - "version": "3.2.0", + "version": "3.2.1", "name": "C# (.NET) and PostgreSQL", "description": "Develop C# and .NET Core based applications. Includes all needed SDKs, extensions, dependencies and a PostgreSQL container for parallel database development. Adds an additional PostgreSQL container to the C# (.NET Core) container definition.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/dotnet-postgres", @@ -20,7 +20,7 @@ "7.0-bullseye", "6.0-bullseye", "8.0-noble", - "8.0-jammy", + "8.0-jammy", "7.0-jammy", "6.0-jammy", "6.0-focal" diff --git a/src/dotnet/devcontainer-template.json b/src/dotnet/devcontainer-template.json index 43f085a..03275c3 100644 --- a/src/dotnet/devcontainer-template.json +++ b/src/dotnet/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "dotnet", - "version": "3.2.0", + "version": "3.2.1", "name": "C# (.NET)", "description": "Develop C# and .NET based applications. Includes all needed SDKs, extensions, and dependencies.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/dotnet", @@ -20,7 +20,7 @@ "7.0-bullseye", "6.0-bullseye", "8.0-noble", - "8.0-jammy", + "8.0-jammy", "7.0-jammy", "6.0-jammy", "6.0-focal" @@ -36,4 +36,4 @@ "optionalPaths": [ ".github/*" ] -} \ No newline at end of file +} diff --git a/src/go-postgres/devcontainer-template.json b/src/go-postgres/devcontainer-template.json index 398b21e..989f932 100644 --- a/src/go-postgres/devcontainer-template.json +++ b/src/go-postgres/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "go-postgres", - "version": "4.0.1", + "version": "4.0.2", "name": "Go & PostgreSQL", "description": "Use and develop Go + Postgres applications. Includes appropriate runtime args, Go, common tools, extensions, and dependencies.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/go-postgres", @@ -21,9 +21,7 @@ "default": "1.22-bookworm" } }, - "platforms": [ - "Go" - ], + "platforms": ["Go"], "optionalPaths": [ ".github/*" ] diff --git a/src/go/devcontainer-template.json b/src/go/devcontainer-template.json index 8f7e3d8..27d58b1 100644 --- a/src/go/devcontainer-template.json +++ b/src/go/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "go", - "version": "4.0.1", + "version": "4.0.2", "name": "Go", "description": "Develop Go based applications. Includes appropriate runtime args, Go, common tools, extensions, and dependencies.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/go", @@ -21,9 +21,7 @@ "default": "1.22-bookworm" } }, - "platforms": [ - "Go" - ], + "platforms": ["Go"], "optionalPaths": [ ".github/*" ] diff --git a/src/java-postgres/devcontainer-template.json b/src/java-postgres/devcontainer-template.json index 0e81f32..23d0757 100644 --- a/src/java-postgres/devcontainer-template.json +++ b/src/java-postgres/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "java-postgres", - "version": "4.0.1", + "version": "4.0.2", "name": "Java & PostgreSQL", "description": "Develop applications with Java and PostgreSQL. Includes a Java application container and PostgreSQL server.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/java-postgres", @@ -33,9 +33,7 @@ "default": "false" } }, - "platforms": [ - "Java" - ], + "platforms": ["Java"], "optionalPaths": [ ".github/*" ] diff --git a/src/java/devcontainer-template.json b/src/java/devcontainer-template.json index 44c2d7a..4dc3c39 100644 --- a/src/java/devcontainer-template.json +++ b/src/java/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "java", - "version": "4.0.1", + "version": "4.0.2", "name": "Java", "description": "Develop Java applications. Includes the JDK and Java extensions.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/java", @@ -33,9 +33,7 @@ "default": "false" } }, - "platforms": [ - "Java" - ], + "platforms": ["Java"], "optionalPaths": [ ".github/*" ] diff --git a/src/javascript-node-mongo/devcontainer-template.json b/src/javascript-node-mongo/devcontainer-template.json index fd3ed29..907c169 100644 --- a/src/javascript-node-mongo/devcontainer-template.json +++ b/src/javascript-node-mongo/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "javascript-node-mongo", - "version": "4.0.1", + "version": "4.0.2", "name": "Node.js & Mongo DB", "description": "Develop applications in Node.js and Mongo DB. Includes Node.js, eslint, and yarn in a container linked to a Mongo DB.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/javascript-node-mongo", diff --git a/src/javascript-node-postgres/devcontainer-template.json b/src/javascript-node-postgres/devcontainer-template.json index 6bfedc7..a587e1c 100644 --- a/src/javascript-node-postgres/devcontainer-template.json +++ b/src/javascript-node-postgres/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "javascript-node-postgres", - "version": "4.0.1", + "version": "4.0.2", "name": "Node.js & PostgreSQL", "description": "Develop applications in Node.js and PostgreSQL. Includes Node.js, eslint, and yarn in a container linked to a Postgres DB container", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/javascript-node-postgres", diff --git a/src/javascript-node/devcontainer-template.json b/src/javascript-node/devcontainer-template.json index 30d3fb5..d30122b 100644 --- a/src/javascript-node/devcontainer-template.json +++ b/src/javascript-node/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "javascript-node", - "version": "4.0.1", + "version": "4.0.2", "name": "Node.js & JavaScript", "description": "Develop Node.js based applications. Includes Node.js, eslint, nvm, and yarn.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/javascript-node", diff --git a/src/jekyll/devcontainer-template.json b/src/jekyll/devcontainer-template.json index 03411ae..dd3cc9f 100644 --- a/src/jekyll/devcontainer-template.json +++ b/src/jekyll/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "jekyll", - "version": "2.2.1", + "version": "2.2.2", "name": "Jekyll", "description": "Develop static sites with Jekyll, includes everything you need to get up and running.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/jekyll", diff --git a/src/kubernetes-helm-minikube/devcontainer-template.json b/src/kubernetes-helm-minikube/devcontainer-template.json index 57eceea..aabe835 100644 --- a/src/kubernetes-helm-minikube/devcontainer-template.json +++ b/src/kubernetes-helm-minikube/devcontainer-template.json @@ -1,14 +1,12 @@ { "id": "kubernetes-helm-minikube", - "version": "2.2.1", + "version": "2.2.2", "name": "Kubernetes - Minikube-in-Docker", "description": "Access an embedded minikube instance or remote a Kubernetes cluster from inside a dev container. Includes kubectl, Helm, minikube, and the Docker.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/kubernetes-helm-minikube", "publisher": "Dev Container Spec Maintainers", "licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE", - "platforms": [ - "Any" - ], + "platforms": ["Any"], "optionalPaths": [ ".github/*" ] diff --git a/src/kubernetes-helm/devcontainer-template.json b/src/kubernetes-helm/devcontainer-template.json index fe6999b..56bb95d 100644 --- a/src/kubernetes-helm/devcontainer-template.json +++ b/src/kubernetes-helm/devcontainer-template.json @@ -1,14 +1,12 @@ { "id": "kubernetes-helm", - "version": "1.4.1", + "version": "1.4.2", "name": "Kubernetes - Local Configuration", "description": "Access a local (or remote) Kubernetes cluster from inside a dev container using your local config. Includes kubectl, Helm, and the Docker CLI.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/kubernetes-helm", "publisher": "Dev Container Spec Maintainers", "licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE", - "platforms": [ - "Any" - ], + "platforms": ["Any"], "optionalPaths": [ ".github/*" ] diff --git a/src/markdown/devcontainer-template.json b/src/markdown/devcontainer-template.json index 5645c48..f7e7b77 100644 --- a/src/markdown/devcontainer-template.json +++ b/src/markdown/devcontainer-template.json @@ -1,14 +1,12 @@ { "id": "markdown", - "version": "1.1.1", + "version": "1.1.2", "name": "Markdown", "description": "A simple container for editing markdown.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/markdown", "publisher": "Dev Container Spec Maintainers", "licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE", - "platforms": [ - "Markdown" - ], + "platforms": ["Markdown"], "optionalPaths": [ ".github/*" ] diff --git a/src/miniconda-postgres/devcontainer-template.json b/src/miniconda-postgres/devcontainer-template.json index 4017635..ae77d6b 100644 --- a/src/miniconda-postgres/devcontainer-template.json +++ b/src/miniconda-postgres/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "miniconda-postgres", - "version": "2.0.1", + "version": "2.0.2", "name": "Miniconda & PostgreSQL (Python 3)", "description": "Develop Miniconda & PostgreSQL applications in Python 3. Installs dependencies from your environment.yml file and the Python extension.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/miniconda-postgres", diff --git a/src/miniconda/devcontainer-template.json b/src/miniconda/devcontainer-template.json index e91d190..251cd85 100644 --- a/src/miniconda/devcontainer-template.json +++ b/src/miniconda/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "miniconda", - "version": "2.0.1", + "version": "2.0.2", "name": "Miniconda (Python 3)", "description": "Develop Miniconda applications in Python 3. Installs dependencies from your environment.yml file and the Python extension.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/miniconda", diff --git a/src/php-mariadb/devcontainer-template.json b/src/php-mariadb/devcontainer-template.json index 932b8d7..8531e6c 100644 --- a/src/php-mariadb/devcontainer-template.json +++ b/src/php-mariadb/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "php-mariadb", - "version": "4.0.1", + "version": "4.0.2", "name": "PHP & MariaDB", "description": "Develop PHP applications with MariaDB (MySQL Compatible).", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/php-mariadb", diff --git a/src/php/devcontainer-template.json b/src/php/devcontainer-template.json index 11d0d2b..bf619f7 100644 --- a/src/php/devcontainer-template.json +++ b/src/php/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "php", - "version": "4.0.1", + "version": "4.0.2", "name": "PHP", "description": "Develop PHP based applications. Includes needed tools, extensions, and dependencies.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/php", @@ -21,9 +21,7 @@ "default": "8.2-bullseye" } }, - "platforms": [ - "PHP" - ], + "platforms": ["PHP"], "optionalPaths": [ ".github/*" ] diff --git a/src/postgres/devcontainer-template.json b/src/postgres/devcontainer-template.json index 63d062a..e926e64 100644 --- a/src/postgres/devcontainer-template.json +++ b/src/postgres/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "postgres", - "version": "2.1.1", + "version": "2.1.2", "name": "Python 3 & PostgreSQL", "description": "Develop applications with Python 3 and PostgreSQL. Includes a Python application container and PostgreSQL server.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/postgres", @@ -30,9 +30,7 @@ "default": "3.11-bullseye" } }, - "platforms": [ - "Python" - ], + "platforms": ["Python"], "optionalPaths": [ ".github/*" ] diff --git a/src/powershell/devcontainer-template.json b/src/powershell/devcontainer-template.json index 49b2c23..b3d14fa 100644 --- a/src/powershell/devcontainer-template.json +++ b/src/powershell/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "powershell", - "version": "1.2.1", + "version": "1.2.2", "name": "Powershell", "description": "Develop PowerShell scripts without installing anything locally.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/powershell", diff --git a/src/python/devcontainer-template.json b/src/python/devcontainer-template.json index 78c963a..c4f0794 100644 --- a/src/python/devcontainer-template.json +++ b/src/python/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "python", - "version": "4.0.1", + "version": "4.0.2", "name": "Python 3", "description": "Develop Python 3 applications.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/python", @@ -27,9 +27,7 @@ "default": "3.12-bullseye" } }, - "platforms": [ - "Python" - ], + "platforms": ["Python"], "optionalPaths": [ ".github/*" ] diff --git a/src/ruby-rails-postgres/devcontainer-template.json b/src/ruby-rails-postgres/devcontainer-template.json index ce50501..8961e38 100644 --- a/src/ruby-rails-postgres/devcontainer-template.json +++ b/src/ruby-rails-postgres/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "ruby-rails-postgres", - "version": "4.0.1", + "version": "4.0.2", "name": "Ruby on Rails & Postgres", "description": "Develop Ruby on Rails applications with Postgres. Includes a Rails application container and PostgreSQL server.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/ruby-rails-postgres", @@ -23,10 +23,8 @@ "default": "3.3-bullseye" } }, - "platforms": [ - "Ruby" - ], + "platforms": ["Ruby"], "optionalPaths": [ ".github/*" ] -} \ No newline at end of file +} diff --git a/src/ruby/devcontainer-template.json b/src/ruby/devcontainer-template.json index 2ada9ec..e141573 100644 --- a/src/ruby/devcontainer-template.json +++ b/src/ruby/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "ruby", - "version": "4.0.1", + "version": "4.0.2", "name": "Ruby", "description": "Develop Ruby based applications. includes everything you need to get up and running.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/ruby", @@ -23,9 +23,7 @@ "default": "3.3-bullseye" } }, - "platforms": [ - "Ruby" - ], + "platforms": ["Ruby"], "optionalPaths": [ ".github/*" ] diff --git a/src/rust-postgres/devcontainer-template.json b/src/rust-postgres/devcontainer-template.json index c0d82eb..af2ff30 100644 --- a/src/rust-postgres/devcontainer-template.json +++ b/src/rust-postgres/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "rust-postgres", - "version": "4.0.1", + "version": "4.0.2", "name": "Rust & PostgreSQL", "description": "Develop applications with Rust and PostgreSQL. Includes a Rust application container and PostgreSQL server.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/rust-postgres", diff --git a/src/rust/devcontainer-template.json b/src/rust/devcontainer-template.json index cf32f91..d434b27 100644 --- a/src/rust/devcontainer-template.json +++ b/src/rust/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "rust", - "version": "4.0.1", + "version": "4.0.2", "name": "Rust", "description": "Develop Rust based applications. Includes appropriate runtime args and everything you need to get up and running.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/rust", @@ -17,9 +17,7 @@ "default": "bullseye" } }, - "platforms": [ - "Rust" - ], + "platforms": ["Rust"], "optionalPaths": [ ".github/*" ] diff --git a/src/typescript-node/devcontainer-template.json b/src/typescript-node/devcontainer-template.json index aa7a100..e7d0ef5 100644 --- a/src/typescript-node/devcontainer-template.json +++ b/src/typescript-node/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "typescript-node", - "version": "4.0.1", + "version": "4.0.2", "name": "Node.js & TypeScript", "description": "Develop Node.js based applications in TypeScript. Includes Node.js, eslint, nvm, yarn, and the TypeScript compiler.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/typescript-node", @@ -28,4 +28,4 @@ "optionalPaths": [ ".github/*" ] -} \ No newline at end of file +} diff --git a/src/ubuntu/devcontainer-template.json b/src/ubuntu/devcontainer-template.json index 6efaf33..ecc605a 100644 --- a/src/ubuntu/devcontainer-template.json +++ b/src/ubuntu/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "ubuntu", - "version": "1.3.1", + "version": "1.3.2", "name": "Ubuntu", "description": "A simple Ubuntu container with Git and other common utilities installed.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/ubuntu", @@ -18,9 +18,7 @@ "default": "jammy" } }, - "platforms": [ - "Any" - ], + "platforms": ["Any"], "optionalPaths": [ ".github/*" ] diff --git a/src/universal/devcontainer-template.json b/src/universal/devcontainer-template.json index e0e05d7..9140491 100644 --- a/src/universal/devcontainer-template.json +++ b/src/universal/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "universal", - "version": "1.1.1", + "version": "1.1.2", "name": "Default Linux Universal", "description": "Use or extend the new Ubuntu-based default, large, multi-language universal container for GitHub Codespaces.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/universal",