Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# bedrock-vue ChangeLog

## 5.2.0 - 2026-06-04

### Changed
- Add support for `vue-router` v5 by widening the `vue-router` peer dependency
range to `^4.0.15 || ^5.0.0`. There are no API changes; v5 is a non-breaking
release that merges `unplugin-vue-router` into the core package.

## 5.1.0 - 2024-02-28

### Changed
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@ need to be defined by the developer as well.

Vue 3.x uses a new router. This router needs to be created via an imported
function now, instead of installing a Vue plugin and then using a constructor.
Both `vue-router` v4 and v5 are supported; the example below is unchanged for
either version.

Previously:

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bedrock/vue",
"version": "5.1.1-0",
"version": "5.2.0",
"type": "module",
"description": "Vue frontend framework running on Bedrock",
"license": "Apache-2.0",
Expand All @@ -18,7 +18,7 @@
"peerDependencies": {
"@bedrock/web": "^3.0.0",
"vue": "^3.2.36",
"vue-router": "^4.0.15"
"vue-router": "^4.0.15 || ^5.0.0"
},
"repository": {
"type": "git",
Expand Down
Loading