diff options
Diffstat (limited to '.changeset')
-rw-r--r-- | .changeset/fast-penguins-sleep.md | 5 | ||||
-rw-r--r-- | .changeset/funny-eels-jog.md | 5 | ||||
-rw-r--r-- | .changeset/fuzzy-jobs-explain.md | 12 | ||||
-rw-r--r-- | .changeset/lovely-impalas-pretend.md | 5 | ||||
-rw-r--r-- | .changeset/nasty-olives-rush.md | 5 | ||||
-rw-r--r-- | .changeset/popular-spoons-behave.md | 5 | ||||
-rw-r--r-- | .changeset/rotten-flowers-know.md | 5 | ||||
-rw-r--r-- | .changeset/smart-nails-push.md | 5 | ||||
-rw-r--r-- | .changeset/sweet-cows-roll.md | 20 | ||||
-rw-r--r-- | .changeset/tender-tips-kneel.md | 5 |
10 files changed, 0 insertions, 72 deletions
diff --git a/.changeset/fast-penguins-sleep.md b/.changeset/fast-penguins-sleep.md deleted file mode 100644 index bd3171164..000000000 --- a/.changeset/fast-penguins-sleep.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/vercel': patch ---- - -Prevent Vercel NFT from scanning /dev diff --git a/.changeset/funny-eels-jog.md b/.changeset/funny-eels-jog.md deleted file mode 100644 index 2481c24df..000000000 --- a/.changeset/funny-eels-jog.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Ensure dev server restarts respect when `base` is removed diff --git a/.changeset/fuzzy-jobs-explain.md b/.changeset/fuzzy-jobs-explain.md deleted file mode 100644 index e15f46130..000000000 --- a/.changeset/fuzzy-jobs-explain.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'@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; -``` diff --git a/.changeset/lovely-impalas-pretend.md b/.changeset/lovely-impalas-pretend.md deleted file mode 100644 index fc11a88e1..000000000 --- a/.changeset/lovely-impalas-pretend.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Prevent script re-evaluation on page transition diff --git a/.changeset/nasty-olives-rush.md b/.changeset/nasty-olives-rush.md deleted file mode 100644 index cb78479f2..000000000 --- a/.changeset/nasty-olives-rush.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'create-astro': patch ---- - -Improve yarn berry support diff --git a/.changeset/popular-spoons-behave.md b/.changeset/popular-spoons-behave.md deleted file mode 100644 index 021705f41..000000000 --- a/.changeset/popular-spoons-behave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/node': patch ---- - -Support the `--host` flag when running the standalone server (also works for `astro preview --host`) diff --git a/.changeset/rotten-flowers-know.md b/.changeset/rotten-flowers-know.md deleted file mode 100644 index 03ab03feb..000000000 --- a/.changeset/rotten-flowers-know.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fix a bug where the middleware entry point was passed to integrations even though the configuration `build.excludeMiddleware` was set to `false`. diff --git a/.changeset/smart-nails-push.md b/.changeset/smart-nails-push.md deleted file mode 100644 index 3166e9f46..000000000 --- a/.changeset/smart-nails-push.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Always return a new array instance from `getCollection` in prod diff --git a/.changeset/sweet-cows-roll.md b/.changeset/sweet-cows-roll.md deleted file mode 100644 index 87fd143f0..000000000 --- a/.changeset/sweet-cows-roll.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -'@astrojs/netlify': minor ---- - -If you are using Netlify's On-demand Builders, you can now specify how long your pages should remain cached. By default, all pages will be rendered on first visit and reused on every subsequent visit until a redeploy. To set a custom revalidation time, call the `runtime.setBuildersTtl()` local in either your frontmatter or middleware. - -```astro ---- -import Layout from '../components/Layout.astro' - -if (import.meta.env.PROD) { - // revalidates every 45 seconds - Astro.locals.runtime.setBuildersTtl(45) -} ---- -<Layout title="Astro on Netlify"> - {new Date(Date.now())} -</Layout> -``` - diff --git a/.changeset/tender-tips-kneel.md b/.changeset/tender-tips-kneel.md deleted file mode 100644 index 8301cf202..000000000 --- a/.changeset/tender-tips-kneel.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Links with hash marks now trigger view transitions if they lead to a different page. Links to the same page do not trigger view transitions. |