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/core
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.0.0-rc.12
Choose a base ref
...
head repository: vuejs/core
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.0.0-rc.13
Choose a head ref
  • 17 commits
  • 34 files changed
  • 6 contributors

Commits on Sep 17, 2020

  1. Configuration menu
    Copy the full SHA
    58c31e3 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2020

  1. refactor: watch APIs default to trigger pre-flush

    BREAKING CHANGE: watch APIs now default to use `flush: 'pre'` instead of
    `flush: 'post'`.
    
      - This change affects `watch`, `watchEffect`, the `watch` component
        option, and `this.$watch`.
    
      - As pointed out by @skirtles-code in
        [this comment](#1706 (comment)),
        Vue 2's watch behavior is pre-flush, and the ecosystem has many uses
        of watch that assumes the pre-flush behavior. Defaulting to post-flush
        can result in unnecessary re-renders without the users being aware of
        it.
    
      - With this change, watchers need to specify `{ flush: 'post' }` via
        options to trigger callback after Vue render updates. Note that
        specifying `{ flush: 'post' }` will also defer `watchEffect`'s
        initial run to wait for the component's initial render.
    yyx990803 committed Sep 18, 2020
    Configuration menu
    Copy the full SHA
    49bb447 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5bfcad1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1c9a0b3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    57bdaa2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    422f05e View commit details
    Browse the repository at this point in the history
  6. fix(reactivity): avoid length mutating array methods causing infinite…

    … updates (#2138)
    
    fix #2137
    
    Co-authored-by: Evan You <yyx990803@gmail.com>
    unbyte and yyx990803 authored Sep 18, 2020
    Configuration menu
    Copy the full SHA
    f316a33 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    39a1a6d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    3d03dd5 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    ecd4979 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    76137e9 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    62cd7f2 View commit details
    Browse the repository at this point in the history
  12. build(deps-dev): bump @types/node from 14.10.2 to 14.11.1 (#2151)

    Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 14.10.2 to 14.11.1.
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
    
    Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
    
    Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
    dependabot-preview[bot] authored Sep 18, 2020
    Configuration menu
    Copy the full SHA
    a6bfe6f View commit details
    Browse the repository at this point in the history
  13. build(deps): bump postcss from 7.0.32 to 7.0.34 (#2148)

    Bumps [postcss](https://github.com/postcss/postcss) from 7.0.32 to 7.0.34.
    - [Release notes](https://github.com/postcss/postcss/releases)
    - [Changelog](https://github.com/postcss/postcss/blob/master/CHANGELOG.md)
    - [Commits](postcss/postcss@7.0.32...7.0.34)
    
    Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
    
    Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
    dependabot-preview[bot] authored Sep 18, 2020
    Configuration menu
    Copy the full SHA
    a8d27cc View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    44e1237 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    e90ec6e View commit details
    Browse the repository at this point in the history
  16. release: v3.0.0-rc.13

    yyx990803 committed Sep 18, 2020
    Configuration menu
    Copy the full SHA
    876ecc8 View commit details
    Browse the repository at this point in the history
Loading