[ci] release (#7318)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Houston (Bot) 2023-06-08 22:40:17 -07:00 committed by GitHub
parent 8341c461b5
commit e138f66344
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
26 changed files with 86 additions and 57 deletions

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fixed a bug that threw an Exception when spreading potentially undefined values as HTML attributes

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Add readable error message for invalid dynamic routes.

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fix Zod errors getting flagged as configuration errors

View file

@ -1,5 +0,0 @@
---
'@astrojs/markdown-component': patch
---
Fix Markdown component error message false positive

View file

@ -1,5 +0,0 @@
---
'@astrojs/svelte': major
---
Update to svelte2tsx 0.6.15 and vite-plugin-svelte 2.4.1

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fix for experimental redirects in dev mode

View file

@ -1,5 +0,0 @@
---
'create-astro': patch
---
Ensure create-astro respects package manager registry configuration

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fixes issue where Astro doesn't respect custom npm registry settings during project creation

View file

@ -1,5 +1,19 @@
# astro
## 2.6.2
### Patch Changes
- [#7310](https://github.com/withastro/astro/pull/7310) [`52f0480d1`](https://github.com/withastro/astro/commit/52f0480d14c328ab69bd1f2681ddfd83f7385ab1) Thanks [@Edo-San](https://github.com/Edo-San)! - Fixed a bug that threw an Exception when spreading potentially undefined values as HTML attributes
- [#7339](https://github.com/withastro/astro/pull/7339) [`e3271f8c1`](https://github.com/withastro/astro/commit/e3271f8c167288dc60b94242d01d459c162ec06d) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add readable error message for invalid dynamic routes.
- [#7316](https://github.com/withastro/astro/pull/7316) [`e6bff651f`](https://github.com/withastro/astro/commit/e6bff651ff80466b3e862e637d2a6a3334d8cfda) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix Zod errors getting flagged as configuration errors
- [#7342](https://github.com/withastro/astro/pull/7342) [`bbcf69e7b`](https://github.com/withastro/astro/commit/bbcf69e7b8d4bbb759fe0c7e5fd2d2ed58090b59) Thanks [@matthewp](https://github.com/matthewp)! - Fix for experimental redirects in dev mode
- [#7326](https://github.com/withastro/astro/pull/7326) [`1430ffb47`](https://github.com/withastro/astro/commit/1430ffb4734edbb67cbeaaee7e89a9f78e00473c) Thanks [@calebdwilliams](https://github.com/calebdwilliams)! - Fixes issue where Astro doesn't respect custom npm registry settings during project creation
## 2.6.1
### Patch Changes

View file

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

View file

@ -1,5 +1,11 @@
# create-astro
## 3.1.7
### Patch Changes
- [#7326](https://github.com/withastro/astro/pull/7326) [`1430ffb47`](https://github.com/withastro/astro/commit/1430ffb4734edbb67cbeaaee7e89a9f78e00473c) Thanks [@calebdwilliams](https://github.com/calebdwilliams)! - Ensure create-astro respects package manager registry configuration
## 3.1.6
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "create-astro",
"version": "3.1.6",
"version": "3.1.7",
"type": "module",
"author": "withastro",
"license": "MIT",

View file

@ -43,7 +43,7 @@
"tiny-glob": "^0.2.9"
},
"peerDependencies": {
"astro": "workspace:^2.6.1"
"astro": "workspace:^2.6.2"
},
"devDependencies": {
"astro": "workspace:*",

View file

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

View file

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

View file

@ -73,7 +73,7 @@
"zod": "^3.17.3"
},
"peerDependencies": {
"astro": "workspace:^2.6.1"
"astro": "workspace:^2.6.2"
},
"devDependencies": {
"@astrojs/markdown-remark": "^2.2.1",

View file

@ -43,7 +43,7 @@
"esbuild": "^0.15.18"
},
"peerDependencies": {
"astro": "workspace:^2.6.1"
"astro": "workspace:^2.6.2"
},
"devDependencies": {
"@netlify/edge-functions": "^2.0.0",

View file

@ -38,7 +38,7 @@
"server-destroy": "^1.0.1"
},
"peerDependencies": {
"astro": "workspace:^2.6.1"
"astro": "workspace:^2.6.2"
},
"devDependencies": {
"@types/node": "^18.7.21",

View file

@ -1,5 +1,16 @@
# @astrojs/svelte
## 3.0.0
### Major Changes
- [#7314](https://github.com/withastro/astro/pull/7314) [`e47e53dc0`](https://github.com/withastro/astro/commit/e47e53dc0c38468c9cf7ffaf6e21c80291d013cc) Thanks [@wackbyte](https://github.com/wackbyte)! - Update to svelte2tsx 0.6.15 and vite-plugin-svelte 2.4.1
### Patch Changes
- Updated dependencies [[`52f0480d1`](https://github.com/withastro/astro/commit/52f0480d14c328ab69bd1f2681ddfd83f7385ab1), [`e3271f8c1`](https://github.com/withastro/astro/commit/e3271f8c167288dc60b94242d01d459c162ec06d), [`e6bff651f`](https://github.com/withastro/astro/commit/e6bff651ff80466b3e862e637d2a6a3334d8cfda), [`bbcf69e7b`](https://github.com/withastro/astro/commit/bbcf69e7b8d4bbb759fe0c7e5fd2d2ed58090b59), [`1430ffb47`](https://github.com/withastro/astro/commit/1430ffb4734edbb67cbeaaee7e89a9f78e00473c)]:
- astro@2.6.2
## 2.2.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@astrojs/svelte",
"version": "2.2.0",
"version": "3.0.0",
"description": "Use Svelte components within Astro",
"type": "module",
"types": "./dist/index.d.ts",
@ -48,7 +48,7 @@
"vite": "^4.3.1"
},
"peerDependencies": {
"astro": "workspace:^2.6.1",
"astro": "workspace:^2.6.2",
"svelte": "^3.55.0"
},
"engines": {

View file

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

View file

@ -60,7 +60,7 @@
"web-vitals": "^3.1.1"
},
"peerDependencies": {
"astro": "workspace:^2.6.1"
"astro": "workspace:^2.6.2"
},
"devDependencies": {
"@types/set-cookie-parser": "^2.4.2",

View file

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

View file

@ -1,5 +1,11 @@
# @astrojs/markdown-component
## 1.0.5
### Patch Changes
- [#7343](https://github.com/withastro/astro/pull/7343) [`3d9a392a0`](https://github.com/withastro/astro/commit/3d9a392a09133aeb7a6efeb59c307f27a9b83198) Thanks [@matthewp](https://github.com/matthewp)! - Fix Markdown component error message false positive
## 1.0.4
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/markdown-component",
"description": "Use the legacy Markdown component in your Astro site",
"version": "1.0.4",
"version": "1.0.5",
"type": "module",
"author": "withastro",
"license": "MIT",

View file

@ -205,7 +205,7 @@ importers:
version: link:../../packages/integrations/solid
'@astrojs/svelte':
specifier: ^2.2.0
version: link:../../packages/integrations/svelte
version: 2.2.0(astro@packages+astro)(svelte@3.58.0)(typescript@5.0.2)
'@astrojs/vue':
specifier: ^2.2.1
version: link:../../packages/integrations/vue
@ -283,7 +283,7 @@ importers:
dependencies:
'@astrojs/svelte':
specifier: ^2.2.0
version: link:../../packages/integrations/svelte
version: 2.2.0(astro@packages+astro)(svelte@3.58.0)(typescript@5.0.2)
astro:
specifier: ^2.5.6
version: link:../../packages/astro
@ -355,7 +355,7 @@ importers:
version: link:../../packages/integrations/node
'@astrojs/svelte':
specifier: ^2.2.0
version: link:../../packages/integrations/svelte
version: 2.2.0(astro@packages+astro)(svelte@3.58.0)(typescript@5.0.2)
astro:
specifier: ^2.5.6
version: link:../../packages/astro
@ -5465,6 +5465,23 @@ packages:
vscode-uri: 3.0.7
dev: false
/@astrojs/svelte@2.2.0(astro@packages+astro)(svelte@3.58.0)(typescript@5.0.2):
resolution: {integrity: sha512-4kfh3GEIIOqH/wwTwLloRsZJ3z7rJ1eZWZ1oFrfEIjiQny5XqxyRJp/tUseKfaeDwKQGL+9t31ePTuwxx5oung==}
engines: {node: '>=16.12.0'}
peerDependencies:
astro: '*'
svelte: ^3.54.0
dependencies:
'@sveltejs/vite-plugin-svelte': 2.4.1(svelte@3.58.0)(vite@4.3.1)
astro: link:packages/astro
svelte: 3.58.0
svelte2tsx: 0.5.23(svelte@3.58.0)(typescript@5.0.2)
transitivePeerDependencies:
- supports-color
- typescript
- vite
dev: false
/@babel/code-frame@7.21.4:
resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==}
engines: {node: '>=6.9.0'}
@ -16787,6 +16804,21 @@ packages:
svelte: 3.58.0
dev: false
/svelte2tsx@0.5.23(svelte@3.58.0)(typescript@5.0.2):
resolution: {integrity: sha512-jYFnugTQRFmUpvLXPQrKzVYcW5ErT+0QCxg027Zx9BuvYefMZFuoBSTDYe7viPEFGrPPiLgT2m7f5n9khE7f7Q==}
peerDependencies:
svelte: ^3.24
typescript: ^4.1.2
peerDependenciesMeta:
typescript:
optional: true
dependencies:
dedent-js: 1.0.1
pascal-case: 3.1.2
svelte: 3.58.0
typescript: 5.0.2
dev: false
/svelte2tsx@0.6.15(svelte@3.58.0)(typescript@5.0.2):
resolution: {integrity: sha512-+j6RmA3g5pPs1DHa/rdzJjjhZuCfWx0IbNPaR99A2bvOSPPY6BlVkBGU0urI+DGcWHhYEG28Flo942KqlAkpEQ==}
peerDependencies: