@checkstack/notification-discord-backend 0.1.20 → 0.1.22

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
@@ -1,5 +1,32 @@
1
1
  # @checkstack/notification-discord-backend
2
2
 
3
+ ## 0.1.22
4
+
5
+ ### Patch Changes
6
+
7
+ - @checkstack/backend-api@0.13.1
8
+ - @checkstack/notification-backend@0.2.1
9
+
10
+ ## 0.1.21
11
+
12
+ ### Patch Changes
13
+
14
+ - 8d1ef12: ## Downstream consumer bumps for the anomaly detection + cache system rollout
15
+
16
+ Packages on this branch were updated as part of the anomaly detection feature (schema annotations on result fields, plugin metadata for the modular cache system) but were not listed in the upstream changesets.
17
+
18
+ - **`@checkstack/healthcheck-common`** (minor) — new RPC contract additions and schema changes supporting per-field anomaly metadata.
19
+ - **`@checkstack/cache-memory-common`** (minor) — new package providing access rules + plugin metadata for the in-memory cache backend.
20
+ - **healthcheck plugins** (patch) — adopt the new `x-anomaly-*` schema annotations on their result fields so anomaly detection works automatically against their checks. No public API changes.
21
+ - **integration / notification / auth / queue / collector plugins** (patch) — minor internal updates as consumers of upstream API changes (cache plugin registry, schema additions). No public API changes.
22
+
23
+ - Updated dependencies [8d1ef12]
24
+ - Updated dependencies [8d1ef12]
25
+ - Updated dependencies [8d1ef12]
26
+ - @checkstack/common@0.7.0
27
+ - @checkstack/notification-backend@0.2.0
28
+ - @checkstack/backend-api@0.13.0
29
+
3
30
  ## 0.1.20
4
31
 
5
32
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/notification-discord-backend",
3
- "version": "0.1.20",
3
+ "version": "0.1.22",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
6
  "checkstack": {
@@ -16,9 +16,9 @@
16
16
  "test": "bun test"
17
17
  },
18
18
  "dependencies": {
19
- "@checkstack/backend-api": "0.12.0",
20
- "@checkstack/common": "0.6.5",
21
- "@checkstack/notification-backend": "0.1.22",
19
+ "@checkstack/backend-api": "0.13.0",
20
+ "@checkstack/common": "0.7.0",
21
+ "@checkstack/notification-backend": "0.2.0",
22
22
  "zod": "^4.2.1"
23
23
  },
24
24
  "devDependencies": {
package/src/index.ts CHANGED
@@ -197,8 +197,7 @@ const discordStrategy: NotificationStrategy<DiscordConfig, DiscordUserConfig> =
197
197
  success: true,
198
198
  };
199
199
  } catch (error) {
200
- const message =
201
- extractErrorMessage(error, "Unknown Discord API error");
200
+ const message = extractErrorMessage(error, "Unknown Discord API error");
202
201
  logger.error("Discord notification error", { error: message });
203
202
  return {
204
203
  success: false,