[ci] release (#6954)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Houston (Bot) 2023-05-02 12:13:10 -07:00 committed by GitHub
parent 77270cc2cd
commit 297a1dae51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
28 changed files with 67 additions and 67 deletions

View file

@ -1,5 +0,0 @@
---
"@astrojs/rss": patch
---
Fix: remove accidental stripping of trailing `/1/` on canonical URLs

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fix `astro-entry` error on build with multiple JSX frameworks

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fix getImage type

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Changed where various parts of the build pipeline look to decide if a page should be prerendered. They now exclusively consider PageBuildData, allowing integrations to participate in the decision.

View file

@ -1,5 +0,0 @@
---
"@astrojs/solid-js": patch
---
Allow Solid ecosystem packages to not need special export map configuration. By default Solid is now treated as an external package in SSR, so any other dependent packages will receive the same instance.

View file

@ -1,6 +0,0 @@
---
'@astrojs/image': patch
'astro': patch
---
Avoid removing leading slash for `build.assetsPrefix` value in the build output

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Inline `process.env` boolean values (`0`, `1`, `true`, `false`) during the build. This helps with DCE and allows for better `export const prerender` detection.

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fix content render imports flow

View file

@ -1,6 +0,0 @@
---
'@astrojs/image': patch
'astro': patch
---
Update allowed Sharp versions to support 0.32.0

View file

@ -1,5 +0,0 @@
---
'@astrojs/vercel': minor
---
Add support for using the Vercel Image Optimization API through `astro:assets`

View file

@ -1,5 +1,11 @@
# @astrojs/rss
## 2.4.1
### Patch Changes
- [#6970](https://github.com/withastro/astro/pull/6970) [`b5482cee2`](https://github.com/withastro/astro/commit/b5482cee2387149ff397447e546130ba3dea58db) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix: remove accidental stripping of trailing `/1/` on canonical URLs
## 2.4.0
### Minor Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/rss",
"description": "Add RSS feeds to your Astro projects",
"version": "2.4.0",
"version": "2.4.1",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",

View file

@ -1,5 +1,23 @@
# astro
## 2.3.4
### Patch Changes
- [#6967](https://github.com/withastro/astro/pull/6967) [`a8a319aef`](https://github.com/withastro/astro/commit/a8a319aef744a64647ee16c7d558d74de6864c6c) Thanks [@bluwy](https://github.com/bluwy)! - Fix `astro-entry` error on build with multiple JSX frameworks
- [#6961](https://github.com/withastro/astro/pull/6961) [`a695e44ae`](https://github.com/withastro/astro/commit/a695e44aed6e2f5d32cb950d4237be6e5657ba98) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix getImage type
- [#6956](https://github.com/withastro/astro/pull/6956) [`367e61776`](https://github.com/withastro/astro/commit/367e61776196a17d61c28daa4dfbabb6244e040c) Thanks [@lilnasy](https://github.com/lilnasy)! - Changed where various parts of the build pipeline look to decide if a page should be prerendered. They now exclusively consider PageBuildData, allowing integrations to participate in the decision.
- [#6969](https://github.com/withastro/astro/pull/6969) [`77270cc2c`](https://github.com/withastro/astro/commit/77270cc2cd06c942d7abf1d882e36d9163edafa5) Thanks [@bluwy](https://github.com/bluwy)! - Avoid removing leading slash for `build.assetsPrefix` value in the build output
- [#6910](https://github.com/withastro/astro/pull/6910) [`895fa07d8`](https://github.com/withastro/astro/commit/895fa07d8b4b8359984e048daca5437e40f44390) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Inline `process.env` boolean values (`0`, `1`, `true`, `false`) during the build. This helps with DCE and allows for better `export const prerender` detection.
- [#6958](https://github.com/withastro/astro/pull/6958) [`72c6bf01f`](https://github.com/withastro/astro/commit/72c6bf01fe49b331ca8ad9206a7506b15caf5b8d) Thanks [@bluwy](https://github.com/bluwy)! - Fix content render imports flow
- [#6952](https://github.com/withastro/astro/pull/6952) [`e5bd084c0`](https://github.com/withastro/astro/commit/e5bd084c01e4f60a157969b50c05ce002f7b63d2) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Update allowed Sharp versions to support 0.32.0
## 2.3.3
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "astro",
"version": "2.3.3",
"version": "2.3.4",
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
"type": "module",
"author": "withastro",

View file

@ -38,7 +38,7 @@
"tiny-glob": "^0.2.9"
},
"peerDependencies": {
"astro": "workspace:^2.3.3"
"astro": "workspace:^2.3.4"
},
"devDependencies": {
"astro": "workspace:*",

View file

@ -33,7 +33,7 @@
"esbuild": "^0.15.18"
},
"peerDependencies": {
"astro": "workspace:^2.3.3"
"astro": "workspace:^2.3.4"
},
"devDependencies": {
"astro": "workspace:*",

View file

@ -1,5 +1,16 @@
# @astrojs/image
## 0.16.7
### Patch Changes
- [#6969](https://github.com/withastro/astro/pull/6969) [`77270cc2c`](https://github.com/withastro/astro/commit/77270cc2cd06c942d7abf1d882e36d9163edafa5) Thanks [@bluwy](https://github.com/bluwy)! - Avoid removing leading slash for `build.assetsPrefix` value in the build output
- [#6952](https://github.com/withastro/astro/pull/6952) [`e5bd084c0`](https://github.com/withastro/astro/commit/e5bd084c01e4f60a157969b50c05ce002f7b63d2) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Update allowed Sharp versions to support 0.32.0
- Updated dependencies [[`a8a319aef`](https://github.com/withastro/astro/commit/a8a319aef744a64647ee16c7d558d74de6864c6c), [`a695e44ae`](https://github.com/withastro/astro/commit/a695e44aed6e2f5d32cb950d4237be6e5657ba98), [`367e61776`](https://github.com/withastro/astro/commit/367e61776196a17d61c28daa4dfbabb6244e040c), [`77270cc2c`](https://github.com/withastro/astro/commit/77270cc2cd06c942d7abf1d882e36d9163edafa5), [`895fa07d8`](https://github.com/withastro/astro/commit/895fa07d8b4b8359984e048daca5437e40f44390), [`72c6bf01f`](https://github.com/withastro/astro/commit/72c6bf01fe49b331ca8ad9206a7506b15caf5b8d), [`e5bd084c0`](https://github.com/withastro/astro/commit/e5bd084c01e4f60a157969b50c05ce002f7b63d2)]:
- astro@2.3.4
## 0.16.6
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/image",
"description": "Load and transform images in your Astro site",
"version": "0.16.6",
"version": "0.16.7",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
@ -62,7 +62,7 @@
"vite": "^4.3.1"
},
"peerDependencies": {
"astro": "workspace:^2.3.3",
"astro": "workspace:^2.3.4",
"sharp": ">=0.31.0"
},
"peerDependenciesMeta": {

View file

@ -41,7 +41,7 @@
"zod": "^3.17.3"
},
"peerDependencies": {
"astro": "workspace:^2.3.3"
"astro": "workspace:^2.3.4"
},
"devDependencies": {
"@types/chai": "^4.3.1",

View file

@ -39,7 +39,7 @@
"esbuild": "^0.15.18"
},
"peerDependencies": {
"astro": "workspace:^2.3.3"
"astro": "workspace:^2.3.4"
},
"devDependencies": {
"@netlify/edge-functions": "^2.0.0",

View file

@ -35,7 +35,7 @@
"server-destroy": "^1.0.1"
},
"peerDependencies": {
"astro": "workspace:^2.3.3"
"astro": "workspace:^2.3.4"
},
"devDependencies": {
"@types/send": "^0.17.1",

View file

@ -1,5 +1,11 @@
# @astrojs/solid-js
## 2.1.1
### Patch Changes
- [#6934](https://github.com/withastro/astro/pull/6934) [`b6797fc85`](https://github.com/withastro/astro/commit/b6797fc8583f7cb0749e69e72a56fe9fba6f815b) Thanks [@matthewp](https://github.com/matthewp)! - Allow Solid ecosystem packages to not need special export map configuration. By default Solid is now treated as an external package in SSR, so any other dependent packages will receive the same instance.
## 2.1.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@astrojs/solid-js",
"version": "2.1.0",
"version": "2.1.1",
"description": "Use Solid components within Astro",
"type": "module",
"types": "./dist/index.d.ts",

View file

@ -43,7 +43,7 @@
"vite": "^4.3.1"
},
"peerDependencies": {
"astro": "workspace:^2.3.3",
"astro": "workspace:^2.3.4",
"svelte": "^3.54.0"
},
"engines": {

View file

@ -40,7 +40,7 @@
"vite": "^4.3.1"
},
"peerDependencies": {
"astro": "workspace:^2.3.3",
"astro": "workspace:^2.3.4",
"tailwindcss": "^3.0.24"
},
"pnpm": {

View file

@ -1,5 +1,16 @@
# @astrojs/vercel
## 3.3.0
### Minor Changes
- [#6845](https://github.com/withastro/astro/pull/6845) [`6063f5657`](https://github.com/withastro/astro/commit/6063f5657392a74b6ffc4d5e0de5463c217a8563) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Add support for using the Vercel Image Optimization API through `astro:assets`
### Patch Changes
- Updated dependencies [[`a8a319aef`](https://github.com/withastro/astro/commit/a8a319aef744a64647ee16c7d558d74de6864c6c), [`a695e44ae`](https://github.com/withastro/astro/commit/a695e44aed6e2f5d32cb950d4237be6e5657ba98), [`367e61776`](https://github.com/withastro/astro/commit/367e61776196a17d61c28daa4dfbabb6244e040c), [`77270cc2c`](https://github.com/withastro/astro/commit/77270cc2cd06c942d7abf1d882e36d9163edafa5), [`895fa07d8`](https://github.com/withastro/astro/commit/895fa07d8b4b8359984e048daca5437e40f44390), [`72c6bf01f`](https://github.com/withastro/astro/commit/72c6bf01fe49b331ca8ad9206a7506b15caf5b8d), [`e5bd084c0`](https://github.com/withastro/astro/commit/e5bd084c01e4f60a157969b50c05ce002f7b63d2)]:
- astro@2.3.4
## 3.2.5
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/vercel",
"description": "Deploy your site to Vercel",
"version": "3.2.5",
"version": "3.3.0",
"type": "module",
"author": "withastro",
"license": "MIT",
@ -55,7 +55,7 @@
"web-vitals": "^3.1.1"
},
"peerDependencies": {
"astro": "workspace:^2.3.3"
"astro": "workspace:^2.3.4"
},
"devDependencies": {
"@types/set-cookie-parser": "^2.4.2",

View file

@ -50,7 +50,7 @@
"vue": "^3.2.37"
},
"peerDependencies": {
"astro": "workspace:^2.3.3",
"astro": "workspace:^2.3.4",
"vue": "^3.2.30"
},
"engines": {