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

RobinTail / express-zod-api / 20246905933 / 5
100%
master: 100%

Build:
DEFAULT BRANCH: master
Ran 15 Dec 2025 08:47PM UTC
Files 44
Run time 2s
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.5

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%)

1284 of 1284 relevant lines covered (100.0%)

67.44 hits per line

Source Files on job run-24.0.0 - 20246905933.5
  • 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 Build 20246905933
  • 4c0d8bde on github
  • Prev Job for on master (#20242418331.5)
  • Next Job for on master (#20262983967.2)
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