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.
Files changed (2) hide show
  1. package/README.md +41 -50
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,30 +1,47 @@
1
- # n8n-version-node
1
+ # n8n-nodes-version
2
2
 
3
- > [!NOTE]
4
- > [n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation platform.
5
- >
6
- > [Icon](https://icons8.com/icon/9sDRgODM0vNc/refresh) is from [icons8.com](https://icons8.com/)
3
+ [![NPM Version](https://img.shields.io/npm/v/n8n-nodes-version.svg)](https://www.npmjs.com/package/n8n-nodes-version)
4
+ [![NPM Downloads](https://img.shields.io/npm/dm/n8n-nodes-version.svg)](https://www.npmjs.com/package/n8n-nodes-version)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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 current installed n8n version
11
- - Fetch latest version from [npm](https://www.npmjs.com/package/n8n)
12
- - Compare versions and determine if current is latest
13
- - Fetch release notes from GitHub
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
- ## Nodes
21
+ ## Installation
17
22
 
18
- ### Version Checker
23
+ ### via n8n UI (Recommended)
19
24
 
20
- Checks the current n8n version and provides various options:
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
- **Options:**
30
+ ### via npm (CLI)
23
31
 
24
- - **Return Latest Version Info** (default: `true`): Fetches latest version from npm and compares with current
25
- - **Fetch Changelog** (default: `false`): Retrieves release notes from GitHub
26
- - **Changelog Version**: Choose between current or latest version
27
- - **Strip Links from Changelog**: Remove markdown links from changelog text
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
- Triggers workflows based on n8n version status using cron scheduling.
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
- ## Development
62
+ **Configuration:**
66
63
 
67
- ```bash
68
- # Watch mode
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
- # Lint
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.1",
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/ganzerhurensohn/n8n-version-node.git"
16
+ "url": "git+https://github.com/jamesmoorwalter/n8n-version-node.git"
17
17
  },
18
18
  "scripts": {
19
19
  "build": "tsc && gulp build:icons",