mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-13 05:06:50 +03:00
Version Packages (#1495)
* Version Packages * Update lock --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
This commit is contained in:
parent
7e6d04380b
commit
840aa45c19
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@redux-devtools/remote': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Transform `for await...of` syntax for @redux-devtools/remote to support Hermes Engine
|
|
|
@ -1,35 +0,0 @@
|
||||||
---
|
|
||||||
'@redux-devtools/app': major
|
|
||||||
---
|
|
||||||
|
|
||||||
The UMD bundle now exports the same thing as the library and includes the CSS in a sperate file. Therfore, the new usage is:
|
|
||||||
|
|
||||||
```diff
|
|
||||||
<!doctype html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<title>Redux DevTools</title>
|
|
||||||
+ <link href="/redux-devtools-app.min.css" rel="stylesheet" />
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div id="root"></div>
|
|
||||||
<script src="/react.production.min.js"></script>
|
|
||||||
<script src="/react-dom.production.min.js"></script>
|
|
||||||
<script src="/redux-devtools-app.min.js"></script>
|
|
||||||
<script src="/port.js"></script>
|
|
||||||
<script>
|
|
||||||
const container = document.querySelector('#root');
|
|
||||||
- const element = React.createElement(ReduxDevToolsApp, {
|
|
||||||
+ const element = React.createElement(ReduxDevToolsApp.Root, {
|
|
||||||
socketOptions: {
|
|
||||||
hostname: location.hostname,
|
|
||||||
port: reduxDevToolsPort,
|
|
||||||
autoReconnect: true,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
ReactDOM.createRoot(container).render(element);
|
|
||||||
</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
```
|
|
|
@ -1,5 +1,12 @@
|
||||||
# remotedev-redux-devtools-extension
|
# remotedev-redux-devtools-extension
|
||||||
|
|
||||||
|
## 3.1.4
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [e57bcb39]
|
||||||
|
- @redux-devtools/app@4.0.0
|
||||||
|
|
||||||
## 3.1.3
|
## 3.1.3
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"private": true,
|
"private": true,
|
||||||
"name": "remotedev-redux-devtools-extension",
|
"name": "remotedev-redux-devtools-extension",
|
||||||
"version": "3.1.3",
|
"version": "3.1.4",
|
||||||
"description": "Redux Developer Tools for debugging application state changes.",
|
"description": "Redux Developer Tools for debugging application state changes.",
|
||||||
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/extension",
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/extension",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/polyfill": "^7.12.1",
|
"@babel/polyfill": "^7.12.1",
|
||||||
"@redux-devtools/app": "^3.0.0",
|
"@redux-devtools/app": "^4.0.0",
|
||||||
"@redux-devtools/core": "^3.13.0",
|
"@redux-devtools/core": "^3.13.0",
|
||||||
"@redux-devtools/instrument": "^2.1.0",
|
"@redux-devtools/instrument": "^2.1.0",
|
||||||
"@redux-devtools/serialize": "^0.4.1",
|
"@redux-devtools/serialize": "^0.4.1",
|
||||||
|
|
|
@ -1,5 +1,41 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 4.0.0
|
||||||
|
|
||||||
|
### Major Changes
|
||||||
|
|
||||||
|
- e57bcb39: The UMD bundle now exports the same thing as the library and includes the CSS in a sperate file. Therfore, the new usage is:
|
||||||
|
|
||||||
|
```diff
|
||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Redux DevTools</title>
|
||||||
|
+ <link href="/redux-devtools-app.min.css" rel="stylesheet" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="root"></div>
|
||||||
|
<script src="/react.production.min.js"></script>
|
||||||
|
<script src="/react-dom.production.min.js"></script>
|
||||||
|
<script src="/redux-devtools-app.min.js"></script>
|
||||||
|
<script src="/port.js"></script>
|
||||||
|
<script>
|
||||||
|
const container = document.querySelector('#root');
|
||||||
|
- const element = React.createElement(ReduxDevToolsApp, {
|
||||||
|
+ const element = React.createElement(ReduxDevToolsApp.Root, {
|
||||||
|
socketOptions: {
|
||||||
|
hostname: location.hostname,
|
||||||
|
port: reduxDevToolsPort,
|
||||||
|
autoReconnect: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
ReactDOM.createRoot(container).render(element);
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
```
|
||||||
|
|
||||||
## 3.0.0
|
## 3.0.0
|
||||||
|
|
||||||
### Major Changes
|
### Major Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@redux-devtools/app",
|
"name": "@redux-devtools/app",
|
||||||
"version": "3.0.0",
|
"version": "4.0.0",
|
||||||
"description": "Redux DevTools app",
|
"description": "Redux DevTools app",
|
||||||
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-app",
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-app",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
|
|
|
@ -1,5 +1,12 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 3.0.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [e57bcb39]
|
||||||
|
- @redux-devtools/app@4.0.0
|
||||||
|
|
||||||
## 3.0.1
|
## 3.0.1
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@redux-devtools/cli",
|
"name": "@redux-devtools/cli",
|
||||||
"version": "3.0.1",
|
"version": "3.0.2",
|
||||||
"description": "CLI for remote debugging with Redux DevTools.",
|
"description": "CLI for remote debugging with Redux DevTools.",
|
||||||
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-cli",
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-cli",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apollo/server": "^4.9.3",
|
"@apollo/server": "^4.9.3",
|
||||||
"@redux-devtools/app": "^3.0.0",
|
"@redux-devtools/app": "^4.0.0",
|
||||||
"@types/react": "^18.2.21",
|
"@types/react": "^18.2.21",
|
||||||
"body-parser": "^1.20.2",
|
"body-parser": "^1.20.2",
|
||||||
"chalk": "^5.3.0",
|
"chalk": "^5.3.0",
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 0.8.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 7e6d0438: Transform `for await...of` syntax for @redux-devtools/remote to support Hermes Engine
|
||||||
|
|
||||||
## 0.8.0
|
## 0.8.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@redux-devtools/remote",
|
"name": "@redux-devtools/remote",
|
||||||
"version": "0.8.0",
|
"version": "0.8.1",
|
||||||
"description": "Relay Redux actions to remote Redux DevTools.",
|
"description": "Relay Redux actions to remote Redux DevTools.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"redux",
|
"redux",
|
||||||
|
|
|
@ -60,7 +60,7 @@ importers:
|
||||||
specifier: ^7.12.1
|
specifier: ^7.12.1
|
||||||
version: 7.12.1
|
version: 7.12.1
|
||||||
'@redux-devtools/app':
|
'@redux-devtools/app':
|
||||||
specifier: ^3.0.0
|
specifier: ^4.0.0
|
||||||
version: link:../packages/redux-devtools-app
|
version: link:../packages/redux-devtools-app
|
||||||
'@redux-devtools/core':
|
'@redux-devtools/core':
|
||||||
specifier: ^3.13.0
|
specifier: ^3.13.0
|
||||||
|
@ -1312,7 +1312,7 @@ importers:
|
||||||
specifier: ^4.9.3
|
specifier: ^4.9.3
|
||||||
version: 4.9.3(graphql@16.8.0)
|
version: 4.9.3(graphql@16.8.0)
|
||||||
'@redux-devtools/app':
|
'@redux-devtools/app':
|
||||||
specifier: ^3.0.0
|
specifier: ^4.0.0
|
||||||
version: link:../redux-devtools-app
|
version: link:../redux-devtools-app
|
||||||
'@types/react':
|
'@types/react':
|
||||||
specifier: ^18.2.21
|
specifier: ^18.2.21
|
||||||
|
|
Loading…
Reference in New Issue
Block a user