Skip to content

Commit 9ea7398

Browse files
authored
chore(release): bump version to v1.0.22 (#57)
1 parent fcb1e91 commit 9ea7398

3 files changed

Lines changed: 105 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "devcontainer-generator",
33
"private": true,
4-
"version": "1.0.21",
4+
"version": "1.0.22",
55
"packageManager": "bun@1.3.10",
66
"type": "module",
77
"scripts": {

public/data/features.json

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19530,6 +19530,30 @@
1953019530
"category": "devcontainer features by ChaosWars",
1953119531
"documentationURL": "https://github.com/ChaosWars/vscode-features"
1953219532
},
19533+
{
19534+
"id": "ghcr.io/devcontainer-community/devcontainer-features/add-script:1",
19535+
"name": "add-script",
19536+
"description": "Add a script from a URL or inline text to /usr/local/bin during devcontainer build",
19537+
"options": {
19538+
"name": {
19539+
"type": "string",
19540+
"default": "",
19541+
"description": "Name for the script placed in /usr/local/bin."
19542+
},
19543+
"url": {
19544+
"type": "string",
19545+
"default": "",
19546+
"description": "URL of a script to download."
19547+
},
19548+
"script": {
19549+
"type": "string",
19550+
"default": "",
19551+
"description": "Inline script text to add."
19552+
}
19553+
},
19554+
"category": "Community features by devcontainer.community",
19555+
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/add-script"
19556+
},
1953319557
{
1953419558
"id": "ghcr.io/devcontainer-community/devcontainer-features/alexpasmantier-television:1",
1953519559
"name": "alexpasmantier/television",
@@ -19749,6 +19773,20 @@
1974919773
"category": "Community features by devcontainer.community",
1975019774
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/bun.sh"
1975119775
},
19776+
{
19777+
"id": "ghcr.io/devcontainer-community/devcontainer-features/ca-certificates:1",
19778+
"name": "ca-certificates",
19779+
"description": "Install \"ca-certificates\" and optionally add custom CA certificates from URLs",
19780+
"options": {
19781+
"urls": {
19782+
"type": "string",
19783+
"default": "",
19784+
"description": "Newline-separated list of URLs to download as additional CA certificates into /usr/local/share/ca-certificates."
19785+
}
19786+
},
19787+
"category": "Community features by devcontainer.community",
19788+
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/ca-certificates"
19789+
},
1975219790
{
1975319791
"id": "ghcr.io/devcontainer-community/devcontainer-features/ccache.dev:1",
1975419792
"name": "ccache.dev",
@@ -20111,6 +20149,23 @@
2011120149
"category": "Community features by devcontainer.community",
2011220150
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/getdnote.com"
2011320151
},
20152+
{
20153+
"id": "ghcr.io/devcontainer-community/devcontainer-features/gitagent.sh:1",
20154+
"name": "gitagent.sh",
20155+
"description": "Install \"gitagent\" binary",
20156+
"options": {
20157+
"version": {
20158+
"type": "string",
20159+
"default": "latest",
20160+
"proposals": [
20161+
"latest"
20162+
],
20163+
"description": "Version of \"gitagent\" to install."
20164+
}
20165+
},
20166+
"category": "Community features by devcontainer.community",
20167+
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/gitagent.sh"
20168+
},
2011420169
{
2011520170
"id": "ghcr.io/devcontainer-community/devcontainer-features/github.com-cli:1",
2011620171
"name": "github.com/cli",
@@ -20230,6 +20285,23 @@
2023020285
"category": "Community features by devcontainer.community",
2023120286
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/joelhooks-agent-secrets"
2023220287
},
20288+
{
20289+
"id": "ghcr.io/devcontainer-community/devcontainer-features/jonas-tig:1",
20290+
"name": "jonas/tig",
20291+
"description": "Install \"tig\" binary",
20292+
"options": {
20293+
"version": {
20294+
"type": "string",
20295+
"default": "latest",
20296+
"proposals": [
20297+
"latest"
20298+
],
20299+
"description": "Currently unused. tig is installed via the system package manager."
20300+
}
20301+
},
20302+
"category": "Community features by devcontainer.community",
20303+
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/jonas-tig"
20304+
},
2023320305
{
2023420306
"id": "ghcr.io/devcontainer-community/devcontainer-features/jq:1",
2023520307
"name": "jq",
@@ -20548,6 +20620,25 @@
2054820620
"category": "Community features by devcontainer.community",
2054920621
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/ripgrep"
2055020622
},
20623+
{
20624+
"id": "ghcr.io/devcontainer-community/devcontainer-features/run-script:1",
20625+
"name": "run-script",
20626+
"description": "Run a script from a URL or inline text during devcontainer build",
20627+
"options": {
20628+
"url": {
20629+
"type": "string",
20630+
"default": "",
20631+
"description": "URL of a script to download and execute."
20632+
},
20633+
"script": {
20634+
"type": "string",
20635+
"default": "",
20636+
"description": "Inline script text to execute."
20637+
}
20638+
},
20639+
"category": "Community features by devcontainer.community",
20640+
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/run-script"
20641+
},
2055120642
{
2055220643
"id": "ghcr.io/devcontainer-community/devcontainer-features/schpet-linear-cli:1",
2055320644
"name": "schpet/linear-cli",

public/data/templates.json

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3698,7 +3698,7 @@
36983698
"imageVersion": {
36993699
"type": "string",
37003700
"description": "amp-devcontainer version",
3701-
"default": "6.9.0"
3701+
"default": "6.10.0"
37023702
}
37033703
},
37043704
"category": "Philips Software Dev Container Templates",
@@ -3712,7 +3712,7 @@
37123712
"imageVersion": {
37133713
"type": "string",
37143714
"description": "amp-devcontainer version",
3715-
"default": "6.9.0"
3715+
"default": "6.10.0"
37163716
}
37173717
},
37183718
"category": "Philips Software Dev Container Templates",
@@ -3727,7 +3727,9 @@
37273727
"type": "string",
37283728
"description": "Python version:",
37293729
"proposals": [
3730+
"3.14",
37303731
"3.13",
3732+
"3.12",
37313733
"latest"
37323734
],
37333735
"default": "latest"
@@ -3851,6 +3853,15 @@
38513853
"frankenphp"
38523854
],
38533855
"default": "frankenphp"
3856+
},
3857+
"database": {
3858+
"type": "string",
3859+
"description": "Which database would you like to use in your development environment?",
3860+
"proposals": [
3861+
"sqlite",
3862+
"mysql"
3863+
],
3864+
"default": "mysql"
38543865
}
38553866
},
38563867
"category": "Templates by Thomas Hucke",

0 commit comments

Comments
 (0)