Skip to content

Commit

Permalink
feat(cloudflare,netlify): stabilize astro:env secrets support (#496)
Browse files Browse the repository at this point in the history
  • Loading branch information
florian-lefebvre authored Jan 7, 2025
1 parent f487c91 commit 4b5cd22
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .changeset/brown-coats-dance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@astrojs/cloudflare': minor
'@astrojs/netlify': minor
---

Stabilizes `astro:env` secrets support
2 changes: 1 addition & 1 deletion packages/cloudflare/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export default function createIntegration(args?: Options): AstroIntegration {
staticOutput: 'unsupported',
i18nDomains: 'experimental',
sharpImageService: 'limited',
envGetSecret: 'experimental',
envGetSecret: 'stable',
},
});
},
Expand Down
2 changes: 1 addition & 1 deletion packages/netlify/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ export default function netlifyIntegration(
staticOutput: 'stable',
serverOutput: 'stable',
sharpImageService: 'stable',
envGetSecret: 'experimental',
envGetSecret: 'stable',
},
});
},
Expand Down

0 comments on commit 4b5cd22

Please sign in to comment.