diff options
author | 2023-08-30 04:38:28 -0700 | |
---|---|---|
committer | 2023-08-30 13:38:28 +0200 | |
commit | 5598feb71864f814d0a34bb6bf9f6ecdff081497 (patch) | |
tree | 15cfefaaeb8b7f346eb96e05a5e9e086d7bd262b /packages/integrations/react | |
parent | e33d951af178ce0b50a41799d3ce76d107c961db (diff) | |
download | astro-5598feb71864f814d0a34bb6bf9f6ecdff081497.tar.gz astro-5598feb71864f814d0a34bb6bf9f6ecdff081497.tar.zst astro-5598feb71864f814d0a34bb6bf9f6ecdff081497.zip |
[ci] release (#8279)create-astro@4.0.0astro@3.0.0@astrojs/vue@3.0.0@astrojs/vercel@4.0.0@astrojs/underscore-redirects@0.3.0@astrojs/telemetry@3.0.0@astrojs/tailwind@5.0.0@astrojs/svelte@4.0.0@astrojs/solid-js@3.0.0@astrojs/sitemap@3.0.0@astrojs/rss@3.0.0@astrojs/react@3.0.0@astrojs/prism@3.0.0@astrojs/prefetch@0.4.0@astrojs/preact@3.0.0@astrojs/partytown@2.0.0@astrojs/node@6.0.0@astrojs/netlify@3.0.0@astrojs/mdx@1.0.0@astrojs/markdown-remark@3.0.0@astrojs/markdoc@0.5.0@astrojs/lit@3.0.0@astrojs/internal-helpers@0.2.0@astrojs/deno@5.0.0@astrojs/cloudflare@7.0.0@astrojs/alpinejs@0.3.0
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'packages/integrations/react')
-rw-r--r-- | packages/integrations/react/CHANGELOG.md | 23 | ||||
-rw-r--r-- | packages/integrations/react/package.json | 4 |
2 files changed, 25 insertions, 2 deletions
diff --git a/packages/integrations/react/CHANGELOG.md b/packages/integrations/react/CHANGELOG.md index f0e3dcc46..d780a421e 100644 --- a/packages/integrations/react/CHANGELOG.md +++ b/packages/integrations/react/CHANGELOG.md @@ -1,5 +1,28 @@ # @astrojs/react +## 3.0.0 + +### Major Changes + +- [#8188](https://github.com/withastro/astro/pull/8188) [`d0679a666`](https://github.com/withastro/astro/commit/d0679a666f37da0fca396d42b9b32bbb25d29312) Thanks [@ematipico](https://github.com/ematipico)! - Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023. + +- [#8179](https://github.com/withastro/astro/pull/8179) [`6011d52d3`](https://github.com/withastro/astro/commit/6011d52d38e43c3e3d52bc3bc41a60e36061b7b7) Thanks [@matthewp](https://github.com/matthewp)! - Astro 3.0 Release Candidate + +- [#7924](https://github.com/withastro/astro/pull/7924) [`519a1c4e8`](https://github.com/withastro/astro/commit/519a1c4e8407c7abcb8d879b67a9f4b960652cae) Thanks [@matthewp](https://github.com/matthewp)! - Support for React Refresh + + The React integration now fully supports React Refresh and is backed by `@vitejs/plugin-react`. + + Also included in this change are new `include` and `exclude` config options. Use these if you want to use React alongside another JSX framework; include specifies files to be compiled for React and `exclude` does the opposite. + +### Patch Changes + +- [#8228](https://github.com/withastro/astro/pull/8228) [`4bd2fac8d`](https://github.com/withastro/astro/commit/4bd2fac8da4efb7c532d8920077df1f61d6e1953) Thanks [@bluwy](https://github.com/bluwy)! - Publish missing `vnode-children.js` file + +- [#8264](https://github.com/withastro/astro/pull/8264) [`1f58a7a1b`](https://github.com/withastro/astro/commit/1f58a7a1bea6888868b689dac94801d554319b02) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Automatically unmount islands when `astro:unmount` is fired + +- Updated dependencies [[`d0679a666`](https://github.com/withastro/astro/commit/d0679a666f37da0fca396d42b9b32bbb25d29312), [`2aa6d8ace`](https://github.com/withastro/astro/commit/2aa6d8ace398a41c2dec5473521d758816b08191), [`6011d52d3`](https://github.com/withastro/astro/commit/6011d52d38e43c3e3d52bc3bc41a60e36061b7b7)]: + - @astrojs/internal-helpers@0.2.0 + ## 3.0.0-rc.6 ### Patch Changes diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json index 8eea984a8..2b9558e31 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": "3.0.0-rc.6", + "version": "3.0.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", @@ -45,7 +45,7 @@ "dev": "astro-scripts dev \"src/**/*.ts\"" }, "dependencies": { - "@astrojs/internal-helpers": "0.2.0-rc.2", + "@astrojs/internal-helpers": "0.2.0", "@vitejs/plugin-react": "^4.0.4", "ultrahtml": "^1.3.0" }, |