@n8n-as-code/n8nac 2.0.0-next.83 → 2.0.0
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 +30 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @n8n-as-code/n8nac
|
|
2
2
|
|
|
3
|
+
## [2.0.0](https://github.com/EtienneLescot/n8n-as-code/compare/@n8n-as-code/n8nac@v2026.5.0...@n8n-as-code/n8nac@v2.0.0) (2026-05-06)
|
|
4
|
+
|
|
5
|
+
### ⚠ BREAKING CHANGES
|
|
6
|
+
|
|
7
|
+
* migrate runtime ownership to n8n-manager ([8705ab4](https://github.com/EtienneLescot/n8n-as-code/commit/8705ab44abe4c73315d6985523c05a929cae3a94))
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **telemetry:** add privacy-first product analytics ([7afb6e4](https://github.com/EtienneLescot/n8n-as-code/commit/7afb6e4500b8ac27a15f80636f48116a56480f7d))
|
|
12
|
+
* **skills:** use npx for n8n-manager commands in AI context and docs ([51e56b8](https://github.com/EtienneLescot/n8n-as-code/commit/51e56b8d7d57f28efa9ac14680ad474f04d32d05))
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **workbench:** use public yagr runtime packages ([6a94670](https://github.com/EtienneLescot/n8n-as-code/commit/6a94670bf6c0ecdaa02fd977e515d1d58d894a14))
|
|
17
|
+
* **telemetry:** refine active usage semantics ([4ffe544](https://github.com/EtienneLescot/n8n-as-code/commit/4ffe544583c2e784a066417edd8a0fceaa3dc5df))
|
|
18
|
+
* **skills:** align prerelease adapter commands ([9d1c0a4](https://github.com/EtienneLescot/n8n-as-code/commit/9d1c0a4ba54c9de1a031dc4a937dc64295260341))
|
|
19
|
+
* **n8n-as-code:** improve cli robustness and update package scope ([ca20c7c](https://github.com/EtienneLescot/n8n-as-code/commit/ca20c7c90c65d8efee14c2ca505e2aae06c8b9a0))
|
|
20
|
+
* **cli:** decouple runtime management from workspace management ([574bb05](https://github.com/EtienneLescot/n8n-as-code/commit/574bb0592e96411326e69a1a188b010c39169269))
|
|
21
|
+
|
|
22
|
+
### Documentation
|
|
23
|
+
|
|
24
|
+
* **skills:** update n8n command examples to use @next tag ([760c227](https://github.com/EtienneLescot/n8n-as-code/commit/760c227b91ab138d59e6492101427db0631c0acb))
|
|
25
|
+
* **skills:** remove @next suffix from n8n command examples ([5506838](https://github.com/EtienneLescot/n8n-as-code/commit/550683898bff44a64146d8a2957dd0dabc2095b0))
|
|
26
|
+
|
|
27
|
+
### Dependencies
|
|
28
|
+
|
|
29
|
+
* The following workspace dependencies were updated
|
|
30
|
+
* @n8n-as-code/telemetry bumped from 0.1.0 to 2.0.0
|
|
31
|
+
* @n8n-as-code/workflow-core bumped from 0.1.0 to 2.0.0
|
|
32
|
+
|
|
3
33
|
## [2026.5.0](https://github.com/EtienneLescot/n8n-as-code/compare/@n8n-as-code/n8nac@v2026.4.1...@n8n-as-code/n8nac@v2026.5.0) (2026-03-31)
|
|
4
34
|
|
|
5
35
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n8n-as-code/n8nac",
|
|
3
|
-
"version": "2.0.0
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "OpenClaw plugin for n8n-as-code — create and manage n8n workflows from OpenClaw",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"typecheck": "tsc --noEmit"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@n8n-as-code/telemetry": "2.0.0
|
|
28
|
-
"@n8n-as-code/workflow-core": "2.0.0
|
|
27
|
+
"@n8n-as-code/telemetry": "2.0.0",
|
|
28
|
+
"@n8n-as-code/workflow-core": "2.0.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^22.0.0",
|