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:
github-actions[bot] 2023-09-17 02:27:10 +00:00 committed by GitHub
parent 7e6d04380b
commit 840aa45c19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 64 additions and 48 deletions

View File

@ -1,5 +0,0 @@
---
'@redux-devtools/remote': patch
---
Transform `for await...of` syntax for @redux-devtools/remote to support Hermes Engine

View File

@ -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>
```

View File

@ -1,5 +1,12 @@
# remotedev-redux-devtools-extension
## 3.1.4
### Patch Changes
- Updated dependencies [e57bcb39]
- @redux-devtools/app@4.0.0
## 3.1.3
### Patch Changes

View File

@ -1,7 +1,7 @@
{
"private": true,
"name": "remotedev-redux-devtools-extension",
"version": "3.1.3",
"version": "3.1.4",
"description": "Redux Developer Tools for debugging application state changes.",
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/extension",
"license": "MIT",
@ -24,7 +24,7 @@
},
"dependencies": {
"@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/instrument": "^2.1.0",
"@redux-devtools/serialize": "^0.4.1",

View File

@ -1,5 +1,41 @@
# 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
### Major Changes

View File

@ -1,6 +1,6 @@
{
"name": "@redux-devtools/app",
"version": "3.0.0",
"version": "4.0.0",
"description": "Redux DevTools app",
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-app",
"bugs": {

View File

@ -1,5 +1,12 @@
# Change Log
## 3.0.2
### Patch Changes
- Updated dependencies [e57bcb39]
- @redux-devtools/app@4.0.0
## 3.0.1
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@redux-devtools/cli",
"version": "3.0.1",
"version": "3.0.2",
"description": "CLI for remote debugging with Redux DevTools.",
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-cli",
"bugs": {
@ -42,7 +42,7 @@
},
"dependencies": {
"@apollo/server": "^4.9.3",
"@redux-devtools/app": "^3.0.0",
"@redux-devtools/app": "^4.0.0",
"@types/react": "^18.2.21",
"body-parser": "^1.20.2",
"chalk": "^5.3.0",

View File

@ -1,5 +1,11 @@
# Change Log
## 0.8.1
### Patch Changes
- 7e6d0438: Transform `for await...of` syntax for @redux-devtools/remote to support Hermes Engine
## 0.8.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@redux-devtools/remote",
"version": "0.8.0",
"version": "0.8.1",
"description": "Relay Redux actions to remote Redux DevTools.",
"keywords": [
"redux",

View File

@ -60,7 +60,7 @@ importers:
specifier: ^7.12.1
version: 7.12.1
'@redux-devtools/app':
specifier: ^3.0.0
specifier: ^4.0.0
version: link:../packages/redux-devtools-app
'@redux-devtools/core':
specifier: ^3.13.0
@ -1312,7 +1312,7 @@ importers:
specifier: ^4.9.3
version: 4.9.3(graphql@16.8.0)
'@redux-devtools/app':
specifier: ^3.0.0
specifier: ^4.0.0
version: link:../redux-devtools-app
'@types/react':
specifier: ^18.2.21