diff --git a/CHANGELOG.md b/CHANGELOG.md index 51f95b7f..072db455 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,16 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang +## [1.13.4](https://github.com/opsmill/infrahub-sdk-python/tree/v1.13.4) - 2025-07-22 + +### Fixed + +- Fix processing of relationshhip during nodes retrieval using the Sync Client, when prefecthing related_nodes. ([#461](https://github.com/opsmill/infrahub-sdk-python/issues/461)) +- Fix schema loading to ignore non-YAML files in folders. ([#462](https://github.com/opsmill/infrahub-sdk-python/issues/462)) +- Fix ignored node variable in filters(). ([#469](https://github.com/opsmill/infrahub-sdk-python/issues/469)) +- Fix use of parallel with filters for Infrahub Client Sync. +- Avoid sending empty list to infrahub if no valids schemas are found. + ## [1.13.3](https://github.com/opsmill/infrahub-sdk-python/tree/v1.13.3) - 2025-06-30 ### Fixed diff --git a/changelog/461.fixed.md b/changelog/461.fixed.md deleted file mode 100644 index 98c5444c..00000000 --- a/changelog/461.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Fixes processing of relationshhip during nodes retrieval using the Sync Client, when prefecthing related_nodes. \ No newline at end of file diff --git a/changelog/462.fixed.md b/changelog/462.fixed.md deleted file mode 100644 index deff4e59..00000000 --- a/changelog/462.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Fixes schema loading to ignore non-YAML files in folders. \ No newline at end of file diff --git a/changelog/469.fixed.md b/changelog/469.fixed.md deleted file mode 100644 index 471456f9..00000000 --- a/changelog/469.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Fixes ignored node variable in filters(). \ No newline at end of file diff --git a/changelog/fixed.md b/changelog/fixed.md deleted file mode 100644 index a25f3fa6..00000000 --- a/changelog/fixed.md +++ /dev/null @@ -1,2 +0,0 @@ -Fixes using of parallel with filters for Infrahub Client Sync. -Avoid sending empty list of schemas to infrahub if no valids schemas are found. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 8f98d2d2..adf1c564 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "infrahub-sdk" -version = "1.13.3" +version = "1.13.4" description = "Python Client to interact with Infrahub" authors = ["OpsMill "] readme = "README.md"