n8n-nodes-version 0.2.1 → 0.2.3
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/README.md +41 -50
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,30 +1,47 @@
|
|
|
1
|
-
# n8n-version
|
|
1
|
+
# n8n-nodes-version
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/n8n-nodes-version)
|
|
4
|
+
[](https://www.npmjs.com/package/n8n-nodes-version)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
|
+
|
|
7
|
+
n8n nodes to check the current installed version, monitor for updates, and fetch changelogs directly from GitHub.
|
|
8
|
+
|
|
9
|
+
**Note:** [n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation platform.
|
|
10
|
+
[Icon](https://icons8.com/icon/9sDRgODM0vNc/refresh) provided by [icons8.com](https://icons8.com/)
|
|
11
|
+
|
|
12
|
+
---
|
|
7
13
|
|
|
8
14
|
## Features
|
|
9
15
|
|
|
10
|
-
- Check
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
- Trigger workflows based on version status
|
|
16
|
+
- **Check Current Version**: Retrieve the installed version of your n8n instance.
|
|
17
|
+
- **Update Monitoring**: Compare your version with the latest release on [npm](https://www.npmjs.com/package/n8n).
|
|
18
|
+
- **Changelog Retrieval**: Fetch detailed release notes directly from the official GitHub repository.
|
|
19
|
+
- **Automation Triggers**: Start workflows automatically when updates are available.
|
|
15
20
|
|
|
16
|
-
##
|
|
21
|
+
## Installation
|
|
17
22
|
|
|
18
|
-
###
|
|
23
|
+
### via n8n UI (Recommended)
|
|
19
24
|
|
|
20
|
-
|
|
25
|
+
1. Go to **Settings > Community Nodes**.
|
|
26
|
+
2. Click **Install a community node**.
|
|
27
|
+
3. Enter `n8n-nodes-version` in the text field.
|
|
28
|
+
4. Agree to the risks and click **Install**.
|
|
21
29
|
|
|
22
|
-
|
|
30
|
+
### via npm (CLI)
|
|
23
31
|
|
|
24
|
-
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
32
|
+
For Docker-based or manual installations, run the following command in your n8n root directory:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
npm install n8n-nodes-version
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## Nodes
|
|
41
|
+
|
|
42
|
+
### Version Checker
|
|
43
|
+
|
|
44
|
+
Retrieves version information and optionally fetches changelogs.
|
|
28
45
|
|
|
29
46
|
**Output Example:**
|
|
30
47
|
|
|
@@ -40,41 +57,15 @@ Checks the current n8n version and provides various options:
|
|
|
40
57
|
|
|
41
58
|
### Version Trigger
|
|
42
59
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
**Properties:**
|
|
46
|
-
|
|
47
|
-
- **Cron Expression**: Schedule for version checks (e.g., `0 * * * *` for hourly)
|
|
48
|
-
- **Trigger Condition**:
|
|
49
|
-
- **Update Available**: Trigger when new version exists
|
|
50
|
-
- **On Latest Version**: Trigger when already up-to-date
|
|
51
|
-
- **Always**: Trigger on every check
|
|
52
|
-
|
|
53
|
-
**Use Cases:**
|
|
54
|
-
|
|
55
|
-
- Automated update notifications
|
|
56
|
-
- Monitoring version status
|
|
57
|
-
- Scheduled version audits
|
|
58
|
-
|
|
59
|
-
## Installation
|
|
60
|
-
|
|
61
|
-
```bash
|
|
62
|
-
npm install n8n-nodes-version
|
|
63
|
-
```
|
|
60
|
+
A schedule-based trigger that fires workflows based on version status.
|
|
64
61
|
|
|
65
|
-
|
|
62
|
+
**Configuration:**
|
|
66
63
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
npm run dev
|
|
70
|
-
|
|
71
|
-
# Build
|
|
72
|
-
npm run build
|
|
64
|
+
- **Cron Expression**: Define how often to check (e.g., `0 * * * *`).
|
|
65
|
+
- **Trigger Condition**: Choose between `Update Available`, `On Latest Version`, or `Always`.
|
|
73
66
|
|
|
74
|
-
|
|
75
|
-
npm run lint
|
|
76
|
-
```
|
|
67
|
+
---
|
|
77
68
|
|
|
78
69
|
## License
|
|
79
70
|
|
|
80
|
-
MIT
|
|
71
|
+
[MIT](https://opensource.org/licenses/MIT)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-version",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "n8n nodes to check version, monitor updates, and fetch changelogs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package"
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
},
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|
|
16
|
-
"url": "git+https://github.com/
|
|
16
|
+
"url": "git+https://github.com/jamesmoorwalter/n8n-version-node.git"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
19
|
"build": "tsc && gulp build:icons",
|