Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrades dependencies except breaking ones. #393

Merged
merged 1 commit into from
Apr 16, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"lerna": "^2.0.0-beta.38"
},
"dependencies": {
"stringify-object": "^3.1.0"
"stringify-object": "^3.2.0"
}
}
15 changes: 8 additions & 7 deletions packages/demo-react-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,26 @@
"private": true,
"devDependencies": {
"babel-eslint": "^7.1.1",
"react-scripts": "^0.8.1",
"react-scripts": "^0.9.5",
"reactotron-apisauce": "^1.9.1",
"reactotron-core-client": "^1.9.1",
"reactotron-react-js": "^1.9.1",
"reactotron-redux": "^1.9.1",
"reactotron-redux-saga": "^1.9.1",
"stacktrace-js": "^1.3.1",
"standard": "^8.6.0"
"standard": "^10.0.2"
},
"dependencies": {
"apisauce": "^0.10.0",
"ramda": "^0.22.1",
"apisauce": "^0.11.0",
"prop-types": "^15.5.8",
"ramda": "^0.23.0",
"ramdasauce": "^1.1.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^4.4.6",
"react-redux": "^5.0.4",
"redux": "^3.6.0",
"redux-logger": "^2.6.1",
"redux-saga": "^0.13.0"
"redux-logger": "^3.0.1",
"redux-saga": "^0.14.6"
},
"scripts": {
"start": "react-scripts start",
Expand Down
4 changes: 2 additions & 2 deletions packages/demo-react-js/src/App.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { Component, PropTypes } from 'react'
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import logo from './logo.svg'
import './App.css'
import { connect } from 'react-redux'
Expand All @@ -25,7 +26,6 @@ const Styles = {
}

class App extends Component {

static propTypes = {
startup: PropTypes.func.isRequired,
message: PropTypes.string,
Expand Down
2 changes: 1 addition & 1 deletion packages/demo-react-js/src/Redux/Store.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { not, contains } from 'ramda'
import { createStore, applyMiddleware } from 'redux'
import createLogger from 'redux-logger'
import { createLogger } from 'redux-logger'
import createSagaMiddleware from 'redux-saga'
import rootReducer from './RootReducer'
import rootSaga from '../Sagas'
Expand Down
5 changes: 2 additions & 3 deletions packages/demo-react-js/src/Sagas/index.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
import { takeEvery, takeLatest } from 'redux-saga'
import { fork, call } from 'redux-saga/effects'
import ApiSauce from 'apisauce'
const Reactotron = process.env.NODE_ENV !== 'production' && require('reactotron-react-js').default

import * as Startup from '../Redux/Startup.redux'
import * as Repo from '../Redux/Repo.redux'

import { startup } from './Startup.sagas'
import { request as requestRepo } from './Repo.sagas'

const Reactotron = process.env.NODE_ENV !== 'production' && require('reactotron-react-js').default

const api = ApiSauce.create({
baseURL: 'https://api.github.com',
headers: {
Expand Down
1 change: 1 addition & 0 deletions packages/demo-react-native/copy-internal-deps.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/sh
# Hello.
#
# React Native doesn't properly support symlinks (or perhaps it does now?), so this
Expand Down
1 change: 1 addition & 0 deletions packages/demo-react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"dependencies": {
"apisauce": "^0.11.0",
"es6-symbol": "^3.1.1",
"mitt": "^1.1.1",
"ramda": "^0.23.0",
"ramdasauce": "^1.2.0",
"react": "~15.4.1",
Expand Down
6 changes: 3 additions & 3 deletions packages/reactotron-apisauce/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
],
"peerDependencies": {},
"devDependencies": {
"ava": "^0.18.1",
"ava": "^0.19.1",
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
Expand All @@ -36,7 +36,7 @@
"nyc": "^10.1.2",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.6.1",
"standard": "^8.6.0"
"standard": "^10.0.2"
},
"ava": {
"require": [
Expand All @@ -54,7 +54,7 @@
"parser": "babel-eslint"
},
"dependencies": {
"apisauce": "^0.10.0",
"apisauce": "^0.11.0",
"ramda": "^0.23.0",
"ramdasauce": "^1.2.0",
"reactotron-core-client": "^1.9.1"
Expand Down
3 changes: 1 addition & 2 deletions packages/reactotron-app/App/Commands/ApiResponseCommand.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ const INITIAL_STATE = {
}

class ApiResponseCommand extends Component {

static propTypes = {
command: PropTypes.oneOfType([PropTypes.object, PropTypes.array]).isRequired
}
Expand Down Expand Up @@ -133,7 +132,7 @@ class ApiResponseCommand extends Component {
const url = dotPath('request.url', payload)
const smallUrl = pipe(
replace(/^http(s):\/\/[a-zA-Z0-9.]*/i, ''),
replace(/\?.*$/i, ''),
replace(/\?.*$/i, '')
)(url)
const method = toUpper(dotPath('request.method', payload) || '')
const requestHeaders = dotPath('request.headers', payload)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const mapIndexed = addIndex(map)
const COMMAND_TITLE = 'ASYNC STORAGE'

class AsyncStorageValuesCommand extends Component {

static propTypes = {
command: PropTypes.object.isRequired
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ const makeStep = (step, idx, last, totalDuration) => {
}

class BenchmarkReportCommand extends Component {

static propTypes = {
command: PropTypes.object.isRequired
}
Expand Down
1 change: 0 additions & 1 deletion packages/reactotron-app/App/Commands/ClientIntroCommand.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import makeTable from '../Shared/MakeTable'
const COMMAND_TITLE = 'CONNECTION'

class ClientIntroCommand extends Component {

static propTypes = {
command: PropTypes.object.isRequired
}
Expand Down
1 change: 0 additions & 1 deletion packages/reactotron-app/App/Commands/DisplayCommand.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const Styles = {
}

class DisplayCommand extends Component {

static propTypes = {
command: PropTypes.object.isRequired
}
Expand Down
1 change: 0 additions & 1 deletion packages/reactotron-app/App/Commands/ImageCommand.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ const Styles = {
}

class DisplayCommand extends Component {

static propTypes = {
command: PropTypes.object.isRequired
}
Expand Down
1 change: 0 additions & 1 deletion packages/reactotron-app/App/Commands/LogCommand.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ const Styles = {
@inject('session')
@observer
class LogCommand extends Component {

static propTypes = {
command: PropTypes.object.isRequired
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ const Styles = {
@inject('session')
@observer
class SagaTaskCompleteCommand extends Component {

static propTypes = {
command: PropTypes.object.isRequired
}
Expand Down
2 changes: 0 additions & 2 deletions packages/reactotron-app/App/Commands/SectionLink.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ const Styles = {
}

class SectionLink extends Component {

static propTypes = {
isActive: PropTypes.bool.isRequired,
text: PropTypes.string.isRequired,
Expand All @@ -42,7 +41,6 @@ class SectionLink extends Component {
</div>
)
}

}

export default SectionLink
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const Styles = {
}

class StateActionComplete extends Component {

static propTypes = {
command: PropTypes.object.isRequired
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ class StateKey extends Component {
@inject('session')
@observer
class StateKeysResponseCommand extends Component {

static propTypes = {
command: PropTypes.object.isRequired
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ const Styles = {
}

class StateValuesChangeCommand extends Component {

static propTypes = {
command: PropTypes.object.isRequired
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ const Styles = {
}

class StateValuesResponseCommand extends Component {

static propTypes = {
command: PropTypes.object.isRequired
}
Expand Down
1 change: 0 additions & 1 deletion packages/reactotron-app/App/Commands/UnknownCommand.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import ObjectTree from '../Shared/ObjectTree'
const COMMAND_TITLE = 'UNKNOWN'

class UnknownCommand extends Component {

static propTypes = {
command: PropTypes.object.isRequired
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ const Styles = {
@inject('session')
@observer
class FilterTimelineDialog extends Component {

render () {
const { session } = this.props
const { ui } = session
Expand Down
1 change: 0 additions & 1 deletion packages/reactotron-app/App/Dialogs/HelpDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ const Styles = {
@inject('session')
@observer
class StateDispatchDialog extends Component {

handleChange = (e) => {
const { session } = this.props
session.ui.actionToDispatch = e.target.value
Expand Down
1 change: 0 additions & 1 deletion packages/reactotron-app/App/Dialogs/StateDispatchDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ const Styles = {
@inject('session')
@observer
class StateDispatchDialog extends Component {

handleChange = (e) => {
const { session } = this.props
session.ui.actionToDispatch = e.target.value
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ const Styles = {
@inject('session')
@observer
class StateKeysAndValuesDialog extends Component {

constructor (props) {
super(props)
this.state = {
Expand Down
1 change: 0 additions & 1 deletion packages/reactotron-app/App/Dialogs/StateWatchDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ const INSTRUCTIONS = <div>
@inject('session')
@observer
class StateWatchDialog extends Component {

handleChange = (e) => {
const { session } = this.props
session.ui.watchToAdd = e.target.value
Expand Down
1 change: 0 additions & 1 deletion packages/reactotron-app/App/Foundation/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import SessionStore from '../Stores/SessionStore'
const session = new SessionStore()

export default class App extends Component {

render () {
return (
<Provider session={session}>
Expand Down
1 change: 0 additions & 1 deletion packages/reactotron-app/App/Foundation/Backups.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ const Styles = {
@inject('session')
@observer
class Backups extends Component {

constructor (props) {
super(props)
this.renderBackup = this.renderBackup.bind(this)
Expand Down
2 changes: 0 additions & 2 deletions packages/reactotron-app/App/Foundation/BackupsHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ const Styles = {
@inject('session')
@observer
class BackupsHeader extends Component {

render () {
const { ui } = this.props.session

Expand All @@ -72,7 +71,6 @@ class BackupsHeader extends Component {
</div>
)
}

}

export default BackupsHeader
2 changes: 0 additions & 2 deletions packages/reactotron-app/App/Foundation/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ const Styles = {
@inject('session')
@observer
class Footer extends Component {

render () {
const { server } = this.props.session
const { port } = server.options
Expand All @@ -79,7 +78,6 @@ class Footer extends Component {
</div>
)
}

}

export default Footer
1 change: 0 additions & 1 deletion packages/reactotron-app/App/Foundation/Help.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ const Styles = {
}

class Help extends Component {

render () {
return (
<div style={Styles.container}>
Expand Down
1 change: 0 additions & 1 deletion packages/reactotron-app/App/Foundation/HelpFeedback.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ const ReleaseIcon = require('react-icons/lib/go/squirrel')
const TwitterIcon = require('react-icons/lib/fa/twitter')

class HelpFeedback extends Component {

constructor (props) {
super(props)
this.openRepo = () => shell.openExternal('https://github.com/infinitered/reactotron')
Expand Down
2 changes: 0 additions & 2 deletions packages/reactotron-app/App/Foundation/HelpHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ const Styles = {
@inject('session')
@observer
class TimelineHeader extends Component {

render () {
return (
<div style={Styles.container}>
Expand All @@ -38,7 +37,6 @@ class TimelineHeader extends Component {
</div>
)
}

}

export default TimelineHeader
1 change: 0 additions & 1 deletion packages/reactotron-app/App/Foundation/HelpKeystrokes.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ const Styles = {
}

class HelpKeystrokes extends Component {

render () {
return (
<div style={Styles.container}>
Expand Down
1 change: 0 additions & 1 deletion packages/reactotron-app/App/Foundation/Native.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ const Styles = {
@inject('session')
@observer
class Native extends Component {

constructor (props) {
super(props)
this.state = {
Expand Down