The Wayback Machine - https://web.archive.org/web/20230323072439/https://github.com/vuejs/vue/commits/main
Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Commits on Feb 4, 2023

  1. chore: typos (#12949)

    rj1 committed Feb 4, 2023

Commits on Jan 12, 2023

Commits on Dec 14, 2022

  1. chore: comment typos (#12878)

    Co-authored-by: 方恒 <[email protected]>
    FlyingCaiChong and 方恒 committed Dec 14, 2022

Commits on Dec 6, 2022

  1. chore: fix typo (#12894)

    yuhang-dong committed Dec 6, 2022

Commits on Nov 9, 2022

  1. release: v2.7.14

    yyx990803 committed Nov 9, 2022
  2. fix(reactivity): avoid using WeakMap for IE compatibility

    Using a WeakMap polyfill isn't ideal because the reason we tried to use
    WeakMap was to work with non-extensible objects. However, WeakMap
    polyfill for non-extensible objects are non-weak and could lead to
    memory leaks.
    
    The trade-off is that we remove support for `readonly()` on
    non-extensible objects, which seems reasonable.
    
    close #12837
    yyx990803 committed Nov 9, 2022
  3. chore: fix typo (#12863)

    webfansplz committed Nov 9, 2022

Commits on Oct 19, 2022

Commits on Oct 15, 2022

Commits on Oct 14, 2022

  1. release: v2.7.13

    yyx990803 committed Oct 14, 2022

Commits on Oct 12, 2022

  1. fix(types): style attribute svg (#12800)

    Set style attribute on svg to use `StyleValue`
    blake-newman authored and yyx990803 committed Oct 12, 2022
  2. release: v2.7.12

    yyx990803 committed Oct 12, 2022
  3. Revert "fix(setup): setup hook should be called before beforeCreate"

    This reverts commit e1342df.
    
    reopen #12802
    close #12821
    close #12822
    yyx990803 committed Oct 12, 2022

Commits on Oct 11, 2022

  1. release: v2.7.11

    yyx990803 committed Oct 11, 2022
  2. chore: bump build deps

    yyx990803 committed Oct 11, 2022
  3. fix(setup): setup hook should be called before beforeCreate

    fix #12802
    
    Note this commit moves the initialization of injections and props to
    before the invocation of beforeCreate. This should not cause breakage
    because props and inject normalization has always been done before
    beforeCreate, so code that attempts to modifiy props/inject options
    inside beforeCreate should have never worked.
    yyx990803 committed Oct 11, 2022
  4. fix(sfc): prune returned bindings for non-TS as well

    In Vue 3, pruning is only done for TS to produce valid code and
    tree-shaking is done by inlining the template for production.
    In Vue 2 we do not inline the template in production, so return binding
    pruning is needed in all cases.
    
    fix #12765
    yyx990803 committed Oct 11, 2022
Older