Bump for 3.1.6 release

This commit is contained in:
Nick O'Leary 2024-03-01 10:50:06 +00:00
parent 058c97138a
commit fb50e2772a
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
9 changed files with 35 additions and 17 deletions

View File

@ -1,3 +1,21 @@
#### 3.1.6: Maintenance Release
Editor
- Do not flag env var in num typedInput as error (#4582) @knolleary
- Fix example flow name in import dialog (#4578) @kazuhitoyokoi
- Fix missing node icons in workspace (#4570) @knolleary
Runtime
- Handle undefined env vars (#4581) @knolleary
- fix: Removed offending MD5 crypto hash and replaced with SHA1 and SHA256 … (#4568) @JaysonHurst
- chore: remove never use import code (#4580) @giscafer
Nodes
- fix: template node zh-CN translation (#4575) @giscafer
#### 3.1.5: Maintenance Release
Runtime

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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