Skip to content

Commit

Permalink
Merge remote-branch 'origin/v0.9.0' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
DumpySquare committed Nov 18, 2021
2 parents 625cfbe + 47a592c commit 73888dc
Show file tree
Hide file tree
Showing 104 changed files with 19,050 additions and 5,441 deletions.
10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Node modules
node_modules/
package-lock.json
# Package build directory
# dist/
# Coverage directory
Expand All @@ -18,4 +19,11 @@ tmp_*
/private/
settings.json
*.ucs
*.qkview
*.qkview
# exclude the xml to json stats output
*.xml.json
# temp directory for testing files
tmp/
package-lock.json
# exclude package files
*.tgz
8 changes: 6 additions & 2 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Source directory
src/
# Tests directory
#tests/
tests/
# Coverage directory
coverage/
# Code Documentation directory
Expand All @@ -15,4 +15,8 @@ docs/
# CI File
.gitlab-ci.yml
# vscode project configuration settings
.vscode
.vscode
# ignore archive building temp dir
/tmp
# ignore existing packages
*.tgz
35 changes: 27 additions & 8 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,12 @@
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/src/tests/json_objects.test.ts",
"${workspaceFolder}/tests/json_objects.test.ts",
"--attach",
],
"internalConsoleOptions": "neverOpen",
"autoAttachChildProcesses": true,
"console": "integratedTerminal",
"protocol": "inspector",
},
{
Expand All @@ -31,7 +34,7 @@
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/src/tests/pools.test.ts",
"${workspaceFolder}/tests/pools.test.ts",
],
"internalConsoleOptions": "neverOpen",
"protocol": "inspector",
Expand All @@ -47,7 +50,7 @@
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/src/tests/outside_files.tests.ts",
"${workspaceFolder}/tests/outside_files.tests.ts",
],
"internalConsoleOptions": "neverOpen",
"protocol": "inspector",
Expand All @@ -63,7 +66,7 @@
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/src/tests/devCloud_config.tests.ts",
"${workspaceFolder}/tests/devCloud_config.tests.ts",
],
"internalConsoleOptions": "neverOpen",
"protocol": "inspector",
Expand All @@ -79,7 +82,23 @@
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/src/tests/devCloud_ucs.tests.ts",
"${workspaceFolder}/tests/devCloud_ucs.tests.ts",
],
"internalConsoleOptions": "neverOpen",
"protocol": "inspector",
},
{
"type": "node",
"request": "launch",
"name": "devCloud qkview tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"-r",
"ts-node/register",
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/tests/devCloud_qkview.tests.ts",
],
"internalConsoleOptions": "neverOpen",
"protocol": "inspector",
Expand Down Expand Up @@ -111,7 +130,7 @@
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/src/tests/unPacker.tests.ts",
"${workspaceFolder}/tests/unPacker.tests.ts",
],
"internalConsoleOptions": "neverOpen",
"protocol": "inspector",
Expand All @@ -127,7 +146,7 @@
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/src/tests/tmosParser.tests.ts",
"${workspaceFolder}/tests/tmosParser.tests.ts",
],
"internalConsoleOptions": "neverOpen",
"protocol": "inspector",
Expand All @@ -143,7 +162,7 @@
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/src/tests/ALL.tests.ts",
"${workspaceFolder}/tests/ALL.tests.ts",
],
"internalConsoleOptions": "neverOpen",
"protocol": "inspector",
Expand Down
8 changes: 7 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,13 @@
"titleBar.activeBackground": "#013c34",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#013c3499",
"titleBar.inactiveForeground": "#e7e7e799"
"titleBar.inactiveForeground": "#e7e7e799",
"editorGroup.border": "#026e5f",
"panel.border": "#026e5f",
"sash.hoverBorder": "#026e5f",
"sideBar.border": "#026e5f",
"statusBarItem.remoteBackground": "#013c34",
"statusBarItem.remoteForeground": "#e7e7e7"
},
"peacock.remoteColor": "#013c34"
}
34 changes: 33 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,39 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how

---

## [0.8.0] - (02-07-2021)
## [0.9.0] - (10.31.2021)

- updated base config extraction to pull all DO classes supported in ACC
- fixed parsing error when no virtual servers
- fixed cli (was not working with new async parser)
- added cli options
- All output is in json format now
- includes command processing logs
- added switches to exclude output for:
- no_sources
- no_file_store
- no_command_logs
- no_conversion_logs
- started creating tests archive generator
- started looking into adding an option for exploring archives with passphrase

---

## [0.8.0] - (02-25-2021)

### Added

- certificate/key extraction

### Modified

- Core parsing/extraction process is now asyncronous
- emits config and stats files during processing
- Once config files are done processing, all other files are processed into the config tree

---

## [0.7.0] - (01-25-2021)

### Modified

Expand Down
Loading

0 comments on commit 73888dc

Please sign in to comment.