---
title: Requests made from Cloudflare Workers can now force a revalidation of their cache with the origin
description: New runtime APIs allow you to control when subrequests revalidate cache, increasing compatibility with popular NPM packages
image: https://developers.cloudflare.com/changelog-preview.png
---

> Documentation Index  
> Fetch the complete documentation index at: https://developers.cloudflare.com/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://developers.cloudflare.com/changelog/rss/index.xml) [ View RSS feeds ](https://developers.cloudflare.com/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://developers.cloudflare.com/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://developers.cloudflare.com/changelog/) 

## Requests made from Cloudflare Workers can now force a revalidation of their cache with the origin

Aug 07, 2025 

[ Workers ](https://developers.cloudflare.com/workers/) 

By setting the value of the `cache` property to `no-cache`, you can force [Cloudflare's cache](https://developers.cloudflare.com/workers/reference/how-the-cache-works/) to revalidate its contents with the origin when making subrequests from [Cloudflare Workers](https://developers.cloudflare.com/workers).

* [  JavaScript ](#tab-panel-2733)
* [  TypeScript ](#tab-panel-2734)

**index.js**

```js
export default {
  async fetch(req, env, ctx) {
    const request = new Request("https://cloudflare.com", {
      cache: "no-cache",
    });
    const response = await fetch(request);
    return response;
  },
};
```

**index.ts**

```ts
export default {
  async fetch(req, env, ctx): Promise<Response> {
    const request = new Request("https://cloudflare.com", { cache: 'no-cache'});
    const response = await fetch(request);
    return response;
  }
} satisfies ExportedHandler<Environment>
```

When `no-cache` is set, the Worker request will first look for a match in Cloudflare's cache, then:

* If there is a match, a conditional request is sent to the origin, regardless of whether or not the match is fresh or stale. If the resource has not changed, the cached version is returned. If the resource has changed, it will be downloaded from the origin, updated in the cache, and returned.
* If there is no match, Workers will make a standard request to the origin and cache the response.

This increases compatibility with NPM packages and JavaScript frameworks that rely on setting the [cache](https://developers.cloudflare.com/workers/runtime-apis/request/#options) property, which is a cross-platform standard part of the [Request](https://developers.cloudflare.com/workers/runtime-apis/request/) interface. Previously, if you set the `cache`property on `Request` to `'no-cache'`, the Workers runtime threw an exception.

* Learn [how the Cache works with Cloudflare Workers](https://developers.cloudflare.com/workers/reference/how-the-cache-works/)
* Enable [Node.js compatibility](https://developers.cloudflare.com/workers/runtime-apis/nodejs/) for your Cloudflare Worker
* Explore [Runtime APIs](https://developers.cloudflare.com/workers/runtime-apis/) and [Bindings](https://developers.cloudflare.com/workers/runtime-apis/bindings/) available in Cloudflare Workers

```json
{"@context":"https://schema.org","@type":"BlogPosting","@id":"https://developers.cloudflare.com/changelog/post/2025-08-07-cache-no-cache/#page","headline":"Requests made from Cloudflare Workers can now force a revalidation of their cache with the origin · Changelog","description":"New runtime APIs allow you to control when subrequests revalidate cache, increasing compatibility with popular NPM packages","url":"https://developers.cloudflare.com/changelog/post/2025-08-07-cache-no-cache/","inLanguage":"en","image":"https://developers.cloudflare.com/changelog-preview.png","dateModified":"2025-08-07","datePublished":"2025-08-07","publisher":{"@type":"Organization","name":"Cloudflare","url":"https://www.cloudflare.com/"},"isPartOf":{"@type":"WebSite","@id":"https://developers.cloudflare.com/#website","name":"Cloudflare Docs","url":"https://developers.cloudflare.com/"}}
```
