Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit 4b5cd22

Browse files
feat(cloudflare,netlify): stabilize astro:env secrets support (#496)
1 parent f487c91 commit 4b5cd22

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.changeset/brown-coats-dance.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@astrojs/cloudflare': minor
3+
'@astrojs/netlify': minor
4+
---
5+
6+
Stabilizes `astro:env` secrets support

packages/cloudflare/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export default function createIntegration(args?: Options): AstroIntegration {
166166
staticOutput: 'unsupported',
167167
i18nDomains: 'experimental',
168168
sharpImageService: 'limited',
169-
envGetSecret: 'experimental',
169+
envGetSecret: 'stable',
170170
},
171171
});
172172
},

packages/netlify/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ export default function netlifyIntegration(
482482
staticOutput: 'stable',
483483
serverOutput: 'stable',
484484
sharpImageService: 'stable',
485-
envGetSecret: 'experimental',
485+
envGetSecret: 'stable',
486486
},
487487
});
488488
},

0 commit comments

Comments
 (0)