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/vitepress
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.0-rc.15
Choose a base ref
...
head repository: vuejs/vitepress
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.0.0-rc.16
Choose a head ref
  • 6 commits
  • 8 files changed
  • 2 contributors

Commits on Sep 22, 2023

  1. Copy the full SHA
    aa40cec View commit details
  2. fix(build): consistent route.path across dev and ssr (#2997)

    Co-authored-by: Divyansh Singh <40380293+brc-dd@users.noreply.github.com>
    zonemeen and brc-dd authored Sep 22, 2023
    Copy the full SHA
    0d56855 View commit details

Commits on Sep 23, 2023

  1. fix: handle references in container titles

    closes #3004
    brc-dd committed Sep 23, 2023
    Copy the full SHA
    7fbfe71 View commit details
  2. Copy the full SHA
    e84f313 View commit details
  3. chore: bump deps

    brc-dd committed Sep 23, 2023
    Copy the full SHA
    3393697 View commit details
  4. release: v1.0.0-rc.16

    brc-dd committed Sep 23, 2023
    Copy the full SHA
    c231c13 View commit details
Showing with 128 additions and 82 deletions.
  1. +9 −0 CHANGELOG.md
  2. +5 −5 package.json
  3. +56 −56 pnpm-lock.yaml
  4. +19 −13 src/client/app/router.ts
  5. +2 −2 src/node/markdown/plugins/containers.ts
  6. +1 −1 src/node/markdown/plugins/highlight.ts
  7. +8 −2 src/node/markdownToVue.ts
  8. +28 −3 src/node/plugin.ts
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# [1.0.0-rc.16](https://github.com/vuejs/vitepress/compare/v1.0.0-rc.15...v1.0.0-rc.16) (2023-09-23)

### Bug Fixes

- **build:** consistent route.path across dev and ssr ([#2997](https://github.com/vuejs/vitepress/issues/2997)) ([0d56855](https://github.com/vuejs/vitepress/commit/0d56855b54a97d4350485ee76c07a040fdc5738c))
- **build:** don't show missing lang warnings with text specifiers in fences ([aa40cec](https://github.com/vuejs/vitepress/commit/aa40cecd48942506ffb063863c9b054e66f1d79e))
- handle references in container titles ([7fbfe71](https://github.com/vuejs/vitepress/commit/7fbfe71b6cab2f091ba3d0c47a401fdc612b88b6)), closes [#3004](https://github.com/vuejs/vitepress/issues/3004)
- **hmr:** handle hmr in imported code snippets ([#3005](https://github.com/vuejs/vitepress/issues/3005)) ([e84f313](https://github.com/vuejs/vitepress/commit/e84f31371e9e5219d46ae58151667d24e12b77bb))

# [1.0.0-rc.15](https://github.com/vuejs/vitepress/compare/v1.0.0-rc.14...v1.0.0-rc.15) (2023-09-20)

### Bug Fixes
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vitepress",
"version": "1.0.0-rc.15",
"version": "1.0.0-rc.16",
"description": "Vite & Vue powered static site generator",
"type": "module",
"packageManager": "pnpm@8.7.6",
@@ -126,7 +126,7 @@
"@rollup/plugin-replace": "^5.0.2",
"@types/compression": "^1.7.3",
"@types/cross-spawn": "^6.0.3",
"@types/debug": "^4.1.8",
"@types/debug": "^4.1.9",
"@types/escape-html": "^1.0.2",
"@types/fs-extra": "^11.0.2",
"@types/lodash.template": "^4.5.1",
@@ -171,7 +171,7 @@
"path-to-regexp": "^6.2.1",
"picocolors": "^1.0.0",
"pkg-dir": "^7.0.0",
"playwright-chromium": "^1.38.0",
"playwright-chromium": "^1.38.1",
"polka": "1.0.0-next.22",
"postcss-prefix-selector": "^1.16.0",
"prettier": "^3.0.3",
@@ -180,15 +180,15 @@
"rimraf": "^5.0.1",
"rollup": "^3.29.2",
"rollup-plugin-dts": "^6.0.2",
"rollup-plugin-esbuild": "^6.0.0",
"rollup-plugin-esbuild": "^6.0.1",
"semver": "^7.5.4",
"shiki-processor": "^0.1.3",
"simple-git-hooks": "^2.9.0",
"sirv": "^2.0.3",
"sitemap": "^7.1.1",
"supports-color": "^9.4.0",
"typescript": "^5.2.2",
"vitest": "^0.34.4",
"vitest": "^0.34.5",
"vue-tsc": "^1.8.13",
"wait-on": "^7.0.1"
},
112 changes: 56 additions & 56 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading