---
title: Simpler runtime types with @cloudflare/workers-types v5
description: Ships only the latest runtime types and drops the dated entrypoints.
image: https://edgetunnel-b2h.pages.dev/changelog-preview.png
---

> Documentation Index  
> Fetch the complete documentation index at: https://edgetunnel-b2h.pages.dev/changelog/llms.txt  
> Use this file to discover all available pages before exploring further. 

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://edgetunnel-b2h.pages.dev/changelog/rss/index.xml) [ View RSS feeds ](https://edgetunnel-b2h.pages.dev/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://edgetunnel-b2h.pages.dev/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://edgetunnel-b2h.pages.dev/changelog/) 

## Simpler runtime types with @cloudflare/workers-types v5

Jul 03, 2026 

[ Workers ](https://edgetunnel-b2h.pages.dev/workers/) 

We have released version 5 of [@cloudflare/workers-types ↗](https://www.npmjs.com/package/@cloudflare/workers-types). This release simplifies the package to expose only the latest runtime types.

We still recommend that you generate types for your Worker using [wrangler types](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/general/#types), but if you want to use the package directly, you can install it with your package manager of choice:

 npm  yarn  pnpm  bun 

```
npm i -D @cloudflare/workers-types@latest
```

```
yarn add -D @cloudflare/workers-types@latest
```

```
pnpm add -D @cloudflare/workers-types@latest
```

```
bun add -d @cloudflare/workers-types@latest
```

The package now exposes two entrypoints:

* `@cloudflare/workers-types` reflects the latest compatibility date, using the latest stable compatibility flags.
* `@cloudflare/workers-types/experimental` reflects APIs behind experimental compatibility flags.

The dated entrypoints, such as `@cloudflare/workers-types/2022-11-30` and `@cloudflare/workers-types/2023-03-01`, are removed. With runtime type generation in [Wrangler v4](https://edgetunnel-b2h.pages.dev/workers/wrangler/), you can generate these with the `wrangler types` command to create types locked to your Worker's compatibility date.

For more information, refer to [TypeScript language support](https://edgetunnel-b2h.pages.dev/workers/languages/typescript/).

```json
{"@context":"https://schema.org","@type":"BlogPosting","@id":"https://edgetunnel-b2h.pages.dev/changelog/post/2026-07-03-workers-types-v5/#page","headline":"Simpler runtime types with @cloudflare/workers-types v5 · Changelog","description":"Ships only the latest runtime types and drops the dated entrypoints.","url":"https://edgetunnel-b2h.pages.dev/changelog/post/2026-07-03-workers-types-v5/","inLanguage":"en","image":"https://edgetunnel-b2h.pages.dev/changelog-preview.png","dateModified":"2026-07-03","datePublished":"2026-07-03","publisher":{"@type":"Organization","name":"Cloudflare","url":"https://www.cloudflare.com/"},"isPartOf":{"@type":"WebSite","@id":"https://edgetunnel-b2h.pages.dev/#website","name":"Cloudflare Docs","url":"https://edgetunnel-b2h.pages.dev/"}}
```
