Skip to content

Commit

Permalink
Merge pull request rapid7#133 from rapid7/update-dependencies
Browse files Browse the repository at this point in the history
Update all dependencies
  • Loading branch information
asebastian-r7 authored Aug 8, 2019
2 parents 637ec7b + 2be147b commit 0ca0690
Show file tree
Hide file tree
Showing 18 changed files with 3,039 additions and 1,420 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## [2.2.1] - 2019-08-08
### Fixed
- Upgraded electron and everything else, fixing [#126](https://github.com/rapid7/awsaml/issues/126)

## [2.2.0] - 2019-08-07
### Added
- Adds ability to proactively name new profiles ([#125](https://github.com/rapid7/awsaml/pull/125))
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": "awsaml",
"version": "2.2.0",
"version": "2.2.1",
"description": "Periodically refreshes AWS access keys",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/containers/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import React, {Component} from 'react';
import {
Route,
Switch
Switch,
} from 'react-router';

import Configure from './configure/Configure';
Expand Down
2 changes: 1 addition & 1 deletion src/containers/components/DebugRoute.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import PropTypes from 'prop-types';
import {
Container,
Row,
Col
Col,
} from 'reactstrap';

const COLUMN_STYLE = {fontSize: '1.2rem'};
Expand Down
2 changes: 1 addition & 1 deletion src/containers/components/InputGroupWithCopyButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
InputGroup,
Input,
InputGroupAddon,
Tooltip
Tooltip,
} from 'reactstrap';
import FontAwesomeIcon from '@fortawesome/react-fontawesome';
import Clipboard from 'react-clipboard.js';
Expand Down
4 changes: 2 additions & 2 deletions src/containers/configure/Configure.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ import styled from 'styled-components';
import {fetchConfigure} from '../../actions/configure';
import {
Container,
Row
Row,
} from 'reactstrap';
import {Logo} from '../components/Logo';
import RecentLogins from './RecentLogins';
import {ConfigureMetadata} from './ConfigureMetadata';
import {
RoundedContent,
RoundedWrapper
RoundedWrapper,
} from '../../constants/styles';

const CenteredDivColumn = styled.div`
Expand Down
2 changes: 1 addition & 1 deletion src/containers/configure/Login.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
InputGroupAddon,
Input,
ListGroupItem,
Button
Button,
} from 'reactstrap';
import FontAwesomeIcon from '@fortawesome/react-fontawesome';
import {InputGroupWithCopyButton} from '../components/InputGroupWithCopyButton';
Expand Down
2 changes: 1 addition & 1 deletion src/containers/configure/RecentLogins.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
import styled from 'styled-components';
import {
ListGroup,
Input
Input,
} from 'reactstrap';
import {Login} from './Login';
import FontAwesomeIcon from '@fortawesome/react-fontawesome';
Expand Down
2 changes: 1 addition & 1 deletion src/containers/refresh/Credentials.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import {
Card,
CardBody
CardBody,
} from 'reactstrap';
import PropTypes from 'prop-types';
import styled from 'styled-components';
Expand Down
6 changes: 3 additions & 3 deletions src/containers/refresh/Refresh.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import {bindActionCreators} from 'redux';
import PropTypes from 'prop-types';
import {
Container,
Row
Row,
} from 'reactstrap';
import {
Link,
Redirect
Redirect,
} from 'react-router-dom';
import styled from 'styled-components';
import {fetchRefresh} from '../../actions/refresh';
Expand All @@ -21,7 +21,7 @@ import {InputGroupWithCopyButton} from '../components/InputGroupWithCopyButton';
import {
RoundedContent,
RoundedWrapper,
BUTTON_MARGIN
BUTTON_MARGIN,
} from '../../constants/styles';

const EnvVar = RoundedContent.extend`
Expand Down
4 changes: 2 additions & 2 deletions src/containers/select-role/SelectRole.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {bindActionCreators} from 'redux';
import {
Container,
ListGroup,
Row
Row,
} from 'reactstrap';
import {Redirect} from 'react-router-dom';
import PropTypes from 'prop-types';
Expand All @@ -16,7 +16,7 @@ import {Role} from './Role';
import {Logo} from '../components/Logo';
import {
RoundedContent,
RoundedWrapper
RoundedWrapper,
} from '../../constants/styles';

const SelectRoleHeader = styled.h4`
Expand Down
2 changes: 1 addition & 1 deletion src/reducers/configure.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
FETCH_CONFIGURE_REQUEST,
SUBMIT_CONFIGURE_FAILURE,
SUBMIT_CONFIGURE_SUCCESS,
SUBMIT_CONFIGURE_REQUEST
SUBMIT_CONFIGURE_REQUEST,
} from '../actions/configure';

const configureFetchRequest = (state, action) => ({
Expand Down
2 changes: 1 addition & 1 deletion src/reducers/logout.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {handleActions} from 'redux-actions';
import {
FETCH_LOGOUT_REQUEST,
FETCH_LOGOUT_SUCCESS,
FETCH_LOGOUT_FAILURE
FETCH_LOGOUT_FAILURE,
} from '../actions/logout';

const logoutFetchRequest = (state, action) => ({
Expand Down
2 changes: 1 addition & 1 deletion src/reducers/profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {handleActions} from 'redux-actions';
import {
DELETE_PROFILE_REQUEST,
DELETE_PROFILE_SUCCESS,
DELETE_PROFILE_FAILURE
DELETE_PROFILE_FAILURE,
} from '../actions/profile';

const deleteProfileRequest = (state, action) => ({
Expand Down
2 changes: 1 addition & 1 deletion src/reducers/refresh.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {handleActions} from 'redux-actions';
import {
FETCH_REFRESH_FAILURE,
FETCH_REFRESH_SUCCESS,
FETCH_REFRESH_REQUEST
FETCH_REFRESH_REQUEST,
} from '../actions/refresh';

const refreshFetchRequest = (state, action) => ({
Expand Down
2 changes: 1 addition & 1 deletion src/reducers/select-role.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
FETCH_SELECT_ROLE_FAILURE,
SUBMIT_SELECT_ROLE_REQUEST,
SUBMIT_SELECT_ROLE_SUCCESS,
SUBMIT_SELECT_ROLE_FAILURE
SUBMIT_SELECT_ROLE_FAILURE,
} from '../actions/select-role';

const selectRoleFetchRequest = (state, action) => ({
Expand Down
2 changes: 1 addition & 1 deletion src/store.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
createStore,
applyMiddleware,
compose
compose,
} from 'redux';
import {routerMiddleware} from 'react-router-redux';
import thunk from 'redux-thunk';
Expand Down
Loading

0 comments on commit 0ca0690

Please sign in to comment.