1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Bump for 1.2.9

This commit is contained in:
Nick O'Leary 2021-02-03 18:04:37 +00:00
parent 1633a2ff70
commit fad8dcd304
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
9 changed files with 28 additions and 17 deletions

View File

@ -1,3 +1,14 @@
### 1.2.9: Maintenance Release
Editor
- Sanitize node type names when displaying in notifications
- Sanitize branch name before displaying in notification message
Runtime
- Handle more valid language codes when validating lang params Fixes #2856
### 1.2.8: Maintenance Release
Editor

View File

@ -1,6 +1,6 @@
{
"name": "node-red",
"version": "1.2.8",
"version": "1.2.9",
"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": "1.2.8",
"version": "1.2.9",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,8 +16,8 @@
}
],
"dependencies": {
"@node-red/util": "1.2.8",
"@node-red/editor-client": "1.2.8",
"@node-red/util": "1.2.9",
"@node-red/editor-client": "1.2.9",
"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": "1.2.8",
"version": "1.2.9",
"license": "Apache-2.0",
"repository": {
"type": "git",

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/registry",
"version": "1.2.8",
"version": "1.2.9",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,7 +16,7 @@
}
],
"dependencies": {
"@node-red/util": "1.2.8",
"@node-red/util": "1.2.9",
"semver": "6.3.0",
"tar": "6.0.5",
"uglify-js": "3.12.4",

View File

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

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "node-red",
"version": "1.2.8",
"version": "1.2.9",
"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": "1.2.8",
"@node-red/runtime": "1.2.8",
"@node-red/util": "1.2.8",
"@node-red/nodes": "1.2.8",
"@node-red/editor-api": "1.2.9",
"@node-red/runtime": "1.2.9",
"@node-red/util": "1.2.9",
"@node-red/nodes": "1.2.9",
"basic-auth": "2.0.1",
"bcryptjs": "2.4.3",
"express": "4.17.1",