Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
881cbdb
Initial work at adding mapepire
worksofliam Oct 21, 2025
46ddb55
Working connection
worksofliam Oct 21, 2025
6b5ef58
Get job log from run command
worksofliam Oct 21, 2025
eb14250
Remove all for bit data
worksofliam Oct 21, 2025
fac70fd
Always check mapepire first
worksofliam Oct 21, 2025
897d146
Fix mapepire running in tests
worksofliam Oct 21, 2025
db3c41d
Queue system
worksofliam Oct 21, 2025
8e210a4
Fixes for test cases
worksofliam Oct 22, 2025
a5ea4da
Performance gains in startup
worksofliam Oct 22, 2025
b41aa76
Add comments
worksofliam Oct 22, 2025
e08cd5f
Clean up some CCSID logic
worksofliam Oct 26, 2025
427ed62
Add server file to build
worksofliam Oct 26, 2025
8eef92b
Fix issues with test cases and row count returned
worksofliam Oct 26, 2025
eeab0b0
Re-add fake binding support to work around binding parameter issue
worksofliam Oct 28, 2025
491e4ee
Speed up test cases a tiny bit
worksofliam Oct 28, 2025
6f4716f
Simple log
worksofliam Oct 29, 2025
de730ce
Revert back
worksofliam Oct 29, 2025
556b32c
Fix broken module test
worksofliam Oct 29, 2025
7ac9eb2
Fix to encoding tests
worksofliam Oct 29, 2025
6f4cc85
Initial work at adding mapepire
worksofliam Oct 21, 2025
3445208
Working connection
worksofliam Oct 21, 2025
5c7a41f
Get job log from run command
worksofliam Oct 21, 2025
deca79e
Remove all for bit data
worksofliam Oct 21, 2025
776f445
Always check mapepire first
worksofliam Oct 21, 2025
9d1cf7c
Fix mapepire running in tests
worksofliam Oct 21, 2025
7985345
Queue system
worksofliam Oct 21, 2025
63dfba6
Fixes for test cases
worksofliam Oct 22, 2025
f9598b0
Performance gains in startup
worksofliam Oct 22, 2025
708cddd
Add comments
worksofliam Oct 22, 2025
8995099
Clean up some CCSID logic
worksofliam Oct 26, 2025
c004dfe
Add server file to build
worksofliam Oct 26, 2025
dcbe25e
Fix issues with test cases and row count returned
worksofliam Oct 26, 2025
b1ea99a
Re-add fake binding support to work around binding parameter issue
worksofliam Oct 28, 2025
39250c2
Speed up test cases a tiny bit
worksofliam Oct 28, 2025
c8b1e3e
Simple log
worksofliam Oct 29, 2025
9659967
Revert back
worksofliam Oct 29, 2025
096bc7a
Fix broken module test
worksofliam Oct 29, 2025
1a8a20b
Fix to encoding tests
worksofliam Oct 29, 2025
d1920cd
Update to allow mapepire reinstall
julesyan Dec 2, 2025
5b3dadf
Fix issues during merge
julesyan Dec 2, 2025
53f1b80
Fix tests that are now invalid
julesyan Dec 2, 2025
7d6670c
Revert "Fix tests that are now invalid"
julesyan Dec 2, 2025
15a8735
Fix two test cases for new mapepire changes
julesyan Dec 3, 2025
5ceac8f
Fix tests to stop manually controlling CCSID
julesyan Dec 4, 2025
f07c9bc
Merge branch 'mapepire-dependency' into feature/mapepire_internals
julesyan Dec 4, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
266 changes: 266 additions & 0 deletions package-lock.json

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

7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3009,12 +3009,14 @@
"test": "vitest run",
"package": "vsce package --allow-package-all-secrets",
"build": "rm -rf dist && tsc",
"vscode:prepublish": "webpack --mode production",
"vscode:prepublish": "npm run dsc && webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"typings": "npx -p typescript tsc ./src/extension.ts --declaration --allowJs --emitDeclarationOnly --outDir types --esModuleInterop -t es2022 --moduleResolution node --resolveJsonModule"
"typings": "npx -p typescript tsc ./src/extension.ts --declaration --allowJs --emitDeclarationOnly --outDir types --esModuleInterop -t es2022 --moduleResolution node --resolveJsonModule",
"dsc": "npx tsx src/dsc"
},
"devDependencies": {
"@octokit/rest": "^21.1.1",
"@types/adm-zip": "^0.5.5",
"@types/glob": "^7.1.3",
"@types/node": "^18.0.0",
Expand All @@ -3036,6 +3038,7 @@
},
"dependencies": {
"@ibm/ibmi-eventf-parser": "^1.0.2",
"@ibm/mapepire-js": "^0.6.0",
"@vscode-elements/elements": "^1.9.1",
"adm-zip": "^0.5.14",
"crc-32": "https://cdn.sheetjs.com/crc-32-latest/crc-32-latest.tgz",
Expand Down
Loading
Loading