summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2022-04-02 13:46:25 -0600
committerGravatar Fred K. Schott <fkschott@gmail.com> 2022-04-02 13:46:25 -0600
commite425f896b668d98033ad3b998b50c1f28bc7f6ee (patch)
treec4d9002bc8f975fbd11eaad640b4b880d4637336
parentd047baad114ae16ada6dc16c9d709147af907360 (diff)
downloadastro-e425f896b668d98033ad3b998b50c1f28bc7f6ee.tar.gz
astro-e425f896b668d98033ad3b998b50c1f28bc7f6ee.tar.zst
astro-e425f896b668d98033ad3b998b50c1f28bc7f6ee.zip
Revert "[ci] release (#2925)"
This reverts commit 48c9b142cccaff780b0d72abdd858214614af09f.
-rw-r--r--.changeset/chatty-cows-attack.md5
-rw-r--r--.changeset/flat-radios-cheer.md5
-rw-r--r--.changeset/forty-coins-attend.md16
-rw-r--r--.changeset/happy-carrots-carry.md5
-rw-r--r--.changeset/light-apricots-sort.md7
-rw-r--r--.changeset/ninety-jars-swim.md5
-rw-r--r--.changeset/odd-swans-walk.md5
-rw-r--r--.changeset/perfect-dogs-turn.md5
-rw-r--r--.changeset/pre.json61
-rw-r--r--.changeset/small-radios-remain.md5
-rw-r--r--.changeset/soft-avocados-turn.md5
-rw-r--r--.changeset/sour-eggs-wink.md6
-rw-r--r--.changeset/swift-trainers-suffer.md5
-rw-r--r--.changeset/tall-cooks-begin.md7
-rw-r--r--.changeset/tasty-zoos-wink.md5
-rw-r--r--.changeset/wicked-toes-flow.md11
-rw-r--r--examples/blog-multiple-authors/package.json2
-rw-r--r--examples/blog/package.json2
-rw-r--r--examples/component/demo/package.json2
-rw-r--r--examples/component/package.json2
-rw-r--r--examples/docs/package.json4
-rw-r--r--examples/env-vars/package.json2
-rw-r--r--examples/framework-alpine/package.json2
-rw-r--r--examples/framework-lit/package.json2
-rw-r--r--examples/framework-multiple/package.json4
-rw-r--r--examples/framework-preact/package.json2
-rw-r--r--examples/framework-react/package.json4
-rw-r--r--examples/framework-solid/package.json2
-rw-r--r--examples/framework-svelte/package.json2
-rw-r--r--examples/framework-vue/package.json2
-rw-r--r--examples/integrations-playground/package.json10
-rw-r--r--examples/minimal/package.json2
-rw-r--r--examples/non-html-pages/package.json2
-rw-r--r--examples/portfolio/package.json2
-rw-r--r--examples/ssr/package.json2
-rw-r--r--examples/starter/package.json2
-rw-r--r--examples/subpath/package.json4
-rw-r--r--examples/with-markdown-plugins/package.json4
-rw-r--r--examples/with-markdown-shiki/package.json4
-rw-r--r--examples/with-markdown/package.json6
-rw-r--r--examples/with-nanostores/package.json4
-rw-r--r--examples/with-tailwindcss/package.json4
-rw-r--r--examples/with-vite-plugin-pwa/package.json2
-rw-r--r--packages/astro/CHANGELOG.md46
-rw-r--r--packages/astro/package.json4
-rw-r--r--packages/integrations/deno/CHANGELOG.md10
-rw-r--r--packages/integrations/deno/package.json2
-rw-r--r--packages/integrations/netlify/CHANGELOG.md6
-rw-r--r--packages/integrations/netlify/package.json2
-rw-r--r--packages/integrations/partytown/CHANGELOG.md6
-rw-r--r--packages/integrations/partytown/package.json2
-rw-r--r--packages/integrations/react/CHANGELOG.md6
-rw-r--r--packages/integrations/react/package.json2
-rw-r--r--packages/integrations/sitemap/CHANGELOG.md12
-rw-r--r--packages/integrations/sitemap/package.json2
-rw-r--r--packages/integrations/tailwind/CHANGELOG.md10
-rw-r--r--packages/integrations/tailwind/package.json2
-rw-r--r--packages/markdown/remark/CHANGELOG.md6
-rw-r--r--packages/markdown/remark/package.json2
-rw-r--r--pnpm-lock.yaml84
60 files changed, 250 insertions, 194 deletions
diff --git a/.changeset/chatty-cows-attack.md b/.changeset/chatty-cows-attack.md
new file mode 100644
index 000000000..7fe9fb8c2
--- /dev/null
+++ b/.changeset/chatty-cows-attack.md
@@ -0,0 +1,5 @@
+---
+'astro': patch
+---
+
+Allow components to return a Response
diff --git a/.changeset/flat-radios-cheer.md b/.changeset/flat-radios-cheer.md
new file mode 100644
index 000000000..ab01d34dd
--- /dev/null
+++ b/.changeset/flat-radios-cheer.md
@@ -0,0 +1,5 @@
+---
+'astro': patch
+---
+
+`--experimental-ssr` now is only required when using a 3rd-party adapter
diff --git a/.changeset/forty-coins-attend.md b/.changeset/forty-coins-attend.md
new file mode 100644
index 000000000..467e520fd
--- /dev/null
+++ b/.changeset/forty-coins-attend.md
@@ -0,0 +1,16 @@
+---
+"astro": minor
+---
+
+Implement RFC [#0017](https://github.com/withastro/rfcs/blob/main/proposals/0017-markdown-content-redesign.md)
+
+- New Markdown API
+- New `Astro.glob()` API
+- **BREAKING CHANGE:** Removed `Astro.fetchContent()` (replaced by `Astro.glob()`)
+
+```diff
+// v0.25
+- let allPosts = Astro.fetchContent('./posts/*.md');
+// v0.26+
++ let allPosts = await Astro.glob('./posts/*.md');
+```
diff --git a/.changeset/happy-carrots-carry.md b/.changeset/happy-carrots-carry.md
new file mode 100644
index 000000000..82cae9fe5
--- /dev/null
+++ b/.changeset/happy-carrots-carry.md
@@ -0,0 +1,5 @@
+---
+'astro': minor
+---
+
+Implement [RFC0016](https://github.com/withastro/rfcs/blob/main/proposals/0016-style-script-defaults.md) which changes the default behavior of `script`, introduces `is:inline`, and changes `<style global>` to `<style is:global>`
diff --git a/.changeset/light-apricots-sort.md b/.changeset/light-apricots-sort.md
new file mode 100644
index 000000000..26a182a40
--- /dev/null
+++ b/.changeset/light-apricots-sort.md
@@ -0,0 +1,7 @@
+---
+'astro': patch
+---
+
+Improve `Astro.slots` API to support passing arguments to function-based slots.
+
+This allows for more ergonomic utility components that accept a callback function as a child.
diff --git a/.changeset/ninety-jars-swim.md b/.changeset/ninety-jars-swim.md
new file mode 100644
index 000000000..dd7c79c13
--- /dev/null
+++ b/.changeset/ninety-jars-swim.md
@@ -0,0 +1,5 @@
+---
+'@astrojs/react': minor
+---
+
+Add support for React v18
diff --git a/.changeset/odd-swans-walk.md b/.changeset/odd-swans-walk.md
new file mode 100644
index 000000000..0c406d7e0
--- /dev/null
+++ b/.changeset/odd-swans-walk.md
@@ -0,0 +1,5 @@
+---
+'astro': patch
+---
+
+Fixes non-GET API routes in dev with Node 14
diff --git a/.changeset/perfect-dogs-turn.md b/.changeset/perfect-dogs-turn.md
new file mode 100644
index 000000000..61517d560
--- /dev/null
+++ b/.changeset/perfect-dogs-turn.md
@@ -0,0 +1,5 @@
+---
+'astro': minor
+---
+
+Implements the Astro.request RFC
diff --git a/.changeset/pre.json b/.changeset/pre.json
new file mode 100644
index 000000000..3e6111aef
--- /dev/null
+++ b/.changeset/pre.json
@@ -0,0 +1,61 @@
+{
+ "mode": "exit",
+ "tag": "next",
+ "initialVersions": {
+ "@example/blog": "0.0.1",
+ "@example/blog-multiple-authors": "0.0.1",
+ "@example/component": "0.0.1",
+ "@example/my-component-demo": "0.0.1",
+ "@example/my-component": "0.0.1",
+ "@example/docs": "0.0.1",
+ "@example/env-vars": "0.0.1",
+ "@example/framework-alpine": "0.0.1",
+ "@example/framework-lit": "0.0.1",
+ "@example/framework-multiple": "0.0.1",
+ "@example/framework-preact": "0.0.1",
+ "@example/framework-react": "0.0.1",
+ "@example/framework-solid": "0.0.1",
+ "@example/framework-svelte": "0.0.1",
+ "@example/framework-vue": "0.0.1",
+ "@example/integrations-playground": "0.0.1",
+ "@example/minimal": "0.0.1",
+ "@example/non-html-pages": "0.0.1",
+ "@example/portfolio": "0.0.1",
+ "@example/ssr": "0.0.1",
+ "@example/starter": "0.0.1",
+ "@example/subpath": "0.0.1",
+ "@example/with-markdown": "0.0.1",
+ "@example/with-markdown-plugins": "0.0.2",
+ "@example/with-markdown-shiki": "0.0.1",
+ "@example/with-nanostores": "0.0.1",
+ "@example/with-tailwindcss": "0.0.1",
+ "@example/with-vite-plugin-pwa": "0.0.1",
+ "astro": "0.25.4",
+ "@astrojs/prism": "0.4.1",
+ "@test/custom-element-renderer": "0.1.0",
+ "@test/static-build-pkg": "0.0.0",
+ "create-astro": "0.8.0",
+ "@astrojs/lit": "0.0.2",
+ "@astrojs/netlify": "0.0.2",
+ "@astrojs/node": "0.0.2",
+ "@astrojs/partytown": "0.0.2",
+ "@astrojs/preact": "0.0.2",
+ "@astrojs/react": "0.0.2",
+ "@astrojs/sitemap": "0.0.2",
+ "@astrojs/solid-js": "0.0.3",
+ "@astrojs/svelte": "0.0.2",
+ "@astrojs/tailwind": "0.0.2",
+ "@astrojs/turbolinks": "0.0.2",
+ "@astrojs/vue": "0.0.2",
+ "@astrojs/markdown-remark": "0.7.0",
+ "@astrojs/renderer-lit": "0.4.0",
+ "@astrojs/renderer-preact": "0.5.0",
+ "@astrojs/renderer-react": "0.5.0",
+ "@astrojs/renderer-solid": "0.4.0",
+ "@astrojs/renderer-svelte": "0.5.2",
+ "@astrojs/renderer-vue": "0.4.0",
+ "@astrojs/webapi": "0.11.0",
+ "astro-scripts": "0.0.2"
+ },
+ "changesets": []
+}
diff --git a/.changeset/small-radios-remain.md b/.changeset/small-radios-remain.md
new file mode 100644
index 000000000..d0747a700
--- /dev/null
+++ b/.changeset/small-radios-remain.md
@@ -0,0 +1,5 @@
+---
+'astro': patch
+---
+
+Update CLI error format and style
diff --git a/.changeset/soft-avocados-turn.md b/.changeset/soft-avocados-turn.md
new file mode 100644
index 000000000..e2669198e
--- /dev/null
+++ b/.changeset/soft-avocados-turn.md
@@ -0,0 +1,5 @@
+---
+'astro': patch
+---
+
+Update `@astrojs/compiler`, fixing some bugs related to RegExp usage in frontmatter
diff --git a/.changeset/sour-eggs-wink.md b/.changeset/sour-eggs-wink.md
new file mode 100644
index 000000000..5c2c0fc44
--- /dev/null
+++ b/.changeset/sour-eggs-wink.md
@@ -0,0 +1,6 @@
+---
+'astro': patch
+'@astrojs/deno': patch
+---
+
+Add a Deno adapter for SSR
diff --git a/.changeset/swift-trainers-suffer.md b/.changeset/swift-trainers-suffer.md
new file mode 100644
index 000000000..c9f6fc9a8
--- /dev/null
+++ b/.changeset/swift-trainers-suffer.md
@@ -0,0 +1,5 @@
+---
+'astro': patch
+---
+
+Fix for copying public when using SSR and not client JS
diff --git a/.changeset/tall-cooks-begin.md b/.changeset/tall-cooks-begin.md
new file mode 100644
index 000000000..d1bff3790
--- /dev/null
+++ b/.changeset/tall-cooks-begin.md
@@ -0,0 +1,7 @@
+---
+'@astrojs/sitemap': patch
+---
+
+Add new sitemap configuration options:
+- `filter`: filter pages to include in your sitemap
+- `canonicalURL`: override your astro.config `site` with a custom base URL
diff --git a/.changeset/tasty-zoos-wink.md b/.changeset/tasty-zoos-wink.md
new file mode 100644
index 000000000..1b144f9c0
--- /dev/null
+++ b/.changeset/tasty-zoos-wink.md
@@ -0,0 +1,5 @@
+---
+'@astrojs/tailwind': patch
+---
+
+Adds an option to opt-out of the default base styles for the Tailwind integration
diff --git a/.changeset/wicked-toes-flow.md b/.changeset/wicked-toes-flow.md
new file mode 100644
index 000000000..aca2d3b64
--- /dev/null
+++ b/.changeset/wicked-toes-flow.md
@@ -0,0 +1,11 @@
+---
+'astro': minor
+'@astrojs/deno': minor
+'@astrojs/netlify': minor
+'@astrojs/partytown': minor
+'@astrojs/sitemap': minor
+'@astrojs/tailwind': minor
+'@astrojs/markdown-remark': minor
+---
+
+Update config options to resepect [RFC0019](https://github.com/withastro/rfcs/blob/main/proposals/0019-config-finalization.md)
diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json
index d92b692d7..c58c16ff6 100644
--- a/examples/blog-multiple-authors/package.json
+++ b/examples/blog-multiple-authors/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/preact": "^0.0.2",
- "astro": "^0.26.0",
+ "astro": "^0.25.4",
"sass": "^1.49.11"
},
"dependencies": {
diff --git a/examples/blog/package.json b/examples/blog/package.json
index f2127a1d4..abc41a47f 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/preact": "^0.0.2",
- "astro": "^0.26.0"
+ "astro": "^0.25.4"
},
"dependencies": {
"preact": "^10.7.0"
diff --git a/examples/component/demo/package.json b/examples/component/demo/package.json
index bbac35c31..9b54773f6 100644
--- a/examples/component/demo/package.json
+++ b/examples/component/demo/package.json
@@ -10,6 +10,6 @@
},
"devDependencies": {
"@example/my-component": "workspace:*",
- "astro": "^0.26.0"
+ "astro": "^0.25.4"
}
}
diff --git a/examples/component/package.json b/examples/component/package.json
index ea917ecf6..5bf96a6a0 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -8,6 +8,6 @@
"serve": "astro --root demo preview"
},
"devDependencies": {
- "astro": "^0.26.0"
+ "astro": "^0.25.4"
}
}
diff --git a/examples/docs/package.json b/examples/docs/package.json
index 84d9aee46..68ab5d62a 100644
--- a/examples/docs/package.json
+++ b/examples/docs/package.json
@@ -19,7 +19,7 @@
},
"devDependencies": {
"@astrojs/preact": "^0.0.2",
- "@astrojs/react": "^0.1.0",
- "astro": "^0.26.0"
+ "@astrojs/react": "^0.0.2",
+ "astro": "^0.25.4"
}
}
diff --git a/examples/env-vars/package.json b/examples/env-vars/package.json
index a0e0c7b51..e0011d2df 100644
--- a/examples/env-vars/package.json
+++ b/examples/env-vars/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.26.0"
+ "astro": "^0.25.4"
}
}
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json
index 065c6ee49..41fb3eca2 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.26.0"
+ "astro": "^0.25.4"
}
}
diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json
index 50795de01..444d29ac6 100644
--- a/examples/framework-lit/package.json
+++ b/examples/framework-lit/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/lit": "^0.0.2",
- "astro": "^0.26.0"
+ "astro": "^0.25.4"
},
"dependencies": {
"@webcomponents/template-shadowroot": "^0.1.0",
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index 6b925d087..aeb9e7c85 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -11,11 +11,11 @@
"devDependencies": {
"@astrojs/lit": "^0.0.2",
"@astrojs/preact": "^0.0.2",
- "@astrojs/react": "^0.1.0",
+ "@astrojs/react": "^0.0.2",
"@astrojs/solid-js": "^0.0.3",
"@astrojs/svelte": "^0.0.2",
"@astrojs/vue": "^0.0.2",
- "astro": "^0.26.0"
+ "astro": "^0.25.4"
},
"dependencies": {
"@webcomponents/template-shadowroot": "^0.1.0",
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index c3c78a2b2..394a8efb9 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/preact": "^0.0.2",
- "astro": "^0.26.0"
+ "astro": "^0.25.4"
},
"dependencies": {
"preact": "^10.7.0"
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index 7744a8dba..4cdd93049 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -9,8 +9,8 @@
"preview": "astro preview"
},
"devDependencies": {
- "@astrojs/react": "^0.1.0",
- "astro": "^0.26.0"
+ "@astrojs/react": "^0.0.2",
+ "astro": "^0.25.4"
},
"dependencies": {
"react": "^18.0.0",
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index 321c0afe2..820bbee06 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/solid-js": "^0.0.3",
- "astro": "^0.26.0"
+ "astro": "^0.25.4"
},
"dependencies": {
"solid-js": "^1.3.13"
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 6278695f8..01a4eb52e 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/svelte": "^0.0.2",
- "astro": "^0.26.0"
+ "astro": "^0.25.4"
},
"dependencies": {
"svelte": "^3.46.6"
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index d803f48e3..eeada1a5e 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/vue": "^0.0.2",
- "astro": "^0.26.0"
+ "astro": "^0.25.4"
},
"dependencies": {
"vue": "^3.2.31"
diff --git a/examples/integrations-playground/package.json b/examples/integrations-playground/package.json
index 11ecd7eef..b5824c7d9 100644
--- a/examples/integrations-playground/package.json
+++ b/examples/integrations-playground/package.json
@@ -10,12 +10,12 @@
},
"devDependencies": {
"@astrojs/lit": "^0.0.2",
- "@astrojs/partytown": "^0.1.0",
- "@astrojs/react": "^0.1.0",
- "@astrojs/sitemap": "^0.1.0",
- "@astrojs/tailwind": "^0.1.0",
+ "@astrojs/partytown": "^0.0.2",
+ "@astrojs/react": "^0.0.2",
+ "@astrojs/sitemap": "^0.0.2",
+ "@astrojs/tailwind": "^0.0.2",
"@astrojs/turbolinks": "^0.0.2",
- "astro": "^0.26.0"
+ "astro": "^0.25.4"
},
"dependencies": {
"@webcomponents/template-shadowroot": "^0.1.0",
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index c86dfb321..4adc0c827 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.26.0"
+ "astro": "^0.25.4"
}
}
diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json
index 0f6a8b21c..27553f811 100644
--- a/examples/non-html-pages/package.json
+++ b/examples/non-html-pages/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.26.0"
+ "astro": "^0.25.4"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index 52b926656..1f7f34df2 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/preact": "^0.0.2",
- "astro": "^0.26.0",
+ "astro": "^0.25.4",
"sass": "^1.49.11"
},
"dependencies": {
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index 1688374f6..cea46a64e 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -11,7 +11,7 @@
"devDependencies": {
"@astrojs/node": "^0.0.2",
"@astrojs/svelte": "^0.0.2",
- "astro": "^0.26.0",
+ "astro": "^0.25.4",
"concurrently": "^7.1.0",
"lightcookie": "^1.0.25",
"unocss": "^0.15.6",
diff --git a/examples/starter/package.json b/examples/starter/package.json
index b6e3884b3..65ea2b04d 100644
--- a/examples/starter/package.json
+++ b/examples/starter/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.26.0"
+ "astro": "^0.25.4"
}
}
diff --git a/examples/subpath/package.json b/examples/subpath/package.json
index b46528388..7bde3b1f3 100644
--- a/examples/subpath/package.json
+++ b/examples/subpath/package.json
@@ -9,8 +9,8 @@
"preview": "astro preview"
},
"devDependencies": {
- "@astrojs/react": "^0.1.0",
- "astro": "^0.26.0",
+ "@astrojs/react": "^0.0.2",
+ "astro": "^0.25.4",
"sass": "^1.49.11"
},
"dependencies": {
diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json
index 159b7cc4a..7c02a8014 100644
--- a/examples/with-markdown-plugins/package.json
+++ b/examples/with-markdown-plugins/package.json
@@ -9,8 +9,8 @@
"preview": "astro preview"
},
"devDependencies": {
- "@astrojs/markdown-remark": "^0.8.0",
- "astro": "^0.26.0",
+ "@astrojs/markdown-remark": "^0.7.0",
+ "astro": "^0.25.4",
"hast-util-select": "5.0.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.0.1",
diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json
index e8151440e..33de85830 100644
--- a/examples/with-markdown-shiki/package.json
+++ b/examples/with-markdown-shiki/package.json
@@ -9,7 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
- "@astrojs/markdown-remark": "^0.8.0",
- "astro": "^0.26.0"
+ "@astrojs/markdown-remark": "^0.7.0",
+ "astro": "^0.25.4"
}
}
diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json
index 1dd993979..31b09447e 100644
--- a/examples/with-markdown/package.json
+++ b/examples/with-markdown/package.json
@@ -9,12 +9,12 @@
"preview": "astro preview"
},
"devDependencies": {
- "@astrojs/markdown-remark": "^0.8.0",
+ "@astrojs/markdown-remark": "^0.7.0",
"@astrojs/preact": "^0.0.2",
- "@astrojs/react": "^0.1.0",
+ "@astrojs/react": "^0.0.2",
"@astrojs/svelte": "^0.0.2",
"@astrojs/vue": "^0.0.2",
- "astro": "^0.26.0"
+ "astro": "^0.25.4"
},
"dependencies": {
"preact": "^10.7.0",
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index 242828fbb..a01f1b303 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -21,10 +21,10 @@
},
"devDependencies": {
"@astrojs/preact": "^0.0.2",
- "@astrojs/react": "^0.1.0",
+ "@astrojs/react": "^0.0.2",
"@astrojs/solid-js": "^0.0.3",
"@astrojs/svelte": "^0.0.2",
"@astrojs/vue": "^0.0.2",
- "astro": "^0.26.0"
+ "astro": "^0.25.4"
}
}
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index d15a3a81a..04cfa9258 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -9,8 +9,8 @@
"preview": "astro preview"
},
"devDependencies": {
- "@astrojs/tailwind": "^0.1.0",
- "astro": "^0.26.0",
+ "@astrojs/tailwind": "^0.0.2",
+ "astro": "^0.25.4",
"autoprefixer": "^10.4.4",
"canvas-confetti": "^1.5.1",
"postcss": "^8.4.12",
diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json
index 12a8512fd..4ac168012 100644
--- a/examples/with-vite-plugin-pwa/package.json
+++ b/examples/with-vite-plugin-pwa/package.json
@@ -9,7 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.26.0",
+ "astro": "^0.25.4",
"vite-plugin-pwa": "0.11.11",
"workbox-window": "^6.5.2"
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index 24de5af96..7b86e33b4 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,51 +1,5 @@
# astro
-## 0.26.0
-
-### Minor Changes
-
-- [#2862](https://github.com/withastro/astro/pull/2862) [`4299ab30`](https://github.com/withastro/astro/commit/4299ab303b0743349fbd01f85340bea61a1c16a8) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Implement RFC [#0017](https://github.com/withastro/rfcs/blob/main/proposals/0017-markdown-content-redesign.md)
-
- - New Markdown API
- - New `Astro.glob()` API
- - **BREAKING CHANGE:** Removed `Astro.fetchContent()` (replaced by `Astro.glob()`)
-
- ```diff
- // v0.25
- - let allPosts = Astro.fetchContent('./posts/*.md');
- // v0.26+
- + let allPosts = await Astro.glob('./posts/*.md');
- ```
-
-* [#2961](https://github.com/withastro/astro/pull/2961) [`d55658f0`](https://github.com/withastro/astro/commit/d55658f061bc4d95efa53e658cfbe407d94af284) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Implement [RFC0016](https://github.com/withastro/rfcs/blob/main/proposals/0016-style-script-defaults.md) which changes the default behavior of `script`, introduces `is:inline`, and changes `<style global>` to `<style is:global>`
-
-- [#2913](https://github.com/withastro/astro/pull/2913) [`ecc6a483`](https://github.com/withastro/astro/commit/ecc6a4833f68eaf78bd5d619ff7c54b952c96b15) Thanks [@matthewp](https://github.com/matthewp)! - Implements the Astro.request RFC
-
-* [#2962](https://github.com/withastro/astro/pull/2962) [`17c02925`](https://github.com/withastro/astro/commit/17c02925c52027246000305cea1f9a7b6f484b00) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Update config options to resepect [RFC0019](https://github.com/withastro/rfcs/blob/main/proposals/0019-config-finalization.md)
-
-### Patch Changes
-
-- [#2944](https://github.com/withastro/astro/pull/2944) [`c989f106`](https://github.com/withastro/astro/commit/c989f106f914126e82b2b2b995bd49f022b3a99b) Thanks [@matthewp](https://github.com/matthewp)! - Allow components to return a Response
-
-* [#2937](https://github.com/withastro/astro/pull/2937) [`d10c3dea`](https://github.com/withastro/astro/commit/d10c3dea215bf0c7a4bfd037908c147d0cdffd05) Thanks [@JuanM04](https://github.com/JuanM04)! - `--experimental-ssr` now is only required when using a 3rd-party adapter
-
-- [#2954](https://github.com/withastro/astro/pull/2954) [`d81b6d9e`](https://github.com/withastro/astro/commit/d81b6d9ebc2176690aac3f538e84b5566acbdff4) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Improve `Astro.slots` API to support passing arguments to function-based slots.
-
- This allows for more ergonomic utility components that accept a callback function as a child.
-
-* [#2936](https://github.com/withastro/astro/pull/2936) [`f048cdff`](https://github.com/withastro/astro/commit/f048cdff7011871c89b936e33c336690689e0fbb) Thanks [@matthewp](https://github.com/matthewp)! - Fixes non-GET API routes in dev with Node 14
-
-- [#2902](https://github.com/withastro/astro/pull/2902) [`f7020708`](https://github.com/withastro/astro/commit/f70207082abf369390a01882a85a7e057843fddd) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Update CLI error format and style
-
-* [#2957](https://github.com/withastro/astro/pull/2957) [`80e6e759`](https://github.com/withastro/astro/commit/80e6e759e2b8a0bf5510f050a3e04a53b97d180c) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Update `@astrojs/compiler`, fixing some bugs related to RegExp usage in frontmatter
-
-- [#2934](https://github.com/withastro/astro/pull/2934) [`13b271bc`](https://github.com/withastro/astro/commit/13b271bc7d032f5f3749a9868532d12d442a09ef) Thanks [@matthewp](https://github.com/matthewp)! - Add a Deno adapter for SSR
-
-* [#2955](https://github.com/withastro/astro/pull/2955) [`cebdc854`](https://github.com/withastro/astro/commit/cebdc85428d0ed367c049a3ef5d9b0c77d78ad2e) Thanks [@matthewp](https://github.com/matthewp)! - Fix for copying public when using SSR and not client JS
-
-* Updated dependencies [[`17c02925`](https://github.com/withastro/astro/commit/17c02925c52027246000305cea1f9a7b6f484b00)]:
- - @astrojs/markdown-remark@0.8.0
-
## 0.25.4
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 649081130..0bb17e5f4 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "0.26.0",
+ "version": "0.25.4",
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
"type": "module",
"author": "withastro",
@@ -75,7 +75,7 @@
"dependencies": {
"@astrojs/compiler": "^0.14.1",
"@astrojs/language-server": "^0.13.3",
- "@astrojs/markdown-remark": "^0.8.0",
+ "@astrojs/markdown-remark": "^0.7.0",
"@astrojs/prism": "0.4.1",
"@astrojs/webapi": "^0.11.0",
"@babel/core": "^7.17.8",
diff --git a/packages/integrations/deno/CHANGELOG.md b/packages/integrations/deno/CHANGELOG.md
index ca3e1cdf7..31593ed2b 100644
--- a/packages/integrations/deno/CHANGELOG.md
+++ b/packages/integrations/deno/CHANGELOG.md
@@ -1,15 +1,5 @@
# @astrojs/node
-## 0.1.0
-
-### Minor Changes
-
-- [#2962](https://github.com/withastro/astro/pull/2962) [`17c02925`](https://github.com/withastro/astro/commit/17c02925c52027246000305cea1f9a7b6f484b00) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Update config options to resepect [RFC0019](https://github.com/withastro/rfcs/blob/main/proposals/0019-config-finalization.md)
-
-### Patch Changes
-
-- [#2934](https://github.com/withastro/astro/pull/2934) [`13b271bc`](https://github.com/withastro/astro/commit/13b271bc7d032f5f3749a9868532d12d442a09ef) Thanks [@matthewp](https://github.com/matthewp)! - Add a Deno adapter for SSR
-
## 0.0.2-next.0
### Patch Changes
diff --git a/packages/integrations/deno/package.json b/packages/integrations/deno/package.json
index db93d8098..6fd86ab71 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.1.0",
+ "version": "0.0.2-next.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/netlify/CHANGELOG.md b/packages/integrations/netlify/CHANGELOG.md
index 636c7415d..49efea64e 100644
--- a/packages/integrations/netlify/CHANGELOG.md
+++ b/packages/integrations/netlify/CHANGELOG.md
@@ -1,11 +1,5 @@
# @astrojs/netlify
-## 0.1.0
-
-### Minor Changes
-
-- [#2962](https://github.com/withastro/astro/pull/2962) [`17c02925`](https://github.com/withastro/astro/commit/17c02925c52027246000305cea1f9a7b6f484b00) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Update config options to resepect [RFC0019](https://github.com/withastro/rfcs/blob/main/proposals/0019-config-finalization.md)
-
## 0.0.2
### Patch Changes
diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json
index 80b0565ad..7fbeac138 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.1.0",
+ "version": "0.0.2",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/partytown/CHANGELOG.md b/packages/integrations/partytown/CHANGELOG.md
index 82974d4c0..52c5ed511 100644
--- a/packages/integrations/partytown/CHANGELOG.md
+++ b/packages/integrations/partytown/CHANGELOG.md
@@ -1,11 +1,5 @@
# @astrojs/partytown
-## 0.1.0
-
-### Minor Changes
-
-- [#2962](https://github.com/withastro/astro/pull/2962) [`17c02925`](https://github.com/withastro/astro/commit/17c02925c52027246000305cea1f9a7b6f484b00) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Update config options to resepect [RFC0019](https://github.com/withastro/rfcs/blob/main/proposals/0019-config-finalization.md)
-
## 0.0.2
### Patch Changes
diff --git a/packages/integrations/partytown/package.json b/packages/integrations/partytown/package.json
index 7b3186543..3e9a4d79f 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.0",
+ "version": "0.0.2",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/react/CHANGELOG.md b/packages/integrations/react/CHANGELOG.md
index a22fd8975..3fc5d0350 100644
--- a/packages/integrations/react/CHANGELOG.md
+++ b/packages/integrations/react/CHANGELOG.md
@@ -1,11 +1,5 @@
# @astrojs/react
-## 0.1.0
-
-### Minor Changes
-
-- [#2947](https://github.com/withastro/astro/pull/2947) [`57f48b27`](https://github.com/withastro/astro/commit/57f48b27019bbad5c8d61808291dc8bc6cdedb52) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Add support for React v18
-
## 0.0.2
### Patch Changes
diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json
index 359ad1c30..1184ce8d3 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.1.0",
+ "version": "0.0.2",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/sitemap/CHANGELOG.md b/packages/integrations/sitemap/CHANGELOG.md
index 21465fdac..0ad92093d 100644
--- a/packages/integrations/sitemap/CHANGELOG.md
+++ b/packages/integrations/sitemap/CHANGELOG.md
@@ -1,17 +1,5 @@
# @astrojs/sitemap
-## 0.1.0
-
-### Minor Changes
-
-- [#2962](https://github.com/withastro/astro/pull/2962) [`17c02925`](https://github.com/withastro/astro/commit/17c02925c52027246000305cea1f9a7b6f484b00) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Update config options to resepect [RFC0019](https://github.com/withastro/rfcs/blob/main/proposals/0019-config-finalization.md)
-
-### Patch Changes
-
-- [#2962](https://github.com/withastro/astro/pull/2962) [`17c02925`](https://github.com/withastro/astro/commit/17c02925c52027246000305cea1f9a7b6f484b00) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Add new sitemap configuration options:
- - `filter`: filter pages to include in your sitemap
- - `canonicalURL`: override your astro.config `site` with a custom base URL
-
## 0.0.2
### Patch Changes
diff --git a/packages/integrations/sitemap/package.json b/packages/integrations/sitemap/package.json
index 26d517b40..857322859 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.1.0",
+ "version": "0.0.2",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/tailwind/CHANGELOG.md b/packages/integrations/tailwind/CHANGELOG.md
index 12501cae1..0d8ce6c98 100644
--- a/packages/integrations/tailwind/CHANGELOG.md
+++ b/packages/integrations/tailwind/CHANGELOG.md
@@ -1,15 +1,5 @@
# @astrojs/tailwind
-## 0.1.0
-
-### Minor Changes
-
-- [#2962](https://github.com/withastro/astro/pull/2962) [`17c02925`](https://github.com/withastro/astro/commit/17c02925c52027246000305cea1f9a7b6f484b00) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Update config options to resepect [RFC0019](https://github.com/withastro/rfcs/blob/main/proposals/0019-config-finalization.md)
-
-### Patch Changes
-
-- [#2959](https://github.com/withastro/astro/pull/2959) [`226822cb`](https://github.com/withastro/astro/commit/226822cbbf0b04288a60d05977e7f74fa4698e9e) Thanks [@tony-sull](https://github.com/tony-sull)! - Adds an option to opt-out of the default base styles for the Tailwind integration
-
## 0.0.2
### Patch Changes
diff --git a/packages/integrations/tailwind/package.json b/packages/integrations/tailwind/package.json
index 0d9fb62a2..b500180f4 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.1.0",
+ "version": "0.0.2",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/markdown/remark/CHANGELOG.md b/packages/markdown/remark/CHANGELOG.md
index 6af0a30e8..3a35a1b89 100644
--- a/packages/markdown/remark/CHANGELOG.md
+++ b/packages/markdown/remark/CHANGELOG.md
@@ -1,11 +1,5 @@
# @astrojs/markdown-remark
-## 0.8.0
-
-### Minor Changes
-
-- [#2962](https://github.com/withastro/astro/pull/2962) [`17c02925`](https://github.com/withastro/astro/commit/17c02925c52027246000305cea1f9a7b6f484b00) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Update config options to resepect [RFC0019](https://github.com/withastro/rfcs/blob/main/proposals/0019-config-finalization.md)
-
## 0.7.0
### Minor Changes
diff --git a/packages/markdown/remark/package.json b/packages/markdown/remark/package.json
index 799be8dbf..cfee47f76 100644
--- a/packages/markdown/remark/package.json
+++ b/packages/markdown/remark/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/markdown-remark",
- "version": "0.8.0",
+ "version": "0.7.0",
"type": "module",
"author": "withastro",
"license": "MIT",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e367fbf9a..1a72ae2a8 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -44,7 +44,7 @@ importers:
examples/blog:
specifiers:
'@astrojs/preact': ^0.0.2
- astro: ^0.26.0
+ astro: ^0.25.4
preact: ^10.7.0
dependencies:
preact: 10.7.0
@@ -55,7 +55,7 @@ importers:
examples/blog-multiple-authors:
specifiers:
'@astrojs/preact': ^0.0.2
- astro: ^0.26.0
+ astro: ^0.25.4
preact: ^10.7.0
sass: ^1.49.11
dependencies:
@@ -67,14 +67,14 @@ importers:
examples/component:
specifiers:
- astro: ^0.26.0
+ astro: ^0.25.4
devDependencies:
astro: link:../../packages/astro
examples/component/demo:
specifiers:
'@example/my-component': workspace:*
- astro: ^0.26.0
+ astro: ^0.25.4
devDependencies:
'@example/my-component': link:../packages/my-component
astro: link:../../../packages/astro
@@ -86,11 +86,11 @@ importers:
specifiers:
'@algolia/client-search': ^4.13.0
'@astrojs/preact': ^0.0.2
- '@astrojs/react': ^0.1.0
+ '@astrojs/react': ^0.0.2
'@docsearch/css': ^3.0.0
'@docsearch/react': ^3.0.0
'@types/react': ^17.0.43
- astro: ^0.26.0
+ astro: ^0.25.4
preact: ^10.7.0
react: ^18.0.0
react-dom: ^18.0.0
@@ -109,13 +109,13 @@ importers:
examples/env-vars:
specifiers:
- astro: ^0.26.0
+ astro: ^0.25.4
devDependencies:
astro: link:../../packages/astro
examples/framework-alpine:
specifiers:
- astro: ^0.26.0
+ astro: ^0.25.4
devDependencies:
astro: link:../../packages/astro
@@ -123,7 +123,7 @@ importers:
specifiers:
'@astrojs/lit': ^0.0.2
'@webcomponents/template-shadowroot': ^0.1.0
- astro: ^0.26.0
+ astro: ^0.25.4
lit: ^2.2.1
dependencies:
'@webcomponents/template-shadowroot': 0.1.0
@@ -136,12 +136,12 @@ importers:
specifiers:
'@astrojs/lit': ^0.0.2
'@astrojs/preact': ^0.0.2
- '@astrojs/react': ^0.1.0
+ '@astrojs/react': ^0.0.2
'@astrojs/solid-js': ^0.0.3
'@astrojs/svelte': ^0.0.2
'@astrojs/vue': ^0.0.2
'@webcomponents/template-shadowroot': ^0.1.0
- astro: ^0.26.0
+ astro: ^0.25.4
lit: ^2.2.1
preact: ^10.7.0
react: ^18.0.0
@@ -170,7 +170,7 @@ importers:
examples/framework-preact:
specifiers:
'@astrojs/preact': ^0.0.2
- astro: ^0.26.0
+ astro: ^0.25.4
preact: ^10.7.0
dependencies:
preact: 10.7.0
@@ -180,8 +180,8 @@ importers:
examples/framework-react:
specifiers:
- '@astrojs/react': ^0.1.0
- astro: ^0.26.0
+ '@astrojs/react': ^0.0.2
+ astro: ^0.25.4
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
@@ -194,7 +194,7 @@ importers:
examples/framework-solid:
specifiers:
'@astrojs/solid-js': ^0.0.3
- astro: ^0.26.0
+ astro: ^0.25.4
solid-js: ^1.3.13
dependencies:
solid-js: 1.3.13
@@ -205,7 +205,7 @@ importers:
examples/framework-svelte:
specifiers:
'@astrojs/svelte': ^0.0.2
- astro: ^0.26.0
+ astro: ^0.25.4
svelte: ^3.46.6
dependencies:
svelte: 3.46.6
@@ -216,7 +216,7 @@ importers:
examples/framework-vue:
specifiers:
'@astrojs/vue': ^0.0.2
- astro: ^0.26.0
+ astro: ^0.25.4
vue: ^3.2.31
dependencies:
vue: 3.2.31
@@ -227,13 +227,13 @@ importers:
examples/integrations-playground:
specifiers:
'@astrojs/lit': ^0.0.2
- '@astrojs/partytown': ^0.1.0
- '@astrojs/react': ^0.1.0
- '@astrojs/sitemap': ^0.1.0
- '@astrojs/tailwind': ^0.1.0
+ '@astrojs/partytown': ^0.0.2
+ '@astrojs/react': ^0.0.2
+ '@astrojs/sitemap': ^0.0.2
+ '@astrojs/tailwind': ^0.0.2
'@astrojs/turbolinks': ^0.0.2
'@webcomponents/template-shadowroot': ^0.1.0
- astro: ^0.26.0
+ astro: ^0.25.4
lit: ^2.2.1
preact: ^10.7.0
react: ^18.0.0
@@ -261,20 +261,20 @@ importers:
examples/minimal:
specifiers:
- astro: ^0.26.0
+ astro: ^0.25.4
devDependencies:
astro: link:../../packages/astro
examples/non-html-pages:
specifiers:
- astro: ^0.26.0
+ astro: ^0.25.4
devDependencies:
astro: link:../../packages/astro
examples/portfolio:
specifiers:
'@astrojs/preact': ^0.0.2
- astro: ^0.26.0
+ astro: ^0.25.4
preact: ^10.7.0
sass: ^1.49.11
dependencies:
@@ -288,7 +288,7 @@ importers:
specifiers:
'@astrojs/node': ^0.0.2
'@astrojs/svelte': ^0.0.2
- astro: ^0.26.0
+ astro: ^0.25.4
concurrently: ^7.1.0
lightcookie: ^1.0.25
svelte: ^3.46.6
@@ -307,14 +307,14 @@ importers:
examples/starter:
specifiers:
- astro: ^0.26.0
+ astro: ^0.25.4
devDependencies:
astro: link:../../packages/astro
examples/subpath:
specifiers:
- '@astrojs/react': ^0.1.0
- astro: ^0.26.0
+ '@astrojs/react': ^0.0.2
+ astro: ^0.25.4
react: ^18.0.0
react-dom: ^18.0.0
sass: ^1.49.11
@@ -328,12 +328,12 @@ importers:
examples/with-markdown:
specifiers:
- '@astrojs/markdown-remark': ^0.8.0
+ '@astrojs/markdown-remark': ^0.7.0
'@astrojs/preact': ^0.0.2
- '@astrojs/react': ^0.1.0
+ '@astrojs/react': ^0.0.2
'@astrojs/svelte': ^0.0.2
'@astrojs/vue': ^0.0.2
- astro: ^0.26.0
+ astro: ^0.25.4
preact: ^10.7.0
react: ^18.0.0
react-dom: ^18.0.0
@@ -355,8 +355,8 @@ importers:
examples/with-markdown-plugins:
specifiers:
- '@astrojs/markdown-remark': ^0.8.0
- astro: ^0.26.0
+ '@astrojs/markdown-remark': ^0.7.0
+ astro: ^0.25.4
hast-util-select: 5.0.1
rehype-autolink-headings: ^6.1.1
rehype-slug: ^5.0.1
@@ -373,8 +373,8 @@ importers:
examples/with-markdown-shiki:
specifiers:
- '@astrojs/markdown-remark': ^0.8.0
- astro: ^0.26.0
+ '@astrojs/markdown-remark': ^0.7.0
+ astro: ^0.25.4
devDependencies:
'@astrojs/markdown-remark': link:../../packages/markdown/remark
astro: link:../../packages/astro
@@ -382,14 +382,14 @@ importers:
examples/with-nanostores:
specifiers:
'@astrojs/preact': ^0.0.2
- '@astrojs/react': ^0.1.0
+ '@astrojs/react': ^0.0.2
'@astrojs/solid-js': ^0.0.3
'@astrojs/svelte': ^0.0.2
'@astrojs/vue': ^0.0.2
'@nanostores/preact': ^0.1.3
'@nanostores/react': ^0.1.5
'@nanostores/vue': ^0.4.1
- astro: ^0.26.0
+ astro: ^0.25.4
nanostores: ^0.5.12
preact: ^10.7.0
react: ^18.0.0
@@ -416,8 +416,8 @@ importers:
examples/with-tailwindcss:
specifiers:
- '@astrojs/tailwind': ^0.1.0
- astro: ^0.26.0
+ '@astrojs/tailwind': ^0.0.2
+ astro: ^0.25.4
autoprefixer: ^10.4.4
canvas-confetti: ^1.5.1
postcss: ^8.4.12
@@ -432,7 +432,7 @@ importers:
examples/with-vite-plugin-pwa:
specifiers:
- astro: ^0.26.0
+ astro: ^0.25.4
vite-plugin-pwa: 0.11.11
workbox-window: ^6.5.2
devDependencies:
@@ -444,7 +444,7 @@ importers:
specifiers:
'@astrojs/compiler': ^0.14.1
'@astrojs/language-server': ^0.13.3
- '@astrojs/markdown-remark': ^0.8.0
+ '@astrojs/markdown-remark': ^0.7.0
'@astrojs/prism': 0.4.1
'@astrojs/webapi': ^0.11.0
'@babel/core': ^7.17.8