Skip to content

Commit 1c431ae

Browse files
authored
Merge pull request #203 from britive/fix/missing-env-on-list
fix/missing-env-on-list
2 parents 1569022 + c211aad commit 1c431ae

5 files changed

Lines changed: 41 additions & 16 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+
## 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:__

docs/assets/extra.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
:root>* {
2+
--md-primary-fg-color: #040520;
3+
}

mkdocs.yml

Lines changed: 14 additions & 14 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:
@@ -20,26 +32,14 @@ theme:
2032
icon: material/brightness-auto
2133
name: Switch to dark mode
2234
- media: "(prefers-color-scheme: dark)"
23-
primary: black
2435
scheme: slate
2536
toggle:
2637
icon: material/brightness-4
2738
name: Switch to light mode
2839
- media: "(prefers-color-scheme: light)"
29-
primary: blue
30-
scheme: default
3140
toggle:
3241
icon: material/brightness-7
3342
name: Switch to system preference
34-
repo_url: https://github.com/britive/python-cli
35-
edit_uri: ""
36-
copyright: 2025 Britive, Inc.
37-
markdown_extensions:
38-
- attr_list
39-
- mkdocs-click
40-
- admonition
41-
- toc:
42-
toc_depth: 3
4343
watch:
4444
- src/pybritive/commands/
4545
- 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)