Skip to content

Commit a81e3e7

Browse files
authored
Merge pull request #261 from f5devcentral/3.18.0
fixs
2 parents ecbbd55 + 33876c2 commit a81e3e7

File tree

4 files changed

+18
-15
lines changed

4 files changed

+18
-15
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches: [main]
66

77
env:
8-
NODE_VERSION: 20
8+
NODE_VERSION: 22
99

1010
jobs:
1111

@@ -16,8 +16,8 @@ jobs:
1616
os: [macos-latest, windows-latest, ubuntu-latest]
1717
name: Test on ${{ matrix.os }}
1818
steps:
19-
- uses: actions/checkout@v3
20-
- uses: actions/setup-node@v3
19+
- uses: actions/checkout@v4
20+
- uses: actions/setup-node@v4
2121
with:
2222
node-version: ${{ env.NODE_VERSION }}
2323

@@ -37,10 +37,10 @@ jobs:
3737
steps:
3838

3939
- name: Checkout code
40-
uses: actions/checkout@v3
40+
uses: actions/checkout@v4
4141

4242
- name: setup node.js ${{ env.NODE_VERSION }}
43-
uses: actions/setup-node@v3
43+
uses: actions/setup-node@v4
4444
with:
4545
node-version: ${{ env.NODE_VERSION }}
4646

@@ -79,7 +79,7 @@ jobs:
7979
path: ./CHANGELOG.md
8080

8181
- name: create upload artifacts
82-
uses: actions/upload-artifact@v3
82+
uses: actions/upload-artifact@v4
8383
with:
8484
path: ${{ env.VSIX_PATH }}
8585
name: ${{ env.VSIX_NAME }}

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
3232
- updated atc versions
3333
- fixed circular json log bug
3434
- [bug] atc versions not displaying in big-ip view #259
35+
- updated test to run node 22.14 (lts)
36+
- updated github actions to run latest v4 (v3 depricated)
37+
- updated diagnostics from GlenWillms, pull #258
3538

3639
---
3740

diagRules/tmosXcRules.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -183,17 +183,17 @@
183183
},
184184
{
185185
"code": "fcd6",
186-
"severity": "Hint",
187-
"title": "",
188-
"message": "",
189-
"regex": ""
186+
"severity": "Error",
187+
"title": "HTTP Monitor with Username detected",
188+
"message": "Authentication is not supported for HTTP monitors",
189+
"regex": "username"
190190
},
191191
{
192192
"code": "6944",
193-
"severity": "Hint",
194-
"title": "",
195-
"message": "",
196-
"regex": ""
193+
"severity": "Warning",
194+
"title": "Persistence in XC is limit to a single site RE or CE",
195+
"message": "Cookie or Source IP persistence is limited to a single site RE or CE and will be re-evaluated per site.",
196+
"regex": "persistence"
197197
},
198198
{
199199
"code": "78e9",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "The F5 Extension",
44
"description": "Supercharge your F5 automation development",
55
"publisher": "F5DevCentral",
6-
"version": "3.18.0",
6+
"version": "3.18.1",
77
"keywords": [
88
"F5",
99
"F5Networks",

0 commit comments

Comments
 (0)