Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Commit

Permalink
5.5.0 Release
Browse files Browse the repository at this point in the history
Signed-off-by: Slavomir Mazur <[email protected]>
  • Loading branch information
SlavomirMazurPantheon committed Aug 16, 2022
1 parent 37eb7b7 commit 38709a6
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

* ##### vm.m.p - 2022-MM-DD

* ##### v5.5.0 - 2022-08-16

* Check if regex is valid if using regex search [#97](https://github.com/YangCatalog/yangcatalog-ui/issues/97)
* Update to headers after yanglint v2.0.231 update [deployment #146](https://github.com/YangCatalog/deployment/issues/146)
* Bugfix: yangvalidator API docs component displaying [#94](https://github.com/YangCatalog/yangcatalog-ui/issues/94)

* ##### v5.4.0 - 2022-07-08

* IETF navigation tab added to YANG Modules Stats [deployment #139](https://github.com/YangCatalog/deployment/issues/139)
Expand Down
5 changes: 3 additions & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "yangcatalog-ui:build"
"browserTarget": "yangcatalog-ui:build",
"proxyConfig": "src/proxy.conf.json"
},
"configurations": {
"production": {
Expand Down Expand Up @@ -166,4 +167,4 @@
"cli": {
"analytics": false
}
}
}
2 changes: 1 addition & 1 deletion src/app/features/yang-search/yang-search.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export class YangSearchComponent implements OnInit, OnDestroy, AfterViewInit {

private initForm() {
this.form = this.fb.group({
searchTerm: ['', [Validators.required, this.ycValidations.regexpValidation()]],
searchTerm: ['', [Validators.minLength(3), this.ycValidations.regexpValidation()]],
searchOptions: this.fb.group({
caseSensitive: [false],
regularExpression: [false],
Expand Down
4 changes: 4 additions & 0 deletions src/proxy.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,9 @@
"/private/private.json": {
"target": "http://127.0.0.1/",
"secure": false
},
"/private/stats/AllYANGPageMain.json": {
"target": "http://127.0.0.1/",
"secure": false
}
}

0 comments on commit 38709a6

Please sign in to comment.