diff options
author | 2021-08-26 12:56:36 -0400 | |
---|---|---|
committer | 2021-08-26 12:56:36 -0400 | |
commit | c83d4817336f73348dbcedf493f2e5d2402e9e49 (patch) | |
tree | b42e01c9b53f13c6de1d7247b43b9ef1d20d9c30 /packages | |
parent | d3499fc6ddf6468014db87f6a154a134936d5893 (diff) | |
download | astro-c83d4817336f73348dbcedf493f2e5d2402e9e49.tar.gz astro-c83d4817336f73348dbcedf493f2e5d2402e9e49.tar.zst astro-c83d4817336f73348dbcedf493f2e5d2402e9e49.zip |
Version Packages (#1228)astro@0.20.0@astrojs/markdown-support@0.3.0
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'packages')
-rw-r--r-- | packages/astro/CHANGELOG.md | 15 | ||||
-rw-r--r-- | packages/astro/package.json | 4 | ||||
-rw-r--r-- | packages/markdown-support/CHANGELOG.md | 6 | ||||
-rw-r--r-- | packages/markdown-support/package.json | 2 |
4 files changed, 24 insertions, 3 deletions
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 5c9904b72..b4e63552a 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,20 @@ # astro +## 0.20.0 + +### Minor Changes + +- affcd04f: **[BREAKING CHANGE]** stop bundling, building, and processing public files. This fixes an issue where we weren't actually honoring the "do not process" property of the public directory. + + If you were using the `public/` directory as expected and not using it to build files for you, then this should not be a breaking change. However, will notice that these files are no longer bundled. + + If you were using the `public/` directory to build files (for example, like `public/index.scss`) then you can expect this to no longer work. As per the correct Astro documentation. + +### Patch Changes + +- Updated dependencies [397d8f3d] + - @astrojs/markdown-support@0.3.0 + ## 0.19.4 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 6f4411641..7e09e0a7a 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "0.19.4", + "version": "0.20.0", "author": "Skypack", "license": "MIT", "type": "module", @@ -44,7 +44,7 @@ "test": "uvu test -i fixtures -i benchmark -i test-utils.js" }, "dependencies": { - "@astrojs/markdown-support": "0.2.4", + "@astrojs/markdown-support": "0.3.0", "@astrojs/parser": "0.18.6", "@astrojs/prism": "0.2.2", "@astrojs/renderer-preact": "0.2.1", diff --git a/packages/markdown-support/CHANGELOG.md b/packages/markdown-support/CHANGELOG.md index b8547f962..d08ed3e4e 100644 --- a/packages/markdown-support/CHANGELOG.md +++ b/packages/markdown-support/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/markdown-support +## 0.3.0 + +### Minor Changes + +- 397d8f3d: Upgrade `@astrojs/markdown-support` dependencies. The `remark-rehype@9` upgrade enables accessible footnotes with `remark-footnotes`. + ## 0.2.4 ### Patch Changes diff --git a/packages/markdown-support/package.json b/packages/markdown-support/package.json index fc9563340..8eb6dca25 100644 --- a/packages/markdown-support/package.json +++ b/packages/markdown-support/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/markdown-support", - "version": "0.2.4", + "version": "0.3.0", "main": "./dist/index.js", "type": "module", "repository": { |