Skip to content

Commit 2d1acfa

Browse files
authored
Merge pull request #189 from britive/v2.1.0-rc.6
v2.1.0-rc.6
2 parents 3f6be1f + e05b22c commit 2d1acfa

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@
33
> As of v1.4.0, release candidates will be published in an effort to get new features out faster while still allowing
44
> time for full QA testing before moving the release candidate to a full release.
55
6+
## v2.1.0-rc.6 [2025-03-06]
7+
8+
__What's New:__
9+
10+
* None
11+
12+
__Enhancements:__
13+
14+
* None
15+
16+
__Bug Fixes:__
17+
18+
* Return all profiles if not limited with `my_access_retrieval_limit`.
19+
20+
__Dependencies:__
21+
22+
* `britive>=4.1.2,<5.0`
23+
24+
__Other:__
25+
26+
* None
27+
628
## v2.1.0-rc.5 [2025-03-06]
729

830
__What's New:__

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ classifiers = [
2626
license = {file = "LICENSE"}
2727
requires-python = ">= 3.9"
2828
dependencies = [
29-
"britive~=4.0",
29+
"britive>=4.1.2,<5.0",
3030
"click>=8.1.7",
3131
"colored>=2.2.5",
3232
"cryptography",

src/pybritive/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.1.0-rc.5'
1+
__version__ = '2.1.0-rc.6'

src/pybritive/britive_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ def _set_available_profiles(self, from_cache_command=False, profile_type: Option
499499
}
500500
if row not in access_output:
501501
access_output.append(row)
502-
data += access_output[:access_limit]
502+
data += access_output[:access_limit] if access_limit else access_output
503503
if self.b.feature_flags.get('server-access') and (not profile_type or profile_type == 'my-resources'):
504504
if not (resource_limit := int(self.config.my_resources_retrieval_limit)):
505505
profiles = self.b.my_resources.list_profiles()

0 commit comments

Comments
 (0)