mirror of
https://github.com/hassio-addons/repository-beta.git
synced 2025-05-05 11:31:28 +00:00
🎉 Release of add-on Node-RED 11.0.0
This commit is contained in:
parent
cca946451c
commit
657b1138dd
5 changed files with 39 additions and 9 deletions
|
@ -844,10 +844,10 @@ SOFTWARE.
|
|||
[nginxproxymanager-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
||||
[nginxproxymanager-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
|
||||
[nginxproxymanager-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
|
||||
[addon-node-red]: https://github.com/hassio-addons/addon-node-red/tree/v10.4.0
|
||||
[addon-doc-node-red]: https://github.com/hassio-addons/addon-node-red/blob/v10.4.0/README.md
|
||||
[addon-node-red]: https://github.com/hassio-addons/addon-node-red/tree/v11.0.0
|
||||
[addon-doc-node-red]: https://github.com/hassio-addons/addon-node-red/blob/v11.0.0/README.md
|
||||
[node-red-issue]: https://github.com/hassio-addons/addon-node-red/issues
|
||||
[node-red-version-shield]: https://img.shields.io/badge/version-v10.4.0-blue.svg
|
||||
[node-red-version-shield]: https://img.shields.io/badge/version-v11.0.0-blue.svg
|
||||
[node-red-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
|
||||
[node-red-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
|
||||
[node-red-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
||||
|
|
|
@ -1,7 +1,28 @@
|
|||
## What’s changed
|
||||
|
||||
This release two nodes have been removed from the built-in nodes.
|
||||
|
||||
The `actionflows` node isn't maintained anymore, while the `http-request` node has become obsolete and thus development on that node has stopped.
|
||||
|
||||
## 🚨 Breaking changes
|
||||
|
||||
- 🔨 Remove node-red-contrib-actionflows @sinclairpaul (#1260)
|
||||
- 🔨 Remove node-red-contrib-http-request @bonanitech (#1273)
|
||||
|
||||
## ✨ New features
|
||||
|
||||
- ✨ Add support for setting max_old_space_size @frenck (#1275)
|
||||
|
||||
## 🐛 Bug fixes
|
||||
|
||||
- 🔨 Remove node-red-contrib-actionflows @sinclairpaul (#1260)
|
||||
|
||||
## 🚀 Enhancements
|
||||
|
||||
- 🔨 Reorganize palette categories order @bonanitech (#1259)
|
||||
|
||||
## ⬆️ Dependency updates
|
||||
|
||||
- Bump node-red-dashboard from 3.1.4 to 3.1.5 in /node-red @dependabot (#1247)
|
||||
- Bump node-red from 2.1.6 to 2.2.0 in /node-red @dependabot (#1252)
|
||||
- Bump @node-red-contrib-themes/theme-collection from 2.1.5 to 2.2.0 in /node-red @dependabot (#1253)
|
||||
- ⬆️ Upgrades nodejs to 16.14.0-r0 @frenck (#1274)
|
||||
- 🔨 Remove node-red-contrib-http-request @bonanitech (#1273)
|
||||
- Bump node-red-contrib-home-assistant-websocket from 0.41.3 to 0.42.0 in /node-red @dependabot (#1271)
|
||||
|
|
|
@ -177,6 +177,14 @@ username and password empty.
|
|||
**Note**: _We STRONGLY suggest, not to use this, even if this add-on is
|
||||
only exposed to your internal network. USE AT YOUR OWN RISK!_
|
||||
|
||||
### Option: `max_old_space_size`
|
||||
|
||||
Sets the max memory size (in MB) of nodeJS V8's old memory section.
|
||||
As memory consumption approaches the limit, V8 will spend more time
|
||||
on garbage collection in an effort to free unused memory.
|
||||
|
||||
<https://nodejs.org/api/cli.html#--max-old-space-sizesize-in-megabytes>
|
||||
|
||||
## Configuration folder
|
||||
|
||||
The addon will store most of its configuration in the `config/node-red` folder,
|
||||
|
|
|
@ -47,6 +47,6 @@ If you are more interested in stable releases of our add-ons:
|
|||
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
|
||||
[patreon]: https://www.patreon.com/frenck
|
||||
[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg
|
||||
[release-shield]: https://img.shields.io/badge/version-v10.4.0-blue.svg
|
||||
[release]: https://github.com/hassio-addons/addon-node-red/tree/v10.4.0
|
||||
[release-shield]: https://img.shields.io/badge/version-v11.0.0-blue.svg
|
||||
[release]: https://github.com/hassio-addons/addon-node-red/tree/v11.0.0
|
||||
[screenshot]: https://github.com/hassio-addons/addon-node-red/raw/main/images/screenshot.png
|
|
@ -62,6 +62,7 @@ schema:
|
|||
keyfile: str
|
||||
leave_front_door_open: bool?
|
||||
log_level: list(trace|debug|info|notice|warning|error|fatal)?
|
||||
max_old_space_size: int?
|
||||
npm_packages:
|
||||
- str
|
||||
safe_mode: bool?
|
||||
|
@ -72,4 +73,4 @@ schema:
|
|||
slug: nodered
|
||||
uart: true
|
||||
url: https://github.com/hassio-addons/addon-node-red
|
||||
version: 10.4.0
|
||||
version: 11.0.0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue