Skip to content

Commit

Permalink
Release lib-v1.11 and cli-v4.28
Browse files Browse the repository at this point in the history
  • Loading branch information
benkehoe authored and Ben Kehoe committed Mar 30, 2022
1 parent aabf773 commit dc02114
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@

## `aws-sso-util`

### CLI v4.28
* Log normal output to stdout ([#54](https://github.com/benkehoe/aws-sso-util/issues/54)).
* Fix short region names for GovCloud in `aws-sso-util configure populate` and `aws-sso-util configure profile` ([#55](https://github.com/benkehoe/aws-sso-util/issues/55)).
* Update `aws-sso-util login` to use `--force-refresh` for consistency with other commands (`--force` still works).
* `aws-sso-util check` now provides more information about the token cache.

### CLI v4.27
* Added `--account-name-case` and `--role-name-case` to `aws-sso-util configure populate` ([#48](https://github.com/benkehoe/aws-sso-util/pull/48)).
* `aws-sso-util check` logs version and timestamp information.
Expand Down Expand Up @@ -42,6 +48,10 @@

## `aws-sso-lib`

### lib v1.11
* Improvements to `SSOTokenFetcher` to support better `aws-sso-util check` functionality.
* Fixed type annotations.

### lib v1.10
* `lookup_accounts_for_ou()` now caches calls to `organizations.DescribeOrganization`.

Expand Down
4 changes: 2 additions & 2 deletions cli/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aws-sso-util"
version = "4.27.0" # change in aws_sso_util/__init__.py too
version = "4.28.0" # change in aws_sso_util/__init__.py too
description = "Utilities to make AWS SSO easier"
authors = ["Ben Kehoe <[email protected]>"]
license = "Apache-2.0"
Expand Down Expand Up @@ -28,7 +28,7 @@ pyyaml = "^5.3.1"
jsonschema = "^3.2.0"
aws-error-utils = "^1.0.4"
python-dateutil = "^2.8.1"
aws-sso-lib = "^1.9.0"
aws-sso-lib = "^1.11.0"
# aws-sso-lib = { path = "../lib" }
requests = "^2.26.0"

Expand Down
2 changes: 1 addition & 1 deletion cli/src/aws_sso_util/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '4.27.0' # change in pyproject.toml too
__version__ = '4.28.0' # change in pyproject.toml too
2 changes: 1 addition & 1 deletion lib/aws_sso_lib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# ANY KIND, either express or implied. See the License for the specific
# language governing permissions and limitations under the License.

__version__ = '1.10.0' # change in pyproject.toml too
__version__ = '1.11.0' # change in pyproject.toml too

from .sso import get_boto3_session, login, list_available_accounts, list_available_roles
from .assignments import Assignment, list_assignments
2 changes: 1 addition & 1 deletion lib/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aws-sso-lib"
version = "1.10.0" # change in aws_sso_lib/__init__.py too
version = "1.11.0" # change in aws_sso_lib/__init__.py too
description = "Library to make AWS SSO easier"
authors = ["Ben Kehoe <[email protected]>"]
license = "Apache-2.0"
Expand Down

0 comments on commit dc02114

Please sign in to comment.