@flakiness/sdk 0.153.0 → 0.154.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/lib/browser.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +2 -2
package/lib/browser.js
CHANGED
|
@@ -176,7 +176,7 @@ function computeTestId(test, suiteId) {
|
|
|
176
176
|
|
|
177
177
|
// src/validateReport.ts
|
|
178
178
|
import { Schema } from "@flakiness/flakiness-report";
|
|
179
|
-
import z from "zod";
|
|
179
|
+
import z from "zod/v4";
|
|
180
180
|
function validateReport(report) {
|
|
181
181
|
const validation = Schema.Report.safeParse(report);
|
|
182
182
|
if (!validation.success) {
|
package/lib/index.js
CHANGED
|
@@ -780,7 +780,7 @@ function computeTestId(test, suiteId) {
|
|
|
780
780
|
|
|
781
781
|
// src/validateReport.ts
|
|
782
782
|
import { Schema } from "@flakiness/flakiness-report";
|
|
783
|
-
import z from "zod";
|
|
783
|
+
import z from "zod/v4";
|
|
784
784
|
function validateReport(report) {
|
|
785
785
|
const validation = Schema.Report.safeParse(report);
|
|
786
786
|
if (!validation.success) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flakiness/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.154.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"typescript": "^5.6.2"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@flakiness/flakiness-report": "^0.
|
|
40
|
+
"@flakiness/flakiness-report": "^0.21.0",
|
|
41
41
|
"chalk": "^5.6.2",
|
|
42
42
|
"debug": "^4.4.3",
|
|
43
43
|
"open": "^10.2.0",
|