Skip to content

Commit 3365a8b

Browse files
authored
Merge pull request #168 from britive/develop
v1.8.1
2 parents 83a9f00 + b0635ef commit 3365a8b

4 files changed

Lines changed: 25 additions & 3 deletions

File tree

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+
## v1.8.1 [2024-07-11]
7+
8+
__What's New:__
9+
10+
* None
11+
12+
__Enhancements:__
13+
14+
* None
15+
16+
__Bug Fixes:__
17+
18+
* Fixed error related to `my-resources` not containing an `app_name`.
19+
20+
__Dependencies:__
21+
22+
* None
23+
24+
__Other:__
25+
26+
* None
27+
628
## v1.8.0 [2024-07-01]
729

830
> _NOTE: This will be the last [minor](https://semver.org/#summary) version before 2.0.0_

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Homepage = "https://www.britive.com"
4747
Documentation = "https://britive.github.io/python-cli/"
4848
Repository = "https://github.com/britive/python-cli.git"
4949
Issues = "https://github.com/britive/python-cli/issues"
50-
Changelog = "https://github.com/britive/python-cli/CHANGELOG.md"
50+
Changelog = "https://github.com/britive/python-cli/blob/main/CHANGELOG.md"
5151

5252
[tool.setuptools]
5353
package-dir = {"" = "src"}

src/pybritive/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.8.0'
1+
__version__ = '1.8.1'

src/pybritive/britive_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1139,7 +1139,7 @@ def _convert_names_to_ids(self, profile_name: str, environment_name: str, applic
11391139

11401140
# collect relevant profile/environment combinations to which the identity is entitled
11411141
for profile in self.available_profiles:
1142-
if profile['app_name'].lower() != application_name: # kick out all the unmatched applications
1142+
if profile['app_name'] and profile['app_name'].lower() != application_name: # kick out all the unmatched applications
11431143
continue
11441144
if profile['profile_name'].lower() != profile_name: # kick out the unmatched profiles
11451145
continue

0 commit comments

Comments
 (0)