Skip to content
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.

## v2.1.4 [2025-04-02]

__What's New:__

* None

__Enhancements:__

* None

__Bug Fixes:__

* Fixed missing environments when using `list` format with `ls profiles`

__Dependencies:__

* None

__Other:__

* None

## v2.1.3 [2025-03-31]

__What's New:__
Expand Down
27 changes: 14 additions & 13 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,27 @@
site_name: PyBritive
copyright: 2025 Britive, Inc.
edit_uri: ""
extra_css:
- assets/extra.css
markdown_extensions:
- attr_list
- mkdocs-click
- admonition
- toc:
toc_depth: 3
nav:
- Documentation: index.md
- Resources:
- Support: https://support.britive.com
- Company Home Page: https://www.britive.com
- GitHub Repo: https://github.com/britive/python-cli
repo_url: https://github.com/britive/python-cli
site_name: PyBritive
theme:
logo: assets/logo.png
favicon: assets/favicon.png
logo: assets/logo.png
name: material
features:
- content.code.copy
- toc.integrate
- toc.follow
hide:
Expand All @@ -28,17 +40,6 @@ theme:
toggle:
icon: material/brightness-7
name: Switch to system preference
extra_css:
- assets/extra.css
repo_url: https://github.com/britive/python-cli
edit_uri: ""
copyright: 2025 Britive, Inc.
markdown_extensions:
- attr_list
- mkdocs-click
- admonition
- toc:
toc_depth: 3
watch:
- src/pybritive/commands/
- src/pybritive/
2 changes: 1 addition & 1 deletion src/pybritive/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.1.3'
__version__ = '2.1.4'
2 changes: 1 addition & 1 deletion src/pybritive/britive_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ def _set_available_profiles(self, from_cache_command=False, profile_type: Option
'profile_allows_console': app.get('consoleAccess', False),
'profile_allows_programmatic': app.get('programmaticAccess', False),
'profile_description': profile['papDescription'],
'2_part_profile_format_allowed': app['supportsMultipleProfilesCheckoutConsole'],
'2_part_profile_format_allowed': app['requiresHierarchicalModel'],
'env_properties': env['profileEnvironmentProperties']
or self._get_missing_env_properties(
app_id, app['catalogAppName'], env_id, profile_id, from_cache_command
Expand Down