diff --git a/extensions/context.py b/extensions/context.py index 7cab9512..046d90de 100644 --- a/extensions/context.py +++ b/extensions/context.py @@ -17,7 +17,7 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]: context["copier_version"] = "9.9.1" context["copier_template_extensions_version"] = "0.3.2" ####### - context["pnpm_version"] = "10.14.0" + context["pnpm_version"] = "10.15.0" # These are duplicated in the pyproject.toml of this repository context["pyright_version"] = "1.1.404" context["pytest_version"] = "8.4.1" @@ -25,33 +25,38 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]: context["pytest_cov_version"] = "6.2.1" ####### context["sphinx_version"] = "8.1.3" - context["pulumi_version"] = "3.190.0" + context["pulumi_version"] = "3.191.0" context["pulumi_aws_version"] = "7.4.0" context["pulumi_aws_native_version"] = "1.32.0" context["pulumi_command_version"] = "1.1.0" context["pulumi_github_version"] = "6.7.3" context["pulumi_okta_version"] = "4.20.0" context["boto3_version"] = "1.40.9" - context["ephemeral_pulumi_deploy_version"] = "0.0.4" + context["ephemeral_pulumi_deploy_version"] = "0.0.5" context["pydantic_version"] = "2.11.7" context["pyinstaller_version"] = "6.13.0" context["setuptools_version"] = "80.7.1" - context["strawberry_graphql_version"] = "0.270.4" - context["fastapi_version"] = "0.115.14" + context["strawberry_graphql_version"] = "0.280.0" + context["fastapi_version"] = "0.116.1" + context["fastapi_offline_version"] = "1.7.4" context["uvicorn_version"] = "0.35.0" - context["lab_auto_pulumi_version"] = "0.1.15" + context["lab_auto_pulumi_version"] = "0.1.16" ####### - context["nuxt_ui_version"] = "^3.3.0" + context["nuxt_ui_version"] = "^3.3.2" context["nuxt_version"] = "^4.0.3" context["nuxt_icon_version"] = "^2.0.0" context["typescript_version"] = "^5.8.2" context["dot_env_cli_version"] = "^9.0.0" - context["playwright_version"] = "^1.52.0" + context["playwright_version"] = "^1.55.0" context["vue_version"] = "^3.5.18" + context["vue_tsc_version"] = "^3.0.6" + context["vue_devtools_api_version"] = "^8.0.0" context["vue_router_version"] = "^4.5.1" + context["dotenv_cli_version"] = "^10.0.0" context["faker_version"] = "^9.9.0" context["vitest_version"] = "^3.2.4" context["eslint_version"] = "^9.33.0" + context["nuxt_eslint_version"] = "^1.9.0" context["zod_version"] = "^4.0.17" context["nuxt_apollo_version"] = "5.0.0-alpha.15" context["graphql_codegen_cli_version"] = "^5.0.5" @@ -66,10 +71,10 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]: context["gha_upload_artifact"] = "v4.6.2" context["gha_download_artifact"] = "v4.3.0" context["gha_github_script"] = "v7.0.1" - context["gha_setup_buildx"] = "v3.10.0" - context["buildx_version"] = "v0.22.0" + context["gha_setup_buildx"] = "v3.11.1" + context["buildx_version"] = "v0.27.0" context["gha_docker_build_push"] = "v6.16.0" - context["gha_configure_aws_credentials"] = "v4.2.0" + context["gha_configure_aws_credentials"] = "v4.3.1" context["gha_amazon_ecr_login"] = "v2.0.1" context["gha_setup_node"] = "v4.4.0" context["gha_action_gh_release"] = "v2.2.1" diff --git a/template/.devcontainer/install-ci-tooling.py.jinja-base b/template/.devcontainer/install-ci-tooling.py.jinja-base index 542890e5..4709e86e 100644 --- a/template/.devcontainer/install-ci-tooling.py.jinja-base +++ b/template/.devcontainer/install-ci-tooling.py.jinja-base @@ -153,10 +153,7 @@ def main(): ["sudo", "dpkg", "-i", str(local_package_path)], check=True, ) - _ = subprocess.run( - ["echo", "SSM Plugin Manager Version:"], - check=True, - ) + print("SSM Plugin Manager Version: ") _ = subprocess.run( ["session-manager-plugin", "--version"], check=True, diff --git a/template/extensions/context.py.jinja-base b/template/extensions/context.py.jinja-base index eb571a10..394e1065 100644 --- a/template/extensions/context.py.jinja-base +++ b/template/extensions/context.py.jinja-base @@ -33,6 +33,7 @@ class ContextUpdater(ContextHook): context["setuptools_version"] = "{{ setuptools_version }}" context["strawberry_graphql_version"] = "{{ strawberry_graphql_version }}" context["fastapi_version"] = "{{ fastapi_version }}" + context["fastapi_offline_version"] = "{{ fastapi_offline_version }}" context["uvicorn_version"] = "{{ uvicorn_version }}" context["lab_auto_pulumi_version"] = "{{ lab_auto_pulumi_version }}" @@ -43,10 +44,14 @@ class ContextUpdater(ContextHook): context["dot_env_cli_version"] = "{{ dot_env_cli_version }}" context["playwright_version"] = "{{ playwright_version }}" context["vue_version"] = "{{ vue_version }}" + context["vue_tsc_version"] = "{{ vue_tsc_version }}" + context["vue_devtools_api_version"] = "{{ vue_devtools_api_version }}" context["vue_router_version"] = "{{ vue_router_version }}" + context["dotenv_cli_version"] = "{{ dot_env_cli_version }}" context["faker_version"] = "{{ faker_version }}" context["vitest_version"] = "{{ vitest_version }}" context["eslint_version"] = "{{ eslint_version }}" + context["nuxt_eslint_version"] = "{{ nuxt_eslint_version }}" context["zod_version"] = "{{ zod_version }}" context["nuxt_apollo_version"] = "{{ nuxt_apollo_version }}" context["graphql_codegen_cli_version"] = "{{ graphql_codegen_cli_version }}"