mirror of
https://github.com/hassio-addons/repository-edge.git
synced 2025-05-05 19:51:22 +00:00
⬆️ Updating add-on Node-RED to f22ed09
This commit is contained in:
parent
7bdb63508e
commit
31b5ba3d28
5 changed files with 16 additions and 6 deletions
|
@ -890,10 +890,10 @@ SOFTWARE.
|
||||||
[nginxproxymanager-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
[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-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
|
||||||
[nginxproxymanager-i386-shield]: https://img.shields.io/badge/i386-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/a9ce207
|
[addon-node-red]: https://github.com/hassio-addons/addon-node-red/tree/f22ed09
|
||||||
[addon-doc-node-red]: https://github.com/hassio-addons/addon-node-red/blob/a9ce207/README.md
|
[addon-doc-node-red]: https://github.com/hassio-addons/addon-node-red/blob/f22ed09/README.md
|
||||||
[node-red-issue]: https://github.com/hassio-addons/addon-node-red/issues
|
[node-red-issue]: https://github.com/hassio-addons/addon-node-red/issues
|
||||||
[node-red-version-shield]: https://img.shields.io/badge/version-a9ce207-blue.svg
|
[node-red-version-shield]: https://img.shields.io/badge/version-f22ed09-blue.svg
|
||||||
[node-red-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.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-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
|
||||||
[node-red-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
[node-red-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
# Changelog since v10.4.0
|
# Changelog since v10.4.0
|
||||||
|
- ✨ Add support for setting max_old_space_size (#1275)
|
||||||
- Bump node-red-contrib-home-assistant-websocket from 0.41.3 to 0.42.0 in /node-red (#1271)
|
- Bump node-red-contrib-home-assistant-websocket from 0.41.3 to 0.42.0 in /node-red (#1271)
|
||||||
|
|
||||||
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
||||||
|
|
|
@ -177,6 +177,14 @@ username and password empty.
|
||||||
**Note**: _We STRONGLY suggest, not to use this, even if this add-on is
|
**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!_
|
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
|
## Configuration folder
|
||||||
|
|
||||||
The addon will store most of its configuration in the `config/node-red` folder,
|
The addon will store most of its configuration in the `config/node-red` folder,
|
||||||
|
|
|
@ -50,6 +50,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-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
|
||||||
[patreon]: https://www.patreon.com/frenck
|
[patreon]: https://www.patreon.com/frenck
|
||||||
[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg
|
[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg
|
||||||
[release-shield]: https://img.shields.io/badge/version-a9ce207-blue.svg
|
[release-shield]: https://img.shields.io/badge/version-f22ed09-blue.svg
|
||||||
[release]: https://github.com/hassio-addons/addon-node-red/tree/a9ce207
|
[release]: https://github.com/hassio-addons/addon-node-red/tree/f22ed09
|
||||||
[screenshot]: https://github.com/hassio-addons/addon-node-red/raw/main/images/screenshot.png
|
[screenshot]: https://github.com/hassio-addons/addon-node-red/raw/main/images/screenshot.png
|
|
@ -62,6 +62,7 @@ schema:
|
||||||
keyfile: str
|
keyfile: str
|
||||||
leave_front_door_open: bool?
|
leave_front_door_open: bool?
|
||||||
log_level: list(trace|debug|info|notice|warning|error|fatal)?
|
log_level: list(trace|debug|info|notice|warning|error|fatal)?
|
||||||
|
max_old_space_size: int?
|
||||||
npm_packages:
|
npm_packages:
|
||||||
- str
|
- str
|
||||||
safe_mode: bool?
|
safe_mode: bool?
|
||||||
|
@ -72,4 +73,4 @@ schema:
|
||||||
slug: nodered
|
slug: nodered
|
||||||
uart: true
|
uart: true
|
||||||
url: https://github.com/hassio-addons/addon-node-red
|
url: https://github.com/hassio-addons/addon-node-red
|
||||||
version: a9ce207
|
version: f22ed09
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue