Skip to content

Commit 3275478

Browse files
Bug fix
1 parent 873de80 commit 3275478

21 files changed

+49
-29
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
typora-root-url: docs/images
33
created: 2017-04-18 16:53:00
4-
updated: 2024-09-01 16:52:21
4+
updated: 2024-09-02 17:52:21
55
---
66

77
# Changelog
@@ -28,10 +28,14 @@ The following are only used for _**developing**_ UIBUILDER:
2828

2929
------------
3030

31-
## [Unreleased](https://github.com/TotallyInformation/node-red-contrib-uibuilder/compare/v7.0.2...main)
31+
## [Unreleased](https://github.com/TotallyInformation/node-red-contrib-uibuilder/compare/v7.0.3...main)
3232

3333
Nothing currently.
3434

35+
## [v7.0.3](https://github.com/TotallyInformation/node-red-contrib-uibuilder/compare/v7.0.3...v7.0.2)
36+
37+
Bug fix only. Issue for new UIBUILDER installations that would get the error `[node-red-contrib-uibuilder/uibuilder] TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received an instance of Array (line:393)`.
38+
3539
## [v7.0.2](https://github.com/TotallyInformation/node-red-contrib-uibuilder/compare/v7.0.2...v7.0.1)
3640

3741
Bug fix only. Minor issue in `nodes/libs/uiblib.js` regarding the new `nanoId` client id creator.

docs/dev/release-steps.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ Make sure version numbers are correct and aligned:
2121

2222
* package.json
2323
* gulpfile.js
24+
25+
Make sure that `gulp watch` is running for these:
26+
2427
* src\front-end-module\ui.js
2528
* src\front-end-module\uibuilder.module.js
2629

@@ -32,6 +35,7 @@ Make sure version numbers are correct and aligned:
3235

3336
## 04) Do a final commit & push to the dev branch
3437

38+
* Commit and push
3539
* Check DeepScan and Snyk results and resolve any issues.
3640

3741
## 05) Merge GitHub dev branch to main

front-end/ui.esm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ var require_ui = __commonJS({
1919
*/
2020
constructor(win, extLog, jsonHighlight) {
2121
//#region --- Class variables ---
22-
__publicField(this, "version", "7.0.2-src");
22+
__publicField(this, "version", "7.0.3-src");
2323
// List of tags and attributes not in sanitise defaults but allowed in uibuilder.
2424
__publicField(this, "sanitiseExtraTags", ["uib-var"]);
2525
__publicField(this, "sanitiseExtraAttribs", ["variable", "report", "undefined"]);

front-end/ui.esm.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front-end/ui.esm.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front-end/ui.iife.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*/
2121
constructor(win, extLog, jsonHighlight) {
2222
//#region --- Class variables ---
23-
__publicField(this, "version", "7.0.2-src");
23+
__publicField(this, "version", "7.0.3-src");
2424
// List of tags and attributes not in sanitise defaults but allowed in uibuilder.
2525
__publicField(this, "sanitiseExtraTags", ["uib-var"]);
2626
__publicField(this, "sanitiseExtraAttribs", ["variable", "report", "undefined"]);

front-end/ui.iife.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front-end/ui.iife.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front-end/uibuilder.esm.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ var require_ui = __commonJS({
5858
*/
5959
constructor(win, extLog, jsonHighlight) {
6060
//#region --- Class variables ---
61-
__publicField(this, "version", "7.0.2-src");
61+
__publicField(this, "version", "7.0.3-src");
6262
// List of tags and attributes not in sanitise defaults but allowed in uibuilder.
6363
__publicField(this, "sanitiseExtraTags", ["uib-var"]);
6464
__publicField(this, "sanitiseExtraAttribs", ["variable", "report", "undefined"]);
@@ -5057,7 +5057,7 @@ __publicField(_ApplyTemplate, "props", ["template-id", "once"]);
50575057
var ApplyTemplate = _ApplyTemplate;
50585058

50595059
// src/front-end-module/uibuilder.module.js
5060-
var version = "7.0.2-esm";
5060+
var version = "7.0.3-esm";
50615061
var isMinified = !/param/.test(function(param) {
50625062
});
50635063
function log() {

front-end/uibuilder.esm.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)