Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.8.1 #168

Merged
merged 4 commits into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

## v1.8.1 [2024-07-11]

__What's New:__

* None

__Enhancements:__

* None

__Bug Fixes:__

* Fixed error related to `my-resources` not containing an `app_name`.

__Dependencies:__

* None

__Other:__

* None

## v1.8.0 [2024-07-01]

> _NOTE: This will be the last [minor](https://semver.org/#summary) version before 2.0.0_
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Homepage = "https://www.britive.com"
Documentation = "https://britive.github.io/python-cli/"
Repository = "https://github.com/britive/python-cli.git"
Issues = "https://github.com/britive/python-cli/issues"
Changelog = "https://github.com/britive/python-cli/CHANGELOG.md"
Changelog = "https://github.com/britive/python-cli/blob/main/CHANGELOG.md"

[tool.setuptools]
package-dir = {"" = "src"}
Expand Down
2 changes: 1 addition & 1 deletion src/pybritive/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.8.0'
__version__ = '1.8.1'
2 changes: 1 addition & 1 deletion src/pybritive/britive_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1139,7 +1139,7 @@ def _convert_names_to_ids(self, profile_name: str, environment_name: str, applic

# collect relevant profile/environment combinations to which the identity is entitled
for profile in self.available_profiles:
if profile['app_name'].lower() != application_name: # kick out all the unmatched applications
if profile['app_name'] and profile['app_name'].lower() != application_name: # kick out all the unmatched applications
continue
if profile['profile_name'].lower() != profile_name: # kick out the unmatched profiles
continue
Expand Down
Loading