Skip to content

Commit fb4e79b

Browse files
[ci] release (#6261)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 9286e10 commit fb4e79b

File tree

46 files changed

+105
-94
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+105
-94
lines changed

.changeset/dull-wasps-decide.md

-5
This file was deleted.

.changeset/funny-seahorses-compare.md

-6
This file was deleted.

.changeset/gentle-parrots-cheer.md

-5
This file was deleted.

.changeset/metal-ducks-invite.md

-5
This file was deleted.

examples/basics/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"astro": "^2.0.12"
14+
"astro": "^2.0.13"
1515
}
1616
}

examples/blog/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"astro": "^2.0.12",
15-
"@astrojs/mdx": "^0.16.2",
14+
"astro": "^2.0.13",
15+
"@astrojs/mdx": "^0.17.0",
1616
"@astrojs/rss": "^2.1.0",
1717
"@astrojs/sitemap": "^1.0.1"
1818
}

examples/component/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
],
1616
"scripts": {},
1717
"devDependencies": {
18-
"astro": "^2.0.12"
18+
"astro": "^2.0.13"
1919
},
2020
"peerDependencies": {
2121
"astro": "^2.0.0-beta.0"

examples/deno/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"astro": "astro"
1111
},
1212
"dependencies": {
13-
"astro": "^2.0.12"
13+
"astro": "^2.0.13"
1414
},
1515
"devDependencies": {
16-
"@astrojs/deno": "^4.0.0"
16+
"@astrojs/deno": "^4.0.1"
1717
}
1818
}

examples/docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"astro": "^2.0.12",
14+
"astro": "^2.0.13",
1515
"preact": "^10.7.3",
1616
"react": "^18.1.0",
1717
"react-dom": "^18.1.0",

examples/framework-alpine/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"astro": "^2.0.12",
14+
"astro": "^2.0.13",
1515
"alpinejs": "^3.10.2",
1616
"@astrojs/alpinejs": "^0.1.3",
1717
"@types/alpinejs": "^3.7.0"

examples/framework-lit/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"astro": "^2.0.12",
14+
"astro": "^2.0.13",
1515
"lit": "^2.2.5",
1616
"@astrojs/lit": "^1.2.0",
1717
"@webcomponents/template-shadowroot": "^0.1.0"

examples/framework-multiple/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"astro": "^2.0.12",
14+
"astro": "^2.0.13",
1515
"preact": "^10.7.3",
1616
"react": "^18.1.0",
1717
"react-dom": "^18.1.0",

examples/framework-preact/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"astro": "^2.0.12",
14+
"astro": "^2.0.13",
1515
"preact": "^10.7.3",
1616
"@astrojs/preact": "^2.0.3",
1717
"@preact/signals": "^1.1.0"

examples/framework-react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"astro": "^2.0.12",
14+
"astro": "^2.0.13",
1515
"react": "^18.1.0",
1616
"react-dom": "^18.1.0",
1717
"@astrojs/react": "^2.0.2",

examples/framework-solid/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"astro": "^2.0.12",
14+
"astro": "^2.0.13",
1515
"solid-js": "^1.4.3",
1616
"@astrojs/solid-js": "^2.0.2"
1717
}

examples/framework-svelte/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
"dependencies": {
1414
"svelte": "^3.48.0",
1515
"@astrojs/svelte": "^2.0.2",
16-
"astro": "^2.0.12"
16+
"astro": "^2.0.13"
1717
}
1818
}

examples/framework-vue/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"astro": "^2.0.12",
14+
"astro": "^2.0.13",
1515
"vue": "^3.2.37",
1616
"@astrojs/vue": "^2.0.1"
1717
}

examples/hackernews/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
},
1313
"dependencies": {
1414
"@astrojs/node": "^5.0.3",
15-
"astro": "^2.0.12"
15+
"astro": "^2.0.13"
1616
}
1717
}

examples/integration/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
],
1616
"scripts": {},
1717
"devDependencies": {
18-
"astro": "^2.0.12"
18+
"astro": "^2.0.13"
1919
},
2020
"peerDependencies": {
2121
"astro": "^2.0.0-beta.0"

examples/minimal/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"astro": "^2.0.12"
14+
"astro": "^2.0.13"
1515
}
1616
}

examples/non-html-pages/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"astro": "^2.0.12"
14+
"astro": "^2.0.13"
1515
}
1616
}

examples/portfolio/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"astro": "^2.0.12"
14+
"astro": "^2.0.13"
1515
}
1616
}

examples/ssr/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"server": "node dist/server/entry.mjs"
1313
},
1414
"dependencies": {
15-
"astro": "^2.0.12",
15+
"astro": "^2.0.13",
1616
"svelte": "^3.48.0",
1717
"@astrojs/svelte": "^2.0.2",
1818
"@astrojs/node": "^5.0.3",

examples/with-markdown-plugins/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"astro": "^2.0.12",
14+
"astro": "^2.0.13",
1515
"@astrojs/markdown-remark": "^2.0.1",
1616
"hast-util-select": "5.0.1",
1717
"rehype-autolink-headings": "^6.1.1",

examples/with-markdown-shiki/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"astro": "^2.0.12"
14+
"astro": "^2.0.13"
1515
}
1616
}

