This repository was archived by the owner on Feb 10, 2025. It is now read-only.
Commit 3a49eb7 1 parent bb725b7 commit 3a49eb7 Copy full SHA for 3a49eb7
File tree 6 files changed +13
-22
lines changed
6 files changed +13
-22
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @astrojs/cloudflare ' : major
3
+ ' @astrojs/netlify ' : major
4
+ ' @astrojs/vercel ' : major
5
+ ' @astrojs/node ' : major
6
+ ---
7
+
8
+ Updates internal code for Astro 5 changes. No changes is required to your project, apart from using Astro 5
Original file line number Diff line number Diff line change @@ -163,10 +163,7 @@ export default function createIntegration(args?: Options): AstroIntegration {
163
163
hybridOutput : 'stable' ,
164
164
staticOutput : 'unsupported' ,
165
165
i18nDomains : 'experimental' ,
166
- assets : {
167
- supportKind : 'stable' ,
168
- isSharpCompatible : false ,
169
- } ,
166
+ sharpImageService : 'limited' ,
170
167
envGetSecret : 'experimental' ,
171
168
} ,
172
169
} ) ;
Original file line number Diff line number Diff line change @@ -455,12 +455,7 @@ export default function netlifyIntegration(
455
455
hybridOutput : 'stable' ,
456
456
staticOutput : 'stable' ,
457
457
serverOutput : 'stable' ,
458
- assets : {
459
- // keeping this as experimental at least until Netlify Image CDN is out of beta
460
- supportKind : 'experimental' ,
461
- // still using Netlify Image CDN instead
462
- isSharpCompatible : true ,
463
- } ,
458
+ sharpImageService : 'stable' ,
464
459
envGetSecret : 'experimental' ,
465
460
} ,
466
461
} ) ;
Original file line number Diff line number Diff line change @@ -17,10 +17,7 @@ export function getAdapter(options: Options): AstroAdapter {
17
17
hybridOutput : 'stable' ,
18
18
staticOutput : 'stable' ,
19
19
serverOutput : 'stable' ,
20
- assets : {
21
- supportKind : 'stable' ,
22
- isSharpCompatible : true ,
23
- } ,
20
+ sharpImageService : 'stable' ,
24
21
i18nDomains : 'experimental' ,
25
22
envGetSecret : 'stable' ,
26
23
} ,
Original file line number Diff line number Diff line change @@ -90,10 +90,7 @@ function getAdapter({
90
90
hybridOutput : 'stable' ,
91
91
staticOutput : 'stable' ,
92
92
serverOutput : 'stable' ,
93
- assets : {
94
- supportKind : 'stable' ,
95
- isSharpCompatible : true ,
96
- } ,
93
+ sharpImageService : 'stable' ,
97
94
i18nDomains : 'experimental' ,
98
95
envGetSecret : 'stable' ,
99
96
} ,
Original file line number Diff line number Diff line change @@ -23,10 +23,7 @@ function getAdapter(): AstroAdapter {
23
23
return {
24
24
name : PACKAGE_NAME ,
25
25
supportedAstroFeatures : {
26
- assets : {
27
- supportKind : 'stable' ,
28
- isSharpCompatible : true ,
29
- } ,
26
+ sharpImageService : 'stable' ,
30
27
staticOutput : 'stable' ,
31
28
serverOutput : 'unsupported' ,
32
29
hybridOutput : 'unsupported' ,
You can’t perform that action at this time.
0 commit comments