Skip to content

Commit

Permalink
release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tilfin committed Feb 12, 2021
1 parent a7a3236 commit 5eed7c2
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

## 2.1.0 (2021/XX/XX)

- Implement 'Configuration storage' setting to select 'Sync' or 'Local'
- Change the configuration by Config Sender API saving to 'Local' storage
- Strictly validate the AWS Configuration and change the error message distinct

## v2.0.6 (2021/01/25)

- Fix encoding redirect URI in the particular AWS Console pages
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# AWS Extend Switch Roles

[![codecov](https://codecov.io/gh/tilfin/aws-extend-switch-roles/branch/master/graph/badge.svg)](https://codecov.io/gh/tilfin/aws-extend-switch-roles)
[![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)
[![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/)

Expand Down
2 changes: 1 addition & 1 deletion manifest_firefox.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.0.6",
"version": "2.1.0",
"applications": {
"gecko": {
"id": "aws-extend-switch-roles@toshi.tilfin.com",
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": "2.0.6",
"version": "2.1.0",
"description": "Extend your AWS IAM switching roles by Chrome extension",
"main": "index.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion src/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function brushAccountId(val) {
}

window.onload = function() {
const MANY_SWITCH_COUNT = 7;
const MANY_SWITCH_COUNT = 4;

document.getElementById('openOptionsLink').onclick = function(e) {
openOptions();
Expand Down
9 changes: 8 additions & 1 deletion updated.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,16 @@
</head>
<body>
<h1 style="margin:0">AWS Extend Switch Roles - Update Notice</h1>
<p style="font-size: 125%">New version <strong>2.0.6</strong></p>
<p style="font-size: 125%">New version <strong>2.1.0</strong></p>

<section>
<h2>2.1.0</h2>
<ul>
<li><b>Implement 'Configuration storage' setting to select 'Sync' or 'Local'</b></li>
<li>Change the configuration by Config Sender API saving to 'Local' storage</li>
<li>Strictly validate the AWS Configuration and change the error message distinct</li>
</ul>

<h2>2.0.6</h2>
<ul>
<li><b>Fix encoding redirect URI in the particular AWS Console pages</b></li>
Expand Down

0 comments on commit 5eed7c2

Please sign in to comment.