@yroshcha/node-red-contrib-redis-full 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -1
- package/README.md +2 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project are documented in this file.
|
|
4
4
|
|
|
5
|
+
## 1.0.2 — 2026-08-10
|
|
6
|
+
|
|
7
|
+
Documentation-only patch release.
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Removed internal roadmap content from the public README.
|
|
12
|
+
|
|
5
13
|
## 1.0.0 — 2026-08-10
|
|
6
14
|
|
|
7
15
|
First stable public release.
|
|
@@ -25,4 +33,3 @@ First stable public release.
|
|
|
25
33
|
- Node.js 18 or later.
|
|
26
34
|
- Node-RED 3.x, 4.x, and 5.x.
|
|
27
35
|
- Redis 6.2 or later is recommended for `XAUTOCLAIM`; the remaining functionality supports Redis versions compatible with ioredis 5.
|
|
28
|
-
|
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ cd ~/.node-red
|
|
|
36
36
|
npm install @yroshcha/node-red-contrib-redis-full
|
|
37
37
|
```
|
|
38
38
|
|
|
39
|
-
For a local archive, use `npm install /path/to/yroshcha-node-red-contrib-redis-full
|
|
39
|
+
For a local archive, use `npm install /path/to/yroshcha-node-red-contrib-redis-full-<version>.tgz`.
|
|
40
40
|
|
|
41
41
|
## Connection model
|
|
42
42
|
|
|
@@ -45,7 +45,7 @@ For a local archive, use `npm install /path/to/yroshcha-node-red-contrib-redis-f
|
|
|
45
45
|
|
|
46
46
|
## Release status
|
|
47
47
|
|
|
48
|
-
**`1.0.
|
|
48
|
+
**`1.0.2` is the current stable release.** See [CHANGELOG.md](CHANGELOG.md) for release notes and compatibility information.
|
|
49
49
|
|
|
50
50
|
## Production profile
|
|
51
51
|
|
|
@@ -149,8 +149,3 @@ Add one `redis streams API` node and enable **Enable HTTP API**. In a private ne
|
|
|
149
149
|
- Sentinel: the config node supports only the `cluster` option (Redis Cluster through `Redis.Cluster`), not Sentinel-specific configuration.
|
|
150
150
|
- WATCH-based optimistic locking: `redis multi` is not a replacement for that pattern.
|
|
151
151
|
- Direct `prom-client` metrics: PEL alerts use `node.warn`; use `redis cmd: XPENDING` or `XINFO GROUPS` in a dedicated flow for Prometheus/Grafana collection.
|
|
152
|
-
|
|
153
|
-
## Next improvements
|
|
154
|
-
|
|
155
|
-
- Add Node-RED runtime/integration coverage with `node-red-node-test-helper` and testcontainers.
|
|
156
|
-
- Add Sentinel support to the config node.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yroshcha/node-red-contrib-redis-full",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Production-oriented Redis palette for Node-RED: generic commands, Pub/Sub, scans, transactions, and Redis Streams consumer groups.",
|
|
5
5
|
"keywords": ["node-red", "redis", "redis-streams", "pubsub", "xadd", "xreadgroup", "ioredis"],
|
|
6
6
|
"license": "MIT",
|