diff --git a/CHANGELOG.md b/CHANGELOG.md index c08569b7..c2f8fe0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,18 +11,23 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang -## [1.1.0](https://github.com/opsmill/infrahub-sdk-python/tree/v1.10.0) - 2024-11-28 +## [1.2.0](https://github.com/opsmill/infrahub-sdk-python/tree/v1.2.0) - 2024-12-19 ### Added -- Added InfrahubClient.schema.wait_until_converged() which allowes you to wait until the schema has converged across all Infrahub workers before proceeding with an operation. The InfrahubClient.schema.load() method has also been updated with a new parameter "wait_until_converged". +- Add batch feature, that use threading, to sync client ([#168](https://github.com/opsmill/infrahub-sdk-python/issues/168)) +- Added InfrahubClient.schema.in_sync method to indicate if a specific branch is in sync across all worker types +- Added Python 3.13 to the list of supported versions ### Fixed -- CTL: `schema load` return a proper error message when authentication is missing or when the user doesn't have the permission to update the schema. ([#127](https://github.com/opsmill/infrahub-sdk-python/issues/127)) -- CTL: List available transforms and generators if no name is provided ([#140](https://github.com/opsmill/infrahub-sdk-python/issues/140)) +- Fix an issue with with `infrahubctl menu load` that would fail while loading the menu -## [1.1.0rc0](https://github.com/opsmill/infrahub-sdk-python/tree/v1.1.0rc0) - 2024-11-26 +## [1.1.0](https://github.com/opsmill/infrahub-sdk-python/tree/v1.10.0) - 2024-11-28 + +### Added + +- Added InfrahubClient.schema.wait_until_converged() which allowes you to wait until the schema has converged across all Infrahub workers before proceeding with an operation. The InfrahubClient.schema.load() method has also been updated with a new parameter "wait_until_converged". ### Fixed diff --git a/changelog/+3bf1c5c.fixed.md b/changelog/+3bf1c5c.fixed.md deleted file mode 100644 index c18b00ed..00000000 --- a/changelog/+3bf1c5c.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Fix an issue with with `infrahubctl menu load` that would fail while loading the menu \ No newline at end of file diff --git a/changelog/+76f7bfd7.added.md b/changelog/+76f7bfd7.added.md deleted file mode 100644 index 73b2d1c6..00000000 --- a/changelog/+76f7bfd7.added.md +++ /dev/null @@ -1 +0,0 @@ -Added Python 3.13 to the list of supported versions diff --git a/changelog/+b21b1e10.added.md b/changelog/+b21b1e10.added.md deleted file mode 100644 index ee5fd538..00000000 --- a/changelog/+b21b1e10.added.md +++ /dev/null @@ -1 +0,0 @@ -Added InfrahubClient.schema.in_sync method to indicate if a specific branch is in sync across all worker types diff --git a/changelog/168.added.md b/changelog/168.added.md deleted file mode 100644 index 8a2d0c77..00000000 --- a/changelog/168.added.md +++ /dev/null @@ -1 +0,0 @@ -Add batch feature, that use threading, to sync client \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 65e49784..ef4bdb40 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ requires-python = ">=3.9" [tool.poetry] name = "infrahub-sdk" -version = "1.1.0" +version = "1.2.0" description = "Python Client to interact with Infrahub" authors = ["OpsMill "] readme = "README.md"