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
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

All changes to the package starting with v0.3.1 will be logged here.

## v0.11.1 [2023-02-08]
#### What's New
* None

#### Enhancements
* None

#### Bug Fixes
* None
*
#### Dependencies
* `cryptography~=39.0.1` to resolve dependabot alert #1 and #3
* `certifi>=2022.12.7` to resolve dependabot alert #2
* `britive~=2.15.0` to bring in new API calls

#### Other
* None

## v0.11.0 [2023-02-07]
#### What's New
* The `api` command is now available which exposes all the methods available in the Britive Python SDK.
Expand Down
2 changes: 1 addition & 1 deletion TECH_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Environment variables that should be set for testing include the following.
Create `./testing-variables.txt` and load what you need so you can easily re-create the needed variables. This file is in `.gitignore`.

Package the code locally with `pip install -e .` so pytest can run against the python package.
Then `pytest tests/ -v` to perform the testing.
Then `pytest tests/ -vvv` to perform the testing.

The identity used for testing will require access to at least one profile to test `checkout` and `checkin`.
Additionally, the identity will need access to 2 secrets
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
britive~=2.14.0
certifi==2022.6.15
britive~=2.15.0
certifi>=2022.12.7
charset-normalizer==2.1.0
click==8.1.3
idna==3.3
Expand All @@ -10,7 +10,7 @@ six==1.16.0
tabulate==0.8.10
toml==0.10.2
urllib3==1.26.9
cryptography==37.0.4
cryptography~=39.0.1
pytest==7.1.2
mkdocs==1.3.1
mkdocs-click==0.8.0
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pybritive
version = 0.11.0
version = 0.11.1
author = Britive Inc.
author_email = support@britive.com
description = A pure Python CLI for Britive
Expand All @@ -24,9 +24,9 @@ install_requires =
merge_args
tabulate
toml
cryptography
cryptography~=39.0.1
python-dateutil
britive>=2.14.0
britive~=2.15.0
jmespath

[options.packages.find]
Expand Down