diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000000..f2eb346c7b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,36 @@ + + + +# Table of Contents + +- [1.0.0](#100) + +## 1.0.0 + +This release is mainly to build some basic panels and resolve License issue. + +### Core +- Dashboard initial. [#1](https://github.com/apache/incubator-apisix-dashboard/pull/1) +- Resolve licence issues. +- Remove unused files from the Dashboard boilerplate. +- Support panel to list, create and modify Route, Consumer, Service, SSL and Upstream. +- Support custom configuration for Plugin dialog. + +[Back to TOC](#table-of-contents) diff --git a/NOTICE b/NOTICE index 1894fe089c..f0a448373f 100644 --- a/NOTICE +++ b/NOTICE @@ -1,5 +1,5 @@ Apache APISIX Dashboard (incubating) -Copyright 2019 The Apache Software Foundation +Copyright 2020 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/). diff --git a/package.json b/package.json index 2972be5daa..b769c33241 100644 --- a/package.json +++ b/package.json @@ -50,7 +50,6 @@ "sass": "^1.21.0", "sass-loader": "^7.1.0", "style-resources-loader": "^1.2.1", - "ts-node-dev": "^1.0.0-pre.40", "typescript": "3.5.2", "vue-cli-plugin-element": "^1.0.1", "vue-cli-plugin-style-resources-loader": "^0.1.3", diff --git a/src/components/HeaderSearch/index.vue b/src/components/HeaderSearch/index.vue index df031434f7..c1a2428574 100644 --- a/src/components/HeaderSearch/index.vue +++ b/src/components/HeaderSearch/index.vue @@ -73,7 +73,7 @@ export default class extends Vue { private show = false private options: RouteConfig[] = [] private searchPool: RouteConfig[] = [] - private fuse?: Fuse + private fuse?: Fuse> get routes() { return PermissionModule.routes @@ -194,7 +194,7 @@ export default class extends Vue { private querySearch(query: string) { if (query !== '') { if (this.fuse) { - this.options = this.fuse.search(query) + this.options = this.fuse.search(query) as any } } else { this.options = [] diff --git a/src/views/login/index.vue b/src/views/login/index.vue index a4f4d53cc3..dc79540e36 100644 --- a/src/views/login/index.vue +++ b/src/views/login/index.vue @@ -102,7 +102,7 @@