Prep for Release 9.3 (#5548)

This commit is contained in:
shashank-elastic
2026-01-12 21:07:07 +05:30
committed by GitHub
parent 8b84c26286
commit 1ce072a4e5
99 changed files with 4599 additions and 48 deletions
+6
View File
@@ -337,6 +337,12 @@ def migrate_to_9_2(version: Version, api_contents: dict[str, Any]) -> dict[str,
return strip_additional_properties(version, api_contents)
@migrate("9.3")
def migrate_to_9_3(version: Version, api_contents: dict[str, Any]) -> dict[str, Any]:
"""Default migration for 9.3."""
return strip_additional_properties(version, api_contents)
def downgrade(
api_contents: dict[str, Any], target_version: str, current_version_val: str | None = None
) -> dict[str, Any]: