[ci] release (#7130)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Houston (Bot) 2023-05-20 09:00:31 -07:00 committed by GitHub
parent 358d1dc92f
commit 0616ef2551
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 42 additions and 49 deletions

View file

@ -1,6 +0,0 @@
---
'@astrojs/prefetch': patch
---
Fix the inclusion of `@types/network-information`.

View file

@ -1,5 +0,0 @@
---
'@astrojs/markdoc': patch
---
Fix inconsistent Markdoc heading IDs for documents with the same headings.

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fix routes created by `injectRoute` for SSR

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Emit middleware as an entrypoint during build

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Emit pages as dynamic import chunks during the build

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Add route information when warning of `getStaticPaths()` ignored

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fix unnecessary warning showing on start when a collection folder was empty. The warning was also enhanced to add more information about possible causes.

View file

@ -1,5 +1,19 @@
# astro
## 2.5.1
### Patch Changes
- [#7128](https://github.com/withastro/astro/pull/7128) [`72f686a68`](https://github.com/withastro/astro/commit/72f686a68930de52f9a274c13c98acad59925b31) Thanks [@johannesspohr](https://github.com/johannesspohr)! - Fix routes created by `injectRoute` for SSR
- [#7132](https://github.com/withastro/astro/pull/7132) [`319a0a7a0`](https://github.com/withastro/astro/commit/319a0a7a0a6a950387c942b467746d590bb32fda) Thanks [@ematipico](https://github.com/ematipico)! - Emit middleware as an entrypoint during build
- [#7036](https://github.com/withastro/astro/pull/7036) [`852d59a8d`](https://github.com/withastro/astro/commit/852d59a8d68e124f10852609e0f1619d5838ac76) Thanks [@ematipico](https://github.com/ematipico)! - Emit pages as dynamic import chunks during the build
- [#7126](https://github.com/withastro/astro/pull/7126) [`530fb9ebe`](https://github.com/withastro/astro/commit/530fb9ebee77646921ec29d45d9b66484bdfb521) Thanks [@bluwy](https://github.com/bluwy)! - Add route information when warning of `getStaticPaths()` ignored
- [#7118](https://github.com/withastro/astro/pull/7118) [`3257dd289`](https://github.com/withastro/astro/commit/3257dd28901c785a6a661211b98c5ef2cb3b9aa4) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix unnecessary warning showing on start when a collection folder was empty. The warning was also enhanced to add more information about possible causes.
## 2.5.0
### Minor Changes

View file

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

View file

@ -42,7 +42,7 @@
"tiny-glob": "^0.2.9"
},
"peerDependencies": {
"astro": "workspace:^2.5.0"
"astro": "workspace:^2.5.1"
},
"devDependencies": {
"astro": "workspace:*",

View file

@ -36,7 +36,7 @@
"esbuild": "^0.15.18"
},
"peerDependencies": {
"astro": "workspace:^2.5.0"
"astro": "workspace:^2.5.1"
},
"devDependencies": {
"astro": "workspace:*",

View file

@ -62,7 +62,7 @@
"vite": "^4.3.1"
},
"peerDependencies": {
"astro": "workspace:^2.5.0",
"astro": "workspace:^2.5.1",
"sharp": ">=0.31.0"
},
"peerDependenciesMeta": {

View file

@ -1,5 +1,14 @@
# @astrojs/markdoc
## 0.2.1
### Patch Changes
- [#7141](https://github.com/withastro/astro/pull/7141) [`a9e1cd7e5`](https://github.com/withastro/astro/commit/a9e1cd7e58794fe220539c2ed935c9eb96bab55a) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix inconsistent Markdoc heading IDs for documents with the same headings.
- Updated dependencies [[`72f686a68`](https://github.com/withastro/astro/commit/72f686a68930de52f9a274c13c98acad59925b31), [`319a0a7a0`](https://github.com/withastro/astro/commit/319a0a7a0a6a950387c942b467746d590bb32fda), [`852d59a8d`](https://github.com/withastro/astro/commit/852d59a8d68e124f10852609e0f1619d5838ac76), [`530fb9ebe`](https://github.com/withastro/astro/commit/530fb9ebee77646921ec29d45d9b66484bdfb521), [`3257dd289`](https://github.com/withastro/astro/commit/3257dd28901c785a6a661211b98c5ef2cb3b9aa4)]:
- astro@2.5.1
## 0.2.0
### Minor Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/markdoc",
"description": "Add support for Markdoc pages in your Astro site",
"version": "0.2.0",
"version": "0.2.1",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
@ -47,7 +47,7 @@
"zod": "^3.17.3"
},
"peerDependencies": {
"astro": "workspace:^2.5.0"
"astro": "workspace:^2.5.1"
},
"devDependencies": {
"@astrojs/markdown-remark": "^2.2.1",

View file

@ -42,7 +42,7 @@
"esbuild": "^0.15.18"
},
"peerDependencies": {
"astro": "workspace:^2.5.0"
"astro": "workspace:^2.5.1"
},
"devDependencies": {
"@netlify/edge-functions": "^2.0.0",

View file

@ -38,7 +38,7 @@
"server-destroy": "^1.0.1"
},
"peerDependencies": {
"astro": "workspace:^2.5.0"
"astro": "workspace:^2.5.1"
},
"devDependencies": {
"@types/send": "^0.17.1",

View file

@ -1,5 +1,11 @@
# @astrojs/prefetch
## 0.2.3
### Patch Changes
- [#7123](https://github.com/withastro/astro/pull/7123) [`147373722`](https://github.com/withastro/astro/commit/147373722b37126af949bb054a1cdfb0aed6c2ff) Thanks [@connor-baer](https://github.com/connor-baer)! - Fix the inclusion of `@types/network-information`.
## 0.2.2
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/prefetch",
"description": "Prefetch page navigations in your Astro site",
"version": "0.2.2",
"version": "0.2.3",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",

View file

@ -48,7 +48,7 @@
"vite": "^4.3.1"
},
"peerDependencies": {
"astro": "workspace:^2.5.0",
"astro": "workspace:^2.5.1",
"svelte": "^3.54.0"
},
"engines": {

View file

@ -44,7 +44,7 @@
"vite": "^4.3.1"
},
"peerDependencies": {
"astro": "workspace:^2.5.0",
"astro": "workspace:^2.5.1",
"tailwindcss": "^3.0.24"
},
"pnpm": {

View file

@ -59,7 +59,7 @@
"web-vitals": "^3.1.1"
},
"peerDependencies": {
"astro": "workspace:^2.5.0"
"astro": "workspace:^2.5.1"
},
"devDependencies": {
"@types/set-cookie-parser": "^2.4.2",

View file

@ -56,7 +56,7 @@
"vue": "^3.2.37"
},
"peerDependencies": {
"astro": "workspace:^2.5.0",
"astro": "workspace:^2.5.1",
"vue": "^3.2.30"
},
"engines": {