Skip to content

Commit

Permalink
3.15 work (#235)
Browse files Browse the repository at this point in the history
* 3.15 work

* changelog for ext loading issues
  • Loading branch information
DumpySquare authored Oct 26, 2023
1 parent 287aaa2 commit c593680
Show file tree
Hide file tree
Showing 85 changed files with 476 additions and 8,531 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,30 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how

---

## [3.15.0] - (08-18-2023)

### Added

- added/updated several diagnostic rules

### Fixed

- fixed iapp template bug that was commenting out template params
- fixed bug with corkscrew erroring on ucs (was expecting qkview stats)
- [BUG] no feedback when importing single object in device import #202
- [BUG] password focus away issues #228
- v.3.14 keytar.node is not a valid Win32 application #232
- Unable to add BIG-IP after upgrade to VSCode 1.83 #230
- September 2023 (version 1.83) fails to load extension #229
- [BUG] Error running command f5.addHost: command 'f5.addHost' not found. #206

### Changed

- Continue to remove old/unused items
- removed api/swagger parsers/validators

---

## [3.14.0] - (07-19-2023)

### Added
Expand Down
38 changes: 19 additions & 19 deletions diagRules/tmosXcRules.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@
{
"code": "d633",
"severity": "Error",
"title": "iRule stream profile detected",
"message": "F5 TMOS stream profile functionality not supported",
"regex": "stream::"
"title": "XC - iRule stream profile detected",
"message": "F5 TMOS stream profile functionality not supported --- https://my.f5.com/manage/s/article/K39394712",
"regex": "STREAM::(enable|disable|expression)"
},
{
"code": "05ab",
Expand Down Expand Up @@ -134,31 +134,31 @@
},
{
"code": "659b",
"severity": "Hint",
"title": "",
"message": "",
"regex": ""
"severity": "Error",
"title": "iRule contains subtables",
"message": "iRule subtables are not supported in XC",
"regex": " -subtable "
},
{
"code": "b432",
"severity": "Hint",
"title": "",
"message": "",
"regex": ""
"severity": "Warning",
"title": "XC - iRule HTTP response",
"message": "custome HTTP response not supported in XC",
"regex": "HTTP::respond"
},
{
"code": "c5dc",
"severity": "Hint",
"title": "",
"message": "",
"regex": ""
"severity": "Error",
"title": "XC - iRule TCP collect/payload/release",
"message": "tcp payload manipulation not supported in XC",
"regex": "TCP::(collect|payload|release)"
},
{
"code": "86d2",
"severity": "Hint",
"title": "",
"message": "",
"regex": ""
"severity": "Error",
"title": "XC - iRule binary scan",
"message": "binary data scan not supported in XC",
"regex": "binary scan "
},
{
"code": "f4a6",
Expand Down
12 changes: 11 additions & 1 deletion docs/device_importing.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,17 @@ [email protected]
]
```

### json object import structure
### single json object import structure

```json
{
"device": "[email protected]",
"password": "coolness",
"provider": "tmos"
}
```

### json object list import structure

```json
[
Expand Down
Loading

0 comments on commit c593680

Please sign in to comment.