@checkstack/slo-frontend 0.2.6 → 0.2.8
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 +31 -0
- package/package.json +4 -4
- package/src/components/AchievementBadge.tsx +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @checkstack/slo-frontend
|
|
2
2
|
|
|
3
|
+
## 0.2.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 86bab6a: ### GitOps: Fix authentication token handling
|
|
8
|
+
|
|
9
|
+
- Made `authToken` optional in `ReconcileProviderParams` and `ScraperOptions` to support unauthenticated access to public repositories
|
|
10
|
+
- GitHub and GitLab scrapers now conditionally set authentication headers only when a token is provided
|
|
11
|
+
- 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
|
|
12
|
+
|
|
13
|
+
### SLO: Fix premature Nines Club achievement unlock
|
|
14
|
+
|
|
15
|
+
- 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
|
|
16
|
+
|
|
17
|
+
### SLO: Align frontend achievement descriptions with backend criteria
|
|
18
|
+
|
|
19
|
+
- 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%)
|
|
20
|
+
|
|
21
|
+
### SLO: Enrich milestones with system names
|
|
22
|
+
|
|
23
|
+
- The `getRecentMilestones` endpoint now resolves human-readable system names via the Catalog API instead of returning raw system IDs
|
|
24
|
+
- @checkstack/dashboard-frontend@0.3.34
|
|
25
|
+
|
|
26
|
+
## 0.2.7
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- Updated dependencies [4b0934d]
|
|
31
|
+
- @checkstack/ui@1.3.6
|
|
32
|
+
- @checkstack/dashboard-frontend@0.3.33
|
|
33
|
+
|
|
3
34
|
## 0.2.6
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@checkstack/slo-frontend",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8",
|
|
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.
|
|
17
|
+
"@checkstack/dashboard-frontend": "0.3.33",
|
|
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
|
-
"@checkstack/healthcheck-common": "0.
|
|
21
|
+
"@checkstack/healthcheck-common": "0.11.0",
|
|
22
22
|
"@checkstack/slo-common": "0.2.0",
|
|
23
|
-
"@checkstack/ui": "1.
|
|
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: "
|
|
22
|
+
description: "7-day compliance streak",
|
|
23
23
|
},
|
|
24
24
|
diamond_uptime: {
|
|
25
25
|
label: "Diamond Uptime",
|
|
26
26
|
emoji: "💎",
|
|
27
|
-
description: "
|
|
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
|
|
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: "
|
|
52
|
+
description: "3+ SLOs configured on a system",
|
|
53
53
|
},
|
|
54
54
|
rapid_recovery: {
|
|
55
55
|
label: "Rapid Recovery",
|