Skip to content

Commit

Permalink
fix to call retrieveTargetProfilesFromLztext
Browse files Browse the repository at this point in the history
  • Loading branch information
tilfin committed Nov 27, 2023
1 parent f40e268 commit b081fca
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
Changelog
=========

## 4.0.2 (2023/11/07)
## 4.0.3 (2023/11/27)

- Implement fallback for displaying the role list in Firefox private browsing mode

## 4.0.2 (2023/11/07)

- Fix parsing of 'role_arn' when the role name contains slashes

## 4.0.1 (2023/10/31)
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "4.0.2",
"version": "4.0.3",
"name": "AWS Extend Switch Roles",
"description": "Extend your AWS IAM switching roles. You can set the configuration like aws config format",
"short_name": "Extend SwitchRole",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aws-extend-switch-roles",
"version": "4.0.2",
"version": "4.0.3",
"description": "Extend your AWS IAM switching roles by Chrome extension",
"main": "index.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion src/js/lib/target_profiles.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export async function findTargetProfiles(ctx) {
return await retrieveTargetProfilesFromDB(ctx);
} catch (err) {
// Firefox private browsing
return await retriveTargetProfilesFromLztext(ctx);
return await retrieveTargetProfilesFromLztext(ctx);
}
}

Expand Down
6 changes: 5 additions & 1 deletion src/updated.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,13 @@ <h3>'Sign-in endpoint in current region' setting (Experimental, Supporters only)

<hr style="margin:18px 0">

<h2>4.0.2 <span style="margin-left:0.75em; color:rgb(221, 63, 0)">New version!</span></h2>
<h2>4.0.3 <span style="margin-left:0.75em; color:rgb(221, 63, 0)">New version!</span></h2>
<ul>
<li>Implement fallback for displaying the role list in Firefox private browsing mode</li>
</ul>

<h2>4.0.2</h2>
<ul>
<li>Fix parsing of 'role_arn' when the role name contains slashes</li>
</ul>

Expand Down

0 comments on commit b081fca

Please sign in to comment.