summaryrefslogtreecommitdiff
path: root/.changeset/fuzzy-jobs-explain.md
blob: e15f46130f5171b72bd71ae54369aa1d2ca4650a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
---
'@astrojs/cloudflare': minor
---

The `getRuntime` utility has been deprecated and should be updated to the new [`Astro.locals`](https://docs.astro.build/en/guides/middleware/#locals) API.

```diff
- import { getRuntime } from '@astrojs/cloudflare/runtime';
- getRuntime(Astro.request);
  
+ const runtime = Astro.locals.runtime;
```