Releases: zalmoxisus/mobx-remotedev
v0.2.8
Fixed mobx ES6 import. #26 by @pastelsky
v0.2.6
- Show array updates (#18).
- Remove support for specified filters on the extension's options page. Please specify them as arguments.
v0.2.5
Add support for jump to state, introduced in redux-devtools-extension@2.12.0
.
v0.2.4
Fix import state for 2.11.1
version of the extension.
v0.2.3
v0.2.2
v0.2.1
Show actions for nested classes / observables (#6)
Just set the global
parameter to true
in order to assign dispatching of all unhandled actions to this store. Useful for nested classes / observables or when having async actions without specifying the scope
explicitly. Like: remotedev(store, { global: true })
. Big thanks to @antitoxic for working on this!
If you want more details about the nested tree, see #5.
Use WSS for remote debugging
v0.2.0
Added support for React Native, hybrid, desktop and server side apps
Just specify remote
parameter (remotedev(appState, { remote: true })
), and optionally hostname
and port
. See the API for details.
Changed the default values of onlyActions
and name
parameter
- When in strict mode,
onlyActions
is by default true. - When
name
is not specified, the class name will be used.
v0.1.0
Better actions display
Now for actions you see the start and end of all intermediate changes, so you also know the initial and final state. Also there's a new option onlyActions
, set it to true to have a clear log only with actions. Usually you want to use it in strict mode. And don't forget about async actions.
Support for all Redux DevTools Extension features:
- Reset, commit, rollback, sweep
- Cancel / skip (toggle) actions
- Export / Import state
- Dispatch actions remotely:
v0.0.2
- More details in action's payload.
- Fixed time traveling in strict mode.
- Fixed umd build.