Skip to content

Commit

Permalink
#206 tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
DumpySquare committed Jul 8, 2023
1 parent 95f4875 commit 9afb87c
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 50 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how

- [RFE] Config Explorer doesn't include cipher groups with the applications #213

---

## [3.13.2] - (07-08-2023)

### Fixed

- [BUG] Error running command f5.addHost: command 'f5.addHost' not found. #206 (continued...)
- changed activation event from "*" to "onStartupFinished"
- github actions tests tweaks
- npm audit fix for vulnerabilities


---

## [3.13.1] - (06-21-2023)
Expand Down
78 changes: 39 additions & 39 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "The F5 Extension",
"description": "Supercharge your F5 automation development",
"publisher": "F5DevCentral",
"version": "3.13.1",
"version": "3.13.2",
"keywords": [
"F5",
"F5Networks",
Expand Down Expand Up @@ -97,7 +97,7 @@
]
},
"activationEvents": [
"*"
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
Expand Down
10 changes: 5 additions & 5 deletions src/test/suite/next_oai_validation.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ suite('NEXT CM OpenApi Schema Validation', () => {
};


const req: OpenApiRequest = {
method: "POST",
route: "/api/device/v1/inventory",
body: reqBody
};
// const req: OpenApiRequest = {
// method: "POST",
// route: "/api/device/v1/inventory",
// body: reqBody
// };

// const openApiValidator = new OpenApiValidator({
// apiSpec,
Expand Down
5 changes: 1 addition & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,5 @@
},
"include": [
"src/**/*"
],
"exclude": [
"src/test/**/*"
]
]
}

0 comments on commit 9afb87c

Please sign in to comment.