-
-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: merge next
to main
#451
Merged
Changes from all commits
Commits
Show all changes
51 commits
Select commit
Hold shift + click to select a range
1c5c6b0
Refactor/types (#11715)
Princesseuh 5a9287f
Remove functionPerRoute option (#11714)
matthewp 172fe43
[ci] release (alpha) (#11627)
astrobot-houston daa13a7
[ci] release (alpha) (#11627)
astrobot-houston 0d758b3
Merge branch 'main' into next
Princesseuh ca154c7
feat: remove the squoosh image service (#11770)
Princesseuh 70699d6
feat: remove the squoosh image service (#11770)
Princesseuh d45b9fa
feat(next): make astro:env stable (#11679)
florian-lefebvre c114431
feat(next): make astro:env stable (#11679)
florian-lefebvre 462eb68
[ci] release (alpha) (#11787)
astrobot-houston 56f8efc
[ci] release (alpha) (#11787)
astrobot-houston d854d8b
Merge branch 'main' into next
Princesseuh c05465e
Merge branch 'main' into next
Princesseuh ab25ae9
Merge branch 'vercel' into next
alexanderniebuhr ab679e1
Merge branch 'node' into next
alexanderniebuhr 8502e93
chore: update build scripts
alexanderniebuhr ebc39a8
chore: fix tsconfig path
alexanderniebuhr e9c56c7
chore: supress linting
alexanderniebuhr d4fbedc
chore: fix testutils
alexanderniebuhr ed930dd
chore: next to use astro v5
alexanderniebuhr e02b54a
chore: fix type errors
alexanderniebuhr 5990499
chore: fixes
alexanderniebuhr 2478d2c
Merge `vercel` and `node` into next #367
alexanderniebuhr a3eda79
chore: enter pre mode
alexanderniebuhr 600fec0
chore: run changeset on next
alexanderniebuhr 17a7fe5
fix: build errors
alexanderniebuhr e7881f7
feat: remove hybrid (#375)
Princesseuh bb725b7
chore(next): astro:env cleanup (#385)
florian-lefebvre 3a49eb7
feat: update adapters supported features to account for new shape for…
Princesseuh b77f99c
Adapter related changes for IntegrationData (#377)
alexanderniebuhr b6d8bb1
Merge branch 'main' into next
alexanderniebuhr bf61d7d
Merge branch 'main' into next
alexanderniebuhr 6e9d891
[ci] format
alexanderniebuhr 319cb1a
chore: fix typo in CHANGELOG
alexanderniebuhr 776a266
feat: enter beta mode (#397)
Princesseuh 87ec8f1
[ci] release (beta) (#368)
github-actions[bot] 7d83f60
Remove vercel speedInsights option (#384)
bluwy 9730bbf
Merge branch 'main' into next
bluwy 3351348
feat(vercel): single entrypoint (#424)
ematipico e30c046
Merge branch 'main' into next
bluwy 167b369
Update send to v1.1.0
bluwy f248546
Update esbuild to v0.24.0
bluwy aed689d
Fix build and types issue
bluwy ff2e024
[ci] release (beta) (#400)
github-actions[bot] b725b49
fix(vercel): output build directory (#437)
ematipico 911d197
[ci] release (beta) (#439)
github-actions[bot] 0ba7a39
chore: update Astro peer dep for adapters (#449)
ematipico 21d79c8
Merge branch 'main' into next
ematipico 92eaba8
update lock file
ematipico b9ca824
chore: fix build
ematipico 683f239
skip cloudflare test
ematipico File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
'@astrojs/cloudflare': major | ||
'@astrojs/netlify': major | ||
--- | ||
|
||
Removed support for the Squoosh image service. As the underlying library `libsquoosh` is no longer maintained, and the image service sees very little usage we have decided to remove it from Astro. | ||
|
||
Our recommendation is to use the base Sharp image service, which is more powerful, faster, and more actively maintained. | ||
|
||
```diff | ||
- import { squooshImageService } from "astro/config"; | ||
import { defineConfig } from "astro/config"; | ||
|
||
export default defineConfig({ | ||
- image: { | ||
- service: squooshImageService() | ||
- } | ||
}); | ||
``` | ||
|
||
If you are using this service, and cannot migrate to the base Sharp image service, a third-party extraction of the previous service is available here: https://github.com/Princesseuh/astro-image-service-squoosh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
'@astrojs/cloudflare': major | ||
'@astrojs/netlify': major | ||
--- | ||
|
||
Deprecates the `functionPerRoute` option | ||
|
||
This option is now deprecated, and will be removed entirely in Astro v5.0. We suggest removing this option from your configuration as soon as you are able to: | ||
|
||
```diff | ||
import { defineConfig } from 'astro/config'; | ||
import vercel from '@astrojs/vercel/serverless'; | ||
|
||
export default defineConfig({ | ||
// ... | ||
output: 'server', | ||
adapter: vercel({ | ||
- functionPerRoute: true, | ||
}), | ||
}); | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
'@astrojs/cloudflare': major | ||
'@astrojs/netlify': major | ||
'@astrojs/vercel': major | ||
'@astrojs/node': major | ||
--- | ||
|
||
Updates internal code to works with Astro 5 changes to hybrid rendering. No changes are necessary to your project, apart from using Astro 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
'@astrojs/vercel': minor | ||
--- | ||
|
||
Deprecates the entrypoints `@astrojs/vercel/serverless` and `@astrojs/vercel/static`. These will continue to work but are no longer documented and will be removed in a future version. We recommend updating to the `@astrojs/vercel` entrypoint as soon as you are able: | ||
|
||
```diff | ||
-import vercel from "@astrojs/vercel/static" | ||
+import vercel from "@astrojs/vercel" | ||
``` | ||
|
||
|
||
```diff | ||
-import vercel from "@astrojs/vercel/serverless" | ||
+import vercel from "@astrojs/vercel" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
'@astrojs/cloudflare': major | ||
'@astrojs/netlify': major | ||
'@astrojs/node': major | ||
'@astrojs/vercel': major | ||
--- | ||
|
||
Welcome to the Astro 5 beta! This release has no changes from the latest alpha of this package, but it does bring us one step closer to the final, stable release. | ||
|
||
Starting from this release, no breaking changes will be introduced unless absolutely necessary. | ||
|
||
To learn how to upgrade, check out the [Astro v5.0 upgrade guide in our beta docs site](https://5-0-0-beta.docs.astro.build/en/guides/upgrade-to/v5/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@astrojs/vercel': major | ||
--- | ||
|
||
Updates the adapter to use new `IntegrationRouteData` type |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"mode": "pre", | ||
"tag": "beta", | ||
"initialVersions": { | ||
"@astrojs/cloudflare": "11.0.4", | ||
"@astrojs/netlify": "5.5.3", | ||
"@astrojs/node": "9.0.0-alpha.1", | ||
"@astrojs/test-utils": "0.0.1", | ||
"@astrojs/vercel": "8.0.0-alpha.1" | ||
}, | ||
"changesets": [ | ||
"blue-owls-peel", | ||
"early-berries-rush", | ||
"eighty-badgers-change", | ||
"fast-singers-design", | ||
"flat-dolls-nail", | ||
"olive-jobs-press", | ||
"rare-candles-unite", | ||
"silver-lemons-bow", | ||
"sixty-trainers-shout", | ||
"slow-mangos-call", | ||
"sweet-geckos-double", | ||
"yellow-avocados-share" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
'@astrojs/cloudflare': major | ||
'@astrojs/netlify': major | ||
'@astrojs/vercel': major | ||
--- | ||
|
||
Updates esbuild dependency to v0.24.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@astrojs/vercel': major | ||
--- | ||
|
||
Removes deprecated `speedInsights` option in favor of Vercel's direct support: https://vercel.com/docs/speed-insights/quickstart |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
'@astrojs/netlify': minor | ||
'@astrojs/vercel': minor | ||
'@astrojs/node': minor | ||
--- | ||
|
||
Cleans up `astro:env` support |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@astrojs/vercel': patch | ||
--- | ||
|
||
Fixes a regression where the `@astrojs/vercel` single entry point for the adapter was causing some regressions in users projects. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
'@astrojs/cloudflare': major | ||
'@astrojs/netlify': major | ||
'@astrojs/vercel': major | ||
'@astrojs/node': major | ||
--- | ||
|
||
Updates internal code for Astro 5 changes. No changes is required to your project, apart from using Astro 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@astrojs/node': major | ||
--- | ||
|
||
Updates `send` dependency to v1.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs to be changed back to
main
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know, but I will do that in another PR using the
changeset
CLI, it's part of the steps