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
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@
"initializeCommand": "sh .devcontainer/initialize-command.sh",
"onCreateCommand": "sh .devcontainer/on-create-command.sh",
"postStartCommand": "sh .devcontainer/post-start-command.sh"
// Devcontainer context hash (do not manually edit this, it's managed by a pre-commit hook): 52ded8d4 # spellchecker:disable-line
// Devcontainer context hash (do not manually edit this, it's managed by a pre-commit hook): d461f957 # spellchecker:disable-line
}
2 changes: 1 addition & 1 deletion .devcontainer/install-ci-tooling.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def main():
)
else:
_ = subprocess.run(
f"curl -fsSL https://astral.sh/uv/{UV_VERSION}/install.sh | sh",
f"curl -fsSL --connect-timeout 20 --max-time 40 --retry 3 --retry-delay 5 --retry-connrefused --proto '=https' https://astral.sh/uv/{UV_VERSION}/install.sh | sh",
check=True,
shell=True,
env=uv_env,
Expand Down
11 changes: 9 additions & 2 deletions extensions/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]:
context["copier_version"] = "9.10.2"
context["copier_template_extensions_version"] = "0.3.3"
#######
context["pnpm_version"] = "10.16.1"
context["pnpm_version"] = "10.17.0"
# These are duplicated in the pyproject.toml of this repository
context["pyright_version"] = "1.1.405"
context["pytest_version"] = "8.4.2"
Expand All @@ -43,6 +43,7 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]:
context["lab_auto_pulumi_version"] = "0.1.16"
context["ariadne_codegen_version"] = "0.15.2"
context["pytest_mock_version"] = "3.15.0"
context["uuid_utils_version"] = "0.11.0"
#######
context["node_version"] = "24.7.0"
context["nuxt_ui_version"] = "^3.3.3"
Expand All @@ -61,12 +62,18 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]:
context["nuxt_eslint_version"] = "^1.9.0"
context["zod_version"] = "^4.1.5"
context["zod_from_json_schema_version"] = "^0.5.0"
context["types_node_version"] = "^24.3.1"
context["types_node_version"] = "^24.5.1"
context["nuxt_apollo_version"] = "5.0.0-alpha.15"
context["graphql_codegen_cli_version"] = "^6.0.0"
context["graphql_codegen_typescript_version"] = "^5.0.0"
context["graphql_codegen_typescript_operations_version"] = "^5.0.0"
context["tailwindcss_version"] = "^4.1.11"
context["iconify_vue_version"] = "^5.0.0"
context["iconify_json_lucide_version"] = "^1.2.68"
context["nuxt_fonts_version"] = "^0.11.4"
context["nuxtjs_color_mode_version"] = "^3.5.2"
context["vue_test_utils_version"] = "^2.4.6"
context["nuxt_test_utils_version"] = "^3.17.2"
#######
# These are duplicated in the CI files for this repository
context["gha_checkout"] = "v5.0.0"
Expand Down
2 changes: 1 addition & 1 deletion template/.devcontainer/install-ci-tooling.py.jinja-base
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def main():
)
else:
_ = subprocess.run(
f"curl -fsSL https://astral.sh/uv/{UV_VERSION}/install.sh | sh",
f"curl -fsSL --connect-timeout 20 --max-time 40 --retry 3 --retry-delay 5 --retry-connrefused --proto '=https' https://astral.sh/uv/{UV_VERSION}/install.sh | sh",
check=True,
shell=True,
env=uv_env,
Expand Down
3 changes: 3 additions & 0 deletions template/.github/workflows/get-values.yaml.jinja-base
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
dependabot-commit-created: ${{ steps.update-hash.outputs.commit-created }}
pr-short-num: ${{ steps.find-pr-num.outputs.number }}
steps:
- name: Display full GitHub context
run: echo '${{ toJSON(github) }}'

- name: Checkout code
uses: actions/checkout@{% endraw %}{{ gha_checkout }}{% raw %}

Expand Down
7 changes: 7 additions & 0 deletions template/extensions/context.py.jinja-base
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ class ContextUpdater(ContextHook):
context["lab_auto_pulumi_version"] = "{{ lab_auto_pulumi_version }}"
context["ariadne_codegen_version"] = "{{ ariadne_codegen_version }}"
context["pytest_mock_version"] = "{{ pytest_mock_version }}"
context["uuid_utils_version"] = "{{ uuid_utils_version }}"

context["node_version"] = "{{ node_version }}"
context["nuxt_ui_version"] = "{{ nuxt_ui_version }}"
Expand All @@ -62,6 +63,12 @@ class ContextUpdater(ContextHook):
context["graphql_codegen_typescript_version"] = "{{ graphql_codegen_typescript_version }}"
context["graphql_codegen_typescript_operations_version"] = "{{ graphql_codegen_typescript_operations_version }}"
context["tailwindcss_version"] = "{{ tailwindcss_version }}"
context["iconify_vue_version"] = "{{ iconify_vue_version }}"
context["iconify_json_lucide_version"] = "{{ iconify_json_lucide_version }}"
context["nuxt_fonts_version"] = "{{ nuxt_fonts_version }}"
context["nuxtjs_color_mode_version"] = "{{ nuxtjs_color_mode_version }}"
context["vue_test_utils_version"] = "{{ vue_test_utils_version }}"
context["nuxt_test_utils_version"] = "{{ nuxt_test_utils_version }}"

context["gha_checkout"] = "{{ gha_checkout }}"
context["gha_setup_python"] = "{{ gha_setup_python }}"
Expand Down