Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: vuejs/vuepress
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.5.3
Choose a base ref
...
head repository: vuejs/vuepress
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.5.4
Choose a head ref
  • 17 commits
  • 42 files changed
  • 8 contributors

Commits on Aug 5, 2020

  1. Copy the full SHA
    5706fb0 View commit details
  2. docs: remove deps updates

    bencodezen committed Aug 5, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    f04d14d View commit details
  3. Copy the full SHA
    c7ba616 View commit details

Commits on Aug 18, 2020

  1. Copy the full SHA
    ce81aa4 View commit details
  2. Copy the full SHA
    a8f8e61 View commit details

Commits on Aug 19, 2020

  1. Copy the full SHA
    dfe43f6 View commit details
  2. fix($shared-utils): replace diacritics with regex (#1855)

    Co-authored-by: Sergey Larionov <sergeylarionov@cloud.upwork.com>
    larionov and sergeylarionov-upwork authored Aug 19, 2020
    Copy the full SHA
    a03e93d View commit details

Commits on Aug 22, 2020

  1. Copy the full SHA
    6b25140 View commit details
  2. docs: update getting started experience (#2576)

    * docs: bring user straight to the guide
    
    * docs: use index instead of README
    
    * docs: update CTA to go to get started guide
    
    * docs: add update step for generator and remove older warnings
    
    * docs: add warning for webpack 3 with less prominence
    
    * docs: update node prerequisite version
    
    * docs: fix link for create-vuepress
    
    * docs: remove upgrade step
    bencodezen authored Aug 22, 2020
    Copy the full SHA
    0e78453 View commit details
  3. Copy the full SHA
    318068f View commit details
  4. Copy the full SHA
    c68a4e7 View commit details
  5. Copy the full SHA
    02816cf View commit details
  6. Copy the full SHA
    94a7de4 View commit details

Commits on Aug 23, 2020

  1. Copy the full SHA
    dd26c7c View commit details
  2. fix($shared-utils): fix date parse logic for permalinks (#2181)

    This addresses the way the date is parsed, which, when it's a string is causing the input for the Date constructor to assume the date to be in ISO 8601 format (UTC), and when it's a Date, is always UTC.
    enagic authored Aug 23, 2020
    Copy the full SHA
    d4d0380 View commit details
  3. 3
    Copy the full SHA
    ceb0fa9 View commit details
  4. 1
    Copy the full SHA
    98086ad View commit details
Showing with 545 additions and 205 deletions.
  1. +20 −0 CHANGELOG.md
  2. +12 −0 README.md
  3. +1 −1 lerna.json
  4. +229 −83 packages/@vuepress/core/lib/node/__tests__/prepare/Page.spec.js
  5. +36 −0 packages/@vuepress/core/lib/node/__tests__/prepare/__snapshots__/Page.spec.js.snap
  6. +1 −0 packages/@vuepress/core/lib/node/__tests__/prepare/fixtures/docs/2020-01-01-date.md
  7. +4 −0 packages/@vuepress/core/lib/node/__tests__/prepare/fixtures/docs/alpha.md
  8. +4 −0 packages/@vuepress/core/lib/node/__tests__/prepare/fixtures/docs/excerpt.md
  9. +4 −2 packages/@vuepress/core/lib/node/internal-plugins/routes.js
  10. +6 −6 packages/@vuepress/core/package.json
  11. +2 −2 packages/@vuepress/markdown-loader/package.json
  12. +2 −2 packages/@vuepress/markdown/package.json
  13. +1 −1 packages/@vuepress/plugin-active-header-links/package.json
  14. +1 −1 packages/@vuepress/plugin-back-to-top/package.json
  15. +1 −1 packages/@vuepress/plugin-google-analytics/package.json
  16. +1 −1 packages/@vuepress/plugin-last-updated/package.json
  17. +1 −1 packages/@vuepress/plugin-medium-zoom/package.json
  18. +1 −1 packages/@vuepress/plugin-nprogress/package.json
  19. +2 −2 packages/@vuepress/plugin-pwa/package.json
  20. +2 −2 packages/@vuepress/plugin-register-components/package.json
  21. +1 −1 packages/@vuepress/plugin-search/package.json
  22. +30 −0 packages/@vuepress/shared-utils/__tests__/slugify.spec.ts
  23. +1 −2 packages/@vuepress/shared-utils/package.json
  24. +33 −1 packages/@vuepress/shared-utils/src/getPermalink.ts
  25. +6 −3 packages/@vuepress/shared-utils/src/slugify.ts
  26. +3 −3 packages/@vuepress/test-utils/package.json
  27. +1 −1 packages/@vuepress/theme-default/__tests__/components/__snapshots__/DropdownLink.spec.js.snap
  28. +32 −10 packages/@vuepress/theme-default/components/DropdownLink.vue
  29. +1 −1 packages/@vuepress/theme-default/components/Home.vue
  30. +4 −4 packages/@vuepress/theme-default/package.json
  31. +2 −2 packages/@vuepress/theme-vue/package.json
  32. +5 −5 packages/docs/docs/.vuepress/nav/en.js
  33. +31 −1 packages/docs/docs/config/README.md
  34. +16 −19 packages/docs/docs/guide/getting-started.md
  35. +1 −24 packages/docs/docs/{README.md → index.md}
  36. +32 −2 packages/docs/docs/zh/config/README.md
  37. +3 −4 packages/docs/docs/zh/guide/deploy.md
  38. +1 −1 packages/docs/docs/zh/plugin/README.md
  39. +1 −1 packages/docs/docs/zh/plugin/option-api.md
  40. +7 −7 packages/docs/package.json
  41. +3 −3 packages/vuepress/package.json
  42. +0 −4 yarn.lock
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## [1.5.3](https://github.com/vuejs/vuepress/compare/v1.5.2...v1.5.3) (2020-08-05)


### Bug Fixes

* **$theme-default:** fix editLink for repos hosted on gitlab.com ([#2523](https://github.com/vuejs/vuepress/issues/2523)) ([1c3967c](https://github.com/vuejs/vuepress/commit/1c3967c))
* add toml dependencyt to shared-utils ([b858a6e](https://github.com/vuejs/vuepress/commit/b858a6e))
* regular files should not be executable ([#2535](https://github.com/vuejs/vuepress/issues/2535)) ([ffb8527](https://github.com/vuejs/vuepress/commit/ffb8527))
* **$theme-default:** improve last-updated text color contrast ([#2282](https://github.com/vuejs/vuepress/issues/2282)) ([7ca9fbc](https://github.com/vuejs/vuepress/commit/7ca9fbc))
* allows no rel attribute on external links in the nav ([#2338](https://github.com/vuejs/vuepress/issues/2338)) ([b343cd3](https://github.com/vuejs/vuepress/commit/b343cd3))
* **$core:** style loss under build for package that specifies `sideEffects: false` (fix [#2350](https://github.com/vuejs/vuepress/issues/2350)) ([#2471](https://github.com/vuejs/vuepress/issues/2471)) ([7e29900](https://github.com/vuejs/vuepress/commit/7e29900))
* **$markdown:** line highlighting not working correctly when importing code snippets ([#2441](https://github.com/vuejs/vuepress/issues/2441)) ([d0f2e42](https://github.com/vuejs/vuepress/commit/d0f2e42))


### Features

* **$theme-default:** add initial open group index option ([#2408](https://github.com/vuejs/vuepress/issues/2408)) ([465ae40](https://github.com/vuejs/vuepress/commit/465ae40))



## [1.5.2](https://github.com/vuejs/vuepress/compare/v1.5.1...v1.5.2) (2020-06-14)


12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -13,10 +13,21 @@

## Install

### Package

```bash
yarn add vuepress -D
```

### Generator

```bash
# Creates a scaffolded docs site
yarn create vuepress-site
```

For more information, see [create-vuepress-site](https://github.com/vuepressjs/create-vuepress-site).

## Documentation

Check out our docs at https://vuepress.vuejs.org/.
@@ -68,6 +79,7 @@ If you have a VuePress-related project/component/tool, add it with a pull reques

<!-- markdownlint-enable -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->

### Core Team Emeriti
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"npmClient": "yarn",
"useWorkspaces": true,
"version": "1.5.3",
"version": "1.5.4",
"command": {
"version": {
"allowBranch": "master",
Loading