diff --git a/CHANGELOG.md b/CHANGELOG.md index 165ea53..cf0147d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,28 @@ > As of v1.4.0, release candidates will be published in an effort to get new features out faster while still allowing > time for full QA testing before moving the release candidate to a full release. +## v2.1.0-rc.6 [2025-03-06] + +__What's New:__ + +* None + +__Enhancements:__ + +* None + +__Bug Fixes:__ + +* Return all profiles if not limited with `my_access_retrieval_limit`. + +__Dependencies:__ + +* `britive>=4.1.2,<5.0` + +__Other:__ + +* None + ## v2.1.0-rc.5 [2025-03-06] __What's New:__ diff --git a/pyproject.toml b/pyproject.toml index c0c38d6..1e22cd5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ classifiers = [ license = {file = "LICENSE"} requires-python = ">= 3.9" dependencies = [ - "britive~=4.0", + "britive>=4.1.2,<5.0", "click>=8.1.7", "colored>=2.2.5", "cryptography", diff --git a/src/pybritive/__init__.py b/src/pybritive/__init__.py index 61cc84e..5803823 100644 --- a/src/pybritive/__init__.py +++ b/src/pybritive/__init__.py @@ -1 +1 @@ -__version__ = '2.1.0-rc.5' +__version__ = '2.1.0-rc.6' diff --git a/src/pybritive/britive_cli.py b/src/pybritive/britive_cli.py index b08a328..26b8f88 100644 --- a/src/pybritive/britive_cli.py +++ b/src/pybritive/britive_cli.py @@ -499,7 +499,7 @@ def _set_available_profiles(self, from_cache_command=False, profile_type: Option } if row not in access_output: access_output.append(row) - data += access_output[:access_limit] + data += access_output[:access_limit] if access_limit else access_output if self.b.feature_flags.get('server-access') and (not profile_type or profile_type == 'my-resources'): if not (resource_limit := int(self.config.my_resources_retrieval_limit)): profiles = self.b.my_resources.list_profiles()