@smithers-orchestrator/time-travel 0.16.8 → 0.17.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smithers-orchestrator/time-travel",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.0",
|
|
4
4
|
"description": "Smithers snapshots, diffs, forks, replay, timelines, and VCS-tagged run history",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -45,19 +45,22 @@
|
|
|
45
45
|
"src/"
|
|
46
46
|
],
|
|
47
47
|
"dependencies": {
|
|
48
|
+
"@effect/platform": "^0.96.0",
|
|
48
49
|
"@effect/platform-bun": "^0.89.0",
|
|
49
50
|
"drizzle-orm": "^0.45.2",
|
|
51
|
+
"effect": "^3.21.1",
|
|
50
52
|
"picocolors": "^1.1.1",
|
|
51
|
-
"@smithers-orchestrator/driver": "0.
|
|
52
|
-
"@smithers-orchestrator/
|
|
53
|
-
"@smithers-orchestrator/
|
|
54
|
-
"@smithers-orchestrator/
|
|
55
|
-
"@smithers-orchestrator/
|
|
56
|
-
"@smithers-orchestrator/
|
|
57
|
-
"@smithers-orchestrator/
|
|
53
|
+
"@smithers-orchestrator/driver": "0.17.0",
|
|
54
|
+
"@smithers-orchestrator/errors": "0.17.0",
|
|
55
|
+
"@smithers-orchestrator/graph": "0.17.0",
|
|
56
|
+
"@smithers-orchestrator/db": "0.17.0",
|
|
57
|
+
"@smithers-orchestrator/scheduler": "0.17.0",
|
|
58
|
+
"@smithers-orchestrator/observability": "0.17.0",
|
|
59
|
+
"@smithers-orchestrator/vcs": "0.17.0"
|
|
58
60
|
},
|
|
59
61
|
"devDependencies": {
|
|
60
62
|
"@types/bun": "latest",
|
|
63
|
+
"react": "^19.2.5",
|
|
61
64
|
"typescript": "~5.9.3"
|
|
62
65
|
},
|
|
63
66
|
"scripts": {
|
package/src/replaysStarted.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export const replaysStarted = Metric.counter("smithers.replays.started");
|
|
1
|
+
export { replaysStarted } from "@smithers-orchestrator/observability/metrics";
|
package/src/runForksCreated.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export const runForksCreated = Metric.counter("smithers.forks.created");
|
|
1
|
+
export { runForksCreated } from "@smithers-orchestrator/observability/metrics";
|
package/src/snapshotDuration.js
CHANGED
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
const snapshotBuckets = MetricBoundaries.exponential({
|
|
3
|
-
start: 1,
|
|
4
|
-
factor: 2,
|
|
5
|
-
count: 12,
|
|
6
|
-
}); // ~1ms to ~2s
|
|
7
|
-
export const snapshotDuration = Metric.histogram("smithers.snapshot.duration_ms", snapshotBuckets);
|
|
1
|
+
export { snapshotDuration } from "@smithers-orchestrator/observability/metrics";
|
package/src/snapshotsCaptured.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export const snapshotsCaptured = Metric.counter("smithers.snapshots.captured");
|
|
1
|
+
export { snapshotsCaptured } from "@smithers-orchestrator/observability/metrics";
|