]>
git.ipfire.org Git - thirdparty/vuejs/core.git/log
Evan You [Wed, 29 Jan 2020 03:14:43 +0000 (22:14 -0500)]
wip(ssr): move ssr only utils to conditional export
Evan You [Wed, 29 Jan 2020 03:03:53 +0000 (22:03 -0500)]
fix(runtime-dom/ssr): properly handle xlink and boolean attributes
Evan You [Tue, 28 Jan 2020 23:48:27 +0000 (18:48 -0500)]
wip(ssr): vdom serialization
Evan You [Tue, 28 Jan 2020 15:46:13 +0000 (10:46 -0500)]
wip(ssr): improve buffer typing
Evan You [Tue, 28 Jan 2020 15:28:40 +0000 (10:28 -0500)]
build: support source map in build and dev scripts
dependabot-preview[bot] [Tue, 28 Jan 2020 07:23:11 +0000 (07:23 +0000)]
build(deps-dev): bump @microsoft/api-extractor from 7.7.7 to 7.7.8
Bumps [@microsoft/api-extractor](https://github.com/microsoft/rushstack) from 7.7.7 to 7.7.8.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/compare/@microsoft/api-extractor_v7.7.7...@microsoft/api-extractor_v7.7.8)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
dependabot-preview[bot] [Tue, 28 Jan 2020 07:22:29 +0000 (07:22 +0000)]
build(deps-dev): bump puppeteer from 2.0.0 to 2.1.0
Bumps [puppeteer](https://github.com/puppeteer/puppeteer) from 2.0.0 to 2.1.0.
- [Release notes](https://github.com/puppeteer/puppeteer/releases)
- [Commits](https://github.com/puppeteer/puppeteer/compare/v2.0.0...v2.1.0)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
dependabot-preview[bot] [Tue, 28 Jan 2020 07:21:36 +0000 (07:21 +0000)]
build(deps-dev): bump rollup from 1.30.0 to 1.30.1
Bumps [rollup](https://github.com/rollup/rollup) from 1.30.0 to 1.30.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.30.0...v1.30.1)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Evan You [Mon, 27 Jan 2020 23:06:37 +0000 (18:06 -0500)]
wip(ssr): further restructure
Evan You [Mon, 27 Jan 2020 23:05:30 +0000 (18:05 -0500)]
fix(runtime-core): render context set should not unwrap reactive values
Evan You [Mon, 27 Jan 2020 22:23:42 +0000 (17:23 -0500)]
wip(ssr): restructure
Evan You [Mon, 27 Jan 2020 21:20:00 +0000 (16:20 -0500)]
release: v3.0.0-alpha.4
Evan You [Mon, 27 Jan 2020 21:00:08 +0000 (16:00 -0500)]
chore: add compiler-ssr to skipped packages for now
Evan You [Mon, 27 Jan 2020 20:15:22 +0000 (15:15 -0500)]
refactor: remove implicit reactive() call on renderContext
reference: https://github.com/vuejs/rfcs/issues/121
BREAKING CHANGE: object returned from `setup()` are no longer implicitly
passed to `reactive()`.
The renderContext is the object returned by `setup()` (or a new object
if no setup() is present). Before this change, it was implicitly passed
to `reactive()` for ref unwrapping. But this has the side effect of
unnecessary deep reactive conversion on properties that should not be
made reactive (e.g. computed return values and injected non-reactive
objects), and can lead to performance issues.
This change removes the `reactive()` call and instead performs a
shallow ref unwrapping at the render proxy level. The breaking part is
when the user returns an object with a plain property from `setup()`,
e.g. `return { count: 0 }`, this property will no longer trigger
updates when mutated by a in-template event handler. Instead, explicit
refs are required.
This also means that any objects not explicitly made reactive in
`setup()` will remain non-reactive. This can be desirable when
exposing heavy external stateful objects on `this`.
Evan You [Mon, 27 Jan 2020 20:15:13 +0000 (15:15 -0500)]
wip(ssr): revert reactivity ssr paths
The perf gains are not worth the correctness issues these paths may lead to
Evan You [Mon, 27 Jan 2020 19:42:01 +0000 (14:42 -0500)]
test: update snapshots for toDisplayString
Evan You [Mon, 27 Jan 2020 19:30:00 +0000 (14:30 -0500)]
fix(runtime-core): instance should not expose non-declared props
Evan You [Mon, 27 Jan 2020 18:13:38 +0000 (13:13 -0500)]
refactor: better variable naming
Evan You [Sun, 26 Jan 2020 22:35:21 +0000 (17:35 -0500)]
wip(ssr): escape helpers
Evan You [Sun, 26 Jan 2020 21:39:02 +0000 (16:39 -0500)]
chore: fix ssr compiler version
Evan You [Sun, 26 Jan 2020 21:13:12 +0000 (16:13 -0500)]
perf(ssr): avoid unnecessary async overhead
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)