diff --git a/CHANGELOG.md b/CHANGELOG.md index fe05e3ff..e7c2bdea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,13 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang +## [1.12.0](https://github.com/opsmill/infrahub-sdk-python/tree/v1.12.0) - 2025-04-29 + +### Added + +- Added the ability to convert the query response to InfrahubNode objects when using Python Transforms in the same way you can with Generators. ([#281](https://github.com/opsmill/infrahub-sdk-python/issues/281)) +- Added a "branch" parameter to the client.clone() method to allow properly cloning a client that targets another branch. + ## [1.11.1](https://github.com/opsmill/infrahub-sdk-python/tree/v1.11.1) - 2025-04-28 ### Changed diff --git a/changelog/+398b0883.added.md b/changelog/+398b0883.added.md deleted file mode 100644 index f9554fab..00000000 --- a/changelog/+398b0883.added.md +++ /dev/null @@ -1 +0,0 @@ -Added a "branch" parameter to the client.clone() method to allow properly cloning a client that targets another branch. diff --git a/changelog/281.added.md b/changelog/281.added.md deleted file mode 100644 index 00338f66..00000000 --- a/changelog/281.added.md +++ /dev/null @@ -1 +0,0 @@ -Added ability to convert the query response to InfrahubNode objects when using Python Transforms in the same way you can with Generators. diff --git a/pyproject.toml b/pyproject.toml index c3ccc170..d9073e38 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "infrahub-sdk" -version = "1.11.1" +version = "1.12.0" description = "Python Client to interact with Infrahub" authors = ["OpsMill "] readme = "README.md"