[ci] release (#7043)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Houston (Bot) 2023-05-09 14:37:15 -07:00 committed by GitHub
parent 3a9f72c7f3
commit a44e755cc6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 36 additions and 33 deletions

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fix `/_image` endpoint not being prefixed with the `base` path in build SSR

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Add fast lookups for content collection entries when using `getEntryBySlug()`. This generates a lookup map to ensure O(1) retrieval.

View file

@ -1,5 +0,0 @@
---
'@astrojs/sitemap': patch
---
Fix generation for static dynamic routes

View file

@ -1,5 +0,0 @@
---
'@astrojs/markdoc': patch
---
Improve Markdoc validation errors with full message and file preview.

View file

@ -1,5 +1,13 @@
# astro
## 2.4.4
### Patch Changes
- [#7047](https://github.com/withastro/astro/pull/7047) [`48395c815`](https://github.com/withastro/astro/commit/48395c81522f7527126699c4f185f7b4488a4b9a) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix `/_image` endpoint not being prefixed with the `base` path in build SSR
- [#6916](https://github.com/withastro/astro/pull/6916) [`630f8c8ef`](https://github.com/withastro/astro/commit/630f8c8ef68fedfa393899c13a072e50145895e8) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add fast lookups for content collection entries when using `getEntryBySlug()`. This generates a lookup map to ensure O(1) retrieval.
## 2.4.3
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "astro",
"version": "2.4.3",
"version": "2.4.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.4.3"
"astro": "workspace:^2.4.4"
},
"devDependencies": {
"astro": "workspace:*",

View file

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

View file

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

View file

@ -1,5 +1,14 @@
# @astrojs/markdoc
## 0.1.3
### Patch Changes
- [#7045](https://github.com/withastro/astro/pull/7045) [`3a9f72c7f`](https://github.com/withastro/astro/commit/3a9f72c7f30ed173438fd0a222a094e5997b917d) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Improve Markdoc validation errors with full message and file preview.
- Updated dependencies [[`48395c815`](https://github.com/withastro/astro/commit/48395c81522f7527126699c4f185f7b4488a4b9a), [`630f8c8ef`](https://github.com/withastro/astro/commit/630f8c8ef68fedfa393899c13a072e50145895e8)]:
- astro@2.4.4
## 0.1.2
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/markdoc",
"description": "Add support for Markdoc pages in your Astro site",
"version": "0.1.2",
"version": "0.1.3",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
@ -41,7 +41,7 @@
"zod": "^3.17.3"
},
"peerDependencies": {
"astro": "workspace:^2.4.3"
"astro": "workspace:^2.4.4"
},
"devDependencies": {
"@types/chai": "^4.3.1",

View file

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

View file

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

View file

@ -1,5 +1,11 @@
# @astrojs/sitemap
## 1.3.1
### Patch Changes
- [#7029](https://github.com/withastro/astro/pull/7029) [`1b90a7a5d`](https://github.com/withastro/astro/commit/1b90a7a5d5f16e3e1fa0329b509c6c6e76248181) Thanks [@TheOtterlord](https://github.com/TheOtterlord)! - Fix generation for static dynamic routes
## 1.3.0
### Minor Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/sitemap",
"description": "Generate a sitemap for your Astro site",
"version": "1.3.0",
"version": "1.3.1",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",

View file

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

View file

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

View file

@ -55,7 +55,7 @@
"web-vitals": "^3.1.1"
},
"peerDependencies": {
"astro": "workspace:^2.4.3"
"astro": "workspace:^2.4.4"
},
"devDependencies": {
"@types/set-cookie-parser": "^2.4.2",

View file

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