Skip to content

feat(node): support node v16 #741

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 43 commits into from
Nov 5, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
e944f5c
chore(dependencies): update dependencies to latest as of 2021/09/16
texastony Sep 16, 2021
b74abd7
chore(dependencies): address breaking changes from typescript upgrade
texastony Sep 17, 2021
d39663c
style(integration-browser): correct for prettier
texastony Sep 17, 2021
bbbbd74
fix(kms-keyring): introduce ErrorPlus to handle catch unknown
texastony Sep 17, 2021
cb1de57
fix(kms-keyring): apply ErrorPlus to mrk_keyrings
texastony Sep 18, 2021
db02665
refactor(integration-node): await command from yargs addresses TS2339
texastony Sep 18, 2021
b7fbd96
style(raw-rsa-keyring-browser): specifiy return of exported function …
texastony Sep 18, 2021
f637165
fix(package-lock): package-lock was generated w/ npm6, needed 7
texastony Sep 20, 2021
4f9ddd8
docs(raw-rsa-keyring-browser): document TS2769 override issue
texastony Sep 21, 2021
72fdfe8
refactor(material-management-node): encapsulate crypto's sign(er) and…
texastony Oct 27, 2021
584839b
chore(merge): pull v3.0.3 onto chore_update_deps
texastony Oct 28, 2021
9b4e48d
refactor(material-management-node): encapsulate crypto's sign(er) & v…
texastony Oct 28, 2021
df3ced3
docs(material-management-node): add liscense to types
texastony Oct 28, 2021
7fb827d
refactor(material-management): ErrorPlus -> Catchable
texastony Oct 28, 2021
348470c
refactor(integration-browser): use needs to handle non-Error
texastony Oct 28, 2021
458d6d7
ci(node16): manually install node16 and test
texastony Oct 29, 2021
b0213ba
ci(node16): manually install node16 and test
texastony Oct 29, 2021
34b6538
ci(node16): manually install node16 and test
texastony Oct 29, 2021
57dec1c
ci(node16): manually install node16 and test
texastony Oct 29, 2021
2ebda11
ci(node16): manually install node16 and test
texastony Oct 29, 2021
4345982
ci(node16): manually install node16 and test
texastony Oct 29, 2021
43fb69d
ci(node16): manually install node16 and test
texastony Oct 29, 2021
e4be34e
ci(node16): manually install node16 and test
texastony Oct 29, 2021
f33e1a2
ci(node16): manually install node16 and test
texastony Oct 29, 2021
1cbc7f4
ci(node16): manually install node16 and test
texastony Oct 29, 2021
0aeb35f
ci(node16): manually install node16 and test
texastony Oct 29, 2021
84a7a7d
ci(node16): manually install node16 and test
texastony Oct 29, 2021
7652a2d
ci(node16): manually install node16 and test
texastony Oct 29, 2021
b1d5237
ci(node16): manually install node16 and test
texastony Oct 29, 2021
d992fa9
ci(node16): manually install node16 and test
texastony Oct 29, 2021
8285b86
ci(node16): manually install node16 and test
texastony Oct 29, 2021
18bd0a8
ci(node16): run integration test vectors
texastony Oct 29, 2021
9753db5
ci(node16): run integration test vectors
texastony Oct 30, 2021
d55d85e
ci(node16): run integration test vectors
texastony Oct 30, 2021
d3d857e
ci(node14): temporarily remove node14 vectors
texastony Oct 30, 2021
61668bb
revert: "ci(node14): temporarily remove node14 vectors"
texastony Nov 1, 2021
00c9036
ci: force new ci run
texastony Nov 1, 2021
4f1c85d
ci: force new ci run
texastony Nov 1, 2021
20bb6e8
ci(buildspec): use aws/codebuild/standard:5.0
texastony Nov 2, 2021
525ba2e
fix: importKey overload issue
seebees Nov 5, 2021
f37df2f
ci(CodeBuild): use n
texastony Nov 5, 2021
8c447e7
refactor(material-management): move `NotSupported` to error.ts
texastony Nov 5, 2021
d0cb60f
style(material-management): prettier
texastony Nov 5, 2021
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
4 changes: 2 additions & 2 deletions modules/example-browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-mocha": "2.0.1",
"karma-webpack": "^4.0.2",
"karma-webpack": "^5.0.0",
"ts-loader": "9.2.5",
"ts-node": "^10.2.1",
"tslib": "^2.2.0",
"typescript": "^4.0.2",
"webpack": "^4.42.1",
"webpack": "^5.42.0",
"webpack-cli": "4.6.0"
},
"main": "./build/main/src/index.js",
Expand Down
Loading