Bump for 2.1.2

This commit is contained in:
Nick O'Leary 2021-10-25 09:38:32 +01:00
parent 61d85b49e6
commit 2ffea143e7
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
9 changed files with 33 additions and 17 deletions

View File

@ -1,5 +1,21 @@
#### 2.1.1: Maintenance Release
Runtime
- node-red-pi: Remove bash dependency (#3216) @a16bitsysop
Editor
- Improved regex for markdown renderer (#3213) @GerwinvBeek
- Fix TypedInput initialisation (#3220) @knolleary
Nodes
- MQTT: fix datatype in node config not used. fixes #3215 (#3219) @Steve-Mcl
#### 2.1.1: Maintenance Release
Editor
- Ensure tourGuide popover doesn't fall offscreen (#3212) @knolleary

View File

@ -1,6 +1,6 @@
{
"name": "node-red",
"version": "2.1.1",
"version": "2.1.2",
"description": "Low-code programming for event-driven applications",
"homepage": "http://nodered.org",
"license": "Apache-2.0",

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/editor-api",
"version": "2.1.1",
"version": "2.1.2",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,8 +16,8 @@
}
],
"dependencies": {
"@node-red/util": "2.1.1",
"@node-red/editor-client": "2.1.1",
"@node-red/util": "2.1.2",
"@node-red/editor-client": "2.1.2",
"bcryptjs": "2.4.3",
"body-parser": "1.19.0",
"clone": "2.1.2",

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/editor-client",
"version": "2.1.1",
"version": "2.1.2",
"license": "Apache-2.0",
"repository": {
"type": "git",

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/nodes",
"version": "2.1.1",
"version": "2.1.2",
"license": "Apache-2.0",
"repository": {
"type": "git",

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/registry",
"version": "2.1.1",
"version": "2.1.2",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,7 +16,7 @@
}
],
"dependencies": {
"@node-red/util": "2.1.1",
"@node-red/util": "2.1.2",
"clone": "2.1.2",
"fs-extra": "10.0.0",
"semver": "7.3.5",

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/runtime",
"version": "2.1.1",
"version": "2.1.2",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,8 +16,8 @@
}
],
"dependencies": {
"@node-red/registry": "2.1.1",
"@node-red/util": "2.1.1",
"@node-red/registry": "2.1.2",
"@node-red/util": "2.1.2",
"async-mutex": "0.3.2",
"clone": "2.1.2",
"express": "4.17.1",

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/util",
"version": "2.1.1",
"version": "2.1.2",
"license": "Apache-2.0",
"repository": {
"type": "git",

View File

@ -1,6 +1,6 @@
{
"name": "node-red",
"version": "2.1.1",
"version": "2.1.2",
"description": "Low-code programming for event-driven applications",
"homepage": "http://nodered.org",
"license": "Apache-2.0",
@ -31,10 +31,10 @@
"flow"
],
"dependencies": {
"@node-red/editor-api": "2.1.1",
"@node-red/runtime": "2.1.1",
"@node-red/util": "2.1.1",
"@node-red/nodes": "2.1.1",
"@node-red/editor-api": "2.1.2",
"@node-red/runtime": "2.1.2",
"@node-red/util": "2.1.2",
"@node-red/nodes": "2.1.2",
"basic-auth": "2.0.1",
"bcryptjs": "2.4.3",
"express": "4.17.1",