Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .changeset/bright-symbols-see.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
'astro': major
---

**BREAKING CHANGE to the v6 beta Adapter API only**: renames `entryType` to `entrypointResolution` and updates possible values

Astro 6 introduced a way to let adapters have more control over the entrypoint by passing `entryType: 'self'` to `setAdapter()`. However during beta development, the name was unclear and confusing.

`entryType` is now renamed to `entrypointResolution` and its possible values are updated:

- `legacy-dynamic` becomes `explicit`.
- `self` becomes `auto`.

If you are building an adapter with v6 beta and specifying `entryType`, update it:

```diff
setAdapter({
// ...
- entryType: 'legacy-dynamic'
+ entrypointResolution: 'explicit'
})

setAdapter({
// ...
- entryType: 'self'
+ entrypointResolution: 'auto'
})
```
5 changes: 5 additions & 0 deletions .changeset/fix-content-hmr.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"astro": patch
---

Fix dev reloads for content collection Markdown updates under Vite 7.
5 changes: 5 additions & 0 deletions .changeset/light-parrots-find.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'astro': major
---

Deprecates `createExports()` and `start()` (Adapter API) - ([v6 upgrade guidance](https://v6.docs.astro.build/en/guides/upgrade-to/v6/#deprecated-createexports-and-start-adapter-api))
6 changes: 6 additions & 0 deletions .changeset/puny-dragons-fail.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@astrojs/netlify': patch
'@astrojs/vercel': patch
---

Updates to new Adapter API introduced in v6
6 changes: 6 additions & 0 deletions .changeset/tall-worms-live.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'astro': patch
'@astrojs/db': patch
---

Improves CLI styling
7 changes: 7 additions & 0 deletions .changeset/young-pandas-talk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'@astrojs/cloudflare': major
---

Drops official support for Cloudflare Pages in favor of Cloudflare Workers

The Astro Cloudflare adapter now only supports deployment to Cloudflare Workers by default in order to comply with Cloudflare's recommendations for new projects. If you are currently deploying to Cloudflare Pages, consider [migrating to Workers by following the Cloudflare guide](https://developers.cloudflare.com/workers/static-assets/migration-guides/migrate-from-pages/) for an optimal experience and full feature support.
2 changes: 1 addition & 1 deletion .github/workflows/build-sandbox-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Lowercase image name
run: echo "IMAGE=${IMAGE,,}" >> "$GITHUB_ENV"

- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/issue-triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: echo "IMAGE=${IMAGE,,}" >> "$GITHUB_ENV"

- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Configure Git identity
run: |
Expand All @@ -49,7 +49,7 @@ jobs:
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0

- name: Setup Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: 24.13.1
cache: pnpm
Expand Down
2 changes: 1 addition & 1 deletion packages/astro/e2e/fixtures/actions-blog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@astrojs/db": "workspace:*",
"@astrojs/node": "workspace:*",
"@astrojs/react": "workspace:*",
"@types/react": "^18.3.27",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"astro": "workspace:*",
"react": "^18.3.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/astro/e2e/fixtures/astro-envs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"dependencies": {
"@astrojs/vue": "workspace:*",
"astro": "workspace:*",
"vue": "^3.5.27"
"vue": "^3.5.28"
}
}
4 changes: 2 additions & 2 deletions packages/astro/e2e/fixtures/client-only/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"solid-js": "^1.9.11",
"svelte": "^5.49.1",
"vue": "^3.5.27"
"svelte": "^5.50.3",
"vue": "^3.5.28"
}
}
6 changes: 3 additions & 3 deletions packages/astro/e2e/fixtures/cloudflare/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"@astrojs/vue": "workspace:*",
"preact": "^10.28.3",
"@test/e2e-my-lib": "workspace:*",
"vue": "^3.5.27",
"@vitejs/plugin-vue": "^6.0.3",
"@types/react": "^18.3.27",
"vue": "^3.5.28",
"@vitejs/plugin-vue": "^6.0.4",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"astro": "workspace:*",
"clsx": "^2.1.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/astro/e2e/fixtures/errors/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"react-dom": "^18.3.1",
"sass": "^1.97.3",
"solid-js": "^1.9.11",
"svelte": "^5.49.1",
"vue": "^3.5.27"
"svelte": "^5.50.3",
"vue": "^3.5.28"
}
}
4 changes: 2 additions & 2 deletions packages/astro/e2e/fixtures/multiple-frameworks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"solid-js": "^1.9.11",
"svelte": "^5.49.1",
"vue": "^3.5.27"
"svelte": "^5.50.3",
"vue": "^3.5.28"
}
}
4 changes: 2 additions & 2 deletions packages/astro/e2e/fixtures/nested-in-preact/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"solid-js": "^1.9.11",
"svelte": "^5.49.1",
"vue": "^3.5.27"
"svelte": "^5.50.3",
"vue": "^3.5.28"
}
}
4 changes: 2 additions & 2 deletions packages/astro/e2e/fixtures/nested-in-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"solid-js": "^1.9.11",
"svelte": "^5.49.1",
"vue": "^3.5.27"
"svelte": "^5.50.3",
"vue": "^3.5.28"
}
}
4 changes: 2 additions & 2 deletions packages/astro/e2e/fixtures/nested-in-solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"solid-js": "^1.9.11",
"svelte": "^5.49.1",
"vue": "^3.5.27"
"svelte": "^5.50.3",
"vue": "^3.5.28"
}
}
4 changes: 2 additions & 2 deletions packages/astro/e2e/fixtures/nested-in-svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"solid-js": "^1.9.11",
"svelte": "^5.49.1",
"vue": "^3.5.27"
"svelte": "^5.50.3",
"vue": "^3.5.28"
}
}
4 changes: 2 additions & 2 deletions packages/astro/e2e/fixtures/nested-in-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"solid-js": "^1.9.11",
"svelte": "^5.49.1",
"vue": "^3.5.27"
"svelte": "^5.50.3",
"vue": "^3.5.28"
}
}
4 changes: 2 additions & 2 deletions packages/astro/e2e/fixtures/nested-recursive/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"solid-js": "^1.9.11",
"svelte": "^5.49.1",
"vue": "^3.5.27"
"svelte": "^5.50.3",
"vue": "^3.5.28"
},
"scripts": {
"dev": "astro dev"
Expand Down
2 changes: 1 addition & 1 deletion packages/astro/e2e/fixtures/svelte-component/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"@astrojs/mdx": "workspace:*",
"@astrojs/svelte": "workspace:*",
"astro": "workspace:*",
"svelte": "^5.49.1"
"svelte": "^5.50.3"
}
}
4 changes: 2 additions & 2 deletions packages/astro/e2e/fixtures/view-transitions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"solid-js": "^1.9.11",
"svelte": "^5.49.1",
"vue": "^3.5.27"
"svelte": "^5.50.3",
"vue": "^3.5.28"
}
}
2 changes: 1 addition & 1 deletion packages/astro/e2e/fixtures/vue-component/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"@astrojs/mdx": "workspace:*",
"@astrojs/vue": "workspace:*",
"astro": "workspace:*",
"vue": "^3.5.27"
"vue": "^3.5.28"
}
}
15 changes: 6 additions & 9 deletions packages/astro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,11 @@
"@astrojs/markdown-remark": "workspace:*",
"@astrojs/telemetry": "workspace:*",
"@capsizecss/unpack": "^4.0.0",
"@clack/prompts": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@rollup/pluginutils": "^5.3.0",
"aria-query": "^5.3.2",
"axobject-query": "^4.1.0",
"boxen": "8.0.1",
"ci-info": "^4.4.0",
"clsx": "^2.1.1",
"common-ancestor-path": "^2.0.0",
Expand All @@ -146,17 +146,16 @@
"http-cache-semantics": "^4.2.0",
"js-yaml": "^4.1.1",
"magic-string": "^0.30.21",
"magicast": "^0.5.1",
"magicast": "^0.5.2",
"mrmime": "^2.0.1",
"neotraverse": "^0.6.18",
"p-limit": "^7.2.0",
"p-limit": "^7.3.0",
"p-queue": "^9.1.0",
"package-manager-detector": "^1.6.0",
"piccolore": "^0.1.3",
"picomatch": "^4.0.3",
"prompts": "^2.4.2",
"rehype": "^13.0.2",
"semver": "^7.7.3",
"semver": "^7.7.4",
"shiki": "^3.22.0",
"smol-toml": "^1.6.0",
"svgo": "^4.0.0",
Expand All @@ -172,15 +171,14 @@
"vitefu": "^1.1.1",
"xxhash-wasm": "^1.1.0",
"yargs-parser": "^22.0.0",
"yocto-spinner": "^1.0.0",
"zod": "^4.3.6"
},
"optionalDependencies": {
"sharp": "^0.34.0"
},
"devDependencies": {
"@astrojs/check": "workspace:*",
"@playwright/test": "1.58.1",
"@playwright/test": "1.58.2",
"@types/aria-query": "^5.0.4",
"@types/cssesc": "^3.0.2",
"@types/debug": "^4.1.12",
Expand All @@ -190,7 +188,6 @@
"@types/http-cache-semantics": "^4.2.0",
"@types/js-yaml": "^4.0.9",
"@types/picomatch": "^4.0.2",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.7.1",
"@types/yargs-parser": "^21.0.3",
"astro-scripts": "workspace:*",
Expand All @@ -209,7 +206,7 @@
"rollup": "^4.57.1",
"sass": "^1.97.3",
"typescript": "^5.9.3",
"undici": "^7.19.2",
"undici": "^7.21.0",
"unified": "^11.0.5",
"vitest": "^3.2.4"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/astro/performance/fixtures/md/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"dependencies": {
"@astrojs/react": "workspace:*",
"@performance/utils": "workspace:*",
"@types/react": "^18.3.27",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"astro": "workspace:*",
"react": "^18.3.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/astro/performance/fixtures/mdoc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@astrojs/markdoc": "workspace:*",
"@astrojs/react": "workspace:*",
"@performance/utils": "workspace:*",
"@types/react": "^18.3.27",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"astro": "workspace:*",
"react": "^18.3.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/astro/performance/fixtures/mdx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@astrojs/mdx": "workspace:*",
"@astrojs/react": "workspace:*",
"@performance/utils": "workspace:*",
"@types/react": "^18.3.27",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"astro": "workspace:*",
"react": "^18.3.1",
Expand Down
Loading
Loading