Skip to content

Commit 5171f94

Browse files
authored
Merge pull request #204 from britive/develop
v2.1.4
2 parents ed6ce00 + 1c431ae commit 5171f94

File tree

4 files changed

+38
-15
lines changed

4 files changed

+38
-15
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.4 [2025-04-02]
7+
8+
__What's New:__
9+
10+
* None
11+
12+
__Enhancements:__
13+
14+
* None
15+
16+
__Bug Fixes:__
17+
18+
* Fixed missing environments when using `list` format with `ls profiles`
19+
20+
__Dependencies:__
21+
22+
* None
23+
24+
__Other:__
25+
26+
* None
27+
628
## v2.1.3 [2025-03-31]
729

830
__What's New:__

mkdocs.yml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,27 @@
1-
site_name: PyBritive
1+
copyright: 2025 Britive, Inc.
2+
edit_uri: ""
3+
extra_css:
4+
- assets/extra.css
5+
markdown_extensions:
6+
- attr_list
7+
- mkdocs-click
8+
- admonition
9+
- toc:
10+
toc_depth: 3
211
nav:
312
- Documentation: index.md
413
- Resources:
514
- Support: https://support.britive.com
615
- Company Home Page: https://www.britive.com
716
- GitHub Repo: https://github.com/britive/python-cli
17+
repo_url: https://github.com/britive/python-cli
18+
site_name: PyBritive
819
theme:
9-
logo: assets/logo.png
1020
favicon: assets/favicon.png
21+
logo: assets/logo.png
1122
name: material
1223
features:
24+
- content.code.copy
1325
- toc.integrate
1426
- toc.follow
1527
hide:
@@ -28,17 +40,6 @@ theme:
2840
toggle:
2941
icon: material/brightness-7
3042
name: Switch to system preference
31-
extra_css:
32-
- assets/extra.css
33-
repo_url: https://github.com/britive/python-cli
34-
edit_uri: ""
35-
copyright: 2025 Britive, Inc.
36-
markdown_extensions:
37-
- attr_list
38-
- mkdocs-click
39-
- admonition
40-
- toc:
41-
toc_depth: 3
4243
watch:
4344
- src/pybritive/commands/
4445
- src/pybritive/

src/pybritive/__init__.py

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

src/pybritive/britive_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ def _set_available_profiles(self, from_cache_command=False, profile_type: Option
517517
'profile_allows_console': app.get('consoleAccess', False),
518518
'profile_allows_programmatic': app.get('programmaticAccess', False),
519519
'profile_description': profile['papDescription'],
520-
'2_part_profile_format_allowed': app['supportsMultipleProfilesCheckoutConsole'],
520+
'2_part_profile_format_allowed': app['requiresHierarchicalModel'],
521521
'env_properties': env['profileEnvironmentProperties']
522522
or self._get_missing_env_properties(
523523
app_id, app['catalogAppName'], env_id, profile_id, from_cache_command

0 commit comments

Comments
 (0)