Skip to content

Commit 5eed7c2

Browse files
committed
release 2.1.0
1 parent a7a3236 commit 5eed7c2

6 files changed

Lines changed: 17 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
=========
33

4+
## 2.1.0 (2021/XX/XX)
5+
6+
- Implement 'Configuration storage' setting to select 'Sync' or 'Local'
7+
- Change the configuration by Config Sender API saving to 'Local' storage
8+
- Strictly validate the AWS Configuration and change the error message distinct
9+
410
## v2.0.6 (2021/01/25)
511

612
- Fix encoding redirect URI in the particular AWS Console pages

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# AWS Extend Switch Roles
22

3-
[![codecov](https://codecov.io/gh/tilfin/aws-extend-switch-roles/branch/master/graph/badge.svg)](https://codecov.io/gh/tilfin/aws-extend-switch-roles)
43
[![Chrome Web Store](https://img.shields.io/chrome-web-store/v/jpmkfafbacpgapdghgdpembnojdlgkdl.svg)](https://chrome.google.com/webstore/detail/aws-extend-switch-roles/jpmkfafbacpgapdghgdpembnojdlgkdl?utm_source=github)
54
[![Firefox Add-on](https://img.shields.io/amo/v/aws-extend-switch-roles3.svg)](https://addons.mozilla.org/ja/firefox/addon/aws-extend-switch-roles3/)
65

manifest_firefox.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.0.6",
2+
"version": "2.1.0",
33
"applications": {
44
"gecko": {
55
"id": "aws-extend-switch-roles@toshi.tilfin.com",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-extend-switch-roles",
3-
"version": "2.0.6",
3+
"version": "2.1.0",
44
"description": "Extend your AWS IAM switching roles by Chrome extension",
55
"main": "index.js",
66
"directories": {

src/popup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function brushAccountId(val) {
4343
}
4444

4545
window.onload = function() {
46-
const MANY_SWITCH_COUNT = 7;
46+
const MANY_SWITCH_COUNT = 4;
4747

4848
document.getElementById('openOptionsLink').onclick = function(e) {
4949
openOptions();

updated.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,16 @@
2828
</head>
2929
<body>
3030
<h1 style="margin:0">AWS Extend Switch Roles - Update Notice</h1>
31-
<p style="font-size: 125%">New version <strong>2.0.6</strong></p>
31+
<p style="font-size: 125%">New version <strong>2.1.0</strong></p>
3232

3333
<section>
34+
<h2>2.1.0</h2>
35+
<ul>
36+
<li><b>Implement 'Configuration storage' setting to select 'Sync' or 'Local'</b></li>
37+
<li>Change the configuration by Config Sender API saving to 'Local' storage</li>
38+
<li>Strictly validate the AWS Configuration and change the error message distinct</li>
39+
</ul>
40+
3441
<h2>2.0.6</h2>
3542
<ul>
3643
<li><b>Fix encoding redirect URI in the particular AWS Console pages</b></li>

0 commit comments

Comments
 (0)