Skip to content

Commit c593680

Browse files
authored
3.15 work (#235)
* 3.15 work * changelog for ext loading issues
1 parent 287aaa2 commit c593680

File tree

85 files changed

+476
-8531
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+476
-8531
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,30 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
2424

2525
---
2626

27+
## [3.15.0] - (08-18-2023)
28+
29+
### Added
30+
31+
- added/updated several diagnostic rules
32+
33+
### Fixed
34+
35+
- fixed iapp template bug that was commenting out template params
36+
- fixed bug with corkscrew erroring on ucs (was expecting qkview stats)
37+
- [BUG] no feedback when importing single object in device import #202
38+
- [BUG] password focus away issues #228
39+
- v.3.14 keytar.node is not a valid Win32 application #232
40+
- Unable to add BIG-IP after upgrade to VSCode 1.83 #230
41+
- September 2023 (version 1.83) fails to load extension #229
42+
- [BUG] Error running command f5.addHost: command 'f5.addHost' not found. #206
43+
44+
### Changed
45+
46+
- Continue to remove old/unused items
47+
- removed api/swagger parsers/validators
48+
49+
---
50+
2751
## [3.14.0] - (07-19-2023)
2852

2953
### Added

diagRules/tmosXcRules.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@
100100
{
101101
"code": "d633",
102102
"severity": "Error",
103-
"title": "iRule stream profile detected",
104-
"message": "F5 TMOS stream profile functionality not supported",
105-
"regex": "stream::"
103+
"title": "XC - iRule stream profile detected",
104+
"message": "F5 TMOS stream profile functionality not supported --- https://my.f5.com/manage/s/article/K39394712",
105+
"regex": "STREAM::(enable|disable|expression)"
106106
},
107107
{
108108
"code": "05ab",
@@ -134,31 +134,31 @@
134134
},
135135
{
136136
"code": "659b",
137-
"severity": "Hint",
138-
"title": "",
139-
"message": "",
140-
"regex": ""
137+
"severity": "Error",
138+
"title": "iRule contains subtables",
139+
"message": "iRule subtables are not supported in XC",
140+
"regex": " -subtable "
141141
},
142142
{
143143
"code": "b432",
144-
"severity": "Hint",
145-
"title": "",
146-
"message": "",
147-
"regex": ""
144+
"severity": "Warning",
145+
"title": "XC - iRule HTTP response",
146+
"message": "custome HTTP response not supported in XC",
147+
"regex": "HTTP::respond"
148148
},
149149
{
150150
"code": "c5dc",
151-
"severity": "Hint",
152-
"title": "",
153-
"message": "",
154-
"regex": ""
151+
"severity": "Error",
152+
"title": "XC - iRule TCP collect/payload/release",
153+
"message": "tcp payload manipulation not supported in XC",
154+
"regex": "TCP::(collect|payload|release)"
155155
},
156156
{
157157
"code": "86d2",
158-
"severity": "Hint",
159-
"title": "",
160-
"message": "",
161-
"regex": ""
158+
"severity": "Error",
159+
"title": "XC - iRule binary scan",
160+
"message": "binary data scan not supported in XC",
161+
"regex": "binary scan "
162162
},
163163
{
164164
"code": "f4a6",

docs/device_importing.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,17 @@ admin@1.1.1.1
4141
]
4242
```
4343

44-
### json object import structure
44+
### single json object import structure
45+
46+
```json
47+
{
48+
"device": "dude@2.1.3.4",
49+
"password": "coolness",
50+
"provider": "tmos"
51+
}
52+
```
53+
54+
### json object list import structure
4555

4656
```json
4757
[

0 commit comments

Comments
 (0)