diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index b2b4212e..1803d4ef 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -61,5 +61,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): fbd1043f # spellchecker:disable-line + // Devcontainer context hash (do not manually edit this, it's managed by a pre-commit hook): 53d51a57 # spellchecker:disable-line } diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 22ab55ae..86348a0b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -140,7 +140,13 @@ repos: rev: e73b8ba0c1316be565983236c72e653ad44e6b66 # frozen: v1.7.7 hooks: - id: docformatter - exclude: (tests*)|(exceptions\.py)|(warnings\.py) + exclude: | + (?x)^( + .*/tests/.*| + exceptions\.py| + warnings\.py| + .*/generated/open[-_]api/.*| + )$ args: - --in-place - --wrap-summaries=150 diff --git a/extensions/context.py b/extensions/context.py index 2c165fdc..527ff14d 100644 --- a/extensions/context.py +++ b/extensions/context.py @@ -25,9 +25,9 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]: context["pytest_cov_version"] = "7.0.0" ####### context["sphinx_version"] = "8.1.3" - context["pulumi_version"] = "3.205.0" - context["pulumi_aws_version"] = "7.10.0" - context["pulumi_aws_native_version"] = "1.37.0" + context["pulumi_version"] = "3.206.0" + context["pulumi_aws_version"] = "7.11.0" + context["pulumi_aws_native_version"] = "1.38.0" context["pulumi_command_version"] = "1.1.3" context["pulumi_github_version"] = "6.8.0" context["pulumi_okta_version"] = "6.1.0" @@ -46,6 +46,8 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]: context["uuid_utils_version"] = "0.11.0" context["syrupy_version"] = "5.0.0" context["structlog_version"] = "25.5.0" + context["httpx_version"] = "0.28.1" + context["python_kiota_bundle_version"] = "1.9.7" ####### context["node_version"] = "24.7.0" context["nuxt_ui_version"] = "^4.1.0" @@ -64,7 +66,7 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]: context["nuxt_eslint_version"] = "^1.10.0" context["zod_version"] = "^4.1.12" context["zod_from_json_schema_version"] = "^0.5.1" - context["types_node_version"] = "^24.9.2" + context["types_node_version"] = "^24.10.0" 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" @@ -72,7 +74,7 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]: context["tailwindcss_version"] = "^4.1.11" context["iconify_vue_version"] = "^5.0.0" context["iconify_json_lucide_version"] = "^1.2.71" - context["nuxt_fonts_version"] = "^0.11.4" + context["nuxt_fonts_version"] = "^0.12.1" context["nuxtjs_color_mode_version"] = "^3.5.2" context["vue_test_utils_version"] = "^2.4.6" context["nuxt_test_utils_version"] = "3.19.1" diff --git a/template/extensions/context.py.jinja-base b/template/extensions/context.py.jinja-base index 61e32e79..f6b34a39 100644 --- a/template/extensions/context.py.jinja-base +++ b/template/extensions/context.py.jinja-base @@ -41,6 +41,8 @@ class ContextUpdater(ContextHook): context["uuid_utils_version"] = "{{ uuid_utils_version }}" context["syrupy_version"] = "{{ syrupy_version }}" context["structlog_version"] = "{{ structlog_version }}" + context["httpx_version"] = "{{ httpx_version }}" + context["python_kiota_bundle_version"] = "{{ python_kiota_bundle_version }}" context["node_version"] = "{{ node_version }}" context["nuxt_ui_version"] = "{{ nuxt_ui_version }}"