Skip to content

Commit dc02114

Browse files
benkehoeBen Kehoe
authored andcommitted
Release lib-v1.11 and cli-v4.28
1 parent aabf773 commit dc02114

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77

88
## `aws-sso-util`
99

10+
### CLI v4.28
11+
* Log normal output to stdout ([#54](https://github.com/benkehoe/aws-sso-util/issues/54)).
12+
* 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)).
13+
* Update `aws-sso-util login` to use `--force-refresh` for consistency with other commands (`--force` still works).
14+
* `aws-sso-util check` now provides more information about the token cache.
15+
1016
### CLI v4.27
1117
* Added `--account-name-case` and `--role-name-case` to `aws-sso-util configure populate` ([#48](https://github.com/benkehoe/aws-sso-util/pull/48)).
1218
* `aws-sso-util check` logs version and timestamp information.
@@ -42,6 +48,10 @@
4248

4349
## `aws-sso-lib`
4450

51+
### lib v1.11
52+
* Improvements to `SSOTokenFetcher` to support better `aws-sso-util check` functionality.
53+
* Fixed type annotations.
54+
4555
### lib v1.10
4656
* `lookup_accounts_for_ou()` now caches calls to `organizations.DescribeOrganization`.
4757

cli/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aws-sso-util"
3-
version = "4.27.0" # change in aws_sso_util/__init__.py too
3+
version = "4.28.0" # change in aws_sso_util/__init__.py too
44
description = "Utilities to make AWS SSO easier"
55
authors = ["Ben Kehoe <ben@kehoe.io>"]
66
license = "Apache-2.0"
@@ -28,7 +28,7 @@ pyyaml = "^5.3.1"
2828
jsonschema = "^3.2.0"
2929
aws-error-utils = "^1.0.4"
3030
python-dateutil = "^2.8.1"
31-
aws-sso-lib = "^1.9.0"
31+
aws-sso-lib = "^1.11.0"
3232
# aws-sso-lib = { path = "../lib" }
3333
requests = "^2.26.0"
3434

cli/src/aws_sso_util/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = '4.27.0' # change in pyproject.toml too
15+
__version__ = '4.28.0' # change in pyproject.toml too

lib/aws_sso_lib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# ANY KIND, either express or implied. See the License for the specific
1212
# language governing permissions and limitations under the License.
1313

14-
__version__ = '1.10.0' # change in pyproject.toml too
14+
__version__ = '1.11.0' # change in pyproject.toml too
1515

1616
from .sso import get_boto3_session, login, list_available_accounts, list_available_roles
1717
from .assignments import Assignment, list_assignments

lib/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aws-sso-lib"
3-
version = "1.10.0" # change in aws_sso_lib/__init__.py too
3+
version = "1.11.0" # change in aws_sso_lib/__init__.py too
44
description = "Library to make AWS SSO easier"
55
authors = ["Ben Kehoe <ben@kehoe.io>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)