From 459a913f9d1a26143fcfe7786b8536c2d158f96e Mon Sep 17 00:00:00 2001 From: Julian Knight <1591850+TotallyInformation@users.noreply.github.com> Date: Fri, 6 Sep 2024 13:23:25 +0100 Subject: [PATCH] updates --- CHANGELOG.md | 6 +++++- docs/client-docs/custom-components.md | 2 +- docs/dev/release-steps.md | 11 ++++++++++- docs/roadmap/readme.md | 2 +- docs/security/authenticated-client-properties.md | 2 +- 5 files changed, 18 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 809fc4f6..ca982e4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,10 +28,14 @@ The following are only used for _**developing**_ UIBUILDER: ------------ -## [Unreleased](https://github.com/TotallyInformation/node-red-contrib-uibuilder/compare/v7.0.3...main) +## [Unreleased](https://github.com/TotallyInformation/node-red-contrib-uibuilder/compare/v7.0.4...main) Nothing currently. +## [v7.0.4](https://github.com/TotallyInformation/node-red-contrib-uibuilder/compare/v7.0.4...v7.0.3) + +Bug fix only. Missing originator on messages from clients. + ## [v7.0.3](https://github.com/TotallyInformation/node-red-contrib-uibuilder/compare/v7.0.3...v7.0.2) 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)`. diff --git a/docs/client-docs/custom-components.md b/docs/client-docs/custom-components.md index 5e8317a7..517f5f03 100644 --- a/docs/client-docs/custom-components.md +++ b/docs/client-docs/custom-components.md @@ -3,7 +3,7 @@ title: Custom web components description: | Web components built into the UIBUILDER client and information about external web components. created: 2023-10-08 13:44:56 -updated: 2024-08-25 15:31:21 +updated: 2024-09-06 12:39:40 --- The following custom web components are built into UIBUILDER: diff --git a/docs/dev/release-steps.md b/docs/dev/release-steps.md index dd47c458..fd5023f0 100644 --- a/docs/dev/release-steps.md +++ b/docs/dev/release-steps.md @@ -3,7 +3,7 @@ title: How to release a new version of UIBUILDER description: | Several steps are needed, in the right order, to be able to release a new version. created: 2024-09-01 11:34:53 -updated: 2024-09-01 15:44:31 +updated: 2024-09-06 13:22:03 --- This assumes all main updates have been done for this release and that local testing is complete. @@ -81,3 +81,12 @@ Remember to switch branches to the version branch in VS Code before continuing. * Tag: node-red-contrib-uibuilder. * Title: `:sparkles: UIBUILDER New Release v6.8.2 - something about the release` OR, for major releases `:star2: UIBUILDER Major Release v7.0.0 - it’s here at last!` * Include intro and version changelog. + +## 10) If releasing a bug-fix to main + +After publishing: + +```bash +git switch v7.0.0 +git merge main +``` diff --git a/docs/roadmap/readme.md b/docs/roadmap/readme.md index 5cb3325d..fd2c1417 100644 --- a/docs/roadmap/readme.md +++ b/docs/roadmap/readme.md @@ -3,7 +3,7 @@ title: uibuilder Roadmap description: | This page outlines the future direction of uibuilder. Including specific things that will almost certainly happen as well as more speculative ideas. created: 2022-02-01 11:15:27 -updated: 2024-09-01 13:48:32 +updated: 2024-09-06 12:39:40 --- Is there something in this list you would like to see prioritised? Is there something you could help with? Please get in touch via the [Node-RED forum](https://discourse.nodered.org/). Alternatively, you can start a [discussion on GitHub](https://github.com/TotallyInformation/node-red-contrib-uibuilder/discussions) or [raise a GitHub issue](https://github.com/TotallyInformation/node-red-contrib-uibuilder/issues). Please note that I no longer have the time to monitor the #uibuilder channel in the Node-RED slack. diff --git a/docs/security/authenticated-client-properties.md b/docs/security/authenticated-client-properties.md index 4b9b2bea..d758bc8b 100644 --- a/docs/security/authenticated-client-properties.md +++ b/docs/security/authenticated-client-properties.md @@ -3,7 +3,7 @@ title: Standardised msg._client properties for authenticated clients description: | msg._client is a standardised message property added to both UIBUILDER and FlowFuse's Dashboard 2.0 outputs when an authenticated client is detected. Authentication happens using an external tool such as FlowFuse authentication, Cloudflare access, Authelia, Authentik, Keycloak, etc. created: 2024-08-04 12:49:35 -updated: 2024-08-06 13:37:26 +updated: 2024-09-06 12:39:40 --- > [!NOTE]