]> git.ipfire.org Git - thirdparty/vuejs/router.git/log
thirdparty/vuejs/router.git
5 years agobuild(deps-dev): bump @microsoft/api-documenter from 7.8.1 to 7.8.10
dependabot-preview[bot] [Mon, 1 Jun 2020 09:16:24 +0000 (09:16 +0000)] 
build(deps-dev): bump @microsoft/api-documenter from 7.8.1 to 7.8.10

Bumps [@microsoft/api-documenter](https://github.com/microsoft/rushstack) from 7.8.1 to 7.8.10.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/compare/@microsoft/api-documenter_v7.8.1...@microsoft/api-documenter_v7.8.10)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump vue-loader from 16.0.0-beta.2 to 16.0.0-beta.3
dependabot-preview[bot] [Mon, 1 Jun 2020 09:15:08 +0000 (09:15 +0000)] 
build(deps-dev): bump vue-loader from 16.0.0-beta.2 to 16.0.0-beta.3

Bumps [vue-loader](https://github.com/vuejs/vue-loader) from 16.0.0-beta.2 to 16.0.0-beta.3.
- [Release notes](https://github.com/vuejs/vue-loader/releases)
- [Changelog](https://github.com/vuejs/vue-loader/blob/master/CHANGELOG.md)
- [Commits](https://github.com/vuejs/vue-loader/compare/v16.0.0-beta.2...v16.0.0-beta.3)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump @types/webpack from 4.41.13 to 4.41.16
dependabot-preview[bot] [Mon, 1 Jun 2020 09:14:36 +0000 (09:14 +0000)] 
build(deps-dev): bump @types/webpack from 4.41.13 to 4.41.16

Bumps [@types/webpack](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/webpack) from 4.41.13 to 4.41.16.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/webpack)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump ts-jest from 26.0.0 to 26.1.0
dependabot-preview[bot] [Mon, 1 Jun 2020 09:13:41 +0000 (09:13 +0000)] 
build(deps-dev): bump ts-jest from 26.0.0 to 26.1.0

Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 26.0.0 to 26.1.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/v26.0.0...v26.1.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump lint-staged from 10.2.6 to 10.2.7
dependabot-preview[bot] [Mon, 1 Jun 2020 09:12:35 +0000 (09:12 +0000)] 
build(deps-dev): bump lint-staged from 10.2.6 to 10.2.7

Bumps [lint-staged](https://github.com/okonet/lint-staged) from 10.2.6 to 10.2.7.
- [Release notes](https://github.com/okonet/lint-staged/releases)
- [Commits](https://github.com/okonet/lint-staged/compare/v10.2.6...v10.2.7)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agofeat(warn): warn when routes are not found (#279)
Carlos Rodrigues [Fri, 29 May 2020 21:08:07 +0000 (22:08 +0100)] 
feat(warn): warn when routes are not found (#279)

* test: add test for route not matched

* test: fix tests

* Apply suggestions from code review

Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
* chore: code review suggestion

* chore: remove route for '//not-valid' to prevent future confusion

Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
5 years agotest: add test for slash encoding in catchAll
Eduardo San Martin Morote [Thu, 28 May 2020 21:43:18 +0000 (23:43 +0200)] 
test: add test for slash encoding in catchAll

5 years agodocs: improve readme
Eduardo San Martin Morote [Thu, 28 May 2020 21:42:51 +0000 (23:42 +0200)] 
docs: improve readme

5 years agotest(e2e): add smooth scrolling for demo
Eduardo San Martin Morote [Wed, 27 May 2020 13:39:56 +0000 (15:39 +0200)] 
test(e2e): add smooth scrolling for demo

5 years agofeat(scroll): allow passing behavior option
Eduardo San Martin Morote [Wed, 27 May 2020 12:52:16 +0000 (14:52 +0200)] 
feat(scroll): allow passing behavior option

BREAKING CHANGE: `scrollBehavior` doesn't accept an object with `x` and `y`
coordinates anymore. Instead it accepts an object like
[`ScrollToOptions`](https://developer.mozilla.org/en-US/docs/Web/API/ScrollToOptions)
with `left` and `top` properties. You can now also pass the
[`behavior`](https://developer.mozilla.org/en-US/docs/Web/API/ScrollToOptions/behavior)
property to enable smooth scrolling in most browsers.

5 years agochore: up chromedriver
Eduardo San Martin Morote [Wed, 27 May 2020 12:46:48 +0000 (14:46 +0200)] 
chore: up chromedriver

5 years agofix: allow arbitrary selectors starting with #
Eduardo San Martin Morote [Tue, 26 May 2020 14:58:07 +0000 (16:58 +0200)] 
fix: allow arbitrary selectors starting with #

BREAKING CHANGE: It is now necessary to escape id selectors like
explained at https://mathiasbynens.be/notes/css-escapes. This was
necessary to allow selectors like `#container > child`.

5 years agorefactor: use startsWith
Eduardo San Martin Morote [Tue, 26 May 2020 14:22:21 +0000 (16:22 +0200)] 
refactor: use startsWith

[skip ci]

5 years agofeat: allow props for named views
Eduardo San Martin Morote [Tue, 26 May 2020 13:47:14 +0000 (15:47 +0200)] 
feat: allow props for named views

5 years agoci: ffs
Eduardo San Martin Morote [Mon, 25 May 2020 09:40:34 +0000 (11:40 +0200)] 
ci: ffs

5 years agoci: wtf
Eduardo San Martin Morote [Mon, 25 May 2020 09:39:40 +0000 (11:39 +0200)] 
ci: wtf

5 years agoci: store test results
Eduardo San Martin Morote [Mon, 25 May 2020 09:36:16 +0000 (11:36 +0200)] 
ci: store test results

5 years agobuild(deps-dev): bump rollup-plugin-terser from 6.0.1 to 6.1.0
dependabot-preview[bot] [Mon, 25 May 2020 09:01:56 +0000 (09:01 +0000)] 
build(deps-dev): bump rollup-plugin-terser from 6.0.1 to 6.1.0

Bumps [rollup-plugin-terser](https://github.com/TrySound/rollup-plugin-terser) from 6.0.1 to 6.1.0.
- [Release notes](https://github.com/TrySound/rollup-plugin-terser/releases)
- [Commits](https://github.com/TrySound/rollup-plugin-terser/compare/v6.0.1...v6.1.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump ts-loader from 7.0.4 to 7.0.5
dependabot-preview[bot] [Mon, 25 May 2020 09:02:21 +0000 (09:02 +0000)] 
build(deps-dev): bump ts-loader from 7.0.4 to 7.0.5

Bumps [ts-loader](https://github.com/TypeStrong/ts-loader) from 7.0.4 to 7.0.5.
- [Release notes](https://github.com/TypeStrong/ts-loader/releases)
- [Changelog](https://github.com/TypeStrong/ts-loader/blob/master/CHANGELOG.md)
- [Commits](https://github.com/TypeStrong/ts-loader/compare/v7.0.4...v7.0.5)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agoci: add CI check so it appears in screenshots
Eduardo San Martin Morote [Mon, 25 May 2020 08:20:04 +0000 (10:20 +0200)] 
ci: add CI check so it appears in screenshots

5 years agofix(matcher): correct check when removing existing records on add
Eduardo San Martin Morote [Mon, 25 May 2020 08:17:21 +0000 (10:17 +0200)] 
fix(matcher): correct check when removing existing records on add

5 years agofix(scroll): avoid reusing scroll position
Eduardo San Martin Morote [Sun, 24 May 2020 14:33:33 +0000 (16:33 +0200)] 
fix(scroll): avoid reusing scroll position

5 years agofix(matcher): override records by name when adding
Eduardo San Martin Morote [Sun, 24 May 2020 13:59:54 +0000 (15:59 +0200)] 
fix(matcher): override records by name when adding

5 years agotest: improve matcher add/remove tests
Eduardo San Martin Morote [Sun, 24 May 2020 13:59:30 +0000 (15:59 +0200)] 
test: improve matcher add/remove tests

5 years agofeat(warn): warn if component is a promise
Eduardo San Martin Morote [Sun, 24 May 2020 09:35:26 +0000 (11:35 +0200)] 
feat(warn): warn if component is a promise

5 years agofeat(warn): warn multiple params with same name
Eduardo San Martin Morote [Sun, 24 May 2020 09:27:38 +0000 (11:27 +0200)] 
feat(warn): warn multiple params with same name

5 years agotest(e2e): use 2s on CI, 0.5s on dev
Eduardo San Martin Morote [Sun, 24 May 2020 09:11:09 +0000 (11:11 +0200)] 
test(e2e): use 2s on CI, 0.5s on dev

5 years agochore: up jest
Eduardo San Martin Morote [Sun, 24 May 2020 09:01:52 +0000 (11:01 +0200)] 
chore: up jest

5 years agochore: up rollup deps
Eduardo San Martin Morote [Sun, 24 May 2020 09:00:46 +0000 (11:00 +0200)] 
chore: up rollup deps

5 years agochore: up deps
Eduardo San Martin Morote [Sun, 24 May 2020 08:56:06 +0000 (10:56 +0200)] 
chore: up deps

5 years agochore: remove logs [skip-ci]
Eduardo San Martin Morote [Sun, 24 May 2020 08:54:32 +0000 (10:54 +0200)] 
chore: remove logs [skip-ci]

5 years agobuild(deps-dev): bump vue, @vue/compiler-sfc and @vue/server-renderer (#260)
dependabot-preview[bot] [Sun, 24 May 2020 08:54:18 +0000 (10:54 +0200)] 
build(deps-dev): bump vue, @vue/compiler-sfc and @vue/server-renderer (#260)

5 years agodocs: improve mode change
Eduardo San Martin Morote [Fri, 22 May 2020 09:29:11 +0000 (11:29 +0200)] 
docs: improve mode change

Close #266

5 years agodocs(types): add notes about breaking typis
Eduardo San Martin Morote [Fri, 22 May 2020 08:28:51 +0000 (10:28 +0200)] 
docs(types): add notes about breaking typis

Close #264

5 years agotest(e2e): fix in safari
Eduardo San Martin Morote [Thu, 21 May 2020 07:31:57 +0000 (09:31 +0200)] 
test(e2e): fix in safari

5 years agofix(hash): use location.pathname
Eduardo San Martin Morote [Wed, 20 May 2020 10:18:53 +0000 (12:18 +0200)] 
fix(hash): use location.pathname

Fix #261

5 years agodocs: add missing hyphen
Eduardo San Martin Morote [Tue, 19 May 2020 12:24:09 +0000 (14:24 +0200)] 
docs: add missing hyphen

[skip ci]

5 years agorelease: v4.0.0-alpha.12 v4.0.0-alpha.12
Eduardo San Martin Morote [Tue, 19 May 2020 12:23:44 +0000 (14:23 +0200)] 
release: v4.0.0-alpha.12

5 years agoci: higher transition time
Eduardo San Martin Morote [Tue, 19 May 2020 12:21:53 +0000 (14:21 +0200)] 
ci: higher transition time

5 years agobuild: remove test from release, we should wait for ci
Eduardo San Martin Morote [Tue, 19 May 2020 12:21:42 +0000 (14:21 +0200)] 
build: remove test from release, we should wait for ci

5 years agorefactor: explicit values in error enum
Eduardo San Martin Morote [Tue, 19 May 2020 12:15:32 +0000 (14:15 +0200)] 
refactor: explicit values in error enum

5 years agodocs: add link to examples
Eduardo San Martin Morote [Tue, 19 May 2020 10:06:02 +0000 (12:06 +0200)] 
docs: add link to examples

[skip ci]

5 years agodocs: doc createWebHashHistory
Eduardo San Martin Morote [Tue, 19 May 2020 10:01:00 +0000 (12:01 +0200)] 
docs: doc createWebHashHistory

5 years agorefactor: reorder errors in interface
Eduardo San Martin Morote [Tue, 19 May 2020 10:00:49 +0000 (12:00 +0200)] 
refactor: reorder errors in interface

5 years agobuild(deps-dev): bump rollup-plugin-typescript2 from 0.27.0 to 0.27.1
dependabot-preview[bot] [Mon, 18 May 2020 09:20:35 +0000 (09:20 +0000)] 
build(deps-dev): bump rollup-plugin-typescript2 from 0.27.0 to 0.27.1

Bumps [rollup-plugin-typescript2](https://github.com/ezolenko/rollup-plugin-typescript2) from 0.27.0 to 0.27.1.
- [Release notes](https://github.com/ezolenko/rollup-plugin-typescript2/releases)
- [Commits](https://github.com/ezolenko/rollup-plugin-typescript2/compare/0.27.0...0.27.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump @types/jsdom from 16.2.1 to 16.2.3
dependabot-preview[bot] [Mon, 18 May 2020 09:32:59 +0000 (09:32 +0000)] 
build(deps-dev): bump @types/jsdom from 16.2.1 to 16.2.3

Bumps [@types/jsdom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jsdom) from 16.2.1 to 16.2.3.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jsdom)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump @microsoft/api-documenter from 7.8.0 to 7.8.1
dependabot-preview[bot] [Mon, 18 May 2020 09:27:17 +0000 (09:27 +0000)] 
build(deps-dev): bump @microsoft/api-documenter from 7.8.0 to 7.8.1

Bumps [@microsoft/api-documenter](https://github.com/microsoft/rushstack) from 7.8.0 to 7.8.1.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/compare/@microsoft/api-documenter_v7.8.0...@microsoft/api-documenter_v7.8.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump @types/webpack from 4.41.12 to 4.41.13
dependabot-preview[bot] [Mon, 18 May 2020 09:22:53 +0000 (09:22 +0000)] 
build(deps-dev): bump @types/webpack from 4.41.12 to 4.41.13

Bumps [@types/webpack](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/webpack) from 4.41.12 to 4.41.13.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/webpack)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump @microsoft/api-extractor from 7.8.0 to 7.8.1
dependabot-preview[bot] [Mon, 18 May 2020 09:18:09 +0000 (09:18 +0000)] 
build(deps-dev): bump @microsoft/api-extractor from 7.8.0 to 7.8.1

Bumps [@microsoft/api-extractor](https://github.com/microsoft/rushstack) from 7.8.0 to 7.8.1.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/compare/@microsoft/api-extractor_v7.8.0...@microsoft/api-extractor_v7.8.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump @types/jest from 25.2.1 to 25.2.2
dependabot-preview[bot] [Mon, 18 May 2020 09:15:55 +0000 (09:15 +0000)] 
build(deps-dev): bump @types/jest from 25.2.1 to 25.2.2

Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 25.2.1 to 25.2.2.
- [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>
5 years agobuild(deps-dev): bump rollup from 2.9.1 to 2.10.2
dependabot-preview[bot] [Mon, 18 May 2020 09:13:33 +0000 (09:13 +0000)] 
build(deps-dev): bump rollup from 2.9.1 to 2.10.2

Bumps [rollup](https://github.com/rollup/rollup) from 2.9.1 to 2.10.2.
- [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/v2.9.1...v2.10.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agoci: longer transition time
Eduardo San Martin Morote [Fri, 15 May 2020 14:50:30 +0000 (16:50 +0200)] 
ci: longer transition time

5 years agofix(hash): allow base with non trailing slash
Eduardo San Martin Morote [Fri, 15 May 2020 14:09:54 +0000 (16:09 +0200)] 
fix(hash): allow base with non trailing slash

Close #247

BREAKING CHANGE: When providing a base for hash histories, it is now necessary
to include a traling slash to create a url that starts with `/#/`, otherwise it
will result in a url starting with `#/`. This allows users to use the routing
system directly in simple files without needing to configure a server at all:
  - `https://example.com/file.html` + `base: 'file.html` will produce a final
    url of `https://example.com/file.html#/`
  - `https://example.com/folder` + `base: 'folder` will produce a final url of
    `https://example.com/folder#/`
  - `https://example.com/folder` + `base: 'folder/` will produce a final url of
    `https://example.com/folder/#/`

5 years agoUpdate redirect example syntax (#243)
Jeffrey Biles [Wed, 13 May 2020 18:48:58 +0000 (11:48 -0700)] 
Update redirect example syntax (#243)

`routes` should be an array instead of an object

5 years agofeat(warn): warn multiple leading slashes
Eduardo San Martin Morote [Tue, 12 May 2020 14:00:06 +0000 (16:00 +0200)] 
feat(warn): warn multiple leading slashes

5 years agofix: prevent error on initial navigation to //invalid
Eduardo San Martin Morote [Tue, 12 May 2020 14:39:58 +0000 (16:39 +0200)] 
fix: prevent error on initial navigation to //invalid

5 years agotest: add basic ssr test
Eduardo San Martin Morote [Tue, 12 May 2020 14:26:02 +0000 (16:26 +0200)] 
test: add basic ssr test

5 years agotest: remove old test
Eduardo San Martin Morote [Tue, 12 May 2020 14:25:26 +0000 (16:25 +0200)] 
test: remove old test

5 years agorelease: v4.0.0-alpha.11 v4.0.0-alpha.11
Eduardo San Martin Morote [Tue, 12 May 2020 09:36:06 +0000 (11:36 +0200)] 
release: v4.0.0-alpha.11

5 years agochore: up vue
Eduardo San Martin Morote [Tue, 12 May 2020 09:35:03 +0000 (11:35 +0200)] 
chore: up vue

5 years agobuild(deps-dev): bump @microsoft/api-documenter from 7.7.20 to 7.8.0
dependabot-preview[bot] [Mon, 11 May 2020 09:23:03 +0000 (09:23 +0000)] 
build(deps-dev): bump @microsoft/api-documenter from 7.7.20 to 7.8.0

Bumps [@microsoft/api-documenter](https://github.com/microsoft/rushstack) from 7.7.20 to 7.8.0.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/compare/@microsoft/api-documenter_v7.7.20...@microsoft/api-documenter_v7.8.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump vue-loader from 16.0.0-alpha.3 to 16.0.0-beta.1
dependabot-preview[bot] [Mon, 11 May 2020 09:13:19 +0000 (09:13 +0000)] 
build(deps-dev): bump vue-loader from 16.0.0-alpha.3 to 16.0.0-beta.1

Bumps [vue-loader](https://github.com/vuejs/vue-loader) from 16.0.0-alpha.3 to 16.0.0-beta.1.
- [Release notes](https://github.com/vuejs/vue-loader/releases)
- [Changelog](https://github.com/vuejs/vue-loader/blob/master/CHANGELOG.md)
- [Commits](https://github.com/vuejs/vue-loader/commits)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump @microsoft/api-extractor from 7.7.13 to 7.8.0
dependabot-preview[bot] [Mon, 11 May 2020 09:12:52 +0000 (09:12 +0000)] 
build(deps-dev): bump @microsoft/api-extractor from 7.7.13 to 7.8.0

Bumps [@microsoft/api-extractor](https://github.com/microsoft/rushstack) from 7.7.13 to 7.8.0.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/compare/@microsoft/api-extractor_v7.7.13...@microsoft/api-extractor_v7.8.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump rollup from 2.7.6 to 2.9.1
dependabot-preview[bot] [Mon, 11 May 2020 09:10:32 +0000 (09:10 +0000)] 
build(deps-dev): bump rollup from 2.7.6 to 2.9.1

Bumps [rollup](https://github.com/rollup/rollup) from 2.7.6 to 2.9.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/v2.7.6...v2.9.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump ts-loader from 7.0.2 to 7.0.3
dependabot-preview[bot] [Mon, 11 May 2020 09:11:25 +0000 (09:11 +0000)] 
build(deps-dev): bump ts-loader from 7.0.2 to 7.0.3

Bumps [ts-loader](https://github.com/TypeStrong/ts-loader) from 7.0.2 to 7.0.3.
- [Release notes](https://github.com/TypeStrong/ts-loader/releases)
- [Changelog](https://github.com/TypeStrong/ts-loader/blob/master/CHANGELOG.md)
- [Commits](https://github.com/TypeStrong/ts-loader/compare/v7.0.2...v7.0.3)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump webpack-dev-server from 3.10.3 to 3.11.0
dependabot-preview[bot] [Mon, 11 May 2020 09:08:32 +0000 (09:08 +0000)] 
build(deps-dev): bump webpack-dev-server from 3.10.3 to 3.11.0

Bumps [webpack-dev-server](https://github.com/webpack/webpack-dev-server) from 3.10.3 to 3.11.0.
- [Release notes](https://github.com/webpack/webpack-dev-server/releases)
- [Changelog](https://github.com/webpack/webpack-dev-server/blob/master/CHANGELOG.md)
- [Commits](https://github.com/webpack/webpack-dev-server/compare/v3.10.3...v3.11.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump conventional-changelog-cli from 2.0.31 to 2.0.34
dependabot-preview[bot] [Mon, 11 May 2020 09:07:50 +0000 (09:07 +0000)] 
build(deps-dev): bump conventional-changelog-cli from 2.0.31 to 2.0.34

Bumps [conventional-changelog-cli](https://github.com/conventional-changelog/conventional-changelog) from 2.0.31 to 2.0.34.
- [Release notes](https://github.com/conventional-changelog/conventional-changelog/releases)
- [Commits](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-cli@2.0.31...conventional-changelog-cli@2.0.34)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agochore: better error messages
Eduardo San Martin Morote [Mon, 11 May 2020 07:17:55 +0000 (09:17 +0200)] 
chore: better error messages

5 years agoci: longer transition duration
Eduardo San Martin Morote [Mon, 11 May 2020 07:12:12 +0000 (09:12 +0200)] 
ci: longer transition duration

[skip ci]

5 years agochore: up deps
Eduardo San Martin Morote [Mon, 11 May 2020 07:09:05 +0000 (09:09 +0200)] 
chore: up deps

5 years agorefactor(types): rename NavigationGuardCallback to NavigationGuardNext
Eduardo San Martin Morote [Mon, 11 May 2020 07:08:56 +0000 (09:08 +0200)] 
refactor(types): rename NavigationGuardCallback to NavigationGuardNext

5 years agofeat(types): export NavigationGuardNext (#229)
Cédric Exbrayat [Mon, 11 May 2020 07:05:54 +0000 (09:05 +0200)] 
feat(types): export NavigationGuardNext (#229)

5 years agofix(scroll): change scrollRestoration if scrollBehavior is provided
Eduardo San Martin Morote [Sun, 10 May 2020 11:50:44 +0000 (13:50 +0200)] 
fix(scroll): change scrollRestoration if scrollBehavior is provided

5 years agofix: match base in a non-sensitive way
Eduardo San Martin Morote [Sun, 10 May 2020 11:41:47 +0000 (13:41 +0200)] 
fix: match base in a non-sensitive way

5 years agotest(e2e): fix transition e2e specs by increasing css timing (#227)
Jessica Sachs [Sun, 10 May 2020 11:47:42 +0000 (07:47 -0400)] 
test(e2e): fix transition e2e specs by increasing css timing (#227)

5 years agofeat: explicit injection symbols in dev mode (#228)
Cédric Exbrayat [Sat, 9 May 2020 08:18:31 +0000 (10:18 +0200)] 
feat: explicit injection symbols in dev mode (#228)

5 years agoci: store e2e artifacts
Eduardo San Martin Morote [Fri, 8 May 2020 22:16:12 +0000 (00:16 +0200)] 
ci: store e2e artifacts

5 years agofeat: support jsx and tsx for RouterLink and RouterView
Eduardo San Martin Morote [Fri, 8 May 2020 10:09:31 +0000 (12:09 +0200)] 
feat: support jsx and tsx for RouterLink and RouterView

Close #226

5 years agofeat(router): allow functional components for routes
Eduardo San Martin Morote [Thu, 7 May 2020 13:59:26 +0000 (15:59 +0200)] 
feat(router): allow functional components for routes

5 years agofix(router): allow multiple router instance
Eduardo San Martin Morote [Thu, 7 May 2020 13:28:55 +0000 (15:28 +0200)] 
fix(router): allow multiple router instance

5 years agochore: use headless for tests
Eduardo San Martin Morote [Thu, 7 May 2020 10:14:16 +0000 (12:14 +0200)] 
chore: use headless for tests

5 years agotest(e2e): add todos
Eduardo San Martin Morote [Thu, 7 May 2020 10:04:51 +0000 (12:04 +0200)] 
test(e2e): add todos

5 years agofix(router): unique first navigation with multi app
Eduardo San Martin Morote [Thu, 7 May 2020 09:58:19 +0000 (11:58 +0200)] 
fix(router): unique first navigation with multi app

5 years agotest(e2e): multi app spec
Eduardo San Martin Morote [Thu, 7 May 2020 09:46:16 +0000 (11:46 +0200)] 
test(e2e): multi app spec

5 years agotest(e2e): add multi app
Eduardo San Martin Morote [Thu, 7 May 2020 09:31:18 +0000 (11:31 +0200)] 
test(e2e): add multi app

5 years agofeat(warn): warn if next was called multiple times
Eduardo San Martin Morote [Wed, 6 May 2020 09:29:38 +0000 (11:29 +0200)] 
feat(warn): warn if next was called multiple times

5 years agofeat(scroll): scroll to the same location like regular links
Eduardo San Martin Morote [Tue, 5 May 2020 09:42:56 +0000 (11:42 +0200)] 
feat(scroll): scroll to the same location like regular links

5 years agodocs: add migration notes
Eduardo San Martin Morote [Tue, 5 May 2020 07:43:59 +0000 (09:43 +0200)] 
docs: add migration notes

5 years agorelease: v4.0.0-alpha.10 v4.0.0-alpha.10
Eduardo San Martin Morote [Tue, 5 May 2020 07:32:21 +0000 (09:32 +0200)] 
release: v4.0.0-alpha.10

5 years agochore: regenerate yarn.lock
Eduardo San Martin Morote [Tue, 5 May 2020 07:27:10 +0000 (09:27 +0200)] 
chore: regenerate yarn.lock

5 years agochore: up jest
Eduardo San Martin Morote [Tue, 5 May 2020 07:22:53 +0000 (09:22 +0200)] 
chore: up jest

5 years agochore: up vue
Eduardo San Martin Morote [Tue, 5 May 2020 07:20:02 +0000 (09:20 +0200)] 
chore: up vue

5 years agochore: up minors
Eduardo San Martin Morote [Tue, 5 May 2020 07:17:43 +0000 (09:17 +0200)] 
chore: up minors

5 years agorefactor: use named exports
meteorlxy [Mon, 4 May 2020 13:24:46 +0000 (15:24 +0200)] 
refactor: use named exports

Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
5 years agobuild(deps-dev): bump @microsoft/api-documenter from 7.7.19 to 7.7.20
dependabot-preview[bot] [Mon, 4 May 2020 10:02:05 +0000 (10:02 +0000)] 
build(deps-dev): bump @microsoft/api-documenter from 7.7.19 to 7.7.20

Bumps [@microsoft/api-documenter](https://github.com/microsoft/rushstack) from 7.7.19 to 7.7.20.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/compare/@microsoft/api-documenter_v7.7.19...@microsoft/api-documenter_v7.7.20)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump jest from 25.4.0 to 25.5.4
dependabot-preview[bot] [Mon, 4 May 2020 09:53:17 +0000 (09:53 +0000)] 
build(deps-dev): bump jest from 25.4.0 to 25.5.4

Bumps [jest](https://github.com/facebook/jest) from 25.4.0 to 25.5.4.
- [Release notes](https://github.com/facebook/jest/releases)
- [Changelog](https://github.com/facebook/jest/blob/master/CHANGELOG.md)
- [Commits](https://github.com/facebook/jest/compare/v25.4.0...v25.5.4)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump ts-loader from 7.0.1 to 7.0.2
dependabot-preview[bot] [Mon, 4 May 2020 09:35:54 +0000 (09:35 +0000)] 
build(deps-dev): bump ts-loader from 7.0.1 to 7.0.2

Bumps [ts-loader](https://github.com/TypeStrong/ts-loader) from 7.0.1 to 7.0.2.
- [Release notes](https://github.com/TypeStrong/ts-loader/releases)
- [Changelog](https://github.com/TypeStrong/ts-loader/blob/master/CHANGELOG.md)
- [Commits](https://github.com/TypeStrong/ts-loader/compare/v7.0.1...v7.0.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump style-loader from 1.2.0 to 1.2.1
dependabot-preview[bot] [Mon, 4 May 2020 09:36:05 +0000 (09:36 +0000)] 
build(deps-dev): bump style-loader from 1.2.0 to 1.2.1

Bumps [style-loader](https://github.com/webpack-contrib/style-loader) from 1.2.0 to 1.2.1.
- [Release notes](https://github.com/webpack-contrib/style-loader/releases)
- [Changelog](https://github.com/webpack-contrib/style-loader/blob/master/CHANGELOG.md)
- [Commits](https://github.com/webpack-contrib/style-loader/compare/v1.2.0...v1.2.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump rollup from 2.7.3 to 2.7.6
dependabot-preview[bot] [Mon, 4 May 2020 09:32:28 +0000 (09:32 +0000)] 
build(deps-dev): bump rollup from 2.7.3 to 2.7.6

Bumps [rollup](https://github.com/rollup/rollup) from 2.7.3 to 2.7.6.
- [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/v2.7.3...v2.7.6)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
5 years agobuild(deps-dev): bump html-webpack-plugin from 4.2.0 to 4.3.0
dependabot-preview[bot] [Mon, 4 May 2020 09:30:50 +0000 (09:30 +0000)] 
build(deps-dev): bump html-webpack-plugin from 4.2.0 to 4.3.0

Bumps [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) from 4.2.0 to 4.3.0.
- [Release notes](https://github.com/jantimon/html-webpack-plugin/releases)
- [Changelog](https://github.com/jantimon/html-webpack-plugin/blob/master/CHANGELOG.md)
- [Commits](https://github.com/jantimon/html-webpack-plugin/compare/v4.2.0...v4.3.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>