Summary
New UI (Thanks @zalmoxisus!)
RTK Query Monitor (Thanks @FaberVitale!)
Changelog
Features
- New UI (zalmoxisus/remotedev-app#30) Thanks @zalmoxisus!
- RTK Query Monitor (#750) Thanks @FaberVitale!
- Use system color scheme preference by default (#861) Thanks @FaberVitale!
- BREAKING The secondary exports for the extension package are now exported from the main entrypoint (#1075) (NOTE: this will only work in
@redux-devtools/extension@3.2.2
or later):
- import { composeWithDevTools, devToolsEnhancer } from 'redux-devtools-extension/developmentOnly';
- import { composeWithDevTools, devToolsEnhancer } from 'redux-devtools-extension/logOnly';
- import { composeWithDevTools, devToolsEnhancer } from 'redux-devtools-extension/logOnlyInProduction';
+ import {
+ composeWithDevToolsDevelopmentOnly,
+ devToolsEnhancerDevelopmentOnly,
+ composeWithDevToolsLogOnly,
+ devToolsEnhancerLogOnly,
+ composeWithDevToolsLogOnlyInProduction,
+ devToolsEnhancerLogOnlyInProduction,
+ } from '@redux-devtools/extension';
- BREAKING Options
actionsBlacklist
andactionsWhitelist
renamed toactionsDenylist
andactionsAllowlist
(#851) - BREAKING Remove deprecated
window.devToolsExtension
in favor ofwindow.__REDUX_DEVTOOLS_EXTENSION__
(#756). See usage. - BREAKING Remove deprecated
serializeState
,serializeAction
,deserializeState
, anddeserializeAction
arguments (#942). Use theserialize
parameter instead. - BREAKING Remove deprecated
statesFilter
andactionsFilter
arguments (#944). UsestateSanitizer
andactionSanitizer
instead. - BREAKING Remove deprecated
getMonitor
argument (#945). Use__REDUX_DEVTOOLS_EXTENSION_COMPOSE__
instead. - BREAKING Remove deprecated ability to create a Redux store directly from the DevTools extension (#946). See zalmoxisus/redux-devtools-extension#613 for more details.
- BREAKING Remove deprecated
updateStore
method (#943). Use__REDUX_DEVTOOLS_EXTENSION_COMPOSE__
instead. - BREAKING Remove deprecated ability to use Redux DevTools inside extensions (#947). Use Remote Redux DevTools instead.