@n8n-as-code/n8nac 2.2.0 → 2.2.1
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 +6 -0
- package/package.json +1 -1
- package/skills/n8n-architect/SKILL.md +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @n8n-as-code/n8nac
|
|
2
2
|
|
|
3
|
+
## [2.2.1](https://github.com/EtienneLescot/n8n-as-code/compare/@n8n-as-code/n8nac@v2.2.0...@n8n-as-code/n8nac@v2.2.1) (2026-07-24)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* **cli:** bind n8n API keys to environments instead of shared URL targets ([6dd92bc](https://github.com/EtienneLescot/n8n-as-code/commit/6dd92bc29bf8f5b63c60a5f0c1bcb7a136e3ccb9))
|
|
8
|
+
|
|
3
9
|
## [2.2.0](https://github.com/EtienneLescot/n8n-as-code/compare/@n8n-as-code/n8nac@v2.1.4...@n8n-as-code/n8nac@v2.2.0) (2026-06-09)
|
|
4
10
|
|
|
5
11
|
### Features
|
package/package.json
CHANGED
|
@@ -82,6 +82,7 @@ npx --yes n8nac env use <name>
|
|
|
82
82
|
|
|
83
83
|
- Prefer `--api-key-stdin` for API keys.
|
|
84
84
|
- Do not pass secrets inline in shell arguments.
|
|
85
|
+
- `env auth set` binds the key to one environment, so several environments may share a base URL with one key each. Run it once per environment; `apiKeySource` in `env status --json` is `workspace-environment` when the environment uses its own key.
|
|
85
86
|
- Do not ask for host/API key when the user wants a managed local Docker instance.
|
|
86
87
|
- Do not print API keys or credential secret values back to the user.
|
|
87
88
|
- If a command or flag is unfamiliar, run `npx --yes n8nac env --help` or `npx --yes n8nac env <subcommand> --help`.
|