This repository was archived by the owner on Sep 18, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 1.1.0] - 2020-02-13
10
+ ### Changed
11
+ * Revert the change in [ #160 ] ( https://github.com/mozilla-iam/mozilla-aws-cli/issues/160 )
12
+ in which the URL format for idtoken_for_roles_url was changed from
13
+ https://example.com/roles to https://example.com/ . Now with this reversion,
14
+ the idtoken_for_roles_url should again be the full URL ending in ` /roles ` .
15
+ This change is not backwards compatible and will require that a config file
16
+ or config module be changed to use the new full URL.
17
+
9
18
## [ 1.0.0] - 2020-02-05
10
19
### Added
11
20
* Feature to pass the "cache" argument that the user asserts on the command line
@@ -90,7 +99,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
90
99
### Added
91
100
* Initial release of the mozilla-aws-cli tool
92
101
93
- [ Unreleased ] : https://github.com/mozilla-iam/mozilla-aws-cli/compare/v1.0.0...HEAD
102
+ [ Unreleased ] : https://github.com/mozilla-iam/mozilla-aws-cli/compare/v1.1.0...HEAD
103
+ [ 1.1.0 ] : https://github.com/mozilla-iam/mozilla-aws-cli/compare/v1.0.0...v1.1.0
94
104
[ 1.0.0 ] : https://github.com/mozilla-iam/mozilla-aws-cli/compare/v0.2.0...v1.0.0
95
105
[ 0.2.0 ] : https://github.com/mozilla-iam/mozilla-aws-cli/compare/v0.1.1...v0.2.0
96
106
[ 0.1.1 ] : https://github.com/mozilla-iam/mozilla-aws-cli/compare/v0.1.0...v0.1.1
Original file line number Diff line number Diff line change @@ -323,7 +323,7 @@ def validate_id_token(self):
323
323
def get_role_map (self ):
324
324
# get the role map, either from cache or from the endpoint
325
325
self .state = "getting_role_map"
326
- url = "{}roles" . format ( self .idtoken_for_roles_url )
326
+ url = self .idtoken_for_roles_url
327
327
self .role_map = get_roles_and_aliases (
328
328
endpoint = url ,
329
329
token = self .token ["id_token" ],
Original file line number Diff line number Diff line change 57
57
tests_require = test_requirements ,
58
58
extras_require = extras ,
59
59
url = "https://github.com/mozilla-iam/mozilla-aws-cli" ,
60
- version = "1.0 .0" ,
60
+ version = "1.1 .0" ,
61
61
zip_safe = False ,
62
62
)
You can’t perform that action at this time.
0 commit comments