examples/with-mdx/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"astro": "^2.0.12",
14+
"astro": "^2.0.13",
1515
"preact": "^10.6.5",
1616
"@astrojs/preact": "^2.0.3",
17-
"@astrojs/mdx": "^0.16.2"
17+
"@astrojs/mdx": "^0.17.0"
1818
}
1919
}

examples/with-nanostores/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"astro": "^2.0.12",
14+
"astro": "^2.0.13",
1515
"preact": "^10.7.3",
1616
"@astrojs/preact": "^2.0.3",
1717
"nanostores": "^0.5.12",

examples/with-tailwindcss/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"@astrojs/mdx": "^0.16.2",
14+
"@astrojs/mdx": "^0.17.0",
1515
"@astrojs/tailwind": "^3.0.1",
1616
"@types/canvas-confetti": "^1.4.3",
17-
"astro": "^2.0.12",
17+
"astro": "^2.0.13",
1818
"autoprefixer": "^10.4.7",
1919
"canvas-confetti": "^1.5.1",
2020
"postcss": "^8.4.14",

examples/with-vite-plugin-pwa/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"astro": "^2.0.12",
14+
"astro": "^2.0.13",
1515
"vite-plugin-pwa": "0.11.11",
1616
"workbox-window": "^6.5.3"
1717
}

examples/with-vitest/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"test": "vitest"
1313
},
1414
"dependencies": {
15-
"astro": "^2.0.12",
15+
"astro": "^2.0.13",
1616
"vitest": "^0.20.3"
1717
}
1818
}

packages/astro/CHANGELOG.md

+8

packages/astro/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "astro",
3-
"version": "2.0.12",
3+
"version": "2.0.13",
44
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
55
"type": "module",
66
"author": "withastro",

packages/integrations/cloudflare/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"tiny-glob": "^0.2.9"
3939
},
4040
"peerDependencies": {
41-
"astro": "workspace:^2.0.12"
41+
"astro": "workspace:^2.0.13"
4242
},
4343
"devDependencies": {
4444
"astro": "workspace:*",

packages/integrations/deno/CHANGELOG.md

+9

packages/integrations/deno/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@astrojs/deno",
33
"description": "Deploy your site to a Deno server",
4-
"version": "4.0.0",
4+
"version": "4.0.1",
55
"type": "module",
66
"types": "./dist/index.d.ts",
77
"author": "withastro",
@@ -32,7 +32,7 @@
3232
"esbuild": "^0.15.18"
3333
},
3434
"peerDependencies": {
35-
"astro": "workspace:^2.0.12"
35+
"astro": "workspace:^2.0.13"
3636
},
3737
"devDependencies": {
3838
"astro": "workspace:*",

packages/integrations/image/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"vite": "^4.0.3"
6464
},
6565
"peerDependencies": {
66-
"astro": "workspace:^2.0.12",
66+
"astro": "workspace:^2.0.13",
6767
"sharp": ">=0.31.0"
6868
},
6969
"peerDependenciesMeta": {

packages/integrations/mdx/CHANGELOG.md

+6

packages/integrations/mdx/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@astrojs/mdx",
33
"description": "Use MDX within Astro",
4-
"version": "0.16.2",
4+
"version": "0.17.0",
55
"type": "module",
66
"types": "./dist/index.d.ts",
77
"author": "withastro",

packages/integrations/netlify/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"esbuild": "^0.15.18"
4040
},
4141
"peerDependencies": {
42-
"astro": "workspace:^2.0.12"
42+
"astro": "workspace:^2.0.13"
4343
},
4444
"devDependencies": {
4545
"@netlify/edge-handler-types": "^0.34.1",

packages/integrations/node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"server-destroy": "^1.0.1"
3636
},
3737
"peerDependencies": {
38-
"astro": "workspace:^2.0.12"
38+
"astro": "workspace:^2.0.13"
3939
},
4040
"devDependencies": {
4141
"@types/send": "^0.17.1",

packages/integrations/svelte/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
},
4545
"peerDependencies": {
4646
"svelte": "^3.54.0",
47-
"astro": "workspace:^2.0.12"
47+
"astro": "workspace:^2.0.13"
4848
},
4949
"engines": {
5050
"node": ">=16.12.0"

packages/integrations/tailwind/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
},
4242
"peerDependencies": {
4343
"tailwindcss": "^3.0.24",
44-
"astro": "workspace:^2.0.12"
44+
"astro": "workspace:^2.0.13"
4545
},
4646
"pnpm": {
4747
"peerDependencyRules": {

0 commit comments

Comments
 (0)