• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

RobinTail / express-zod-api / 20246905933
100%

Build:
DEFAULT BRANCH: master
Ran 15 Dec 2025 08:46PM UTC
Jobs 6
Files 44
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

15 Dec 2025 08:45PM UTC coverage: 100.0%. Remained the same
20246905933

push

github

web-flow
chore(deps): update dependency zod to v4.2.0 (#3132)

This PR contains the following updates:

| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|
| [zod](https://zod.dev)
([source](https://redirect.github.com/colinhacks/zod)) | [`4.1.13` ->
`4.2.0`](https://renovatebot.com/diffs/npm/zod/4.1.13/4.2.0) |
![age](https://developer.mend.io/api/mc/badges/age/npm/zod/4.2.0?slim=true)
|
![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/zod/4.1.13/4.2.0?slim=true)
|

---

### Release Notes

<details>
<summary>colinhacks/zod (zod)</summary>

###
[`v4.2.0`](https://redirect.github.com/colinhacks/zod/releases/tag/v4.2.0)

[Compare
Source](https://redirect.github.com/colinhacks/zod/compare/v4.1.13...v4.2.0)

#### Features

##### Implement Standard JSON Schema


[standard-schema/standard-schema#134](https://redirect.github.com/standard-schema/standard-schema/pull/134)

##### Implement `z.fromJSONSchema()`

```typescript
const jsonSchema = {
  type: "object",
  properties: {
    name: { type: "string" },
    age: { type: "number" }
  },
  required: ["name"]
};

const schema = z.fromJSONSchema(jsonSchema);
```

##### Implement `z.xor()`

```typescript
const schema = z.xor(
  z.object({ type: "user", name: z.string() }),
  z.object({ type: "admin", role: z.string() })
);
// Exactly one of the schemas must match
```

##### Implement `z.looseRecord()`

```typescript
const schema = z.looseRecord(z.string(), z.number());
// Allows additional properties beyond those defined
```

#### Commits:

-
[`af49c08`](https://redirect.github.com/colinhacks/zod/commit/af49c084f)
Update docs for JSON Schema conversion of `z.undefined()`
([#&#8203;5504](https://redirect.github.com/colinhacks/zod/issues/5504))
-
[`767f320`](https://redirect.github.com/colinhacks/zod/commit/767f32031)
Add `.toJSONSchema(... (continued)

893 of 936 branches covered (95.41%)

1 of 1 new or added line in 1 file covered. (100.0%)

1284 of 1284 relevant lines covered (100.0%)

404.64 hits per line

Jobs
ID Job ID Ran Files Coverage
1 run-20.x - 20246905933.1 15 Dec 2025 08:47PM UTC 44
100.0
GitHub Action Run
2 run-22.x - 20246905933.2 15 Dec 2025 08:47PM UTC 44
100.0
GitHub Action Run
3 run-24.x - 20246905933.3 15 Dec 2025 08:47PM UTC 44
100.0
GitHub Action Run
4 run-20.19.0 - 20246905933.4 15 Dec 2025 08:47PM UTC 44
100.0
GitHub Action Run
5 run-24.0.0 - 20246905933.5 15 Dec 2025 08:46PM UTC 44
100.0
GitHub Action Run
6 run-22.12.0 - 20246905933.6 15 Dec 2025 08:47PM UTC 44
100.0
GitHub Action Run
Source Files on build 20246905933
  • Tree
  • List 44
  • Changed 1
  • Source Changed 1
  • Coverage Changed 0
Coverage ∆ File Lines Relevant Covered Missed Hits/Line Branch Hits Branch Misses
  • Back to Repo
  • Github Actions Build #20246905933
  • 4c0d8bde on github
  • Prev Build on master (#20242418331)
  • Next Build on master (#20262983967)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc