Skip to content

Commit de57a14

Browse files
committed
Release lib-v1.14 and cli-v4.31
1 parent a06a8a8 commit de57a14

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
# Changelog
22

3-
`aws-sso-util` and `aws-sso-lib` use [monotonic versioning](blog.appliedcompscilab.com/monotonic_versioning_manifesto/).
3+
`aws-sso-util` and `aws-sso-lib` use [monotonic versioning](https://github.com/benkehoe/monotonic-versioning-manifesto).
44

55
* [`aws-sso-util`](#aws-sso-util)
66
* [`aws-sso-lib`](#aws-sso-lib)
77

88
## `aws-sso-util`
99

10+
### CLI v4.31
11+
* CloudFormation functionality now excludes suspended accounts from OU traversal ([#80](https://github.com/benkehoe/aws-sso-util/issues/80) via [#81](https://github.com/benkehoe/aws-sso-util/pull/81)).
12+
* Upgrade to `click` 8 ([#85](https://github.com/benkehoe/aws-sso-util/issues/85)).
13+
1014
### CLI v4.30
1115
* `aws-sso-util login` adds `receivedAt` time to token cache entry.
1216
* Improved `aws-sso-util check` feedback.
@@ -59,6 +63,9 @@
5963

6064
## `aws-sso-lib`
6165

66+
### lib v1.14
67+
* Add `exclude_inactive_accts` parameter to `lookup_accounts_for_ou()` ([#80](https://github.com/benkehoe/aws-sso-util/issues/80) via [#81](https://github.com/benkehoe/aws-sso-util/pull/81)).
68+
6269
### lib v1.13
6370
* `login()` adds `receivedAt` timestamp to token dict.
6471

cli/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-util"
3-
version = "4.30.0" # change in aws_sso_util/__init__.py too
3+
version = "4.31.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"

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.30.0' # change in pyproject.toml too
15+
__version__ = '4.31.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.13.0' # change in pyproject.toml too
14+
__version__ = '1.14.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.13.0" # change in aws_sso_lib/__init__.py too
3+
version = "1.14.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)