From c4b0cb8bf2b41887d9106440bb2e70d421a5f481 Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Thu, 12 Jan 2023 09:59:18 -0600 Subject: [PATCH] chore: update changelogs, add changeset for `_astro` directory (#5842) Co-authored-by: Nate Moore --- .changeset/spicy-tips-dream.md | 10 ++++++++++ packages/astro/CHANGELOG.md | 2 -- packages/integrations/deno/CHANGELOG.md | 6 ------ packages/integrations/image/CHANGELOG.md | 6 ------ packages/integrations/netlify/CHANGELOG.md | 4 ---- 5 files changed, 10 insertions(+), 18 deletions(-) create mode 100644 .changeset/spicy-tips-dream.md diff --git a/.changeset/spicy-tips-dream.md b/.changeset/spicy-tips-dream.md new file mode 100644 index 000000000000..22aa0ef1900f --- /dev/null +++ b/.changeset/spicy-tips-dream.md @@ -0,0 +1,10 @@ +--- +'@astrojs/deno': major +'@astrojs/netlify': major +'@astrojs/image': major +'astro': major +--- + +**Breaking Change**: client assets are built to an `_astro` directory rather than the previous `assets` directory. This setting can now be controlled by the new `build` configuration option named `assets`. + +This should simplify configuring immutable caching with your adapter provider as all files are now in the same `_astro` directory. diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 9a96b1446083..140c099c5ae8 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -12,8 +12,6 @@ In 2.0 this feature will not be available in Astro at all. We recommend migration to MDX for those were still using this feature in 1.x. -- [#5584](https://github.com/withastro/astro/pull/5584) [`9963c6e4d`](https://github.com/withastro/astro/commit/9963c6e4d50c392c3d1ac4492237020f15ccb1de) Thanks [@wulinsheng123](https://github.com/wulinsheng123)! - Builds chunks into the `assets` folder. This simplifies configuring immutable caching with your adapter provider as all files are now in the same `assets` folder. - - [#5717](https://github.com/withastro/astro/pull/5717) [`a3a7fc929`](https://github.com/withastro/astro/commit/a3a7fc9298e6d88abb4b7bee1e58f05fa9558cf1) Thanks [@bluwy](https://github.com/bluwy)! - Remove `style.postcss` Astro config. Refactor tailwind integration to configure through `vite` instead. Also disables `autoprefixer` in dev. ### Minor Changes diff --git a/packages/integrations/deno/CHANGELOG.md b/packages/integrations/deno/CHANGELOG.md index f6f32036e277..bc8be12b6bd1 100644 --- a/packages/integrations/deno/CHANGELOG.md +++ b/packages/integrations/deno/CHANGELOG.md @@ -1,11 +1,5 @@ # @astrojs/deno -## 4.0.0-beta.1 - -### Major Changes - -- [#5584](https://github.com/withastro/astro/pull/5584) [`9963c6e4d`](https://github.com/withastro/astro/commit/9963c6e4d50c392c3d1ac4492237020f15ccb1de) Thanks [@wulinsheng123](https://github.com/wulinsheng123)! - Builds chunks into the `assets` folder. This simplifies configuring immutable caching with your adapter provider as all files are now in the same `assets` folder. - ## 4.0.0-beta.0 ### Major Changes diff --git a/packages/integrations/image/CHANGELOG.md b/packages/integrations/image/CHANGELOG.md index 7fbdcdea74fc..6539f1587cc8 100644 --- a/packages/integrations/image/CHANGELOG.md +++ b/packages/integrations/image/CHANGELOG.md @@ -1,11 +1,5 @@ # @astrojs/image -## 0.13.0-beta.1 - -### Minor Changes - -- [#5584](https://github.com/withastro/astro/pull/5584) [`9963c6e4d`](https://github.com/withastro/astro/commit/9963c6e4d50c392c3d1ac4492237020f15ccb1de) Thanks [@wulinsheng123](https://github.com/wulinsheng123)! - Builds chunks into the `assets` folder. This simplifies configuring immutable caching with your adapter provider as all files are now in the same `assets` folder. - ## 0.13.0-beta.0 ### Minor Changes diff --git a/packages/integrations/netlify/CHANGELOG.md b/packages/integrations/netlify/CHANGELOG.md index 943ca2a18cf9..e00ac5c95e66 100644 --- a/packages/integrations/netlify/CHANGELOG.md +++ b/packages/integrations/netlify/CHANGELOG.md @@ -2,10 +2,6 @@ ## 2.0.0-beta.1 -### Major Changes - -- [#5584](https://github.com/withastro/astro/pull/5584) [`9963c6e4d`](https://github.com/withastro/astro/commit/9963c6e4d50c392c3d1ac4492237020f15ccb1de) Thanks [@wulinsheng123](https://github.com/wulinsheng123)! - Builds chunks into the `assets` folder. This simplifies configuring immutable caching with your adapter provider as all files are now in the same `assets` folder. - ### Patch Changes - [#5768](https://github.com/withastro/astro/pull/5768) [`2f6745019`](https://github.com/withastro/astro/commit/2f6745019ac25785032ac3659c2433b6e224f383) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix set-cookies not working in certain cases when using Node 18+