Skip to content

Commit 11aa5c0

Browse files
Merge branch 'main' into global-css-hmr-fix
2 parents 5627316 + 7e8d371 commit 11aa5c0

60 files changed

Lines changed: 1240 additions & 284 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@astrojs/cloudflare': patch
3+
---
4+
5+
Fixes a build crash when using `experimental.advancedRouting` with a custom `fetchFile` that statically imports `cf` from `@astrojs/cloudflare/fetch`. The circular dependency between `@astrojs/cloudflare/fetch` and `astro/app/entrypoint` caused `createApp` or `createGetEnv` to be `undefined` at module evaluation time. Initialization is now deferred to the first `cf()` call, breaking the cycle.

.changeset/fix-route-pattern-casing.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/kind-snails-wash.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'astro': patch
3+
---
4+
5+
Fixes `Astro.request.url` not reflecting validated `X-Forwarded-Proto`/`X-Forwarded-Host` headers when `security.allowedDomains` is configured. Previously, only `Astro.url` was updated with the forwarded origin while `Astro.request.url` retained the socket-derived URL, causing the two to diverge behind TLS-terminating proxies.

.changeset/satteri-prism.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
'@astrojs/markdown-satteri': minor
3+
'@astrojs/mdx': patch
4+
---
5+
6+
Adds support for Prism syntax highlighting to the Sätteri Markdown and MDX processors. Setting `markdown.syntaxHighlight` to `'prism'` now highlights your code blocks with Prism.
7+
8+
```js
9+
// astro.config.mjs
10+
import { satteri } from '@astrojs/markdown-satteri';
11+
12+
export default defineConfig({
13+
markdown: {
14+
processor: satteri(),
15+
syntaxHighlight: 'prism',
16+
},
17+
});
18+
```

examples/advanced-routing/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"dependencies": {
1616
"@astrojs/node": "^10.1.3",
17-
"astro": "^6.4.3",
17+
"astro": "^6.4.4",
1818
"hono": "^4.12.14"
1919
}
2020
}

examples/basics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
"astro": "astro"
1414
},
1515
"dependencies": {
16-
"astro": "^6.4.3"
16+
"astro": "^6.4.4"
1717
}
1818
}

examples/blog/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
"astro": "astro"
1414
},
1515
"dependencies": {
16-
"@astrojs/mdx": "^6.0.1",
16+
"@astrojs/mdx": "^6.0.2",
1717
"@astrojs/rss": "^4.0.18",
1818
"@astrojs/sitemap": "^3.7.3",
19-
"astro": "^6.4.3",
19+
"astro": "^6.4.4",
2020
"sharp": "^0.34.3"
2121
}
2222
}

examples/component/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
],
1919
"scripts": {},
2020
"devDependencies": {
21-
"astro": "^6.4.3"
21+
"astro": "^6.4.4"
2222
},
2323
"peerDependencies": {
2424
"astro": "^5.0.0 || ^6.0.0"

examples/container-with-vitest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"dependencies": {
1717
"@astrojs/react": "^5.0.7",
18-
"astro": "^6.4.3",
18+
"astro": "^6.4.4",
1919
"react": "^18.3.1",
2020
"react-dom": "^18.3.1",
2121
"vitest": "^4.1.0"

examples/framework-alpine/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
"@astrojs/alpinejs": "^0.5.0",
1717
"@types/alpinejs": "^3.13.11",
1818
"alpinejs": "^3.15.8",
19-
"astro": "^6.4.3"
19+
"astro": "^6.4.4"
2020
}
2121
}

0 commit comments

Comments
 (0)