-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Comparing changes
Open a pull request
base repository: vuejs/core
base: v3.0.0-alpha.7
head repository: vuejs/core
compare: v3.0.0-alpha.8
Commits on Feb 26, 2020
-
Configuration menu - View commit details
-
Copy full SHA for d8ed0e7 - Browse repository at this point
Copy the full SHA d8ed0e7View commit details -
Configuration menu - View commit details
-
Copy full SHA for d52ffaa - Browse repository at this point
Copy the full SHA d52ffaaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4397528 - Browse repository at this point
Copy the full SHA 4397528View commit details -
Configuration menu - View commit details
-
Copy full SHA for 11d2fb2 - Browse repository at this point
Copy the full SHA 11d2fb2View commit details
Commits on Feb 27, 2020
-
refactor(runtime-core): revert setup() result reactive conversion
BREAKING CHANGE: revert setup() result reactive conversion Revert 6b10f0c & a840e7d. The motivation of the original change was avoiding unnecessary deep conversions, but that can be achieved by explicitly marking values non-reactive via `markNonReactive`. Removing the reactive conversion behavior leads to an usability issue in that plain objects containing refs (which is what most composition functions will return), when exposed as a nested property from `setup()`, will not unwrap the refs in templates. This goes against the "no .value in template" intuition and the only workaround requires users to manually wrap it again with `reactive()`. So in this commit we are reverting to the previous behavior where objects returned from `setup()` are implicitly wrapped with `reactive()` for deep ref unwrapping.
12Configuration menu - View commit details
-
Copy full SHA for e67f655 - Browse repository at this point
Copy the full SHA e67f655View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5d952cc - Browse repository at this point
Copy the full SHA 5d952ccView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3357ff4 - Browse repository at this point
Copy the full SHA 3357ff4View commit details -
refactor(hydration): move fragment to seaprate function + skip normal…
…ization in optimized mode
Configuration menu - View commit details
-
Copy full SHA for 4809325 - Browse repository at this point
Copy the full SHA 4809325View commit details -
feat(compiler-core): switch to @babel/parser for expression parsing
This enables default support for parsing bigInt, optional chaining and nullish coalescing, and also adds the `expressionPlugins` compiler option for enabling additional parsing plugins listed at https://babeljs.io/docs/en/next/babel-parser#plugins.
Configuration menu - View commit details
-
Copy full SHA for 8449a97 - Browse repository at this point
Copy the full SHA 8449a97View commit details -
Configuration menu - View commit details
-
Copy full SHA for 33ab0f8 - Browse repository at this point
Copy the full SHA 33ab0f8View commit details
Commits on Feb 28, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 6810d14 - Browse repository at this point
Copy the full SHA 6810d14View commit details -
build(deps-dev): bump rollup from 1.31.1 to 1.32.0
Bumps [rollup](https://github.com/rollup/rollup) from 1.31.1 to 1.32.0. - [Release notes](https://github.com/rollup/rollup/releases) - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md) - [Commits](rollup/rollup@v1.31.1...v1.32.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Configuration menu - View commit details
-
Copy full SHA for 06d3447 - Browse repository at this point
Copy the full SHA 06d3447View commit details -
refactor(runtime-core): adjust attr fallthrough behavior
BREAKING CHANGE: adjust attr fallthrough behavior Updated per pending RFC vuejs/rfcs#137 - Implicit fallthrough now by default only applies for a whitelist of attributes (class, style, event listeners, a11y attributes, and data attributes). - Fallthrough is now applied regardless of whether the component has explicitly declared props. (close #749)
Configuration menu - View commit details
-
Copy full SHA for e1660f4 - Browse repository at this point
Copy the full SHA e1660f4View commit details
Commits on Mar 1, 2020
-
build: make @vue/shared public
This avoids it being inlined multiple times in esm bundler builds
Configuration menu - View commit details
-
Copy full SHA for bcb2a9b - Browse repository at this point
Copy the full SHA bcb2a9bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 11e6fba - Browse repository at this point
Copy the full SHA 11e6fbaView commit details
Commits on Mar 2, 2020
-
build(deps-dev): bump typescript from 3.8.2 to 3.8.3
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 3.8.2 to 3.8.3. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](microsoft/TypeScript@v3.8.2...v3.8.3) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Configuration menu - View commit details
-
Copy full SHA for e6ef52c - Browse repository at this point
Copy the full SHA e6ef52cView commit details
Commits on Mar 3, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 27afbaf - Browse repository at this point
Copy the full SHA 27afbafView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7971b04 - Browse repository at this point
Copy the full SHA 7971b04View commit details -
Configuration menu - View commit details
-
Copy full SHA for 91269da - Browse repository at this point
Copy the full SHA 91269daView commit details
Commits on Mar 4, 2020
-
Configuration menu - View commit details
-
Copy full SHA for fb4856b - Browse repository at this point
Copy the full SHA fb4856bView commit details
Commits on Mar 5, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 08bba09 - Browse repository at this point
Copy the full SHA 08bba09View commit details -
types: remove 'this' annotation from 'get' accessor (#801)
The next version of Typescript disallows 'this' parameter annotations on accessors, which causes vue-next to fail to compile. This PR removes the annotation and adds a cast instead. Fixes #800
Configuration menu - View commit details
-
Copy full SHA for 16f9e63 - Browse repository at this point
Copy the full SHA 16f9e63View commit details
Commits on Mar 6, 2020
-
fix(reactivity): Map/Set identity methods should work even if raw val…
…ue contains reactive entries fix #799
Configuration menu - View commit details
-
Copy full SHA for cc69fd7 - Browse repository at this point
Copy the full SHA cc69fd7View commit details -
build(deps): bump @babel/types from 7.8.6 to 7.8.7 (#796)
Bumps [@babel/types](https://github.com/babel/babel) from 7.8.6 to 7.8.7. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) - [Commits](babel/babel@v7.8.6...v7.8.7) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 3e92744 - Browse repository at this point
Copy the full SHA 3e92744View commit details -
build(deps): bump @babel/parser from 7.8.6 to 7.8.7 (#797)
Bumps [@babel/parser](https://github.com/babel/babel) from 7.8.6 to 7.8.7. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) - [Commits](babel/babel@v7.8.6...v7.8.7) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 689d45f - Browse repository at this point
Copy the full SHA 689d45fView commit details -
Configuration menu - View commit details
-
Copy full SHA for a306658 - Browse repository at this point
Copy the full SHA a306658View commit details -
Configuration menu - View commit details
-
Copy full SHA for 643ff23 - Browse repository at this point
Copy the full SHA 643ff23View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6fad2ef - Browse repository at this point
Copy the full SHA 6fad2efView commit details -
Configuration menu - View commit details
-
Copy full SHA for d6bf9ff - Browse repository at this point
Copy the full SHA d6bf9ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for 274f81c - Browse repository at this point
Copy the full SHA 274f81cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3be3785 - Browse repository at this point
Copy the full SHA 3be3785View commit details -
Configuration menu - View commit details
-
Copy full SHA for f7a0261 - Browse repository at this point
Copy the full SHA f7a0261View commit details -
Configuration menu - View commit details
-
Copy full SHA for dd2d25f - Browse repository at this point
Copy the full SHA dd2d25fView commit details -
Configuration menu - View commit details
-
Copy full SHA for c75388d - Browse repository at this point
Copy the full SHA c75388dView commit details
There are no files selected for viewing