]>
git.ipfire.org Git - thirdparty/vuejs/core.git/log
Evan You [Sun, 26 Jan 2020 03:21:06 +0000 (22:21 -0500)]
test: fix dts tests for
1ccecc0
Evan You [Fri, 24 Jan 2020 16:39:52 +0000 (11:39 -0500)]
wip(ssr): reduce reactivity overhead during ssr
Evan You [Fri, 24 Jan 2020 03:23:10 +0000 (22:23 -0500)]
wip(ssr): render real components
Evan You [Fri, 24 Jan 2020 02:01:56 +0000 (21:01 -0500)]
wip(ssr): initial work on server-renderer
Evan You [Thu, 23 Jan 2020 20:05:38 +0000 (15:05 -0500)]
refactor: adjust `createApp` related API signatures
BREAKING CHANGE: `createApp` API has been adjusted.
- `createApp()` now accepts the root component, and optionally a props
object to pass to the root component.
- `app.mount()` now accepts a single argument (the root container)
- `app.unmount()` no longer requires arguments.
New behavior looks like the following:
``` js
const app = createApp(RootComponent)
app.mount('#app')
app.unmount()
```
Evan You [Wed, 22 Jan 2020 15:39:09 +0000 (10:39 -0500)]
chore: scaffold ssr compiler
dependabot-preview[bot] [Mon, 27 Jan 2020 08:06:41 +0000 (08:06 +0000)]
build(deps-dev): bump rollup from 1.29.1 to 1.30.0
Bumps [rollup](https://github.com/rollup/rollup) from 1.29.1 to 1.30.0.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v1.29.1...v1.30.0)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Evan You [Sun, 26 Jan 2020 19:13:55 +0000 (14:13 -0500)]
fix(v-model/emit): update:camelCase events should trigger kebab case equivalent
close #656
Evan You [Sun, 26 Jan 2020 03:31:29 +0000 (22:31 -0500)]
fix(runtime-dom): should not access document in non-browser env
fix #657
dependabot-preview[bot] [Fri, 24 Jan 2020 07:56:52 +0000 (07:56 +0000)]
build(deps-dev): bump @types/jest from 24.9.0 to 24.9.1
Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 24.9.0 to 24.9.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Evan You [Thu, 23 Jan 2020 18:42:31 +0000 (13:42 -0500)]
fix(reactivity): Array methods relying on identity should work with raw values
dependabot-preview[bot] [Thu, 23 Jan 2020 08:07:53 +0000 (08:07 +0000)]
build(deps-dev): bump @microsoft/api-extractor from 7.7.6 to 7.7.7
Bumps [@microsoft/api-extractor](https://github.com/microsoft/rushstack) from 7.7.6 to 7.7.7.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/compare/@microsoft/api-extractor_v7.7.6...@microsoft/api-extractor_v7.7.7)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Evan You [Wed, 22 Jan 2020 16:12:55 +0000 (11:12 -0500)]
chore: fix changelog formatting [ci skip]
Evan You [Wed, 22 Jan 2020 16:10:30 +0000 (11:10 -0500)]
release: v3.0.0-alpha.3
Evan You [Wed, 22 Jan 2020 15:51:17 +0000 (10:51 -0500)]
build: adjust release tag
likui [Wed, 22 Jan 2020 15:45:27 +0000 (23:45 +0800)]
fix: Suspense should include into dynamic children (#653)
fix #649
Evan You [Wed, 22 Jan 2020 14:29:35 +0000 (09:29 -0500)]
refactor: move mockWarn utility to @vue/shared
close #652
dependabot-preview[bot] [Wed, 22 Jan 2020 07:58:02 +0000 (07:58 +0000)]
build(deps-dev): bump @microsoft/api-extractor from 7.7.5 to 7.7.6
Bumps [@microsoft/api-extractor](https://github.com/microsoft/rushstack) from 7.7.5 to 7.7.6.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/compare/@microsoft/api-extractor_v7.7.5...@microsoft/api-extractor_v7.7.6)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Evan You [Tue, 21 Jan 2020 16:32:17 +0000 (11:32 -0500)]
fix(dom): fix <svg> and <foreignObject> mount and updates
dependabot-preview[bot] [Tue, 21 Jan 2020 07:26:02 +0000 (07:26 +0000)]
build(deps-dev): bump rollup from 1.29.0 to 1.29.1
Bumps [rollup](https://github.com/rollup/rollup) from 1.29.0 to 1.29.1.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v1.29.0...v1.29.1)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Evan You [Mon, 20 Jan 2020 19:48:19 +0000 (14:48 -0500)]
fix(compiler-core): force <svg> into blocks for correct runtime isSVG
state during patch
likui [Mon, 20 Jan 2020 18:22:18 +0000 (02:22 +0800)]
types: refactor ref unwrapping (#646)
yang [Mon, 20 Jan 2020 17:44:01 +0000 (01:44 +0800)]
fix(transition): handle multiple transition classes (#638) (#645)
fix #638
Rustin [Mon, 20 Jan 2020 17:02:08 +0000 (01:02 +0800)]
test(reactivity): declare the exact type (#644)
Evan You [Mon, 20 Jan 2020 16:55:18 +0000 (11:55 -0500)]
fix(runtime-core): isSVG check should also apply for patch branch
fix #639
Evan You [Mon, 20 Jan 2020 16:24:08 +0000 (11:24 -0500)]
feat(runtime-core): emit now returns array of return values from all triggered handlers
close #635
Ruijia Tang [Mon, 20 Jan 2020 15:15:53 +0000 (23:15 +0800)]
fix(compiler-core): avoid override user keys when injecting branch key (#630)
Sören Schwert [Mon, 20 Jan 2020 14:57:17 +0000 (15:57 +0100)]
fix(compiler-sfc): only transform relative asset URLs (#628)
Rustin [Mon, 20 Jan 2020 14:43:58 +0000 (22:43 +0800)]
test(runtime-core): modify test case to set different value (#620)
dependabot-preview[bot] [Mon, 20 Jan 2020 07:58:07 +0000 (07:58 +0000)]
build(deps-dev): bump @microsoft/api-extractor from 7.7.4 to 7.7.5
Bumps [@microsoft/api-extractor](https://github.com/microsoft/rushstack) from 7.7.4 to 7.7.5.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/compare/@microsoft/api-extractor_v7.7.4...@microsoft/api-extractor_v7.7.5)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
dependabot-preview[bot] [Fri, 17 Jan 2020 07:40:30 +0000 (07:40 +0000)]
build(deps-dev): bump @microsoft/api-extractor from 7.7.3 to 7.7.4
Bumps [@microsoft/api-extractor](https://github.com/microsoft/rushstack) from 7.7.3 to 7.7.4.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/compare/@microsoft/api-extractor_v7.7.3...@microsoft/api-extractor_v7.7.4)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
dependabot-preview[bot] [Fri, 17 Jan 2020 07:39:57 +0000 (07:39 +0000)]
build(deps-dev): bump typescript from 3.7.4 to 3.7.5
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 3.7.4 to 3.7.5.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](https://github.com/Microsoft/TypeScript/compare/v3.7.4...v3.7.5)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
IU [Thu, 16 Jan 2020 22:47:47 +0000 (06:47 +0800)]
types(reactivity): handle primitive + object intersection types in UnwrapRef (#614)
Cédric Exbrayat [Thu, 16 Jan 2020 22:46:25 +0000 (23:46 +0100)]
test: reformat defineComponent dts test (#631)
Evan You [Thu, 16 Jan 2020 22:45:08 +0000 (17:45 -0500)]
fix(runtime-core): should not warn unused attrs when accessed via setup context
close #625
Evan You [Thu, 16 Jan 2020 21:21:37 +0000 (16:21 -0500)]
fix(runtime-core): condition for parent node check should be any different nodes
fix #622
likui [Thu, 16 Jan 2020 17:23:47 +0000 (01:23 +0800)]
feat(runtime-core): support app.unmount(container) (#601)
close #593
dependabot-preview[bot] [Thu, 16 Jan 2020 08:04:42 +0000 (08:04 +0000)]
build(deps-dev): bump @types/jest from 24.0.25 to 24.9.0
Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 24.0.25 to 24.9.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Sören Schwert [Thu, 16 Jan 2020 02:50:06 +0000 (03:50 +0100)]
chore: fix error reporting URL to point to vue-next (#624) [ci skip]
dependabot-preview[bot] [Tue, 14 Jan 2020 07:55:08 +0000 (07:55 +0000)]
build(deps-dev): bump enquirer from 2.3.2 to 2.3.4
Bumps [enquirer](https://github.com/enquirer/enquirer) from 2.3.2 to 2.3.4.
- [Release notes](https://github.com/enquirer/enquirer/releases)
- [Changelog](https://github.com/enquirer/enquirer/blob/master/CHANGELOG.md)
- [Commits](https://github.com/enquirer/enquirer/compare/2.3.2...2.3.4)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
dependabot-preview[bot] [Tue, 14 Jan 2020 07:55:02 +0000 (07:55 +0000)]
build(deps-dev): bump @microsoft/api-extractor from 7.7.2 to 7.7.3
Bumps [@microsoft/api-extractor](https://github.com/microsoft/rushstack) from 7.7.2 to 7.7.3.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/compare/@microsoft/api-extractor_v7.7.2...@microsoft/api-extractor_v7.7.3)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Evan You [Mon, 13 Jan 2020 22:53:54 +0000 (17:53 -0500)]
chore: fix publish log [ci skip]
Evan You [Mon, 13 Jan 2020 22:53:17 +0000 (17:53 -0500)]
chore: fix release script temporary tag [ci skip]
Evan You [Mon, 13 Jan 2020 22:44:30 +0000 (17:44 -0500)]
release: v3.0.0-alpha.2
Evan You [Mon, 13 Jan 2020 22:31:00 +0000 (17:31 -0500)]
fix(runtime-core/renderer): fix v-if toggle inside blocks
Should check both branches for parent container access.
Fix #604. Close #607.
Cédric Exbrayat [Mon, 13 Jan 2020 22:12:45 +0000 (23:12 +0100)]
fix(types): components options should accept components defined with defineComponent (#602)
likui [Mon, 13 Jan 2020 22:11:49 +0000 (06:11 +0800)]
fix(reactivity): should delete observe value (#598)
fix #597
dependabot-preview[bot] [Mon, 13 Jan 2020 15:49:57 +0000 (10:49 -0500)]
build(deps): bump postcss from 7.0.25 to 7.0.26 (#570)
Bumps [postcss](https://github.com/postcss/postcss) from 7.0.25 to 7.0.26.
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/master/CHANGELOG.md)
- [Commits](https://github.com/postcss/postcss/compare/7.0.25...7.0.26)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Rustin [Mon, 13 Jan 2020 12:09:30 +0000 (20:09 +0800)]
chore(scripts): fix typo (#612)
dependabot-preview[bot] [Mon, 13 Jan 2020 08:49:50 +0000 (08:49 +0000)]
build(deps-dev): bump rollup-plugin-terser from 5.1.3 to 5.2.0
Bumps [rollup-plugin-terser](https://github.com/TrySound/rollup-plugin-terser) from 5.1.3 to 5.2.0.
- [Release notes](https://github.com/TrySound/rollup-plugin-terser/releases)
- [Commits](https://github.com/TrySound/rollup-plugin-terser/compare/v5.1.3...v5.2.0)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Yang Mingshan [Fri, 10 Jan 2020 16:46:34 +0000 (00:46 +0800)]
types: fix setup this type (#605)
dependabot-preview[bot] [Thu, 9 Jan 2020 07:35:02 +0000 (07:35 +0000)]
build(deps-dev): bump rollup from 1.28.0 to 1.29.0
Bumps [rollup](https://github.com/rollup/rollup) from 1.28.0 to 1.29.0.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v1.28.0...v1.29.0)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
dependabot-preview[bot] [Thu, 9 Jan 2020 07:34:43 +0000 (07:34 +0000)]
build(deps-dev): bump @microsoft/api-extractor from 7.7.1 to 7.7.2
Bumps [@microsoft/api-extractor](https://github.com/microsoft/rushstack) from 7.7.1 to 7.7.2.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/commits/@microsoft/api-extractor_v7.7.2)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Kael [Wed, 8 Jan 2020 17:40:24 +0000 (04:40 +1100)]
fix(runtime-core): allow classes to be passed as plugins (#588)
Yang Mingshan [Wed, 8 Jan 2020 17:06:16 +0000 (01:06 +0800)]
fix(watch): remove recorded effect on manual stop (#590)
dependabot-preview[bot] [Wed, 8 Jan 2020 07:23:17 +0000 (07:23 +0000)]
build(deps-dev): bump @microsoft/api-extractor from 7.7.0 to 7.7.1
Bumps [@microsoft/api-extractor](https://github.com/microsoft/rushstack) from 7.7.0 to 7.7.1.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/commits)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Jason Yu [Tue, 7 Jan 2020 18:19:54 +0000 (18:19 +0000)]
chore: update README.md (#592) [ci skip]
dependabot-preview[bot] [Tue, 7 Jan 2020 07:28:21 +0000 (07:28 +0000)]
build(deps-dev): bump ts-jest from 24.2.0 to 24.3.0
Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 24.2.0 to 24.3.0.
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/master/CHANGELOG.md)
- [Commits](https://github.com/kulshekhar/ts-jest/compare/v24.2.0...v24.3.0)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Turtuvshin Byambaa [Tue, 7 Jan 2020 10:33:22 +0000 (18:33 +0800)]
chore: fix typo in contributing guide (#589)
Yu Zong [Mon, 6 Jan 2020 21:19:18 +0000 (15:19 -0600)]
types: update jsx support (#587)
Carlos Rodrigues [Mon, 6 Jan 2020 21:15:49 +0000 (21:15 +0000)]
types: improve isRef typing (#578)
Evan You [Mon, 6 Jan 2020 20:31:21 +0000 (15:31 -0500)]
fix(compiler/v-slot): handle implicit default slot mixed with named slots
Evan You [Mon, 6 Jan 2020 20:05:57 +0000 (15:05 -0500)]
fix(runtime-core): should preserve props casing when component has no declared props
close #583
Evan You [Mon, 6 Jan 2020 17:09:37 +0000 (12:09 -0500)]
build: adjust release tag for alpha/beta phase
Evan You [Mon, 6 Jan 2020 16:57:19 +0000 (11:57 -0500)]
fix(runtime-core/vnode): should not render boolean values in vnode children (close #574)
Evan You [Mon, 6 Jan 2020 16:45:48 +0000 (11:45 -0500)]
fix(compiler/v-on): handle multiple statements in v-on handler (close #572)
dependabot-preview[bot] [Mon, 6 Jan 2020 07:48:36 +0000 (07:48 +0000)]
build(deps-dev): bump rollup from 1.27.14 to 1.28.0
Bumps [rollup](https://github.com/rollup/rollup) from 1.27.14 to 1.28.0.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v1.27.14...v1.28.0)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Evan You [Thu, 2 Jan 2020 23:40:43 +0000 (18:40 -0500)]
chore: update readme [ci skip]
Evan You [Thu, 2 Jan 2020 23:27:07 +0000 (18:27 -0500)]
build(release): only log actually publisehd packages
Evan You [Thu, 2 Jan 2020 23:25:17 +0000 (18:25 -0500)]
release: v3.0.0-alpha.1
Evan You [Thu, 2 Jan 2020 23:21:56 +0000 (18:21 -0500)]
types: fix compiler-dom rolled up dts
Evan You [Thu, 2 Jan 2020 23:12:54 +0000 (18:12 -0500)]
build: generate changelog during release
Evan You [Thu, 2 Jan 2020 23:08:42 +0000 (18:08 -0500)]
build: fix skipped package check
Evan You [Thu, 2 Jan 2020 23:07:42 +0000 (18:07 -0500)]
build: changelog generation
Evan You [Thu, 2 Jan 2020 22:41:03 +0000 (17:41 -0500)]
chore: add issue template [ci skip]
Evan You [Mon, 30 Dec 2019 16:30:12 +0000 (11:30 -0500)]
types: refactor watcher types naming
Elad Frizi [Mon, 30 Dec 2019 16:29:43 +0000 (18:29 +0200)]
test(reactivity): extracted repetitive assertions (#554)
dependabot-preview[bot] [Mon, 30 Dec 2019 16:27:11 +0000 (11:27 -0500)]
build(deps): [security] bump handlebars from 4.1.2 to 4.5.3 (#567)
Bumps [handlebars](https://github.com/wycats/handlebars.js) from 4.1.2 to 4.5.3. **This update includes a security fix.**
- [Release notes](https://github.com/wycats/handlebars.js/releases)
- [Changelog](https://github.com/wycats/handlebars.js/blob/master/release-notes.md)
- [Commits](https://github.com/wycats/handlebars.js/compare/v4.1.2...v4.5.3)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
susiwen8 [Mon, 30 Dec 2019 16:26:45 +0000 (00:26 +0800)]
chore: use Boolean to filter TemplateChildNode (#569)
likui [Mon, 30 Dec 2019 16:25:44 +0000 (00:25 +0800)]
test(vnode): add test for dynamic children (#563)
djy0 [Mon, 30 Dec 2019 16:25:06 +0000 (00:25 +0800)]
perf(compiler-core): simplify `advancePositionWithMutation` (#564)
Yingya Zhang [Mon, 30 Dec 2019 16:23:25 +0000 (00:23 +0800)]
chore: fix typo api.json (#565) [ci skip]
Yang Mingshan [Mon, 30 Dec 2019 16:19:57 +0000 (00:19 +0800)]
types: exports watch api types (#562)
dependabot-preview[bot] [Fri, 27 Dec 2019 07:40:20 +0000 (07:40 +0000)]
build(deps-dev): bump @types/jest from 24.0.24 to 24.0.25
Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 24.0.24 to 24.0.25.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Yingya Zhang [Thu, 26 Dec 2019 10:27:25 +0000 (18:27 +0800)]
chore: fix typo jest moduleNameMapper (#566)
Evan You [Tue, 24 Dec 2019 16:04:35 +0000 (11:04 -0500)]
types: accept defineComponent return types in app.mount
Evan You [Tue, 24 Dec 2019 15:51:26 +0000 (10:51 -0500)]
refactor: use named export for compiled render function
宋铄运 [Tue, 24 Dec 2019 15:33:47 +0000 (23:33 +0800)]
fix(runtime-core): pass options to plugins (#561)
dependabot-preview[bot] [Mon, 23 Dec 2019 15:58:43 +0000 (10:58 -0500)]
build(deps-dev): bump @rollup/plugin-json from 4.0.0 to 4.0.1 (#558)
Bumps [@rollup/plugin-json](https://github.com/rollup/plugins) from 4.0.0 to 4.0.1.
- [Release notes](https://github.com/rollup/plugins/releases)
- [Commits](https://github.com/rollup/plugins/compare/url-v4.0.0...json-v4.0.1)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
dependabot-preview[bot] [Mon, 23 Dec 2019 15:55:11 +0000 (15:55 +0000)]
build(deps-dev): bump @rollup/plugin-replace from 2.2.1 to 2.3.0
Bumps [@rollup/plugin-replace](https://github.com/rollup/plugins) from 2.2.1 to 2.3.0.
- [Release notes](https://github.com/rollup/plugins/releases)
- [Commits](https://github.com/rollup/plugins/compare/replace-v2.2.1...replace-v2.3.0)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Evan You [Mon, 23 Dec 2019 15:51:28 +0000 (10:51 -0500)]
ci: skip e2e tests on netlify coverage builds
Evan You [Mon, 23 Dec 2019 15:28:40 +0000 (10:28 -0500)]
chore: further edit formats and include it in vue package readme [ci skip]
Evan You [Mon, 23 Dec 2019 15:12:35 +0000 (10:12 -0500)]
chore: more details on build formats [ci skip]
dependabot-preview[bot] [Mon, 23 Dec 2019 07:49:34 +0000 (07:49 +0000)]
build(deps-dev): bump typescript from 3.7.3 to 3.7.4
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 3.7.3 to 3.7.4.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](https://github.com/Microsoft/TypeScript/commits)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
dependabot-preview[bot] [Mon, 23 Dec 2019 07:49:11 +0000 (07:49 +0000)]
build(deps-dev): bump rollup from 1.27.13 to 1.27.14
Bumps [rollup](https://github.com/rollup/rollup) from 1.27.13 to 1.27.14.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v1.27.13...v1.27.14)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Evan You [Mon, 23 Dec 2019 02:09:39 +0000 (21:09 -0500)]
fix(sfc): treat custom block content as raw text
Evan You [Mon, 23 Dec 2019 00:44:21 +0000 (19:44 -0500)]
refactor: expose parse in compiler-dom, improve sfc parse error handling
Evan You [Sun, 22 Dec 2019 21:24:24 +0000 (16:24 -0500)]
fix: mounting new children
Evan You [Sun, 22 Dec 2019 21:15:16 +0000 (16:15 -0500)]
fix(fragment): perform direct remove when removing fragments
This avoids trying to grab .el from hoisted child nodes (which can
be created by another instance), and also skips transition check
since fragment children cannot have transitions.
Evan You [Sun, 22 Dec 2019 18:31:13 +0000 (13:31 -0500)]
fix(core): clone mounted hoisted vnodes on patch
...since they may need to be checked as fragment child