From 94bfd5b35958d5080cd6631a8e97986374c9801c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A5l=20R=C3=B8nning?= Date: Fri, 13 Sep 2024 15:05:20 +0200 Subject: [PATCH] Fixed scope of LocationFiltersAcl (#1927) Co-authored-by: anders-albert --- CHANGELOG.md | 6 ++++++ cognite/client/_version.py | 2 +- cognite/client/data_classes/capabilities.py | 2 +- pyproject.toml | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c45104924..6ca265439 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,12 @@ Changes are grouped as follows - `Fixed` for any bug fixes. - `Security` in case of vulnerabilities. +## [7.60.1] - 2024-09-13 +### Fixed +- LocationFiltersACl.Scope.SpaceID changed to ID + + + ## [7.60.0] - 2024-09-12 ### Changed - Some changes to the typed instances functionality in the data modeling client diff --git a/cognite/client/_version.py b/cognite/client/_version.py index b5371896b..12a358651 100644 --- a/cognite/client/_version.py +++ b/cognite/client/_version.py @@ -1,4 +1,4 @@ from __future__ import annotations -__version__ = "7.60.0" +__version__ = "7.60.1" __api_subversion__ = "20230101" diff --git a/cognite/client/data_classes/capabilities.py b/cognite/client/data_classes/capabilities.py index 64681a3a5..b5614442f 100644 --- a/cognite/client/data_classes/capabilities.py +++ b/cognite/client/data_classes/capabilities.py @@ -810,7 +810,7 @@ class Action(Capability.Action): # type: ignore [misc] class Scope: All = AllScope - SpaceID = IDScope + ID = IDScope @dataclass diff --git a/pyproject.toml b/pyproject.toml index 7963e720f..583d69741 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "cognite-sdk" -version = "7.60.0" +version = "7.60.1" description = "Cognite Python SDK" readme = "README.md" documentation = "https://cognite-sdk-python.readthedocs-hosted.com"