` component for JavaScript-free client-side debugging.
- ```astro
-
- ```
-
## 0.19.2
### Patch Changes
@@ -2658,11 +2708,7 @@ For convenience, you may now also move your `astro.config.js` file to a top-leve
```
- The above will be sent to the browser as-is and the browser will resolve it relative to the current **page**. If you want it to be resolved relative to the .astro file you are working in, use `Astro.resolve`:
-
- ```astro
-
- ```
+ The above will be sent to the browser as-is and the browser will resolve it relative to the current **page**. If you want it to be resolved relative to the .astro file you are working in, use `Astro.resolve`.
- 239065e2: Adds support for client:only hydrator
@@ -2749,10 +2795,6 @@ For convenience, you may now also move your `astro.config.js` file to a top-leve
The above will be sent to the browser as-is and the browser will resolve it relative to the current **page**. If you want it to be resolved relative to the .astro file you are working in, use `Astro.resolve`:
- ```astro
-
- ```
-
## 0.19.0-next.2
### Patch Changes
@@ -3077,22 +3119,14 @@ For convenience, you may now also move your `astro.config.js` file to a top-leve
- 1b73f95: Only show the buildOptions.site notice if not already set
- fb78b76: Improve error handling for unsupported Node versions
-- d93f768: Add support for components defined in Frontmatter. Previously, the following code would throw an error. Now it is officially supported!
-
- ```astro
-
- ```
+- d93f768: Add support for components defined in Frontmatter.
## 0.17.1
### Patch Changes
- 1e01251: Fixes bug with React renderer that would not hydrate correctly
-- 42a6ace: Add support for components defined in Frontmatter. Previously, the following code would throw an error. Now it is officially supported!
-
- ```astro
-
- ```
+- 42a6ace: Add support for components defined in Frontmatter.
- Updated dependencies [1e01251]
- @astrojs/renderer-react@0.1.5
diff --git a/packages/astro/package.json b/packages/astro/package.json
index d5309f60a..6d985aa3f 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "1.0.0-rc.8",
+ "version": "1.0.0",
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
"type": "module",
"author": "withastro",
@@ -88,9 +88,9 @@
"dependencies": {
"@astrojs/compiler": "^0.23.1",
"@astrojs/language-server": "^0.20.0",
- "@astrojs/markdown-remark": "^0.14.1",
- "@astrojs/telemetry": "^0.4.1",
- "@astrojs/webapi": "^0.12.0",
+ "@astrojs/markdown-remark": "^1.0.0",
+ "@astrojs/telemetry": "^1.0.0",
+ "@astrojs/webapi": "^1.0.0",
"@babel/core": "^7.18.2",
"@babel/generator": "^7.18.2",
"@babel/parser": "^7.18.4",
diff --git a/packages/create-astro/CHANGELOG.md b/packages/create-astro/CHANGELOG.md
index c12d8328b..7205cd471 100644
--- a/packages/create-astro/CHANGELOG.md
+++ b/packages/create-astro/CHANGELOG.md
@@ -1,5 +1,13 @@
# create-astro
+## 1.0.0
+
+### Major Changes
+
+- [`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308) - > Astro v1.0 is out! Read the [official announcement post](https://astro.build/blog/astro-1/).
+
+ **No breaking changes**. This package is now officially stable and compatible with `astro@1.0.0`!
+
## 0.15.1
### Patch Changes
diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json
index 410823d9e..aee43f726 100644
--- a/packages/create-astro/package.json
+++ b/packages/create-astro/package.json
@@ -1,6 +1,6 @@
{
"name": "create-astro",
- "version": "0.15.1",
+ "version": "1.0.0",
"type": "module",
"author": "withastro",
"license": "MIT",
diff --git a/packages/integrations/cloudflare/CHANGELOG.md b/packages/integrations/cloudflare/CHANGELOG.md
index ee8eba2d4..9280f7081 100644
--- a/packages/integrations/cloudflare/CHANGELOG.md
+++ b/packages/integrations/cloudflare/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/cloudflare
+## 1.0.0
+
+### Major Changes
+
+- [`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308) - > Astro v1.0 is out! Read the [official announcement post](https://astro.build/blog/astro-1/).
+
+ **No breaking changes**. This package is now officially stable and compatible with `astro@1.0.0`!
+
## 0.5.0
### Minor Changes
@@ -50,7 +58,7 @@
The new `Astro.clientAddress` property allows you to get the IP address of the requested user.
```astro
-
+ Your address {Astro.clientAddress}
```
This property is only available when building for SSR, and only if the adapter you are using supports providing the IP address. If you attempt to access the property in a SSG app it will throw an error.
diff --git a/packages/integrations/cloudflare/package.json b/packages/integrations/cloudflare/package.json
index c254ada38..1c13bdbef 100644
--- a/packages/integrations/cloudflare/package.json
+++ b/packages/integrations/cloudflare/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/cloudflare",
"description": "Deploy your site to cloudflare pages functions",
- "version": "0.5.0",
+ "version": "1.0.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/deno/CHANGELOG.md b/packages/integrations/deno/CHANGELOG.md
index c0046c185..3f53001c0 100644
--- a/packages/integrations/deno/CHANGELOG.md
+++ b/packages/integrations/deno/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/node
+## 1.0.0
+
+### Major Changes
+
+- [`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308) - > Astro v1.0 is out! Read the [official announcement post](https://astro.build/blog/astro-1/).
+
+ **No breaking changes**. This package is now officially stable and compatible with `astro@1.0.0`!
+
## 0.2.0
### Minor Changes
diff --git a/packages/integrations/deno/package.json b/packages/integrations/deno/package.json
index 5c9867677..8975789c4 100644
--- a/packages/integrations/deno/package.json
+++ b/packages/integrations/deno/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/deno",
"description": "Deploy your site to a Deno server",
- "version": "0.2.0",
+ "version": "1.0.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/lit/CHANGELOG.md b/packages/integrations/lit/CHANGELOG.md
index dc79672b1..7290c5b3d 100644
--- a/packages/integrations/lit/CHANGELOG.md
+++ b/packages/integrations/lit/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/lit
+## 1.0.0
+
+### Major Changes
+
+- [`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308) - > Astro v1.0 is out! Read the [official announcement post](https://astro.build/blog/astro-1/).
+
+ **No breaking changes**. This package is now officially stable and compatible with `astro@1.0.0`!
+
## 0.3.2
### Patch Changes
diff --git a/packages/integrations/lit/package.json b/packages/integrations/lit/package.json
index 41c449cb1..fd4bb461a 100644
--- a/packages/integrations/lit/package.json
+++ b/packages/integrations/lit/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/lit",
- "version": "0.3.2",
+ "version": "1.0.0",
"description": "Use Lit components within Astro",
"type": "module",
"types": "./dist/index.d.ts",
diff --git a/packages/integrations/mdx/CHANGELOG.md b/packages/integrations/mdx/CHANGELOG.md
index 51fa24d84..c8e389628 100644
--- a/packages/integrations/mdx/CHANGELOG.md
+++ b/packages/integrations/mdx/CHANGELOG.md
@@ -1,5 +1,12 @@
# @astrojs/mdx
+## 0.8.1
+
+### Patch Changes
+
+- Updated dependencies [[`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308)]:
+ - @astrojs/prism@1.0.0
+
## 0.8.0
### Minor Changes
diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json
index abe28af6b..3aca2ea27 100644
--- a/packages/integrations/mdx/package.json
+++ b/packages/integrations/mdx/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/mdx",
"description": "Use MDX within Astro",
- "version": "0.8.0",
+ "version": "0.8.1",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
@@ -29,7 +29,7 @@
"test": "mocha --exit --timeout 20000"
},
"dependencies": {
- "@astrojs/prism": "^0.7.0",
+ "@astrojs/prism": "^1.0.0",
"@mdx-js/mdx": "^2.1.2",
"@mdx-js/rollup": "^2.1.1",
"acorn": "^8.8.0",
diff --git a/packages/integrations/netlify/CHANGELOG.md b/packages/integrations/netlify/CHANGELOG.md
index b714cc9ea..d34f97f64 100644
--- a/packages/integrations/netlify/CHANGELOG.md
+++ b/packages/integrations/netlify/CHANGELOG.md
@@ -1,5 +1,18 @@
# @astrojs/netlify
+## 1.0.0
+
+### Major Changes
+
+- [`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308) - > Astro v1.0 is out! Read the [official announcement post](https://astro.build/blog/astro-1/).
+
+ **No breaking changes**. This package is now officially stable and compatible with `astro@1.0.0`!
+
+### Patch Changes
+
+- Updated dependencies [[`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308)]:
+ - @astrojs/webapi@1.0.0
+
## 0.5.0
### Minor Changes
diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json
index 2a0eadf6a..92571797a 100644
--- a/packages/integrations/netlify/package.json
+++ b/packages/integrations/netlify/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/netlify",
"description": "Deploy your site to Netlify",
- "version": "0.5.0",
+ "version": "1.0.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
@@ -33,7 +33,7 @@
"test": "npm run test-fn"
},
"dependencies": {
- "@astrojs/webapi": "^0.12.0",
+ "@astrojs/webapi": "^1.0.0",
"esbuild": "^0.14.43"
},
"devDependencies": {
diff --git a/packages/integrations/node/CHANGELOG.md b/packages/integrations/node/CHANGELOG.md
index 633450dd5..f162da920 100644
--- a/packages/integrations/node/CHANGELOG.md
+++ b/packages/integrations/node/CHANGELOG.md
@@ -1,5 +1,18 @@
# @astrojs/node
+## 1.0.0
+
+### Major Changes
+
+- [`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308) - > Astro v1.0 is out! Read the [official announcement post](https://astro.build/blog/astro-1/).
+
+ **No breaking changes**. This package is now officially stable and compatible with `astro@1.0.0`!
+
+### Patch Changes
+
+- Updated dependencies [[`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308)]:
+ - @astrojs/webapi@1.0.0
+
## 0.2.1
### Patch Changes
diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json
index 6b1b5c430..0301c4665 100644
--- a/packages/integrations/node/package.json
+++ b/packages/integrations/node/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/node",
"description": "Deploy your site to a Node.js server",
- "version": "0.2.1",
+ "version": "1.0.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
@@ -28,7 +28,7 @@
"test": "mocha --exit --timeout 20000 test/"
},
"dependencies": {
- "@astrojs/webapi": "^0.12.0"
+ "@astrojs/webapi": "^1.0.0"
},
"devDependencies": {
"astro": "workspace:*",
diff --git a/packages/integrations/partytown/CHANGELOG.md b/packages/integrations/partytown/CHANGELOG.md
index 769bef912..5112fc488 100644
--- a/packages/integrations/partytown/CHANGELOG.md
+++ b/packages/integrations/partytown/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/partytown
+## 1.0.0
+
+### Major Changes
+
+- [`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308) - > Astro v1.0 is out! Read the [official announcement post](https://astro.build/blog/astro-1/).
+
+ **No breaking changes**. This package is now officially stable and compatible with `astro@1.0.0`!
+
## 0.1.9
### Patch Changes
diff --git a/packages/integrations/partytown/package.json b/packages/integrations/partytown/package.json
index 93f82b382..66517c8d5 100644
--- a/packages/integrations/partytown/package.json
+++ b/packages/integrations/partytown/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/partytown",
"description": "Astro + Partytown integration",
- "version": "0.1.9",
+ "version": "1.0.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/preact/CHANGELOG.md b/packages/integrations/preact/CHANGELOG.md
index de3416c67..b2c7cfe41 100644
--- a/packages/integrations/preact/CHANGELOG.md
+++ b/packages/integrations/preact/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/preact
+## 1.0.0
+
+### Major Changes
+
+- [`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308) - > Astro v1.0 is out! Read the [official announcement post](https://astro.build/blog/astro-1/).
+
+ **No breaking changes**. This package is now officially stable and compatible with `astro@1.0.0`!
+
## 0.5.2
### Patch Changes
diff --git a/packages/integrations/preact/package.json b/packages/integrations/preact/package.json
index 597c4c63e..114d09c21 100644
--- a/packages/integrations/preact/package.json
+++ b/packages/integrations/preact/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/preact",
"description": "Use Preact components within Astro",
- "version": "0.5.2",
+ "version": "1.0.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/react/CHANGELOG.md b/packages/integrations/react/CHANGELOG.md
index 2c035b871..92eea29b3 100644
--- a/packages/integrations/react/CHANGELOG.md
+++ b/packages/integrations/react/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/react
+## 1.0.0
+
+### Major Changes
+
+- [`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308) - > Astro v1.0 is out! Read the [official announcement post](https://astro.build/blog/astro-1/).
+
+ **No breaking changes**. This package is now officially stable and compatible with `astro@1.0.0`!
+
## 0.4.3
### Patch Changes
diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json
index b9b1ec71e..02df926c6 100644
--- a/packages/integrations/react/package.json
+++ b/packages/integrations/react/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/react",
"description": "Use React components within Astro",
- "version": "0.4.3",
+ "version": "1.0.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/sitemap/CHANGELOG.md b/packages/integrations/sitemap/CHANGELOG.md
index 81e8a13ee..d72d371dc 100644
--- a/packages/integrations/sitemap/CHANGELOG.md
+++ b/packages/integrations/sitemap/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/sitemap
+## 1.0.0
+
+### Major Changes
+
+- [`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308) - > Astro v1.0 is out! Read the [official announcement post](https://astro.build/blog/astro-1/).
+
+ **No breaking changes**. This package is now officially stable and compatible with `astro@1.0.0`!
+
## 0.3.0
### Minor Changes
diff --git a/packages/integrations/sitemap/package.json b/packages/integrations/sitemap/package.json
index 51096c822..33f650b56 100644
--- a/packages/integrations/sitemap/package.json
+++ b/packages/integrations/sitemap/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/sitemap",
"description": "Generate a sitemap for Astro",
- "version": "0.3.0",
+ "version": "1.0.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/solid/CHANGELOG.md b/packages/integrations/solid/CHANGELOG.md
index ac7adc649..2dabd75d2 100644
--- a/packages/integrations/solid/CHANGELOG.md
+++ b/packages/integrations/solid/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/solid-js
+## 1.0.0
+
+### Major Changes
+
+- [`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308) - > Astro v1.0 is out! Read the [official announcement post](https://astro.build/blog/astro-1/).
+
+ **No breaking changes**. This package is now officially stable and compatible with `astro@1.0.0`!
+
## 0.4.1
### Patch Changes
diff --git a/packages/integrations/solid/package.json b/packages/integrations/solid/package.json
index eff11804b..b69175007 100644
--- a/packages/integrations/solid/package.json
+++ b/packages/integrations/solid/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/solid-js",
- "version": "0.4.1",
+ "version": "1.0.0",
"description": "Use Solid components within Astro",
"type": "module",
"types": "./dist/index.d.ts",
diff --git a/packages/integrations/svelte/CHANGELOG.md b/packages/integrations/svelte/CHANGELOG.md
index 9507fc9ac..6dca1811f 100644
--- a/packages/integrations/svelte/CHANGELOG.md
+++ b/packages/integrations/svelte/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/svelte
+## 1.0.0
+
+### Major Changes
+
+- [`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308) - > Astro v1.0 is out! Read the [official announcement post](https://astro.build/blog/astro-1/).
+
+ **No breaking changes**. This package is now officially stable and compatible with `astro@1.0.0`!
+
## 0.5.1
### Patch Changes
diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json
index 6b966fd38..2d8fc9964 100644
--- a/packages/integrations/svelte/package.json
+++ b/packages/integrations/svelte/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/svelte",
- "version": "0.5.1",
+ "version": "1.0.0",
"description": "Use Svelte components within Astro",
"type": "module",
"types": "./dist/index.d.ts",
diff --git a/packages/integrations/tailwind/CHANGELOG.md b/packages/integrations/tailwind/CHANGELOG.md
index ff2085bed..2300e468b 100644
--- a/packages/integrations/tailwind/CHANGELOG.md
+++ b/packages/integrations/tailwind/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/tailwind
+## 1.0.0
+
+### Major Changes
+
+- [`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308) - > Astro v1.0 is out! Read the [official announcement post](https://astro.build/blog/astro-1/).
+
+ **No breaking changes**. This package is now officially stable and compatible with `astro@1.0.0`!
+
## 0.2.5
### Patch Changes
diff --git a/packages/integrations/tailwind/package.json b/packages/integrations/tailwind/package.json
index 033897608..8bf845110 100644
--- a/packages/integrations/tailwind/package.json
+++ b/packages/integrations/tailwind/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/tailwind",
"description": "Tailwind + Astro Integrations",
- "version": "0.2.5",
+ "version": "1.0.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md
index 0f68e0035..69871113b 100644
--- a/packages/integrations/vercel/CHANGELOG.md
+++ b/packages/integrations/vercel/CHANGELOG.md
@@ -1,5 +1,18 @@
# @astrojs/vercel
+## 1.0.0
+
+### Major Changes
+
+- [`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308) - > Astro v1.0 is out! Read the [official announcement post](https://astro.build/blog/astro-1/).
+
+ **No breaking changes**. This package is now officially stable and compatible with `astro@1.0.0`!
+
+### Patch Changes
+
+- Updated dependencies [[`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308)]:
+ - @astrojs/webapi@1.0.0
+
## 0.4.0
### Minor Changes
diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json
index 563da1050..332e70297 100644
--- a/packages/integrations/vercel/package.json
+++ b/packages/integrations/vercel/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/vercel",
"description": "Deploy your site to Vercel",
- "version": "0.4.0",
+ "version": "1.0.0",
"type": "module",
"author": "withastro",
"license": "MIT",
@@ -43,7 +43,7 @@
"test": "mocha --exit --timeout 20000 test/"
},
"dependencies": {
- "@astrojs/webapi": "^0.12.0",
+ "@astrojs/webapi": "^1.0.0",
"@vercel/nft": "^0.18.2"
},
"devDependencies": {
diff --git a/packages/integrations/vue/CHANGELOG.md b/packages/integrations/vue/CHANGELOG.md
index 5aac294d7..7dba68ad0 100644
--- a/packages/integrations/vue/CHANGELOG.md
+++ b/packages/integrations/vue/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/vue
+## 1.0.0
+
+### Major Changes
+
+- [`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308) - > Astro v1.0 is out! Read the [official announcement post](https://astro.build/blog/astro-1/).
+
+ **No breaking changes**. This package is now officially stable and compatible with `astro@1.0.0`!
+
## 0.5.0
### Minor Changes
diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json
index 74a4118e9..fc9e56d4f 100644
--- a/packages/integrations/vue/package.json
+++ b/packages/integrations/vue/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/vue",
- "version": "0.5.0",
+ "version": "1.0.0",
"description": "Use Vue components within Astro",
"type": "module",
"types": "./dist/index.d.ts",
diff --git a/packages/markdown/component/CHANGELOG.md b/packages/markdown/component/CHANGELOG.md
index 7e181e8a7..d803ed813 100644
--- a/packages/markdown/component/CHANGELOG.md
+++ b/packages/markdown/component/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/markdown-component
+## 1.0.0
+
+### Major Changes
+
+- [`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308) - > Astro v1.0 is out! Read the [official announcement post](https://astro.build/blog/astro-1/).
+
+ **No breaking changes**. This package is now officially stable and compatible with `astro@1.0.0`!
+
## 0.2.1
### Patch Changes
diff --git a/packages/markdown/component/package.json b/packages/markdown/component/package.json
index 242b54bd3..7236f0b44 100644
--- a/packages/markdown/component/package.json
+++ b/packages/markdown/component/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/markdown-component",
- "version": "0.2.1",
+ "version": "1.0.0",
"type": "module",
"author": "withastro",
"license": "MIT",
diff --git a/packages/markdown/remark/CHANGELOG.md b/packages/markdown/remark/CHANGELOG.md
index 7745d9a72..5e689f8ce 100644
--- a/packages/markdown/remark/CHANGELOG.md
+++ b/packages/markdown/remark/CHANGELOG.md
@@ -1,5 +1,18 @@
# @astrojs/markdown-remark
+## 1.0.0
+
+### Major Changes
+
+- [`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308) - > Astro v1.0 is out! Read the [official announcement post](https://astro.build/blog/astro-1/).
+
+ **No breaking changes**. This package is now officially stable and compatible with `astro@1.0.0`!
+
+### Patch Changes
+
+- Updated dependencies [[`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308)]:
+ - @astrojs/prism@1.0.0
+
## 0.14.1
### Patch Changes
diff --git a/packages/markdown/remark/package.json b/packages/markdown/remark/package.json
index cd3d2414c..7573e833d 100644
--- a/packages/markdown/remark/package.json
+++ b/packages/markdown/remark/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/markdown-remark",
- "version": "0.14.1",
+ "version": "1.0.0",
"type": "module",
"author": "withastro",
"license": "MIT",
@@ -25,7 +25,7 @@
},
"dependencies": {
"@astrojs/micromark-extension-mdx-jsx": "^1.0.3",
- "@astrojs/prism": "^0.7.0",
+ "@astrojs/prism": "^1.0.0",
"acorn": "^8.7.1",
"acorn-jsx": "^5.3.2",
"github-slugger": "^1.4.0",
diff --git a/packages/telemetry/CHANGELOG.md b/packages/telemetry/CHANGELOG.md
index 6dc4ea56e..e632bd87d 100644
--- a/packages/telemetry/CHANGELOG.md
+++ b/packages/telemetry/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/telemetry
+## 1.0.0
+
+### Major Changes
+
+- [`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308) - > Astro v1.0 is out! Read the [official announcement post](https://astro.build/blog/astro-1/).
+
+ **No breaking changes**. This package is now officially stable and compatible with `astro@1.0.0`!
+
## 0.4.1
### Patch Changes
diff --git a/packages/telemetry/package.json b/packages/telemetry/package.json
index 67971f843..6faa09098 100644
--- a/packages/telemetry/package.json
+++ b/packages/telemetry/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/telemetry",
- "version": "0.4.1",
+ "version": "1.0.0",
"type": "module",
"types": "./dist/types/index.d.ts",
"author": "withastro",
diff --git a/packages/webapi/CHANGELOG.md b/packages/webapi/CHANGELOG.md
index df341b3af..bb83795ef 100644
--- a/packages/webapi/CHANGELOG.md
+++ b/packages/webapi/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/webapi
+## 1.0.0
+
+### Major Changes
+
+- [`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308) - > Astro v1.0 is out! Read the [official announcement post](https://astro.build/blog/astro-1/).
+
+ **No breaking changes**. This package is now officially stable and compatible with `astro@1.0.0`!
+
## 0.12.0
### Minor Changes
diff --git a/packages/webapi/package.json b/packages/webapi/package.json
index 414878317..1d8727c25 100644
--- a/packages/webapi/package.json
+++ b/packages/webapi/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/webapi",
"description": "Use Web APIs in Node",
- "version": "0.12.0",
+ "version": "1.0.0",
"type": "module",
"exports": {
".": {
diff --git a/patches/@changesets__assemble-release-plan@5.1.3.patch b/patches/@changesets__assemble-release-plan@5.1.3.patch
deleted file mode 100644
index 177ca9abe..000000000
--- a/patches/@changesets__assemble-release-plan@5.1.3.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff --git a/dist/assemble-release-plan.cjs.dev.js b/dist/assemble-release-plan.cjs.dev.js
-index f05ea74cd2a76884ed8a754e821775003af63764..de0b7fe8d53ffad29cae2de145042b9b8376625c 100644
---- a/dist/assemble-release-plan.cjs.dev.js
-+++ b/dist/assemble-release-plan.cjs.dev.js
-@@ -65,6 +65,9 @@ function incrementVersion(release, preInfo) {
- }
-
- let version = semver.inc(release.oldVersion, release.type);
-+ if (release.name === 'astro') {
-+ version = semver.inc(release.oldVersion, 'prerelease');
-+ }
-
- if (preInfo !== undefined && preInfo.state.mode !== "exit") {
- let preVersion = preInfo.preVersions.get(release.name);
\ No newline at end of file
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index cc8dd7753..6b77dc333 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -6,16 +6,12 @@ patchedDependencies:
'@changesets/cli@2.23.0':
hash: kcozqtpxuwjzskw6zg5royevn4
path: patches/@changesets__cli@2.23.0.patch
- '@changesets/assemble-release-plan@5.1.3':
- hash: t3ywtunilq53oqooixy7kemkoi
- path: patches/@changesets__assemble-release-plan@5.1.3.patch
importers:
.:
specifiers:
'@astrojs/webapi': workspace:*
- '@changesets/assemble-release-plan': 5.1.3
'@changesets/changelog-github': 0.4.4
'@changesets/cli': 2.23.0
'@octokit/action': ^3.18.1
@@ -38,7 +34,6 @@ importers:
dependencies:
'@astrojs/webapi': link:packages/webapi
devDependencies:
- '@changesets/assemble-release-plan': 5.1.3_t3ywtunilq53oqooixy7kemkoi
'@changesets/changelog-github': 0.4.4
'@changesets/cli': 2.23.0_kcozqtpxuwjzskw6zg5royevn4
'@octokit/action': 3.18.1
@@ -61,14 +56,14 @@ importers:
examples/basics:
specifiers:
- astro: ^1.0.0-rc.8
+ astro: ^1.0.0
devDependencies:
astro: link:../../packages/astro
examples/blog:
specifiers:
- '@astrojs/preact': ^0.5.2
- astro: ^1.0.0-rc.8
+ '@astrojs/preact': ^1.0.0
+ astro: ^1.0.0
preact: ^10.7.3
dependencies:
preact: 10.10.1
@@ -78,14 +73,14 @@ importers:
examples/component:
specifiers:
- astro: ^1.0.0-rc.8
+ astro: ^1.0.0
devDependencies:
astro: link:../../packages/astro
examples/component/demo:
specifiers:
'@example/my-component': workspace:*
- astro: ^1.0.0-rc.8
+ astro: ^1.0.0
devDependencies:
'@example/my-component': link:../packages/my-component
astro: link:../../../packages/astro
@@ -96,12 +91,12 @@ importers:
examples/docs:
specifiers:
'@algolia/client-search': ^4.13.1
- '@astrojs/preact': ^0.5.2
- '@astrojs/react': ^0.4.3
+ '@astrojs/preact': ^1.0.0
+ '@astrojs/react': ^1.0.0
'@docsearch/css': ^3.1.0
'@docsearch/react': ^3.1.0
'@types/react': ^17.0.45
- astro: ^1.0.0-rc.8
+ astro: ^1.0.0
preact: ^10.7.3
react: ^18.1.0
react-dom: ^18.1.0
@@ -120,7 +115,7 @@ importers:
examples/env-vars:
specifiers:
- astro: ^1.0.0-rc.8
+ astro: ^1.0.0
devDependencies:
astro: link:../../packages/astro
@@ -128,7 +123,7 @@ importers:
specifiers:
'@types/alpinejs': ^3.7.0
alpinejs: ^3.10.2
- astro: ^1.0.0-rc.8
+ astro: ^1.0.0
dependencies:
alpinejs: 3.10.3
devDependencies:
@@ -137,9 +132,9 @@ importers:
examples/framework-lit:
specifiers:
- '@astrojs/lit': ^0.3.2
+ '@astrojs/lit': ^1.0.0
'@webcomponents/template-shadowroot': ^0.1.0
- astro: ^1.0.0-rc.8
+ astro: ^1.0.0
lit: ^2.2.5
dependencies:
'@webcomponents/template-shadowroot': 0.1.0
@@ -150,12 +145,12 @@ importers:
examples/framework-multiple:
specifiers:
- '@astrojs/preact': ^0.5.2
- '@astrojs/react': ^0.4.3
- '@astrojs/solid-js': ^0.4.1
- '@astrojs/svelte': ^0.5.1
- '@astrojs/vue': ^0.5.0
- astro: ^1.0.0-rc.8
+ '@astrojs/preact': ^1.0.0
+ '@astrojs/react': ^1.0.0
+ '@astrojs/solid-js': ^1.0.0
+ '@astrojs/svelte': ^1.0.0
+ '@astrojs/vue': ^1.0.0
+ astro: ^1.0.0
preact: ^10.7.3
react: ^18.1.0
react-dom: ^18.1.0
@@ -179,8 +174,8 @@ importers:
examples/framework-preact:
specifiers:
- '@astrojs/preact': ^0.5.2
- astro: ^1.0.0-rc.8
+ '@astrojs/preact': ^1.0.0
+ astro: ^1.0.0
preact: ^10.7.3
dependencies:
preact: 10.10.1
@@ -190,10 +185,10 @@ importers:
examples/framework-react:
specifiers:
- '@astrojs/react': ^0.4.3
+ '@astrojs/react': ^1.0.0
'@types/react': ^18.0.10
'@types/react-dom': ^18.0.5
- astro: ^1.0.0-rc.8
+ astro: ^1.0.0
react: ^18.1.0
react-dom: ^18.1.0
dependencies:
@@ -207,8 +202,8 @@ importers:
examples/framework-solid:
specifiers:
- '@astrojs/solid-js': ^0.4.1
- astro: ^1.0.0-rc.8
+ '@astrojs/solid-js': ^1.0.0
+ astro: ^1.0.0
solid-js: ^1.4.3
dependencies:
solid-js: 1.4.8
@@ -218,8 +213,8 @@ importers:
examples/framework-svelte:
specifiers:
- '@astrojs/svelte': ^0.5.1
- astro: ^1.0.0-rc.8
+ '@astrojs/svelte': ^1.0.0
+ astro: ^1.0.0
svelte: ^3.48.0
dependencies:
svelte: 3.49.0
@@ -229,8 +224,8 @@ importers:
examples/framework-vue:
specifiers:
- '@astrojs/vue': ^0.5.0
- astro: ^1.0.0-rc.8
+ '@astrojs/vue': ^1.0.0
+ astro: ^1.0.0
vue: ^3.2.37
dependencies:
vue: 3.2.37
@@ -240,20 +235,20 @@ importers:
examples/minimal:
specifiers:
- astro: ^1.0.0-rc.8
+ astro: ^1.0.0
devDependencies:
astro: link:../../packages/astro
examples/non-html-pages:
specifiers:
- astro: ^1.0.0-rc.8
+ astro: ^1.0.0
devDependencies:
astro: link:../../packages/astro
examples/portfolio:
specifiers:
- '@astrojs/preact': ^0.5.2
- astro: ^1.0.0-rc.8
+ '@astrojs/preact': ^1.0.0
+ astro: ^1.0.0
preact: ^10.7.3
sass: ^1.52.2
dependencies:
@@ -265,9 +260,9 @@ importers:
examples/ssr:
specifiers:
- '@astrojs/node': ^0.2.1
- '@astrojs/svelte': ^0.5.1
- astro: ^1.0.0-rc.8
+ '@astrojs/node': ^1.0.0
+ '@astrojs/svelte': ^1.0.0
+ astro: ^1.0.0
concurrently: ^7.2.1
lightcookie: ^1.0.25
svelte: ^3.48.0
@@ -286,8 +281,8 @@ importers:
examples/subpath:
specifiers:
- '@astrojs/react': ^0.4.3
- astro: ^1.0.0-rc.8
+ '@astrojs/react': ^1.0.0
+ astro: ^1.0.0
react: ^18.1.0
react-dom: ^18.1.0
dependencies:
@@ -299,8 +294,8 @@ importers:
examples/with-markdown-plugins:
specifiers:
- '@astrojs/markdown-remark': ^0.14.1
- astro: ^1.0.0-rc.8
+ '@astrojs/markdown-remark': ^1.0.0
+ astro: ^1.0.0
hast-util-select: 5.0.1
rehype-autolink-headings: ^6.1.1
rehype-slug: ^5.0.1
@@ -317,17 +312,17 @@ importers:
examples/with-markdown-shiki:
specifiers:
- '@astrojs/markdown-remark': ^0.14.1
- astro: ^1.0.0-rc.8
+ '@astrojs/markdown-remark': ^1.0.0
+ astro: ^1.0.0
devDependencies:
'@astrojs/markdown-remark': link:../../packages/markdown/remark
astro: link:../../packages/astro
examples/with-mdx:
specifiers:
- '@astrojs/mdx': ^0.8.0
- '@astrojs/preact': ^0.5.2
- astro: ^1.0.0-rc.8
+ '@astrojs/mdx': ^0.8.1
+ '@astrojs/preact': ^1.0.0
+ astro: ^1.0.0
preact: ^10.6.5
devDependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
@@ -337,9 +332,9 @@ importers:
examples/with-nanostores:
specifiers:
- '@astrojs/preact': ^0.5.2
+ '@astrojs/preact': ^1.0.0
'@nanostores/preact': ^0.1.3
- astro: ^1.0.0-rc.8
+ astro: ^1.0.0
nanostores: ^0.5.12
preact: ^10.7.3
dependencies:
@@ -352,8 +347,8 @@ importers:
examples/with-tailwindcss:
specifiers:
- '@astrojs/tailwind': ^0.2.5
- astro: ^1.0.0-rc.8
+ '@astrojs/tailwind': ^1.0.0
+ astro: ^1.0.0
autoprefixer: ^10.4.7
canvas-confetti: ^1.5.1
postcss: ^8.4.14
@@ -368,7 +363,7 @@ importers:
examples/with-vite-plugin-pwa:
specifiers:
- astro: ^1.0.0-rc.8
+ astro: ^1.0.0
vite-plugin-pwa: 0.11.11
workbox-window: ^6.5.3
devDependencies:
@@ -378,7 +373,7 @@ importers:
examples/with-vitest:
specifiers:
- astro: ^1.0.0-rc.8
+ astro: ^1.0.0
vitest: ^0.20.3
devDependencies:
astro: link:../../packages/astro
@@ -388,9 +383,9 @@ importers:
specifiers:
'@astrojs/compiler': ^0.23.1
'@astrojs/language-server': ^0.20.0
- '@astrojs/markdown-remark': ^0.14.1
- '@astrojs/telemetry': ^0.4.1
- '@astrojs/webapi': ^0.12.0
+ '@astrojs/markdown-remark': ^1.0.0
+ '@astrojs/telemetry': ^1.0.0
+ '@astrojs/webapi': ^1.0.0
'@babel/core': ^7.18.2
'@babel/generator': ^7.18.2
'@babel/parser': ^7.18.4
@@ -2189,7 +2184,7 @@ importers:
packages/integrations/mdx:
specifiers:
- '@astrojs/prism': ^0.7.0
+ '@astrojs/prism': ^1.0.0
'@mdx-js/mdx': ^2.1.2
'@mdx-js/rollup': ^2.1.1
'@types/chai': ^4.3.1
@@ -2278,7 +2273,7 @@ importers:
packages/integrations/netlify:
specifiers:
- '@astrojs/webapi': ^0.12.0
+ '@astrojs/webapi': ^1.0.0
'@netlify/edge-handler-types': ^0.34.1
'@netlify/functions': ^1.0.0
'@types/node': ^14.18.20
@@ -2327,7 +2322,7 @@ importers:
packages/integrations/node:
specifiers:
- '@astrojs/webapi': ^0.12.0
+ '@astrojs/webapi': ^1.0.0
astro: workspace:*
astro-scripts: workspace:*
node-mocks-http: ^1.11.0
@@ -2503,7 +2498,7 @@ importers:
packages/integrations/vercel:
specifiers:
- '@astrojs/webapi': ^0.12.0
+ '@astrojs/webapi': ^1.0.0
'@vercel/nft': ^0.18.2
astro: workspace:*
astro-scripts: workspace:*
@@ -2644,7 +2639,7 @@ importers:
packages/markdown/remark:
specifiers:
'@astrojs/micromark-extension-mdx-jsx': ^1.0.3
- '@astrojs/prism': ^0.7.0
+ '@astrojs/prism': ^1.0.0
'@types/chai': ^4.3.1
'@types/github-slugger': ^1.3.0
'@types/hast': ^2.3.4
@@ -4483,7 +4478,7 @@ packages:
semver: 5.7.1
dev: true
- /@changesets/assemble-release-plan/5.1.3_t3ywtunilq53oqooixy7kemkoi:
+ /@changesets/assemble-release-plan/5.1.3:
resolution: {integrity: sha512-I+TTkUoqvxBEuDLoJfJYKDXIJ+nyiTbVJ8KGhpXEsLq4N/ms/AStSbouJwF2d/p3cB+RCPr5+gXh31GSN4kA7w==}
dependencies:
'@babel/runtime': 7.18.9
@@ -4493,7 +4488,6 @@ packages:
'@manypkg/get-packages': 1.1.3
semver: 5.7.1
dev: true
- patched: true
/@changesets/assemble-release-plan/5.2.0:
resolution: {integrity: sha512-ewY24PEbSec2eKX0+KM7eyENA2hUUp6s4LF9p/iBxTtc+TX2Xbx5rZnlLKZkc8tpuQ3PZbyjLFXWhd1PP6SjCg==}
@@ -4528,7 +4522,7 @@ packages:
dependencies:
'@babel/runtime': 7.18.9
'@changesets/apply-release-plan': 6.0.4
- '@changesets/assemble-release-plan': 5.1.3_t3ywtunilq53oqooixy7kemkoi
+ '@changesets/assemble-release-plan': 5.1.3
'@changesets/changelog-git': 0.1.12
'@changesets/config': 2.1.1
'@changesets/errors': 0.1.4
diff --git a/scripts/CHANGELOG.md b/scripts/CHANGELOG.md
index 64a69307a..ecf83aa51 100644
--- a/scripts/CHANGELOG.md
+++ b/scripts/CHANGELOG.md
@@ -1,5 +1,12 @@
# astro-scripts
+## 0.0.7
+
+### Patch Changes
+
+- Updated dependencies [[`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308)]:
+ - @astrojs/webapi@1.0.0
+
## 0.0.6
### Patch Changes
diff --git a/scripts/package.json b/scripts/package.json
index a2bc0e70c..f8b6658b9 100644
--- a/scripts/package.json
+++ b/scripts/package.json
@@ -1,6 +1,6 @@
{
"name": "astro-scripts",
- "version": "0.0.6",
+ "version": "0.0.7",
"private": true,
"type": "module",
"main": "./index.js",