mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-25 15:40:06 +03:00
Version Packages
This commit is contained in:
parent
55cc37eacc
commit
8c03cc2524
|
@ -1,19 +0,0 @@
|
|||
---
|
||||
'@redux-devtools/extension': patch
|
||||
---
|
||||
|
||||
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:
|
||||
|
||||
```diff
|
||||
- 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';
|
||||
```
|
|
@ -1,7 +0,0 @@
|
|||
---
|
||||
'@redux-devtools/inspector-monitor': patch
|
||||
'@redux-devtools/app': patch
|
||||
'remotedev-redux-devtools-extension': patch
|
||||
---
|
||||
|
||||
Fix filter to show state-controlled search value
|
8
extension/CHANGELOG.md
Normal file
8
extension/CHANGELOG.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
# remotedev-redux-devtools-extension
|
||||
|
||||
## 3.0.10
|
||||
### Patch Changes
|
||||
|
||||
- 55cc37e: Fix filter to show state-controlled search value
|
||||
- Updated dependencies [55cc37e]
|
||||
- @redux-devtools/app@2.1.2
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"private": true,
|
||||
"name": "remotedev-redux-devtools-extension",
|
||||
"version": "3.0.9",
|
||||
"version": "3.0.10",
|
||||
"description": "Redux Developer Tools for debugging application state changes.",
|
||||
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/extension",
|
||||
"license": "MIT",
|
||||
|
@ -30,7 +30,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@babel/polyfill": "^7.12.1",
|
||||
"@redux-devtools/app": "^2.1.1",
|
||||
"@redux-devtools/app": "^2.1.2",
|
||||
"@redux-devtools/core": "^3.11.0",
|
||||
"@redux-devtools/instrument": "^2.1.0",
|
||||
"@redux-devtools/serialize": "^0.4.1",
|
||||
|
|
|
@ -1,5 +1,13 @@
|
|||
# Change Log
|
||||
|
||||
## 2.1.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 55cc37e: Fix filter to show state-controlled search value
|
||||
- Updated dependencies [55cc37e]
|
||||
- @redux-devtools/inspector-monitor@2.1.1
|
||||
|
||||
## 2.0.0
|
||||
|
||||
- Adds ESM build (https://github.com/reduxjs/redux-devtools/pull/997) and switches the default export to a named export in order to ensure that the CommonJS output and the ESM output are [interchangeable](https://rollupjs.org/guide/en/#outputexports):
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@redux-devtools/app",
|
||||
"version": "2.1.1",
|
||||
"version": "2.1.2",
|
||||
"description": "Redux DevTools app",
|
||||
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-app",
|
||||
"bugs": {
|
||||
|
@ -43,7 +43,7 @@
|
|||
"@babel/runtime": "^7.17.0",
|
||||
"@redux-devtools/chart-monitor": "^2.1.0",
|
||||
"@redux-devtools/core": "^3.11.0",
|
||||
"@redux-devtools/inspector-monitor": "^2.1.0",
|
||||
"@redux-devtools/inspector-monitor": "^2.1.1",
|
||||
"@redux-devtools/inspector-monitor-test-tab": "^0.8.5",
|
||||
"@redux-devtools/inspector-monitor-trace-tab": "^0.3.3",
|
||||
"@redux-devtools/log-monitor": "^3.1.0",
|
||||
|
|
|
@ -1,5 +1,25 @@
|
|||
# Change Log
|
||||
|
||||
## 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:
|
||||
|
||||
```diff
|
||||
- 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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@redux-devtools/extension",
|
||||
"version": "3.2.1",
|
||||
"version": "3.2.2",
|
||||
"description": "Wrappers for Redux DevTools Extension.",
|
||||
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-extension",
|
||||
"license": "MIT",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# Change Log
|
||||
|
||||
## 2.1.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 55cc37e: Fix filter to show state-controlled search value
|
||||
|
||||
## 2.0.0
|
||||
|
||||
- Adds ESM build (https://github.com/reduxjs/redux-devtools/pull/997) and switches the default export to a named export in order to ensure that the CommonJS output and the ESM output are [interchangeable](https://rollupjs.org/guide/en/#outputexports):
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@redux-devtools/inspector-monitor",
|
||||
"version": "2.1.0",
|
||||
"version": "2.1.1",
|
||||
"description": "Redux DevTools Diff Monitor",
|
||||
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-inspector-monitor",
|
||||
"bugs": {
|
||||
|
|
Loading…
Reference in New Issue
Block a user