From c96576009bf24143bf4474a3358f15234de0790b Mon Sep 17 00:00:00 2001 From: Eli Fine Date: Mon, 28 Jul 2025 13:27:19 +0000 Subject: [PATCH 1/4] bump js --- extensions/context.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/extensions/context.py b/extensions/context.py index 00fd586f..82cb730d 100644 --- a/extensions/context.py +++ b/extensions/context.py @@ -41,12 +41,12 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]: context["uvicorn_version"] = "0.35.0" context["lab_auto_pulumi_version"] = "0.1.15" ####### - context["nuxt_ui_version"] = "^3.1.2" - context["nuxt_version"] = "^3.17.3" + context["nuxt_ui_version"] = "^3.3.0" + context["nuxt_version"] = "^4.0.1" context["typescript_version"] = "^5.8.2" - context["vue_version"] = "^3.5.13" - context["vue_router_version"] = "^4.5.0" - context["faker_version"] = "^9.8.0" + context["vue_version"] = "^3.5.18" + context["vue_router_version"] = "^4.5.1" + context["faker_version"] = "^9.9.0" context["graphql_codegen_cli_version"] = "^5.0.5" context["graphql_codegen_typescript_version"] = "^4.1.6" ####### From e00403525a5132665b5201b4faf3e169c28bdd21 Mon Sep 17 00:00:00 2001 From: Eli Fine Date: Mon, 28 Jul 2025 13:31:17 +0000 Subject: [PATCH 2/4] cli --- extensions/context.py | 1 + template/extensions/context.py.jinja-base | 1 + 2 files changed, 2 insertions(+) diff --git a/extensions/context.py b/extensions/context.py index 82cb730d..ab427395 100644 --- a/extensions/context.py +++ b/extensions/context.py @@ -44,6 +44,7 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]: context["nuxt_ui_version"] = "^3.3.0" context["nuxt_version"] = "^4.0.1" context["typescript_version"] = "^5.8.2" + context["dot_env_cli_version"] = "^9.0.0" context["vue_version"] = "^3.5.18" context["vue_router_version"] = "^4.5.1" context["faker_version"] = "^9.9.0" diff --git a/template/extensions/context.py.jinja-base b/template/extensions/context.py.jinja-base index af391517..8ac8a412 100644 --- a/template/extensions/context.py.jinja-base +++ b/template/extensions/context.py.jinja-base @@ -39,6 +39,7 @@ class ContextUpdater(ContextHook): context["nuxt_ui_version"] = "{{ nuxt_ui_version }}" context["nuxt_version"] = "{{ nuxt_version }}" context["typescript_version"] = "{{ typescript_version }}" + context["dot_env_cli_version"] = "{{ dot_env_cli_version }}" context["vue_version"] = "{{ vue_version }}" context["vue_router_version"] = "{{ vue_router_version }}" context["faker_version"] = "{{ faker_version }}" From 58f262893b8be70b485318b6be3d1e54488a01e6 Mon Sep 17 00:00:00 2001 From: Eli Fine Date: Mon, 28 Jul 2025 13:38:11 +0000 Subject: [PATCH 3/4] nuxt3 --- extensions/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/context.py b/extensions/context.py index ab427395..368e0e9e 100644 --- a/extensions/context.py +++ b/extensions/context.py @@ -42,7 +42,7 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]: context["lab_auto_pulumi_version"] = "0.1.15" ####### context["nuxt_ui_version"] = "^3.3.0" - context["nuxt_version"] = "^4.0.1" + context["nuxt_version"] = "^3.17.7" context["typescript_version"] = "^5.8.2" context["dot_env_cli_version"] = "^9.0.0" context["vue_version"] = "^3.5.18" From 379f93fab5d4543e4398801025aa7471c37f2210 Mon Sep 17 00:00:00 2001 From: Eli Fine Date: Mon, 28 Jul 2025 14:00:32 +0000 Subject: [PATCH 4/4] playwright --- extensions/context.py | 1 + template/extensions/context.py.jinja-base | 1 + 2 files changed, 2 insertions(+) diff --git a/extensions/context.py b/extensions/context.py index 368e0e9e..70cf3374 100644 --- a/extensions/context.py +++ b/extensions/context.py @@ -45,6 +45,7 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]: context["nuxt_version"] = "^3.17.7" context["typescript_version"] = "^5.8.2" context["dot_env_cli_version"] = "^9.0.0" + context["playwright_version"] = "^1.52.0" context["vue_version"] = "^3.5.18" context["vue_router_version"] = "^4.5.1" context["faker_version"] = "^9.9.0" diff --git a/template/extensions/context.py.jinja-base b/template/extensions/context.py.jinja-base index 8ac8a412..f3c65102 100644 --- a/template/extensions/context.py.jinja-base +++ b/template/extensions/context.py.jinja-base @@ -40,6 +40,7 @@ class ContextUpdater(ContextHook): context["nuxt_version"] = "{{ nuxt_version }}" context["typescript_version"] = "{{ typescript_version }}" context["dot_env_cli_version"] = "{{ dot_env_cli_version }}" + context["playwright_version"] = "{{ playwright_version }}" context["vue_version"] = "{{ vue_version }}" context["vue_router_version"] = "{{ vue_router_version }}" context["faker_version"] = "{{ faker_version }}"