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 @@ -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
}
8 changes: 7 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 7 additions & 5 deletions extensions/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand All @@ -64,15 +66,15 @@ 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"
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.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"
Expand Down
2 changes: 2 additions & 0 deletions template/extensions/context.py.jinja-base
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand Down
Loading