backend-manager 5.2.0 → 5.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 CHANGED
@@ -14,6 +14,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
14
14
  - `Fixed` for any bug fixes.
15
15
  - `Security` in case of vulnerabilities.
16
16
 
17
+ # [5.2.1] - 2026-05-21
18
+
19
+ ### Added
20
+
21
+ - **`BACKEND_MANAGER_WEBHOOK_KEY` in `templates/_.env`.** The `.env` scaffold the setup CLI copies into consumer projects now declares the webhook key alongside `BACKEND_MANAGER_KEY`. Required for the new `/marketing/webhook` + `/marketing/webhook/forward` routes shipped in 5.2.0. Existing consumers should add it to their own `.env` manually.
22
+
17
23
  # [5.2.0] - 2026-05-21
18
24
 
19
25
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backend-manager",
3
- "version": "5.2.0",
3
+ "version": "5.2.1",
4
4
  "description": "Quick tools for developing Firebase functions",
5
5
  "main": "src/manager/index.js",
6
6
  "bin": {
package/templates/_.env CHANGED
@@ -1,6 +1,7 @@
1
1
  # ========== Default Values ==========
2
2
  # Backend Manager
3
3
  BACKEND_MANAGER_KEY=""
4
+ BACKEND_MANAGER_WEBHOOK_KEY=""
4
5
  BACKEND_MANAGER_NAMESPACE=""
5
6
  BACKEND_MANAGER_OPENAI_API_KEY=""
6
7
  BACKEND_MANAGER_ANTHROPIC_API_KEY=""