chore(v2): 2.0.0-alpha.34 changelog

This commit is contained in:
endiliey 2019-11-11 21:34:41 +07:00
parent 6a3efd5f3d
commit 5c652aacba
2 changed files with 33 additions and 6 deletions

View file

@ -1,14 +1,41 @@
# Docusaurus 2 Changelog # Docusaurus 2 Changelog
## Unreleased ## 2.0.0-alpha.34
#### :rocket: New Feature
* `docusaurus-theme-classic`
* [#1956](https://github.com/facebook/docusaurus/pull/1956) feat(v2): add ability hide dark mode toggle ([@lex111](https://github.com/lex111))
#### :boom: Breaking Change
* `docusaurus-plugin-content-docs`
* [#1958](https://github.com/facebook/docusaurus/pull/1958) breaking(v2): editUrl should point to website instead of docsDir ([@endiliey](https://github.com/endiliey))
#### :bug: Bug Fix
* `docusaurus-theme-classic`
* [#1959](https://github.com/facebook/docusaurus/pull/1959) fix(v2): useTOC hooks should not be called in each nested children ([@endiliey](https://github.com/endiliey))
#### :nail_care: Polish
* `docusaurus-plugin-content-docs`, `docusaurus`
* [#1957](https://github.com/facebook/docusaurus/pull/1957) refactor(v2): avoid synchronous/ blocking operation when possible ([@endiliey](https://github.com/endiliey))
#### :memo: Documentation
* [#1953](https://github.com/facebook/docusaurus/pull/1953) fix(v2): update Infima website URL ([@yangshun](https://github.com/yangshun))
#### :house: Internal
* `docusaurus-1.x`, `docusaurus-plugin-content-blog`, `docusaurus-plugin-content-docs`, `docusaurus-theme-classic`, `docusaurus-theme-search-algolia`, `docusaurus-types`, `docusaurus-utils`, `docusaurus`
* [#1955](https://github.com/facebook/docusaurus/pull/1955) chore: bump dev dependencies ([@endiliey](https://github.com/endiliey))
* Other
* [#1952](https://github.com/facebook/docusaurus/pull/1952) chore(v2): add lerna-changelog ([@endiliey](https://github.com/endiliey))
#### :running_woman: Performance #### :running_woman: Performance
* `docusaurus-plugin-content-docs`, `docusaurus-utils`, `docusaurus` * `docusaurus-plugin-content-docs`, `docusaurus-utils`, `docusaurus`
* [#1951](https://github.com/facebook/docusaurus/pull/1951) perf(v2): skip runtime fileHash cache in prod & get timestamp asynchronously ([@endiliey](https://github.com/endiliey)) * [#1951](https://github.com/facebook/docusaurus/pull/1951) perf(v2): skip runtime fileHash cache in prod & get timestamp asynchronously ([@endiliey](https://github.com/endiliey))
* [#1950](https://github.com/facebook/docusaurus/pull/1950) perf(v2): more efficient hot reload & consistent filegen ([@endiliey](https://github.com/endiliey)) * [#1950](https://github.com/facebook/docusaurus/pull/1950) perf(v2): more efficient hot reload & consistent filegen ([@endiliey](https://github.com/endiliey))
#### Committers: 1 #### Committers: 3
- Alexey Pyltsyn ([@lex111](https://github.com/lex111))
- Endi ([@endiliey](https://github.com/endiliey)) - Endi ([@endiliey](https://github.com/endiliey))
- Yangshun Tay ([@yangshun](https://github.com/yangshun))
## 2.0.0-alpha.33 ## 2.0.0-alpha.33

View file

@ -37,8 +37,8 @@ Meanwhile, the default doc site functionalities provided by Docusaurus 1 are now
{ {
dependencies: { dependencies: {
- "docusaurus": "^1.x.x", - "docusaurus": "^1.x.x",
+ "@docusaurus/core": "^2.0.0-alpha.33", + "@docusaurus/core": "^2.0.0-alpha.34",
+ "@docusaurus/preset-classic": "^2.0.0-alpha.33", + "@docusaurus/preset-classic": "^2.0.0-alpha.34",
} }
} }
``` ```
@ -72,8 +72,8 @@ A typical Docusaurus 2 `package.json` may look like this:
"deploy": "docusaurus deploy" "deploy": "docusaurus deploy"
}, },
"dependencies": { "dependencies": {
"@docusaurus/core": "^2.0.0-alpha.33", "@docusaurus/core": "^2.0.0-alpha.34",
"@docusaurus/preset-classic": "^2.0.0-alpha.33", "@docusaurus/preset-classic": "^2.0.0-alpha.34",
"classnames": "^2.2.6", "classnames": "^2.2.6",
"react": "^16.10.2", "react": "^16.10.2",
"react-dom": "^16.10.2" "react-dom": "^16.10.2"