summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/clever-years-appear.md5
-rw-r--r--.changeset/shiny-dodos-relax.md5
-rw-r--r--examples/blog-multiple-authors/package.json2
-rw-r--r--examples/blog/package.json2
-rw-r--r--examples/docs/package.json2
-rw-r--r--examples/framework-lit/package.json2
-rw-r--r--examples/framework-multiple/package.json2
-rw-r--r--examples/framework-preact/package.json2
-rw-r--r--examples/framework-react/package.json2
-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/minimal/package.json2
-rw-r--r--examples/portfolio-svelte/package.json2
-rw-r--r--examples/portfolio/package.json2
-rw-r--r--examples/starter/package.json2
-rw-r--r--examples/subpath/package.json2
-rw-r--r--examples/with-markdown-plugins/package.json2
-rw-r--r--examples/with-markdown/package.json2
-rw-r--r--examples/with-nanostores/package.json2
-rw-r--r--examples/with-tailwindcss/package.json2
-rw-r--r--examples/with-vite-plugin-pwa/package.json2
-rw-r--r--packages/astro/CHANGELOG.md7
-rw-r--r--packages/astro/package.json4
-rw-r--r--packages/renderers/renderer-svelte/CHANGELOG.md6
-rw-r--r--packages/renderers/renderer-svelte/package.json2
-rw-r--r--www/package.json2
27 files changed, 37 insertions, 34 deletions
diff --git a/.changeset/clever-years-appear.md b/.changeset/clever-years-appear.md
deleted file mode 100644
index 275faecf8..000000000
--- a/.changeset/clever-years-appear.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': minor
----
-
-Replaced `fetch` walk-n-replace with globalThis polyfill
diff --git a/.changeset/shiny-dodos-relax.md b/.changeset/shiny-dodos-relax.md
deleted file mode 100644
index 262ffff29..000000000
--- a/.changeset/shiny-dodos-relax.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/renderer-svelte': patch
----
-
-Pin `@sveltejs/vite-plugin-svelte` to `1.0.0-next.30` for now
diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json
index 93b32997d..be4d5c389 100644
--- a/examples/blog-multiple-authors/package.json
+++ b/examples/blog-multiple-authors/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.21.12"
+ "astro": "^0.21.13"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index ef2ee4b10..7abfb5469 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.21.12"
+ "astro": "^0.21.13"
}
}
diff --git a/examples/docs/package.json b/examples/docs/package.json
index 076ae0cfe..33105db0e 100644
--- a/examples/docs/package.json
+++ b/examples/docs/package.json
@@ -12,6 +12,6 @@
"@docsearch/react": "^1.0.0-alpha.28"
},
"devDependencies": {
- "astro": "^0.21.12"
+ "astro": "^0.21.13"
}
}
diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json
index e0739b7f9..43b2769bf 100644
--- a/examples/framework-lit/package.json
+++ b/examples/framework-lit/package.json
@@ -10,6 +10,6 @@
},
"devDependencies": {
"@astrojs/renderer-lit": "^0.2.1",
- "astro": "^0.21.12"
+ "astro": "^0.21.13"
}
}
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index e4e8bd3ca..a83881429 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -10,6 +10,6 @@
},
"devDependencies": {
"@astrojs/renderer-solid": "^0.2.1",
- "astro": "^0.21.12"
+ "astro": "^0.21.13"
}
}
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index 483b01cb2..339cec6e5 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.21.12"
+ "astro": "^0.21.13"
}
}
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index 16afc684f..f1ea5c076 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.21.12"
+ "astro": "^0.21.13"
}
}
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index 9d5e5fd71..f1ce217f1 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -10,6 +10,6 @@
},
"devDependencies": {
"@astrojs/renderer-solid": "^0.2.1",
- "astro": "^0.21.12"
+ "astro": "^0.21.13"
}
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 62f04c997..37d9756be 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.21.12"
+ "astro": "^0.21.13"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index 43e8f484f..971f6df3f 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.21.12"
+ "astro": "^0.21.13"
}
}
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index f501c90a3..9a36f9b4a 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.21.12"
+ "astro": "^0.21.13"
}
}
diff --git a/examples/portfolio-svelte/package.json b/examples/portfolio-svelte/package.json
index d3143778a..c84db47cc 100644
--- a/examples/portfolio-svelte/package.json
+++ b/examples/portfolio-svelte/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.21.12"
+ "astro": "^0.21.13"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index f175507ad..aa885b361 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.21.12"
+ "astro": "^0.21.13"
}
}
diff --git a/examples/starter/package.json b/examples/starter/package.json
index 5f636bd7c..c70348543 100644
--- a/examples/starter/package.json
+++ b/examples/starter/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.21.12"
+ "astro": "^0.21.13"
}
}
diff --git a/examples/subpath/package.json b/examples/subpath/package.json
index 9d1e76684..6c4f48dff 100644
--- a/examples/subpath/package.json
+++ b/examples/subpath/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.21.12"
+ "astro": "^0.21.13"
}
}
diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json
index 3b4d3bcaf..d309b023c 100644
--- a/examples/with-markdown-plugins/package.json
+++ b/examples/with-markdown-plugins/package.json
@@ -9,7 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.21.12",
+ "astro": "^0.21.13",
"rehype-add-classes": "^1.0.0",
"rehype-autolink-headings": "^6.1.0",
"rehype-slug": "^5.0.0",
diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json
index 7cd5fa718..79a0d2f4b 100644
--- a/examples/with-markdown/package.json
+++ b/examples/with-markdown/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.21.12"
+ "astro": "^0.21.13"
}
}
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index 17f56716b..9668365f1 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -17,6 +17,6 @@
},
"devDependencies": {
"@astrojs/renderer-solid": "^0.2.1",
- "astro": "^0.21.12"
+ "astro": "^0.21.13"
}
}
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index b00237f8c..db753e636 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -9,7 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.21.12",
+ "astro": "^0.21.13",
"autoprefixer": "^10.4.0",
"tailwindcss": "^3.0.5"
}
diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json
index de637bf51..37c3becba 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.21.12",
+ "astro": "^0.21.13",
"vite-plugin-pwa": "0.11.5"
}
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index 9e917d305..414c1b9aa 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,12 @@
# astro
+## 0.21.13
+
+### Patch Changes
+
+- Updated dependencies [[`b8c821a0`](https://github.com/withastro/astro/commit/b8c821a0743ed004691eae0eea471a368d2fa35f)]:
+ - @astrojs/renderer-svelte@0.2.3
+
## 0.21.12
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 2e8698df5..c7cad077f 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "0.21.12",
+ "version": "0.21.13",
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
"type": "module",
"author": "withastro",
@@ -62,7 +62,7 @@
"@astrojs/prism": "0.3.0",
"@astrojs/renderer-preact": "^0.3.1",
"@astrojs/renderer-react": "0.3.1",
- "@astrojs/renderer-svelte": "0.2.2",
+ "@astrojs/renderer-svelte": "0.2.3",
"@astrojs/renderer-vue": "0.2.1",
"@astropub/webapi": "^0.4.0",
"@babel/core": "^7.15.8",
diff --git a/packages/renderers/renderer-svelte/CHANGELOG.md b/packages/renderers/renderer-svelte/CHANGELOG.md
index 523a3b878..59208c683 100644
--- a/packages/renderers/renderer-svelte/CHANGELOG.md
+++ b/packages/renderers/renderer-svelte/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/renderer-svelte
+## 0.2.3
+
+### Patch Changes
+
+- [#2216](https://github.com/withastro/astro/pull/2216) [`b8c821a0`](https://github.com/withastro/astro/commit/b8c821a0743ed004691eae0eea471a368d2fa35f) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Pin `@sveltejs/vite-plugin-svelte` to `1.0.0-next.30` for now
+
## 0.2.2
### Patch Changes
diff --git a/packages/renderers/renderer-svelte/package.json b/packages/renderers/renderer-svelte/package.json
index 4d72fec2e..e60514a40 100644
--- a/packages/renderers/renderer-svelte/package.json
+++ b/packages/renderers/renderer-svelte/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/renderer-svelte",
- "version": "0.2.2",
+ "version": "0.2.3",
"description": "Use Svelte components within Astro",
"type": "module",
"author": "withastro",
diff --git a/www/package.json b/www/package.json
index e2cbb49d1..c72269d39 100644
--- a/www/package.json
+++ b/www/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.21.12"
+ "astro": "^0.21.13"
}
}