From 9603647fcca71649f495bdb7b2879ddcf48d3a97 Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Tue, 26 Jul 2022 09:41:04 +0100 Subject: [PATCH] Update changelog for 1.1.0 --- CHANGELOG.md | 15 +++++++++++++++ package.json | 16 ++++++++-------- 2 files changed, 23 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5636625..6681bb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +### 1.1.0 + + - Update to flow-parser@1.0.2 + - Do not send event for disabled flows when lintDisabledFlows is false + - Allow a flow-scoped warning to be disabled for that flow Fixes #15 + - Consider method property when detecting duplicate HTTP In paths Fixes #19 + - Ensure rule settings that are cleared get removed from runtime settings Fixes #11 + - Add allowDefaultName options to function/link rules (#34) @knolleary + - Handle junctions in overlapping-nodes rule (#33) @knolleary + - Run eslint on all parts of Function node and handle built-ins (#24) @knolleary + - Support --version option (#25) @k-toumura + - Add option to skip linting disabled flows (#14) @knolleary + - Fix function-eslint rule for precise linting (#18) @k-toumura + - Improve no-loop detection (#13) @knolleary + ### 1.0.2 - Handle rule that is disabled at the top level config diff --git a/package.json b/package.json index ee15ccc..9af94c3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nrlint", - "version": "1.0.2", + "version": "1.1.0", "description": "Linter for Node-RED flows", "license": "Apache-2.0", "repository": { @@ -38,18 +38,18 @@ } }, "devDependencies": { - "chai": "*", - "fs-extra": "^10.0.0", + "chai": "^4.3.6", + "fs-extra": "^10.1.0", "html-minifier": "^4.0.0", - "webpack": "^5.37.1", - "webpack-cli": "^4.7.0" + "webpack": "^5.74.0", + "webpack-cli": "^4.10.0" }, "dependencies": { "@eslint/eslintrc": "^0.4.2", "@node-red/flow-parser": "^1.0.2", - "eslint4b": "7.27.0", - "nopt": "^5.0.0", - "table": "^6.7.1" + "eslint4b": "7.32.0", + "nopt": "^6.0.0", + "table": "^6.8.0" }, "engines": { "node": ">=10.13.0"