chore: release (#2136)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2021-12-06 17:10:43 -06:00 committed by GitHub
parent da7b41f5b8
commit a7e2070abc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
27 changed files with 34 additions and 42 deletions

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Exclude 404 pages from sitemap generation

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Bugfix: fix missing styles in build

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
add lit renderer reflection tests

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Patch `fetch` support to prioritize authored code. Existing `fetch` imports and declarations are respected.

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.10"
"astro": "^0.21.11"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.10"
"astro": "^0.21.11"
}
}

View file

@ -12,7 +12,7 @@
"@docsearch/react": "^1.0.0-alpha.27"
},
"devDependencies": {
"astro": "^0.21.10",
"astro": "^0.21.11",
"@snowpack/plugin-dotenv": "^2.1.0"
}
}

View file

@ -10,6 +10,6 @@
},
"devDependencies": {
"@astrojs/renderer-lit": "^0.2.1",
"astro": "^0.21.10"
"astro": "^0.21.11"
}
}

View file

@ -10,6 +10,6 @@
},
"devDependencies": {
"@astrojs/renderer-solid": "^0.2.1",
"astro": "^0.21.10"
"astro": "^0.21.11"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.10"
"astro": "^0.21.11"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.10"
"astro": "^0.21.11"
}
}

View file

@ -10,6 +10,6 @@
},
"devDependencies": {
"@astrojs/renderer-solid": "^0.2.1",
"astro": "^0.21.10"
"astro": "^0.21.11"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.10"
"astro": "^0.21.11"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.10"
"astro": "^0.21.11"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.10"
"astro": "^0.21.11"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.10"
"astro": "^0.21.11"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.10"
"astro": "^0.21.11"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.10"
"astro": "^0.21.11"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.10"
"astro": "^0.21.11"
}
}

View file

@ -9,7 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.10",
"astro": "^0.21.11",
"rehype-add-classes": "^1.0.0",
"rehype-autolink-headings": "^6.1.0",
"rehype-slug": "^5.0.0",

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.10"
"astro": "^0.21.11"
}
}

View file

@ -16,6 +16,6 @@
},
"devDependencies": {
"@astrojs/renderer-solid": "^0.2.1",
"astro": "^0.21.10"
"astro": "^0.21.11"
}
}

View file

@ -9,7 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.10",
"astro": "^0.21.11",
"autoprefixer": "^10.4.0",
"tailwindcss": "^2.2.19"
}

View file

@ -9,7 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.10",
"astro": "^0.21.11",
"vite-plugin-pwa": "^0.11.5"
}
}

View file

@ -1,5 +1,17 @@
# astro
## 0.21.11
### Patch Changes
- [#2137](https://github.com/withastro/astro/pull/2137) [`cc1dae55`](https://github.com/withastro/astro/commit/cc1dae55c8bbf0a7d862e227f7daed138c485be4) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Exclude 404 pages from sitemap generation
* [#2112](https://github.com/withastro/astro/pull/2112) [`da7b41f5`](https://github.com/withastro/astro/commit/da7b41f5b8eb6d3a3e3a765be447e03ef5691979) Thanks [@drwpow](https://github.com/drwpow)! - Bugfix: fix missing styles in build
- [#2116](https://github.com/withastro/astro/pull/2116) [`d9d3906a`](https://github.com/withastro/astro/commit/d9d3906a3c215436a1e3d2ab64e63d23a772e059) Thanks [@e111077](https://github.com/e111077)! - add lit renderer reflection tests
* [#2135](https://github.com/withastro/astro/pull/2135) [`77c3fda3`](https://github.com/withastro/astro/commit/77c3fda379b5858a74fa54d278058efaf33fdac5) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Patch `fetch` support to prioritize authored code. Existing `fetch` imports and declarations are respected.
## 0.21.10
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "astro",
"version": "0.21.10",
"version": "0.21.11",
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
"author": "withastro",
"license": "MIT",

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.10"
"astro": "^0.21.11"
}
}