diff --git a/CHANGELOG.md b/CHANGELOG.md index dfe6e861..a24c5cea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,20 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang +## [1.6.0](https://github.com/opsmill/infrahub-sdk-python/tree/v1.6.0) - 2025-01-16 + +### Added + +- Replace GitPython with dulwich ([#130](https://github.com/opsmill/infrahub-sdk-python/issues/130)) + +### Changed + +- Added possibility to use filters for the SDK client's count method + +### Fixed + +- Fixes issue where using `parallel` query execution could lead to excessive and unneeded GraphQL queries + ## [1.5.0](https://github.com/opsmill/infrahub-sdk-python/tree/v1.5.0) - 2025-01-09 ### Added diff --git a/changelog/130.added.md b/changelog/130.added.md deleted file mode 100644 index 266f7324..00000000 --- a/changelog/130.added.md +++ /dev/null @@ -1 +0,0 @@ -Replace GitPython with dulwich \ No newline at end of file diff --git a/changelog/count-method-filters.changed.md b/changelog/count-method-filters.changed.md deleted file mode 100644 index 13a15c57..00000000 --- a/changelog/count-method-filters.changed.md +++ /dev/null @@ -1 +0,0 @@ -Added possibility to use filters for the SDK client's count method diff --git a/changelog/query-parallel.fixed.md b/changelog/query-parallel.fixed.md deleted file mode 100644 index e337ce9d..00000000 --- a/changelog/query-parallel.fixed.md +++ /dev/null @@ -1 +0,0 @@ -fixes issue where using `parallel` query execution could lead to excessive and unneeded GraphQL queries diff --git a/pyproject.toml b/pyproject.toml index c9a61d29..646a2761 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ requires-python = ">=3.9" [tool.poetry] name = "infrahub-sdk" -version = "1.5.0" +version = "1.6.0" description = "Python Client to interact with Infrahub" authors = ["OpsMill "] readme = "README.md"