summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Fred K. Bot <108291165+fredkbot@users.noreply.github.com> 2022-10-27 06:41:03 -0700
committerGravatar GitHub <noreply@github.com> 2022-10-27 09:41:03 -0400
commit50841bb7fd88d9c557bb6386e1ada23a8bc80ab9 (patch)
treec30b921ba19f9f876d9a4b690b6f842a49dc3621
parentb9364ff8d98095b905f761074fb1179b24aa6c74 (diff)
downloadastro-50841bb7fd88d9c557bb6386e1ada23a8bc80ab9.tar.gz
astro-50841bb7fd88d9c557bb6386e1ada23a8bc80ab9.tar.zst
astro-50841bb7fd88d9c557bb6386e1ada23a8bc80ab9.zip
* [ci] release * Update packages/integrations/cloudflare/CHANGELOG.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Matthew Phillips <matthew@skypack.dev> Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
-rw-r--r--.changeset/dirty-cycles-lick.md16
-rw-r--r--.changeset/many-rockets-admire.md11
-rw-r--r--.changeset/metal-boxes-compare.md5
-rw-r--r--.changeset/poor-frogs-clean.md6
-rw-r--r--.changeset/smooth-panthers-clean.md15
-rw-r--r--.changeset/wise-swans-live.md9
-rw-r--r--.changeset/witty-melons-heal.md5
-rw-r--r--examples/basics/package.json2
-rw-r--r--examples/blog/package.json4
-rw-r--r--examples/component/package.json4
-rw-r--r--examples/deno/package.json2
-rw-r--r--examples/docs/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/integration/package.json4
-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.json4
-rw-r--r--examples/with-markdown-plugins/package.json2
-rw-r--r--examples/with-markdown-shiki/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-vite-plugin-pwa/package.json2
-rw-r--r--examples/with-vitest/package.json2
-rw-r--r--packages/astro-rss/CHANGELOG.md11
-rw-r--r--packages/astro-rss/package.json2
-rw-r--r--packages/astro/CHANGELOG.md35
-rw-r--r--packages/astro/package.json2
-rw-r--r--packages/create-astro/CHANGELOG.md16
-rw-r--r--packages/create-astro/package.json2
-rw-r--r--packages/integrations/cloudflare/CHANGELOG.md7
-rw-r--r--packages/integrations/cloudflare/package.json2
-rw-r--r--packages/integrations/node/CHANGELOG.md6
-rw-r--r--packages/integrations/node/package.json2
-rw-r--r--pnpm-lock.yaml54
43 files changed, 136 insertions, 128 deletions
diff --git a/.changeset/dirty-cycles-lick.md b/.changeset/dirty-cycles-lick.md
deleted file mode 100644
index e8e39be9b..000000000
--- a/.changeset/dirty-cycles-lick.md
+++ /dev/null
@@ -1,16 +0,0 @@
----
-'astro': minor
----
-
-Add `astro/types` entrypoint. These utilities can be used for common prop type patterns.
-
-## `HTMLAttributes`
-
-If you would like to extend valid HTML attributes for a given HTML element, you may use the provided `HTMLAttributes` typeโ€”it accepts an element name and returns the valid HTML attributes for that element name.
-
-```ts
-import { HTMLAttributes } from 'astro/types';
-interface Props extends HTMLAttributes<'a'> {
- myProp?: string;
-};
-```
diff --git a/.changeset/many-rockets-admire.md b/.changeset/many-rockets-admire.md
deleted file mode 100644
index a566b86d1..000000000
--- a/.changeset/many-rockets-admire.md
+++ /dev/null
@@ -1,11 +0,0 @@
----
-'astro': minor
-'@astrojs/rss': patch
----
-
-Add support for markdown files with the following extensions:
-- `.markdown`
-- `.mdown`
-- `.mkdn`
-- `.mkd`
-- `.mdwn`
diff --git a/.changeset/metal-boxes-compare.md b/.changeset/metal-boxes-compare.md
deleted file mode 100644
index 7e9495a07..000000000
--- a/.changeset/metal-boxes-compare.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/node': patch
----
-
-fix static server path for windows system
diff --git a/.changeset/poor-frogs-clean.md b/.changeset/poor-frogs-clean.md
deleted file mode 100644
index 353e304da..000000000
--- a/.changeset/poor-frogs-clean.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-'@astrojs/cloudflare': patch
----
-
-enable access to cloudflare runtime [KV, R2, Durable Objects]
-- access native cloudflare runtime through `import { getRuntime } from "@astrojs/cloudflare/runtime"` now you can call `getRuntime(Astro.request)` and get access to the runtime environment
diff --git a/.changeset/smooth-panthers-clean.md b/.changeset/smooth-panthers-clean.md
deleted file mode 100644
index 8d3be7a54..000000000
--- a/.changeset/smooth-panthers-clean.md
+++ /dev/null
@@ -1,15 +0,0 @@
----
-'create-astro': minor
----
-
-Introducing your new automated assistant: Houston! ๐ŸŽ‰
-
-```
-โ•ญโ”€โ”€โ”€โ”€โ”€โ•ฎ Houston:
-โ”‚ โ—  โ—ก โ—  Initiating launch sequence... right... now!
-โ•ฐโ”€โ”€โ”€โ”€โ”€โ•ฏ
-```
-
-Updates template and TypeScript prompts for clarity and friendliness.
-
-Migrates template copying from [`degit`](https://github.com/Rich-Harris/degit) (unmaintained) to [`giget`](https://github.com/unjs/giget) for stability.
diff --git a/.changeset/wise-swans-live.md b/.changeset/wise-swans-live.md
deleted file mode 100644
index 906199d37..000000000
--- a/.changeset/wise-swans-live.md
+++ /dev/null
@@ -1,9 +0,0 @@
----
-'astro': minor
----
-
-Add support for `--base` CLI argument, which will override the [`base`](https://docs.astro.build/en/reference/configuration-reference/#base) set in your `astro.config.mjs` file.
-
-```
-astro --site https://astro.build --base /docs
-```
diff --git a/.changeset/witty-melons-heal.md b/.changeset/witty-melons-heal.md
deleted file mode 100644
index 27202d2c5..000000000
--- a/.changeset/witty-melons-heal.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Improve Astro libraries config handling
diff --git a/examples/basics/package.json b/examples/basics/package.json
index 39a1699fc..256093d33 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.3"
+ "astro": "^1.6.0"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index d3af8c79f..c62d2e71e 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -11,9 +11,9 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.3",
+ "astro": "^1.6.0",
"@astrojs/mdx": "^0.11.5",
- "@astrojs/rss": "^1.0.2",
+ "@astrojs/rss": "^1.0.3",
"@astrojs/sitemap": "^1.0.0"
}
}
diff --git a/examples/component/package.json b/examples/component/package.json
index ab60f220b..d38db5188 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -15,9 +15,9 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^1.5.3"
+ "astro": "^1.6.0"
},
"peerDependencies": {
- "astro": "^1.5.3"
+ "astro": "^1.6.0"
}
}
diff --git a/examples/deno/package.json b/examples/deno/package.json
index 35c8d9bfd..2642a2288 100644
--- a/examples/deno/package.json
+++ b/examples/deno/package.json
@@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.3"
+ "astro": "^1.6.0"
},
"devDependencies": {
"@astrojs/deno": "^1.2.0"
diff --git a/examples/docs/package.json b/examples/docs/package.json
index 360201f1a..e553eef43 100644
--- a/examples/docs/package.json
+++ b/examples/docs/package.json
@@ -12,7 +12,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.3",
+ "astro": "^1.6.0",
"preact": "^10.7.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json
index b5a24b13b..2e5cd8177 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.3",
+ "astro": "^1.6.0",
"alpinejs": "^3.10.2",
"@astrojs/alpinejs": "^0.1.2",
"@types/alpinejs": "^3.7.0"
diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json
index 940c38211..0b60a15df 100644
--- a/examples/framework-lit/package.json
+++ b/examples/framework-lit/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.3",
+ "astro": "^1.6.0",
"lit": "^2.2.5",
"@astrojs/lit": "^1.0.0",
"@webcomponents/template-shadowroot": "^0.1.0"
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index fc2195cb7..11f82490f 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.3",
+ "astro": "^1.6.0",
"preact": "^10.7.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index c61e35989..85c886f02 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.3",
+ "astro": "^1.6.0",
"preact": "^10.7.3",
"@astrojs/preact": "^1.2.0",
"@preact/signals": "^1.1.0"
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index a990cbdd7..5fcea3290 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.3",
+ "astro": "^1.6.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"@astrojs/react": "^1.2.1",
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index 41b0e4c76..a84202285 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.3",
+ "astro": "^1.6.0",
"solid-js": "^1.4.3",
"@astrojs/solid-js": "^1.2.1"
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 3ce7663c8..130c5424f 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -13,6 +13,6 @@
"dependencies": {
"svelte": "^3.48.0",
"@astrojs/svelte": "^1.0.2",
- "astro": "^1.5.3"
+ "astro": "^1.6.0"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index edf546ae7..bddc58461 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.3",
+ "astro": "^1.6.0",
"vue": "^3.2.37",
"@astrojs/vue": "^1.2.1"
}
diff --git a/examples/integration/package.json b/examples/integration/package.json
index abcfd17b2..fea0c0747 100644
--- a/examples/integration/package.json
+++ b/examples/integration/package.json
@@ -15,9 +15,9 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^1.5.3"
+ "astro": "^1.6.0"
},
"peerDependencies": {
- "astro": "^1.5.3"
+ "astro": "^1.6.0"
}
}
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index 7bf90c802..488df3214 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.3"
+ "astro": "^1.6.0"
}
}
diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json
index 6818c334c..1d17f27f6 100644
--- a/examples/non-html-pages/package.json
+++ b/examples/non-html-pages/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.3"
+ "astro": "^1.6.0"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index 4dd2fb3dc..f2d5e1448 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.3"
+ "astro": "^1.6.0"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index 0b3f7c7bb..751bf36da 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -12,10 +12,10 @@
"server": "node dist/server/entry.mjs"
},
"dependencies": {
- "astro": "^1.5.3",
+ "astro": "^1.6.0",
"svelte": "^3.48.0",
"@astrojs/svelte": "^1.0.2",
- "@astrojs/node": "^2.0.1",
+ "@astrojs/node": "^2.0.2",
"concurrently": "^7.2.1",
"unocss": "^0.15.6",
"vite-imagetools": "^4.0.4"
diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json
index 371e19987..e6072e79e 100644
--- a/examples/with-markdown-plugins/package.json
+++ b/examples/with-markdown-plugins/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.3",
+ "astro": "^1.6.0",
"@astrojs/markdown-remark": "^1.1.3",
"hast-util-select": "5.0.1",
"rehype-autolink-headings": "^6.1.1",
diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json
index 34eed9fad..e0cc739b6 100644
--- a/examples/with-markdown-shiki/package.json
+++ b/examples/with-markdown-shiki/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.3"
+ "astro": "^1.6.0"
}
}
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index 34d5424ce..fb4fb7bf1 100644
--- a/examples/with-mdx/package.json
+++ b/examples/with-mdx/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.3",
+ "astro": "^1.6.0",
"preact": "^10.6.5",
"@astrojs/preact": "^1.2.0",
"@astrojs/mdx": "^0.11.5"
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index e73ea6862..fdec8f1ac 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.3",
+ "astro": "^1.6.0",
"preact": "^10.7.3",
"@astrojs/preact": "^1.2.0",
"nanostores": "^0.5.12",
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index b33bd0a91..f4fb27d97 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -14,7 +14,7 @@
"@astrojs/mdx": "^0.11.5",
"@astrojs/tailwind": "^2.1.1",
"@types/canvas-confetti": "^1.4.3",
- "astro": "^1.5.3",
+ "astro": "^1.6.0",
"autoprefixer": "^10.4.7",
"canvas-confetti": "^1.5.1",
"postcss": "^8.4.14",
diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json
index 115e9a9d3..4e0251410 100644
--- a/examples/with-vite-plugin-pwa/package.json
+++ b/examples/with-vite-plugin-pwa/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.3",
+ "astro": "^1.6.0",
"vite-plugin-pwa": "0.11.11",
"workbox-window": "^6.5.3"
}
diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json
index 782876289..b218061ce 100644
--- a/examples/with-vitest/package.json
+++ b/examples/with-vitest/package.json
@@ -12,7 +12,7 @@
"test": "vitest"
},
"dependencies": {
- "astro": "^1.5.3",
+ "astro": "^1.6.0",
"vitest": "^0.20.3"
}
}
diff --git a/packages/astro-rss/CHANGELOG.md b/packages/astro-rss/CHANGELOG.md
index 12519ca64..88859d8d3 100644
--- a/packages/astro-rss/CHANGELOG.md
+++ b/packages/astro-rss/CHANGELOG.md
@@ -1,5 +1,16 @@
# @astrojs/rss
+## 1.0.3
+
+### Patch Changes
+
+- [#5164](https://github.com/withastro/astro/pull/5164) [`4a8a346ca`](https://github.com/withastro/astro/commit/4a8a346ca9a6d6ed8def2fa32329c1db922893d2) Thanks [@MoustaphaDev](https://github.com/MoustaphaDev)! - Add support for markdown files with the following extensions:
+ - `.markdown`
+ - `.mdown`
+ - `.mkdn`
+ - `.mkd`
+ - `.mdwn`
+
## 1.0.2
### Patch Changes
diff --git a/packages/astro-rss/package.json b/packages/astro-rss/package.json
index 132e031ff..a34948285 100644
--- a/packages/astro-rss/package.json
+++ b/packages/astro-rss/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/rss",
"description": "Add RSS feeds to your Astro projects",
- "version": "1.0.2",
+ "version": "1.0.3",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index 95a563de0..de7c59636 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,40 @@
# astro
+## 1.6.0
+
+### Minor Changes
+
+- [#5147](https://github.com/withastro/astro/pull/5147) [`0bf0758fb`](https://github.com/withastro/astro/commit/0bf0758fb831a91f6628e10a5baabf02f30f1f41) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Add `astro/types` entrypoint. These utilities can be used for common prop type patterns.
+
+ ## `HTMLAttributes`
+
+ If you would like to extend valid HTML attributes for a given HTML element, you may use the provided `HTMLAttributes` typeโ€”it accepts an element name and returns the valid HTML attributes for that element name.
+
+ ```ts
+ import { HTMLAttributes } from 'astro/types';
+ interface Props extends HTMLAttributes<'a'> {
+ myProp?: string;
+ }
+ ```
+
+- [#5164](https://github.com/withastro/astro/pull/5164) [`4a8a346ca`](https://github.com/withastro/astro/commit/4a8a346ca9a6d6ed8def2fa32329c1db922893d2) Thanks [@MoustaphaDev](https://github.com/MoustaphaDev)! - Add support for markdown files with the following extensions:
+
+ - `.markdown`
+ - `.mdown`
+ - `.mkdn`
+ - `.mkd`
+ - `.mdwn`
+
+- [#4917](https://github.com/withastro/astro/pull/4917) [`ddf2f8390`](https://github.com/withastro/astro/commit/ddf2f8390e8dcc64b44636524bdcddae977779f4) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Add support for `--base` CLI argument, which will override the [`base`](https://docs.astro.build/en/reference/configuration-reference/#base) set in your `astro.config.mjs` file.
+
+ ```
+ astro --site https://astro.build --base /docs
+ ```
+
+### Patch Changes
+
+- [#5203](https://github.com/withastro/astro/pull/5203) [`3d99fdd1e`](https://github.com/withastro/astro/commit/3d99fdd1e7ea563775d86d1b00196c4c0c024500) Thanks [@bluwy](https://github.com/bluwy)! - Improve Astro libraries config handling
+
## 1.5.3
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 6ebfb9bab..08dbf3b56 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "1.5.3",
+ "version": "1.6.0",
"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 58be96037..746ed3bfc 100644
--- a/packages/create-astro/CHANGELOG.md
+++ b/packages/create-astro/CHANGELOG.md
@@ -1,5 +1,21 @@
# create-astro
+## 1.2.0
+
+### Minor Changes
+
+- [#5088](https://github.com/withastro/astro/pull/5088) [`040837628`](https://github.com/withastro/astro/commit/04083762810a1a9e078a7e68edab945c8063b1ab) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Introducing your new automated assistant: Houston! ๐ŸŽ‰
+
+ ```
+ โ•ญโ”€โ”€โ”€โ”€โ”€โ•ฎ Houston:
+ โ”‚ โ—  โ—ก โ—  Initiating launch sequence... right... now!
+ โ•ฐโ”€โ”€โ”€โ”€โ”€โ•ฏ
+ ```
+
+ Updates template and TypeScript prompts for clarity and friendliness.
+
+ Migrates template copying from [`degit`](https://github.com/Rich-Harris/degit) (unmaintained) to [`giget`](https://github.com/unjs/giget) for stability.
+
## 1.1.0
### Minor Changes
diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json
index d348b8778..7c2bd6661 100644
--- a/packages/create-astro/package.json
+++ b/packages/create-astro/package.json
@@ -1,6 +1,6 @@
{
"name": "create-astro",
- "version": "1.1.0",
+ "version": "1.2.0",
"type": "module",
"author": "withastro",
"license": "MIT",
diff --git a/packages/integrations/cloudflare/CHANGELOG.md b/packages/integrations/cloudflare/CHANGELOG.md
index 19c246cdf..23a24dd07 100644
--- a/packages/integrations/cloudflare/CHANGELOG.md
+++ b/packages/integrations/cloudflare/CHANGELOG.md
@@ -1,5 +1,12 @@
# @astrojs/cloudflare
+## 3.1.1
+
+### Patch Changes
+
+- [#5103](https://github.com/withastro/astro/pull/5103) [`d151d9f3f`](https://github.com/withastro/astro/commit/d151d9f3f29c0a57c59b8029a18717808ccc7f8f) Thanks [@AirBorne04](https://github.com/AirBorne04)! - enable access to Cloudflare runtime [KV, R2, Durable Objects]
+ - access native Cloudflare runtime through `import { getRuntime } from "@astrojs/cloudflare/runtime"`; now you can call `getRuntime(Astro.request)` and get access to the runtime environment.
+
## 3.1.0
### Minor Changes
diff --git a/packages/integrations/cloudflare/package.json b/packages/integrations/cloudflare/package.json
index df1348a18..46f588908 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 workers or cloudflare pages",
- "version": "3.1.0",
+ "version": "3.1.1",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/node/CHANGELOG.md b/packages/integrations/node/CHANGELOG.md
index 06cc02f57..ff8e77221 100644
--- a/packages/integrations/node/CHANGELOG.md
+++ b/packages/integrations/node/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/node
+## 2.0.2
+
+### Patch Changes
+
+- [#5207](https://github.com/withastro/astro/pull/5207) [`c203a5cc2`](https://github.com/withastro/astro/commit/c203a5cc2f12d8c1c3e96d4f08bdd2bb2823e997) Thanks [@BeanWei](https://github.com/BeanWei)! - fix static server path for windows system
+
## 2.0.1
### Patch Changes
diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json
index 69baca5e2..849b2292f 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": "2.0.1",
+ "version": "2.0.2",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index b7a4a5abc..1535ff301 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -61,16 +61,16 @@ importers:
examples/basics:
specifiers:
- astro: ^1.5.3
+ astro: ^1.6.0
dependencies:
astro: link:../../packages/astro
examples/blog:
specifiers:
'@astrojs/mdx': ^0.11.5
- '@astrojs/rss': ^1.0.2
+ '@astrojs/rss': ^1.0.3
'@astrojs/sitemap': ^1.0.0
- astro: ^1.5.3
+ astro: ^1.6.0
dependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
'@astrojs/rss': link:../../packages/astro-rss
@@ -79,14 +79,14 @@ importers:
examples/component:
specifiers:
- astro: ^1.5.3
+ astro: ^1.6.0
devDependencies:
astro: link:../../packages/astro
examples/deno:
specifiers:
'@astrojs/deno': ^1.2.0
- astro: ^1.5.3
+ astro: ^1.6.0
dependencies:
astro: link:../../packages/astro
devDependencies:
@@ -102,7 +102,7 @@ importers:
'@types/node': ^18.0.0
'@types/react': ^17.0.45
'@types/react-dom': ^18.0.0
- astro: ^1.5.3
+ astro: ^1.6.0
preact: ^10.7.3
react: ^18.1.0
react-dom: ^18.1.0
@@ -125,7 +125,7 @@ importers:
'@astrojs/alpinejs': ^0.1.2
'@types/alpinejs': ^3.7.0
alpinejs: ^3.10.2
- astro: ^1.5.3
+ astro: ^1.6.0
dependencies:
'@astrojs/alpinejs': link:../../packages/integrations/alpinejs
'@types/alpinejs': 3.7.0
@@ -136,7 +136,7 @@ importers:
specifiers:
'@astrojs/lit': ^1.0.0
'@webcomponents/template-shadowroot': ^0.1.0
- astro: ^1.5.3
+ astro: ^1.6.0
lit: ^2.2.5
dependencies:
'@astrojs/lit': link:../../packages/integrations/lit
@@ -151,7 +151,7 @@ importers:
'@astrojs/solid-js': ^1.2.1
'@astrojs/svelte': ^1.0.2
'@astrojs/vue': ^1.2.1
- astro: ^1.5.3
+ astro: ^1.6.0
preact: ^10.7.3
react: ^18.1.0
react-dom: ^18.1.0
@@ -176,7 +176,7 @@ importers:
specifiers:
'@astrojs/preact': ^1.2.0
'@preact/signals': ^1.1.0
- astro: ^1.5.3
+ astro: ^1.6.0
preact: ^10.7.3
dependencies:
'@astrojs/preact': link:../../packages/integrations/preact
@@ -189,7 +189,7 @@ importers:
'@astrojs/react': ^1.2.1
'@types/react': ^18.0.10
'@types/react-dom': ^18.0.5
- astro: ^1.5.3
+ astro: ^1.6.0
react: ^18.1.0
react-dom: ^18.1.0
dependencies:
@@ -203,7 +203,7 @@ importers:
examples/framework-solid:
specifiers:
'@astrojs/solid-js': ^1.2.1
- astro: ^1.5.3
+ astro: ^1.6.0
solid-js: ^1.4.3
dependencies:
'@astrojs/solid-js': link:../../packages/integrations/solid
@@ -213,7 +213,7 @@ importers:
examples/framework-svelte:
specifiers:
'@astrojs/svelte': ^1.0.2
- astro: ^1.5.3
+ astro: ^1.6.0
svelte: ^3.48.0
dependencies:
'@astrojs/svelte': link:../../packages/integrations/svelte
@@ -223,7 +223,7 @@ importers:
examples/framework-vue:
specifiers:
'@astrojs/vue': ^1.2.1
- astro: ^1.5.3
+ astro: ^1.6.0
vue: ^3.2.37
dependencies:
'@astrojs/vue': link:../../packages/integrations/vue
@@ -232,33 +232,33 @@ importers:
examples/integration:
specifiers:
- astro: ^1.5.3
+ astro: ^1.6.0
devDependencies:
astro: link:../../packages/astro
examples/minimal:
specifiers:
- astro: ^1.5.3
+ astro: ^1.6.0
dependencies:
astro: link:../../packages/astro
examples/non-html-pages:
specifiers:
- astro: ^1.5.3
+ astro: ^1.6.0
dependencies:
astro: link:../../packages/astro
examples/portfolio:
specifiers:
- astro: ^1.5.3
+ astro: ^1.6.0
dependencies:
astro: link:../../packages/astro
examples/ssr:
specifiers:
- '@astrojs/node': ^2.0.1
+ '@astrojs/node': ^2.0.2
'@astrojs/svelte': ^1.0.2
- astro: ^1.5.3
+ astro: ^1.6.0
concurrently: ^7.2.1
svelte: ^3.48.0
unocss: ^0.15.6
@@ -275,7 +275,7 @@ importers:
examples/with-markdown-plugins:
specifiers:
'@astrojs/markdown-remark': ^1.1.3
- astro: ^1.5.3
+ astro: ^1.6.0
hast-util-select: 5.0.1
rehype-autolink-headings: ^6.1.1
rehype-slug: ^5.0.1
@@ -292,7 +292,7 @@ importers:
examples/with-markdown-shiki:
specifiers:
- astro: ^1.5.3
+ astro: ^1.6.0
dependencies:
astro: link:../../packages/astro
@@ -300,7 +300,7 @@ importers:
specifiers:
'@astrojs/mdx': ^0.11.5
'@astrojs/preact': ^1.2.0
- astro: ^1.5.3
+ astro: ^1.6.0
preact: ^10.6.5
dependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
@@ -312,7 +312,7 @@ importers:
specifiers:
'@astrojs/preact': ^1.2.0
'@nanostores/preact': ^0.1.3
- astro: ^1.5.3
+ astro: ^1.6.0
nanostores: ^0.5.12
preact: ^10.7.3
dependencies:
@@ -327,7 +327,7 @@ importers:
'@astrojs/mdx': ^0.11.5
'@astrojs/tailwind': ^2.1.1
'@types/canvas-confetti': ^1.4.3
- astro: ^1.5.3
+ astro: ^1.6.0
autoprefixer: ^10.4.7
canvas-confetti: ^1.5.1
postcss: ^8.4.14
@@ -344,7 +344,7 @@ importers:
examples/with-vite-plugin-pwa:
specifiers:
- astro: ^1.5.3
+ astro: ^1.6.0
vite-plugin-pwa: 0.11.11
workbox-window: ^6.5.3
dependencies:
@@ -354,7 +354,7 @@ importers:
examples/with-vitest:
specifiers:
- astro: ^1.5.3
+ astro: ^1.6.0
vitest: ^0.20.3
dependencies:
astro: link:../../packages/astro