summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/curvy-bikes-sing.md5
-rw-r--r--.changeset/nervous-peaches-sort.md7
-rw-r--r--.changeset/tidy-bugs-yawn.md5
-rw-r--r--.changeset/tough-snakes-reflect.md5
-rw-r--r--examples/basics/package.json2
-rw-r--r--examples/blog/package.json2
-rw-r--r--examples/component/package.json2
-rw-r--r--examples/container-with-vitest/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.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/hackernews/package.json2
-rw-r--r--examples/integration/package.json2
-rw-r--r--examples/minimal/package.json2
-rw-r--r--examples/portfolio/package.json2
-rw-r--r--examples/ssr/package.json2
-rw-r--r--examples/starlog/package.json2
-rw-r--r--examples/toolbar-app/package.json2
-rw-r--r--examples/with-markdoc/package.json2
-rw-r--r--examples/with-mdx/package.json2
-rw-r--r--examples/with-nanostores/package.json2
-rw-r--r--examples/with-tailwindcss/package.json2
-rw-r--r--examples/with-vitest/package.json2
-rw-r--r--packages/astro/CHANGELOG.md10
-rw-r--r--packages/astro/package.json2
-rw-r--r--packages/create-astro/CHANGELOG.md8
-rw-r--r--packages/create-astro/package.json2
-rw-r--r--pnpm-lock.yaml281
33 files changed, 68 insertions, 305 deletions
diff --git a/.changeset/curvy-bikes-sing.md b/.changeset/curvy-bikes-sing.md
deleted file mode 100644
index c41cf1a12..000000000
--- a/.changeset/curvy-bikes-sing.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'create-astro': minor
----
-
-Improves default template download speed by downloading from a branch containing the template only
diff --git a/.changeset/nervous-peaches-sort.md b/.changeset/nervous-peaches-sort.md
deleted file mode 100644
index 337de234c..000000000
--- a/.changeset/nervous-peaches-sort.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'astro': patch
----
-
-Ensure we target scripts for execution in the router
-
-Using `document.scripts` is unsafe because if the application has a `name="scripts"` this will shadow the built-in `document.scripts`. Fix is to use `getElementsByTagName` to ensure we're only grabbing real scripts.
diff --git a/.changeset/tidy-bugs-yawn.md b/.changeset/tidy-bugs-yawn.md
deleted file mode 100644
index e395435dc..000000000
--- a/.changeset/tidy-bugs-yawn.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'create-astro': minor
----
-
-Ensures new line at the end of the generated `package.json` and `tsconfig.json` files
diff --git a/.changeset/tough-snakes-reflect.md b/.changeset/tough-snakes-reflect.md
deleted file mode 100644
index 7fdaca603..000000000
--- a/.changeset/tough-snakes-reflect.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fixes a bug where Astro Actions couldn't redirect to the correct pathname when there was a rewrite involved.
diff --git a/examples/basics/package.json b/examples/basics/package.json
index 9094dc3e0..20ffa0f0b 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^4.16.0"
+ "astro": "^4.16.1"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index e0eecd06d..b2d704b5e 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -14,6 +14,6 @@
"@astrojs/mdx": "^3.1.8",
"@astrojs/rss": "^4.0.8",
"@astrojs/sitemap": "^3.2.0",
- "astro": "^4.16.0"
+ "astro": "^4.16.1"
}
}
diff --git a/examples/component/package.json b/examples/component/package.json
index ebbba8cce..5c10e5629 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^4.16.0"
+ "astro": "^4.16.1"
},
"peerDependencies": {
"astro": "^4.0.0"
diff --git a/examples/container-with-vitest/package.json b/examples/container-with-vitest/package.json
index 57144a075..f6c197b51 100644
--- a/examples/container-with-vitest/package.json
+++ b/examples/container-with-vitest/package.json
@@ -12,7 +12,7 @@
"test": "vitest run"
},
"dependencies": {
- "astro": "^4.16.0",
+ "astro": "^4.16.1",
"@astrojs/react": "^3.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json
index 8de1079a6..5f7dbf028 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -14,6 +14,6 @@
"@astrojs/alpinejs": "^0.4.0",
"@types/alpinejs": "^3.13.10",
"alpinejs": "^3.14.1",
- "astro": "^4.16.0"
+ "astro": "^4.16.1"
}
}
diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json
index 4f3eef3ca..661a3634a 100644
--- a/examples/framework-lit/package.json
+++ b/examples/framework-lit/package.json
@@ -13,7 +13,7 @@
"dependencies": {
"@astrojs/lit": "^4.3.0",
"@webcomponents/template-shadowroot": "^0.2.1",
- "astro": "^4.16.0",
+ "astro": "^4.16.1",
"lit": "^3.2.0"
}
}
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index 71f543491..a2c6c2980 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -18,7 +18,7 @@
"@astrojs/vue": "^4.5.2",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
- "astro": "^4.16.0",
+ "astro": "^4.16.1",
"preact": "^10.24.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index 3e89e9b40..1ecc5ea18 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -13,7 +13,7 @@
"dependencies": {
"@astrojs/preact": "^3.5.3",
"@preact/signals": "^1.3.0",
- "astro": "^4.16.0",
+ "astro": "^4.16.1",
"preact": "^10.24.2"
}
}
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index 4d83318b3..4677b8845 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -14,7 +14,7 @@
"@astrojs/react": "^3.6.2",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
- "astro": "^4.16.0",
+ "astro": "^4.16.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index 5d3ed0cd9..2cbd55eb1 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/solid-js": "^4.4.2",
- "astro": "^4.16.0",
+ "astro": "^4.16.1",
"solid-js": "^1.9.1"
}
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index a4bdc1566..8d70dadd8 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/svelte": "^5.7.2",
- "astro": "^4.16.0",
+ "astro": "^4.16.1",
"svelte": "^4.2.19"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index 04cdc459e..9613267e5 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/vue": "^4.5.2",
- "astro": "^4.16.0",
+ "astro": "^4.16.1",
"vue": "^3.5.11"
}
}
diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json
index 34fd574d4..ac525099f 100644
--- a/examples/hackernews/package.json
+++ b/examples/hackernews/package.json
@@ -12,6 +12,6 @@
},
"dependencies": {
"@astrojs/node": "^8.3.4",
- "astro": "^4.16.0"
+ "astro": "^4.16.1"
}
}
diff --git a/examples/integration/package.json b/examples/integration/package.json
index 00849d015..ba068c484 100644
--- a/examples/integration/package.json
+++ b/examples/integration/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^4.16.0"
+ "astro": "^4.16.1"
},
"peerDependencies": {
"astro": "^4.0.0"
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index a87487eb4..522d6fff1 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^4.16.0"
+ "astro": "^4.16.1"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index c78a51b7c..f8a4921b1 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^4.16.0"
+ "astro": "^4.16.1"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index efa83df13..b54afbdc9 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -14,7 +14,7 @@
"dependencies": {
"@astrojs/node": "^8.3.4",
"@astrojs/svelte": "^5.7.2",
- "astro": "^4.16.0",
+ "astro": "^4.16.1",
"svelte": "^4.2.19"
}
}
diff --git a/examples/starlog/package.json b/examples/starlog/package.json
index 93f776317..6430d96b1 100644
--- a/examples/starlog/package.json
+++ b/examples/starlog/package.json
@@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^4.16.0",
+ "astro": "^4.16.1",
"sass": "^1.79.4",
"sharp": "^0.33.3"
}
diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json
index 02cbdf8d5..902f35df8 100644
--- a/examples/toolbar-app/package.json
+++ b/examples/toolbar-app/package.json
@@ -15,6 +15,6 @@
"./app": "./dist/app.js"
},
"devDependencies": {
- "astro": "^4.16.0"
+ "astro": "^4.16.1"
}
}
diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json
index b42a76ef2..4e633a9ec 100644
--- a/examples/with-markdoc/package.json
+++ b/examples/with-markdoc/package.json
@@ -12,6 +12,6 @@
},
"dependencies": {
"@astrojs/markdoc": "^0.11.5",
- "astro": "^4.16.0"
+ "astro": "^4.16.1"
}
}
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index 8bf1ba448..9e2fac6b8 100644
--- a/examples/with-mdx/package.json
+++ b/examples/with-mdx/package.json
@@ -13,7 +13,7 @@
"dependencies": {
"@astrojs/mdx": "^3.1.8",
"@astrojs/preact": "^3.5.3",
- "astro": "^4.16.0",
+ "astro": "^4.16.1",
"preact": "^10.24.2"
}
}
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index 118020bcb..88ce38014 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -13,7 +13,7 @@
"dependencies": {
"@astrojs/preact": "^3.5.3",
"@nanostores/preact": "^0.5.2",
- "astro": "^4.16.0",
+ "astro": "^4.16.1",
"nanostores": "^0.11.3",
"preact": "^10.24.2"
}
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index f37d3e399..82a9dc3a5 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -14,7 +14,7 @@
"@astrojs/mdx": "^3.1.8",
"@astrojs/tailwind": "^5.1.2",
"@types/canvas-confetti": "^1.6.4",
- "astro": "^4.16.0",
+ "astro": "^4.16.1",
"autoprefixer": "^10.4.20",
"canvas-confetti": "^1.9.3",
"postcss": "^8.4.47",
diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json
index 73f66c67d..6105f9a98 100644
--- a/examples/with-vitest/package.json
+++ b/examples/with-vitest/package.json
@@ -12,7 +12,7 @@
"test": "vitest"
},
"dependencies": {
- "astro": "^4.16.0",
+ "astro": "^4.16.1",
"vitest": "^2.1.2"
}
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index 27aa54041..4915096cf 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,15 @@
# astro
+## 4.16.1
+
+### Patch Changes
+
+- [#12177](https://github.com/withastro/astro/pull/12177) [`a4ffbfa`](https://github.com/withastro/astro/commit/a4ffbfaa5cb460c12bd486fd75e36147f51d3e5e) Thanks [@matthewp](https://github.com/matthewp)! - Ensure we target scripts for execution in the router
+
+ Using `document.scripts` is unsafe because if the application has a `name="scripts"` this will shadow the built-in `document.scripts`. Fix is to use `getElementsByTagName` to ensure we're only grabbing real scripts.
+
+- [#12173](https://github.com/withastro/astro/pull/12173) [`2d10de5`](https://github.com/withastro/astro/commit/2d10de5f212323e6e19c7ea379826dcc18fe739c) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a bug where Astro Actions couldn't redirect to the correct pathname when there was a rewrite involved.
+
## 4.16.0
### Minor Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 31abc763e..048125aef 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "4.16.0",
+ "version": "4.16.1",
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
"type": "module",
"author": "withastro",
diff --git a/packages/create-astro/CHANGELOG.md b/packages/create-astro/CHANGELOG.md
index 2238bc056..e696dcec6 100644
--- a/packages/create-astro/CHANGELOG.md
+++ b/packages/create-astro/CHANGELOG.md
@@ -1,5 +1,13 @@
# create-astro
+## 4.10.0
+
+### Minor Changes
+
+- [#12154](https://github.com/withastro/astro/pull/12154) [`9988dd6`](https://github.com/withastro/astro/commit/9988dd67e2e4647c974979470d2e63d80433b611) Thanks [@bluwy](https://github.com/bluwy)! - Improves default template download speed by downloading from a branch containing the template only
+
+- [#12186](https://github.com/withastro/astro/pull/12186) [`49c4f64`](https://github.com/withastro/astro/commit/49c4f64673390f7035258d662755988f0fb71a94) Thanks [@Terfno](https://github.com/Terfno)! - Ensures new line at the end of the generated `package.json` and `tsconfig.json` files
+
## 4.9.2
### Patch Changes
diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json
index f7aaa96a1..87ae640f4 100644
--- a/packages/create-astro/package.json
+++ b/packages/create-astro/package.json
@@ -1,6 +1,6 @@
{
"name": "create-astro",
- "version": "4.9.2",
+ "version": "4.10.0",
"type": "module",
"author": "withastro",
"license": "MIT",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index b8982deaf..a721c2c32 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -113,7 +113,7 @@ importers:
examples/basics:
dependencies:
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
examples/blog:
@@ -128,13 +128,13 @@ importers:
specifier: ^3.2.0
version: link:../../packages/integrations/sitemap
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
examples/component:
devDependencies:
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
examples/container-with-vitest:
@@ -143,7 +143,7 @@ importers:
specifier: ^3.6.2
version: link:../../packages/integrations/react
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
react:
specifier: ^18.3.1
@@ -174,7 +174,7 @@ importers:
specifier: ^3.14.1
version: 3.14.1
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
examples/framework-lit:
@@ -186,7 +186,7 @@ importers:
specifier: ^0.2.1
version: 0.2.1
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
lit:
specifier: ^3.2.0
@@ -216,7 +216,7 @@ importers:
specifier: ^18.3.0
version: 18.3.0
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
preact:
specifier: ^10.24.2
@@ -246,7 +246,7 @@ importers:
specifier: ^1.3.0
version: 1.3.0(preact@10.24.2)
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
preact:
specifier: ^10.24.2
@@ -264,7 +264,7 @@ importers:
specifier: ^18.3.0
version: 18.3.0
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
react:
specifier: ^18.3.1
@@ -279,7 +279,7 @@ importers:
specifier: ^4.4.2
version: link:../../packages/integrations/solid
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
solid-js:
specifier: ^1.9.1
@@ -291,7 +291,7 @@ importers:
specifier: ^5.7.2
version: link:../../packages/integrations/svelte
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
svelte:
specifier: ^4.2.19
@@ -303,7 +303,7 @@ importers:
specifier: ^4.5.2
version: link:../../packages/integrations/vue
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
vue:
specifier: ^3.5.11
@@ -315,88 +315,27 @@ importers:
specifier: ^8.3.4
version: 8.3.4(astro@packages+astro)
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
examples/integration:
devDependencies:
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
- examples/middleware:
- dependencies:
- '@astrojs/node':
- specifier: ^8.3.4
- version: 8.3.4(astro@packages+astro)
- astro:
- specifier: ^4.16.0
- version: link:../../packages/astro
- html-minifier:
- specifier: ^4.0.0
- version: 4.0.0
- devDependencies:
- '@types/html-minifier':
- specifier: ^4.0.5
- version: 4.0.5
-
examples/minimal:
dependencies:
astro:
- specifier: ^4.16.0
- version: link:../../packages/astro
-
- examples/non-html-pages:
- dependencies:
- astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
examples/portfolio:
dependencies:
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
- examples/server-islands:
- devDependencies:
- '@astrojs/node':
- specifier: ^8.3.4
- version: 8.3.4(astro@packages+astro)
- '@astrojs/react':
- specifier: ^3.6.2
- version: link:../../packages/integrations/react
- '@astrojs/tailwind':
- specifier: ^5.1.2
- version: link:../../packages/integrations/tailwind
- '@fortawesome/fontawesome-free':
- specifier: ^6.6.0
- version: 6.6.0
- '@tailwindcss/forms':
- specifier: ^0.5.9
- version: 0.5.9(tailwindcss@3.4.13)
- '@types/react':
- specifier: ^18.3.11
- version: 18.3.11
- '@types/react-dom':
- specifier: ^18.3.0
- version: 18.3.0
- astro:
- specifier: ^4.16.0
- version: link:../../packages/astro
- postcss:
- specifier: ^8.4.47
- version: 8.4.47
- react:
- specifier: ^18.3.1
- version: 18.3.1
- react-dom:
- specifier: ^18.3.1
- version: 18.3.1(react@18.3.1)
- tailwindcss:
- specifier: ^3.4.13
- version: 3.4.13
-
examples/ssr:
dependencies:
'@astrojs/node':
@@ -406,7 +345,7 @@ importers:
specifier: ^5.7.2
version: link:../../packages/integrations/svelte
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
svelte:
specifier: ^4.2.19
@@ -415,7 +354,7 @@ importers:
examples/starlog:
dependencies:
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
sass:
specifier: ^1.79.4
@@ -427,19 +366,7 @@ importers:
examples/toolbar-app:
devDependencies:
astro:
- specifier: ^4.16.0
- version: link:../../packages/astro
-
- examples/view-transitions:
- devDependencies:
- '@astrojs/node':
- specifier: ^8.3.4
- version: 8.3.4(astro@packages+astro)
- '@astrojs/tailwind':
- specifier: ^5.1.2
- version: link:../../packages/integrations/tailwind
- astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
examples/with-markdoc:
@@ -448,37 +375,7 @@ importers:
specifier: ^0.11.5
version: link:../../packages/integrations/markdoc
astro:
- specifier: ^4.16.0
- version: link:../../packages/astro
-
- examples/with-markdown-plugins:
- dependencies:
- '@astrojs/markdown-remark':
- specifier: ^5.3.0
- version: link:../../packages/markdown/remark
- astro:
- specifier: ^4.16.0
- version: link:../../packages/astro
- hast-util-select:
- specifier: ^6.0.2
- version: 6.0.2
- rehype-autolink-headings:
- specifier: ^7.1.0
- version: 7.1.0
- rehype-slug:
- specifier: ^6.0.0
- version: 6.0.0
- rehype-toc:
- specifier: ^3.0.2
- version: 3.0.2
- remark-code-titles:
- specifier: ^0.1.2
- version: 0.1.2
-
- examples/with-markdown-shiki:
- dependencies:
- astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
examples/with-mdx:
@@ -490,7 +387,7 @@ importers:
specifier: ^3.5.3
version: link:../../packages/integrations/preact
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
preact:
specifier: ^10.24.2
@@ -505,7 +402,7 @@ importers:
specifier: ^0.5.2
version: 0.5.2(nanostores@0.11.3)(preact@10.24.2)
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
nanostores:
specifier: ^0.11.3
@@ -526,7 +423,7 @@ importers:
specifier: ^1.6.4
version: 1.6.4
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
autoprefixer:
specifier: ^10.4.20
@@ -544,7 +441,7 @@ importers:
examples/with-vitest:
dependencies:
astro:
- specifier: ^4.16.0
+ specifier: ^4.16.1
version: link:../../packages/astro
vitest:
specifier: ^2.1.2
@@ -6525,10 +6422,6 @@ packages:
'@fontsource/montserrat@5.1.0':
resolution: {integrity: sha512-HB4+rWP9Y8g6T9RGRVJk2SvAJtx2eBAXuivvPOqQdD806/9WESUfucfH9LqFj3bGgdhNCfh0Rv0NGuwEmBLRiw==}
- '@fortawesome/fontawesome-free@6.6.0':
- resolution: {integrity: sha512-60G28ke/sXdtS9KZCpZSHHkCbdsOGEhIUGlwq6yhY74UpTiToIh8np7A8yphhM4BWsvNFtIvLpi4co+h9Mr9Ow==}
- engines: {node: '>=6'}
-
'@humanfs/core@0.19.0':
resolution: {integrity: sha512-2cbWIHbZVEweE853g8jymffCA+NCMiuqeECeBBLm8dg2oFdjuGJhgN4UAbI+6v0CKbbhvtXA4qV8YR5Ji86nmw==}
engines: {node: '>=18.18.0'}
@@ -6982,11 +6875,6 @@ packages:
svelte: ^4.0.0 || ^5.0.0-next.0
vite: ^5.0.0
- '@tailwindcss/forms@0.5.9':
- resolution: {integrity: sha512-tM4XVr2+UVTxXJzey9Twx48c1gcxFStqn1pQz0tRsX8o3DvxhN5oY5pvyAbUx7VTaZxpej4Zzvc6h+1RJBzpIg==}
- peerDependencies:
- tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20'
-
'@trysound/sax@0.2.0':
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
@@ -7018,9 +6906,6 @@ packages:
'@types/canvas-confetti@1.6.4':
resolution: {integrity: sha512-fNyZ/Fdw/Y92X0vv7B+BD6ysHL4xVU5dJcgzgxLdGbn8O3PezZNIJpml44lKM0nsGur+o/6+NZbZeNTt00U1uA==}
- '@types/clean-css@4.2.11':
- resolution: {integrity: sha512-Y8n81lQVTAfP2TOdtJJEsCoYl1AnOkqDqMvXb9/7pfgZZ7r8YrEyurrAvAoAjHOGXKRybay+5CsExqIH6liccw==}
-
'@types/common-ancestor-path@1.0.2':
resolution: {integrity: sha512-8llyULydTb7nM9yfiW78n6id3cet+qnATPV3R44yIywxgBaa8QXFSM9QTMf4OH64QOB45BlgZ3/oL4mmFLztQw==}
@@ -7054,9 +6939,6 @@ packages:
'@types/html-escaper@3.0.2':
resolution: {integrity: sha512-A8vk09eyYzk8J/lFO4OUMKCmRN0rRzfZf4n3Olwapgox/PtTiU8zPYlL1UEkJ/WeHvV6v9Xnj3o/705PKz9r4Q==}
- '@types/html-minifier@4.0.5':
- resolution: {integrity: sha512-LfE7f7MFd+YUfZnlBz8W43P4NgSObWiqyKapANsWCj63Aqeqli8/9gVsGP4CwC8jPpTTYlTopKCk9rJSuht/ew==}
-
'@types/http-cache-semantics@4.0.4':
resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==}
@@ -7126,9 +7008,6 @@ packages:
'@types/react@18.3.11':
resolution: {integrity: sha512-r6QZ069rFTjrEYgFdOck1gK7FLVsgJE7tTz0pQBczlBNUhBNk0MQH4UbnFSwjpQLMkLzgqvBBa+qGpLje16eTQ==}
- '@types/relateurl@0.2.33':
- resolution: {integrity: sha512-bTQCKsVbIdzLqZhLkF5fcJQreE4y1ro4DIyVrlDNSCJRRwHhB8Z+4zXXa8jN6eDvc2HbRsEYgbvrnGvi54EpSw==}
-
'@types/sax@1.2.7':
resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==}
@@ -7141,9 +7020,6 @@ packages:
'@types/trusted-types@2.0.7':
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
- '@types/uglify-js@3.17.5':
- resolution: {integrity: sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ==}
-
'@types/ungap__structured-clone@1.2.0':
resolution: {integrity: sha512-ZoaihZNLeZSxESbk9PUAPZOlSpcKx81I1+4emtULDVmBLkYutTcMlCj2K9VNlf9EWODxdO6gkAqEaLorXwZQVA==}
@@ -7599,9 +7475,6 @@ packages:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- camel-case@3.0.0:
- resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==}
-
camelcase-css@2.0.1:
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
engines: {node: '>= 6'}
@@ -7683,10 +7556,6 @@ packages:
resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==}
engines: {node: '>=8'}
- clean-css@4.2.4:
- resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==}
- engines: {node: '>= 4.0'}
-
cli-boxes@3.0.0:
resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==}
engines: {node: '>=10'}
@@ -7752,9 +7621,6 @@ packages:
comma-separated-tokens@2.0.3:
resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
- commander@2.20.3:
- resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
-
commander@4.1.1:
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
engines: {node: '>= 6'}
@@ -8551,11 +8417,6 @@ packages:
html-escaper@3.0.3:
resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==}
- html-minifier@4.0.0:
- resolution: {integrity: sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==}
- engines: {node: '>=6'}
- hasBin: true
-
html-tags@3.3.1:
resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
engines: {node: '>=8'}
@@ -8927,9 +8788,6 @@ packages:
loupe@3.1.1:
resolution: {integrity: sha512-edNu/8D5MKVfGVFRhFf8aAxiTM6Wumfz5XsaatSxlD3w4R1d/WEKUTydCdPGbl9K7QG/Ca3GnDV2sIKIpXRQcw==}
- lower-case@1.1.4:
- resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==}
-
lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
@@ -9213,10 +9071,6 @@ packages:
resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
engines: {node: '>=18'}
- mini-svg-data-uri@1.4.4:
- resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==}
- hasBin: true
-
minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
@@ -9288,9 +9142,6 @@ packages:
nlcst-to-string@4.0.0:
resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==}
- no-case@2.3.2:
- resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==}
-
no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
@@ -9453,9 +9304,6 @@ packages:
pako@1.0.11:
resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
- param-case@2.1.1:
- resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==}
-
parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
@@ -9933,10 +9781,6 @@ packages:
reinterval@1.1.0:
resolution: {integrity: sha512-QIRet3SYrGp0HUHO88jVskiG6seqUGC5iAG7AwI/BV4ypGcuqk9Du6YQBUOUqm9c8pw1eyLoIaONifRua1lsEQ==}
- relateurl@0.2.7:
- resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
- engines: {node: '>= 0.10'}
-
remark-code-titles@0.1.2:
resolution: {integrity: sha512-KsHQbaI4FX8Ozxqk7YErxwmBiveUqloKuVqyPG2YPLHojpgomodWgRfG4B+bOtmn/5bfJ8khw4rR0lvgVFl2Uw==}
@@ -10205,10 +10049,6 @@ packages:
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
- source-map@0.6.1:
- resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
- engines: {node: '>=0.10.0'}
-
source-map@0.7.4:
resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
engines: {node: '>= 8'}
@@ -10560,11 +10400,6 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
- uglify-js@3.19.3:
- resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==}
- engines: {node: '>=0.8.0'}
- hasBin: true
-
uhyphen@0.2.0:
resolution: {integrity: sha512-qz3o9CHXmJJPGBdqzab7qAYuW8kQGKNEuoHFYrBwV6hWIMcpAmxDLXojcHfFr9US1Pe6zUswEIJIbLI610fuqA==}
@@ -10654,9 +10489,6 @@ packages:
peerDependencies:
browserslist: '>= 4.21.0'
- upper-case@1.1.3:
- resolution: {integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==}
-
uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
@@ -12097,8 +11929,6 @@ snapshots:
'@fontsource/montserrat@5.1.0': {}
- '@fortawesome/fontawesome-free@6.6.0': {}
-
'@humanfs/core@0.19.0': {}
'@humanfs/node@0.16.5':
@@ -12559,11 +12389,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@tailwindcss/forms@0.5.9(tailwindcss@3.4.13)':
- dependencies:
- mini-svg-data-uri: 1.4.4
- tailwindcss: 3.4.13
-
'@trysound/sax@0.2.0': {}
'@types/acorn@4.0.6':
@@ -12599,11 +12424,6 @@ snapshots:
'@types/canvas-confetti@1.6.4': {}
- '@types/clean-css@4.2.11':
- dependencies:
- '@types/node': 18.19.50
- source-map: 0.6.1
-
'@types/common-ancestor-path@1.0.2': {}
'@types/cookie@0.6.0': {}
@@ -12632,12 +12452,6 @@ snapshots:
'@types/html-escaper@3.0.2': {}
- '@types/html-minifier@4.0.5':
- dependencies:
- '@types/clean-css': 4.2.11
- '@types/relateurl': 0.2.33
- '@types/uglify-js': 3.17.5
-
'@types/http-cache-semantics@4.0.4': {}
'@types/js-yaml@4.0.9': {}
@@ -12707,8 +12521,6 @@ snapshots:
'@types/prop-types': 15.7.12
csstype: 3.1.3
- '@types/relateurl@0.2.33': {}
-
'@types/sax@1.2.7':
dependencies:
'@types/node': 18.19.50
@@ -12721,10 +12533,6 @@ snapshots:
'@types/trusted-types@2.0.7': {}
- '@types/uglify-js@3.17.5':
- dependencies:
- source-map: 0.6.1
-
'@types/ungap__structured-clone@1.2.0': {}
'@types/unist@2.0.11': {}
@@ -13337,11 +13145,6 @@ snapshots:
callsites@3.1.0: {}
- camel-case@3.0.0:
- dependencies:
- no-case: 2.3.2
- upper-case: 1.1.3
-
camelcase-css@2.0.1: {}
camelcase@8.0.0: {}
@@ -13432,10 +13235,6 @@ snapshots:
ci-info@4.0.0: {}
- clean-css@4.2.4:
- dependencies:
- source-map: 0.6.1
-
cli-boxes@3.0.0: {}
cli-cursor@4.0.0:
@@ -13502,8 +13301,6 @@ snapshots:
comma-separated-tokens@2.0.3: {}
- commander@2.20.3: {}
-
commander@4.1.1: {}
commander@7.2.0: {}
@@ -14315,16 +14112,6 @@ snapshots:
html-escaper@3.0.3: {}
- html-minifier@4.0.0:
- dependencies:
- camel-case: 3.0.0
- clean-css: 4.2.4
- commander: 2.20.3
- he: 1.2.0
- param-case: 2.1.1
- relateurl: 0.2.7
- uglify-js: 3.19.3
-
html-tags@3.3.1: {}
html-void-elements@3.0.0: {}
@@ -14688,8 +14475,6 @@ snapshots:
dependencies:
get-func-name: 2.0.2
- lower-case@1.1.4: {}
-
lower-case@2.0.2:
dependencies:
tslib: 2.7.0
@@ -15257,8 +15042,6 @@ snapshots:
mimic-function@5.0.1: {}
- mini-svg-data-uri@1.4.4: {}
-
minimatch@3.1.2:
dependencies:
brace-expansion: 1.1.11
@@ -15309,10 +15092,6 @@ snapshots:
dependencies:
'@types/nlcst': 2.0.3
- no-case@2.3.2:
- dependencies:
- lower-case: 1.1.4
-
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
@@ -15471,10 +15250,6 @@ snapshots:
pako@1.0.11: {}
- param-case@2.1.1:
- dependencies:
- no-case: 2.3.2
-
parent-module@1.0.1:
dependencies:
callsites: 3.1.0
@@ -16008,8 +15783,6 @@ snapshots:
reinterval@1.1.0: {}
- relateurl@0.2.7: {}
-
remark-code-titles@0.1.2:
dependencies:
unist-util-visit: 1.4.1
@@ -16380,8 +16153,6 @@ snapshots:
source-map-js@1.2.1: {}
- source-map@0.6.1: {}
-
source-map@0.7.4: {}
space-separated-tokens@2.0.2: {}
@@ -16721,8 +16492,6 @@ snapshots:
typescript@5.6.2: {}
- uglify-js@3.19.3: {}
-
uhyphen@0.2.0: {}
ultrahtml@1.5.3: {}
@@ -16837,8 +16606,6 @@ snapshots:
escalade: 3.2.0
picocolors: 1.1.0
- upper-case@1.1.3: {}
-
uri-js@4.4.1:
dependencies:
punycode: 2.3.1