diff --git a/CHANGELOG.md b/CHANGELOG.md index af87ad0..25845c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/TECH_README.md b/TECH_README.md index d305f83..db96e46 100644 --- a/TECH_README.md +++ b/TECH_README.md @@ -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 diff --git a/requirements.txt b/requirements.txt index a47b768..fa87caf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 @@ -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 diff --git a/setup.cfg b/setup.cfg index 66955ec..732a83d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 @@ -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]