Version Packages (#639)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2021-07-09 09:32:15 -04:00 committed by GitHub
parent 00cdbc4a46
commit e70d9508d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 45 additions and 40 deletions

View file

@ -1,6 +0,0 @@
---
'astro': patch
'@astrojs/renderer-react': patch
---
Fixes bug with React renderer that would not hydrate correctly

View file

@ -1,14 +0,0 @@
---
'astro': patch
---
Add support for components defined in Frontmatter. Previously, the following code would throw an error. Now it is officially supported!
```astro
---
const { level = 1 } = Astro.props;
const Element = `h${level}`;
---
<Element>Hello world!</Element>
```

View file

@ -7,7 +7,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.17.0"
"astro": "^0.17.1"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -7,7 +7,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.17.0"
"astro": "^0.17.1"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -7,7 +7,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.17.0"
"astro": "^0.17.1"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -7,7 +7,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.17.0"
"astro": "^0.17.1"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -7,7 +7,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.17.0"
"astro": "^0.17.1"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -7,7 +7,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.17.0"
"astro": "^0.17.1"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -7,7 +7,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.17.0"
"astro": "^0.17.1"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -7,7 +7,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.17.0"
"astro": "^0.17.1"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -7,7 +7,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.17.0"
"astro": "^0.17.1"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -11,7 +11,7 @@
"lint": "prettier --check \"src/**/*.js\""
},
"dependencies": {
"astro": "^0.17.0",
"astro": "^0.17.1",
"date-fns": "^2.19.0",
"deepmerge": "^4.2.2",
"docsearch.js": "^2.6.3",
@ -25,7 +25,7 @@
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.4",
"@contentful/rich-text-html-renderer": "^14.1.2",
"@contentful/rich-text-types": "^14.1.2",
"astro": "^0.17.0",
"astro": "^0.17.1",
"eleventy-plugin-nesting-toc": "^1.2.0",
"luxon": "^1.25.0",
"markdown-it": "^12.0.2",

View file

@ -7,7 +7,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.17.0"
"astro": "^0.17.1"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -7,7 +7,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.17.0",
"astro": "^0.17.1",
"rehype-add-classes": "^1.0.0",
"rehype-toc": "^3.0.2",
"remark-autolink-headings": "^6.0.1",

View file

@ -7,7 +7,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.17.0"
"astro": "^0.17.1"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -7,7 +7,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.17.0"
"astro": "^0.17.1"
},
"dependencies": {
"nanostores": "^0.3.3"

View file

@ -8,7 +8,7 @@
},
"devDependencies": {
"tailwindcss": "^2.1.2",
"astro": "^0.17.0"
"astro": "^0.17.1"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -1,5 +1,24 @@
# astro
## 0.17.1
### Patch Changes
- 1e01251: Fixes bug with React renderer that would not hydrate correctly
- 42a6ace: Add support for components defined in Frontmatter. Previously, the following code would throw an error. Now it is officially supported!
```astro
---
const { level = 1 } = Astro.props;
const Element = `h${level}`;
---
<Element>Hello world!</Element>
```
- Updated dependencies [1e01251]
- @astrojs/renderer-react@0.1.5
## 0.17.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "astro",
"version": "0.17.0",
"version": "0.17.1",
"author": "Skypack",
"license": "MIT",
"type": "module",
@ -45,7 +45,7 @@
"@astrojs/parser": "0.15.4",
"@astrojs/prism": "0.2.2",
"@astrojs/renderer-preact": "0.1.3",
"@astrojs/renderer-react": "0.1.4",
"@astrojs/renderer-react": "0.1.5",
"@astrojs/renderer-svelte": "0.1.1",
"@astrojs/renderer-vue": "0.1.3",
"@babel/code-frame": "^7.12.13",

View file

@ -1,5 +1,11 @@
# @astrojs/renderer-react
## 0.1.5
### Patch Changes
- 1e01251: Fixes bug with React renderer that would not hydrate correctly
## 0.1.4
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@astrojs/renderer-react",
"version": "0.1.4",
"version": "0.1.5",
"type": "module",
"exports": {
".": "./index.js",

View file

@ -7,6 +7,6 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.17.0"
"astro": "^0.17.1"
}
}