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/router
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.0.0-alpha.14
Choose a base ref
...
head repository: vuejs/router
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.0.0-beta.1
Choose a head ref
  • 15 commits
  • 37 files changed
  • 2 contributors

Commits on Jul 1, 2020

  1. docs: add missing hyphen

    posva committed Jul 1, 2020
    Configuration menu
    Copy the full SHA
    1b52913 View commit details
    Browse the repository at this point in the history
  2. chore: add comment [skip ci]

    posva committed Jul 1, 2020
    Configuration menu
    Copy the full SHA
    fceaaea View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2020

  1. fix(router-view): preserve keep-alive route guard this context (#344)

    * refactor: refactor router-view + fix keep-alive route guard this context
    
    * test: add skipped unit test for keep alive
    
    * refactor(e2e): omit props in v-slot
    
    * test(e2e): add guard tests keep alive
    
    * test(e2e): fix keep alive test
    
    * refactor(router-view): render slot content if empty
    
    Co-authored-by: Eduardo San Martin Morote <[email protected]>
    yyx990803 and posva authored Jul 2, 2020
    Configuration menu
    Copy the full SHA
    994c073 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e4b3fbe View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d9dad0b View commit details
    Browse the repository at this point in the history
  4. refactor: remove old TODO

    posva committed Jul 2, 2020
    Configuration menu
    Copy the full SHA
    bb9d0ee View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    93891ab View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d3591f9 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5a6a658 View commit details
    Browse the repository at this point in the history
  8. build: prepare for beta

    posva committed Jul 2, 2020
    Configuration menu
    Copy the full SHA
    059f8c3 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    4efe1b8 View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2020

  1. Configuration menu
    Copy the full SHA
    c6274ae View commit details
    Browse the repository at this point in the history
  2. refactor(history): simplify location as a string

    BREAKING CHANGE: HistoryLocation is just a string now. It was pretty much an
    internal property but it could be used inside `history.state`. It used to be an
    object `{ fullPath: '/the-url' }`. And it's now just the `fullPath` property.
    posva committed Jul 3, 2020
    Configuration menu
    Copy the full SHA
    10a071c View commit details
    Browse the repository at this point in the history
  3. refactor(router): remove history property

    BREAKING CHANGE: the history property was marked as internal already. Since we
    need to pass the history instance to the router, we always have access to it,
    differently from Vue Router 3 where the history was instantiated internally.
    The history API was also internal (it wasn't documented), so this change
    shouldn't be a problem as people shouldn't be relying on `router.history` in
    their apps. If you think this property is needed, please open an issue to
    discuss the use case. Note it's already accessible as you have to create it:
    ```js
    export const history = createWebHistory()
    export const router = createRouter({ history, routes: [] })
    ```
    posva committed Jul 3, 2020
    Configuration menu
    Copy the full SHA
    aba3a3f View commit details
    Browse the repository at this point in the history
  4. release: v4.0.0-beta.1

    posva committed Jul 3, 2020
    Configuration menu
    Copy the full SHA
    53ae7bc View commit details
    Browse the repository at this point in the history
Loading