diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a8dbce..ab2e23d 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.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:__ diff --git a/mkdocs.yml b/mkdocs.yml index 8885c0e..58a30d2 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -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: @@ -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/ diff --git a/src/pybritive/__init__.py b/src/pybritive/__init__.py index 2d31b1c..503eeb9 100644 --- a/src/pybritive/__init__.py +++ b/src/pybritive/__init__.py @@ -1 +1 @@ -__version__ = '2.1.3' +__version__ = '2.1.4' diff --git a/src/pybritive/britive_cli.py b/src/pybritive/britive_cli.py index 733950f..f0b7b96 100644 --- a/src/pybritive/britive_cli.py +++ b/src/pybritive/britive_cli.py @@ -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