Version Packages (#2047)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2021-11-29 14:39:04 -05:00 committed by GitHub
parent c9bc700d41
commit 6203b57974
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
27 changed files with 36 additions and 46 deletions

View file

@ -1,7 +0,0 @@
---
'astro': patch
---
Fixes dev errors in hydrated components
The errors would occur when there was state changes in hydrated components. This only occurs in dev but does result in the hydrated component not working. This fixes the underlying issue.

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fix crash with unexpected file types in pages directory

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Bugfix: improve style and script injection for partial pages

View file

@ -1,7 +0,0 @@
---
'astro': patch
---
Fixes use of `PUBLIC_` to reference env vars
Previously `PUBLIC_` worked in server-only components such as .astro components. However if you had a client-side component you had to use `VITE_`. This was a bug with our build that is now fixed.

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.4"
"astro": "^0.21.5"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.4"
"astro": "^0.21.5"
}
}

View file

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

View file

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

View file

@ -10,6 +10,6 @@
},
"devDependencies": {
"@astrojs/renderer-solid": "^0.2.0",
"astro": "^0.21.4"
"astro": "^0.21.5"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.4"
"astro": "^0.21.5"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.4"
"astro": "^0.21.5"
}
}

View file

@ -10,6 +10,6 @@
},
"devDependencies": {
"@astrojs/renderer-solid": "^0.2.0",
"astro": "^0.21.4"
"astro": "^0.21.5"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.4"
"astro": "^0.21.5"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.4"
"astro": "^0.21.5"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.4"
"astro": "^0.21.5"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.4"
"astro": "^0.21.5"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.4"
"astro": "^0.21.5"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.4"
"astro": "^0.21.5"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.4"
"astro": "^0.21.5"
}
}

View file

@ -9,7 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.4",
"astro": "^0.21.5",
"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.4"
"astro": "^0.21.5"
}
}

View file

@ -16,6 +16,6 @@
},
"devDependencies": {
"@astrojs/renderer-solid": "^0.2.0",
"astro": "^0.21.4"
"astro": "^0.21.5"
}
}

View file

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

View file

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

View file

@ -1,5 +1,19 @@
# astro
## 0.21.5
### Patch Changes
- 341ec3cd: Fixes dev errors in hydrated components
The errors would occur when there was state changes in hydrated components. This only occurs in dev but does result in the hydrated component not working. This fixes the underlying issue.
- 4436592d: Fix crash with unexpected file types in pages directory
- 50f3b8d7: Bugfix: improve style and script injection for partial pages
- fad6bd09: Fixes use of `PUBLIC_` to reference env vars
Previously `PUBLIC_` worked in server-only components such as .astro components. However if you had a client-side component you had to use `VITE_`. This was a bug with our build that is now fixed.
## 0.21.4
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "astro",
"version": "0.21.4",
"version": "0.21.5",
"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.4"
"astro": "^0.21.5"
}
}