@checkstack/incident-common 0.4.0 → 0.4.2
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 +24 -0
- package/package.json +6 -6
- package/src/schemas.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @checkstack/incident-common
|
|
2
2
|
|
|
3
|
+
## 0.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9551fd7: Fix creator display in incident and maintenance status updates
|
|
8
|
+
|
|
9
|
+
- Show the creator's profile name instead of UUID in status updates
|
|
10
|
+
- For maintenances, now properly displays the creator name (was missing)
|
|
11
|
+
- For incidents, replaces UUID with human-readable profile name
|
|
12
|
+
- System-generated updates (automatic maintenance transitions) show no creator
|
|
13
|
+
|
|
14
|
+
## 0.4.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 0b9fc58: Fix workspace:\* protocol resolution in published packages
|
|
19
|
+
|
|
20
|
+
Published packages now correctly have resolved dependency versions instead of `workspace:*` references. This is achieved by using `bun publish` which properly resolves workspace protocol references.
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [0b9fc58]
|
|
23
|
+
- @checkstack/common@0.6.1
|
|
24
|
+
- @checkstack/frontend-api@0.3.4
|
|
25
|
+
- @checkstack/signal-common@0.1.5
|
|
26
|
+
|
|
3
27
|
## 0.4.0
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@checkstack/incident-common",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -8,16 +8,16 @@
|
|
|
8
8
|
}
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@checkstack/common": "
|
|
12
|
-
"@checkstack/frontend-api": "
|
|
13
|
-
"@checkstack/signal-common": "
|
|
11
|
+
"@checkstack/common": "0.6.1",
|
|
12
|
+
"@checkstack/frontend-api": "0.3.4",
|
|
13
|
+
"@checkstack/signal-common": "0.1.5",
|
|
14
14
|
"@orpc/contract": "^1.13.2",
|
|
15
15
|
"zod": "^4.2.1"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"typescript": "^5.7.2",
|
|
19
|
-
"@checkstack/tsconfig": "
|
|
20
|
-
"@checkstack/scripts": "
|
|
19
|
+
"@checkstack/tsconfig": "0.0.3",
|
|
20
|
+
"@checkstack/scripts": "0.1.1"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"typecheck": "tsc --noEmit",
|
package/src/schemas.ts
CHANGED
|
@@ -53,6 +53,7 @@ export const IncidentUpdateSchema = z.object({
|
|
|
53
53
|
statusChange: IncidentStatusEnum.optional(),
|
|
54
54
|
createdAt: z.date(),
|
|
55
55
|
createdBy: z.string().optional(),
|
|
56
|
+
createdByName: z.string().optional(),
|
|
56
57
|
});
|
|
57
58
|
export type IncidentUpdate = z.infer<typeof IncidentUpdateSchema>;
|
|
58
59
|
|