@checkstack/healthcheck-jenkins-backend 0.3.6 → 0.3.7

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,27 @@
1
1
  # @checkstack/healthcheck-jenkins-backend
2
2
 
3
+ ## 0.3.7
4
+
5
+ ### Patch Changes
6
+
7
+ - 54a5f80: ### Health Check Editor Redesign — IDE-Style Experience
8
+
9
+ Replaces the modal-based health check editor with a full-page, IDE-style experience:
10
+
11
+ - **Strategy Picker Page**: New `/config/create` page with categorized strategy discovery, search filtering, and grouped card grid layout
12
+ - **IDE Editor Page**: New `/config/:configId/edit` page with a split-view layout — explorer tree on the left, editor panel on the right
13
+ - **Strategy Categories**: Introduces `StrategyCategory` enum with 16 categories (Networking, Database, Infrastructure, etc.) — all 13 strategy plugins now declare their category
14
+ - **New RPC Endpoint**: Added `getConfiguration` (singular by ID) for efficient single-resource fetching on the edit page
15
+ - **Explorer Tree**: Left-hand navigation with General, Check Items (collectors), and Access Control sections, with real-time validation indicators
16
+ - **Validation Status Bar**: Bottom bar showing aggregated validation issues with clickable navigation
17
+ - **Unsaved Changes Guard**: Browser `beforeunload` protection when the form is dirty
18
+ - **Responsive Design**: Split-view on desktop, stacked layout on mobile
19
+ - **Deleted**: Legacy `HealthCheckEditor.tsx` modal component
20
+
21
+ - Updated dependencies [54a5f80]
22
+ - @checkstack/healthcheck-common@0.10.0
23
+ - @checkstack/backend-api@0.11.0
24
+
3
25
  ## 0.3.6
4
26
 
5
27
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/healthcheck-jenkins-backend",
3
- "version": "0.3.6",
3
+ "version": "0.3.7",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
6
  "checkstack": {
package/src/strategy.ts CHANGED
@@ -20,6 +20,7 @@ import {
20
20
  healthResultString,
21
21
  healthResultBoolean,
22
22
  healthResultSchema,
23
+ StrategyCategory,
23
24
  } from "@checkstack/healthcheck-common";
24
25
  import type {
25
26
  JenkinsTransportClient,
@@ -104,6 +105,7 @@ export class JenkinsHealthCheckStrategy implements HealthCheckStrategy<
104
105
  id = "jenkins";
105
106
  displayName = "Jenkins Health Check";
106
107
  description = "Monitor Jenkins CI/CD server health and job status";
108
+ category = StrategyCategory.INTEGRATION;
107
109
 
108
110
  config: Versioned<JenkinsConfig> = new Versioned({
109
111
  version: 1,