mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
8e99d35749
* Version Packages * Trigger build --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
2.6 KiB
2.6 KiB
Change Log
3.3.0
Minor Changes
- a3f86a42: Add Redux 5 to peerDependency range of extension package
3.2.6
Patch Changes
- 65205f90: Replace Action with Action
3.2.5
Patch Changes
- a0716740: Fix types for other exports from
@redux-devtools/extension
.
3.2.4
Patch Changes
- 07456db4: Propagate store enhancer generic type when using composeWithDevTools
3.2.3
Patch Changes
- 6cf1865f: Fix type for serialize option
3.2.2
Patch Changes
-
2ec10f0: v3.0.0 had an unintentional breaking change of changing the location of the secondary entrypoints. These secondary exports are now exported from the main entrypoint (https://github.com/reduxjs/redux-devtools/pull/1075) and should be imported like so:
- 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';
3.2.1
Patch Changes
- a25551f: Fix files included in publish
3.0.0
- BREAKING Rename
redux-devtools-extension
package to@redux-devtools/extension
(https://github.com/reduxjs/redux-devtools/pull/948). - BREAKING The secondary exports are now exported from the main entrypoint (https://github.com/reduxjs/redux-devtools/pull/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';
- Deprecate
actionsBlacklist
andactionsWhitelist
in favor ofactionsDenylist
andactionsAllowlist
(https://github.com/reduxjs/redux-devtools/pull/851).
2.13.9 (2021-03-06)
Note: Version bump only for package redux-devtools-extension