@checkstack/slo-frontend 0.2.7 → 0.2.9

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,34 @@
1
1
  # @checkstack/slo-frontend
2
2
 
3
+ ## 0.2.9
4
+
5
+ ### Patch Changes
6
+
7
+ - @checkstack/dashboard-frontend@0.3.35
8
+
9
+ ## 0.2.8
10
+
11
+ ### Patch Changes
12
+
13
+ - 86bab6a: ### GitOps: Fix authentication token handling
14
+
15
+ - Made `authToken` optional in `ReconcileProviderParams` and `ScraperOptions` to support unauthenticated access to public repositories
16
+ - GitHub and GitLab scrapers now conditionally set authentication headers only when a token is provided
17
+ - Sync worker now decrypts the encrypted `authToken` from the database before passing it to scrapers, fixing authentication failures caused by sending encrypted values in HTTP headers
18
+
19
+ ### SLO: Fix premature Nines Club achievement unlock
20
+
21
+ - The "Nines Club" achievement now requires both ≥99.99% availability **and** a 365-day compliance streak, preventing immediate unlock on newly created SLOs with 100% default availability
22
+
23
+ ### SLO: Align frontend achievement descriptions with backend criteria
24
+
25
+ - Fixed mismatched descriptions for Iron Uptime (7-day, not 30), Diamond Uptime (30-day, not 90), Clean Sheet (rolling window, not quarter), Full Coverage (3+ SLOs, not all systems in group), and Nines Club (99.99%)
26
+
27
+ ### SLO: Enrich milestones with system names
28
+
29
+ - The `getRecentMilestones` endpoint now resolves human-readable system names via the Catalog API instead of returning raw system IDs
30
+ - @checkstack/dashboard-frontend@0.3.34
31
+
3
32
  ## 0.2.7
4
33
 
5
34
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/slo-frontend",
3
- "version": "0.2.7",
3
+ "version": "0.2.9",
4
4
  "type": "module",
5
5
  "main": "src/index.tsx",
6
6
  "checkstack": {
@@ -14,13 +14,13 @@
14
14
  "dependencies": {
15
15
  "@checkstack/catalog-common": "1.3.1",
16
16
  "@checkstack/common": "0.6.5",
17
- "@checkstack/dashboard-frontend": "0.3.32",
17
+ "@checkstack/dashboard-frontend": "0.3.34",
18
18
  "@checkstack/frontend-api": "0.3.9",
19
19
  "@checkstack/signal-frontend": "0.0.15",
20
20
  "@checkstack/dependency-common": "0.2.1",
21
21
  "@checkstack/healthcheck-common": "0.11.0",
22
22
  "@checkstack/slo-common": "0.2.0",
23
- "@checkstack/ui": "1.3.5",
23
+ "@checkstack/ui": "1.3.6",
24
24
  "date-fns": "^4.1.0",
25
25
  "lucide-react": "^0.344.0",
26
26
  "react": "^18.2.0",
@@ -19,12 +19,12 @@ const ACHIEVEMENT_META: Record<
19
19
  iron_uptime: {
20
20
  label: "Iron Uptime",
21
21
  emoji: "🛡️",
22
- description: "30-day compliance streak",
22
+ description: "7-day compliance streak",
23
23
  },
24
24
  diamond_uptime: {
25
25
  label: "Diamond Uptime",
26
26
  emoji: "💎",
27
- description: "90-day compliance streak",
27
+ description: "30-day compliance streak",
28
28
  },
29
29
  budget_miser: {
30
30
  label: "Budget Miser",
@@ -34,12 +34,12 @@ const ACHIEVEMENT_META: Record<
34
34
  clean_sheet: {
35
35
  label: "Clean Sheet",
36
36
  emoji: "✨",
37
- description: "Zero breaches in a quarter",
37
+ description: "Zero downtime in the rolling window",
38
38
  },
39
39
  nines_club: {
40
40
  label: "Nines Club",
41
41
  emoji: "🏆",
42
- description: "99.99% over 365 days",
42
+ description: "99.99% availability over 365 days",
43
43
  },
44
44
  cascade_breaker: {
45
45
  label: "Cascade Breaker",
@@ -49,7 +49,7 @@ const ACHIEVEMENT_META: Record<
49
49
  full_coverage: {
50
50
  label: "Full Coverage",
51
51
  emoji: "🔒",
52
- description: "All systems in group have SLOs",
52
+ description: "3+ SLOs configured on a system",
53
53
  },
54
54
  rapid_recovery: {
55
55
  label: "Rapid Recovery",