Skip to content
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

Consolidating ClientService and js-ws and js-rpc integration #560

Merged
merged 27 commits into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
8b30153
fix: change client handlers to arrow function properties
amydevs Oct 6, 2023
cb7e4d2
feat: removing src/websockets and bringing in @matrixai/ws
amydevs Oct 6, 2023
4ddd9dd
wip: introducing `ClientService` and @matrixai/rpc
amydevs Oct 6, 2023
420c8c0
wip : fixes all rpc imports, Fixes import orders
addievo Oct 6, 2023
0bff699
wip: fixing up tests
tegefaulkes Oct 9, 2023
0c814ef
tests: all nodes domain tests are working
tegefaulkes Oct 6, 2023
0596e75
tests: fixed keys test
tegefaulkes Oct 9, 2023
749ef2c
tests: fixed cert propagation tests
tegefaulkes Oct 9, 2023
59cd2d8
tests: moved and fixed agent handler tests
tegefaulkes Oct 9, 2023
3888b36
tests: fix for vaults cloning and pull problem
tegefaulkes Oct 9, 2023
4c90793
tests: removed unneeded test for `webcrypto`
tegefaulkes Oct 9, 2023
4b9a259
tests: fixed IdentitiesManager test
tegefaulkes Oct 9, 2023
7578317
tests: general fixes to tests.
tegefaulkes Oct 9, 2023
1e78d78
tests: final test cleaning
tegefaulkes Oct 9, 2023
8faddb0
Merge pull request #562 from MatrixAI/feature-test-fixes
tegefaulkes Oct 9, 2023
68c5e70
tests: small fixes
tegefaulkes Oct 9, 2023
5df5929
lint: lintfix
tegefaulkes Oct 9, 2023
d8b96a3
test: fixing up tests
tegefaulkes Oct 10, 2023
280a40b
test: small fix
tegefaulkes Oct 10, 2023
fbcfb1d
dep: updating `@matrixai/rpc` to `^0.2.0`
tegefaulkes Oct 10, 2023
de572c7
fix: fixes for tests
tegefaulkes Oct 10, 2023
9619d9f
dep: updated `@matrixai/ws` to `^1.1.5`
tegefaulkes Oct 10, 2023
c2a3f83
tests: fixed last test
tegefaulkes Oct 10, 2023
b03f894
fix: small fix to authenticationMiddleware.ts
tegefaulkes Oct 10, 2023
131475d
fix: fixed up `js-rpc` imports
tegefaulkes Oct 10, 2023
c16e562
fix: fixed up `vaultManager` imports
tegefaulkes Oct 10, 2023
dd353a3
fix: review fixes
tegefaulkes Oct 10, 2023
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
74 changes: 57 additions & 17 deletions package-lock.json

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

7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
},
{
"name": "Amy Yan"
},
{
"name": "Aditya Varma"
}
],
"description": "Polykey Core Library",
Expand Down Expand Up @@ -71,9 +74,11 @@
"@matrixai/id": "^3.3.6",
"@matrixai/logger": "^3.1.0",
"@matrixai/resources": "^1.1.5",
"@matrixai/rpc": "^0.2.0",
"@matrixai/timer": "^1.1.1",
"@matrixai/workers": "^1.3.7",
"@matrixai/quic": "^0.1.3",
"@matrixai/ws": "^1.1.5",
"@matrixai/quic": "^0.1.4",
"@matrixai/events": "^3.2.0",
"@peculiar/asn1-pkcs8": "^2.3.0",
"@peculiar/asn1-schema": "^2.3.0",
Expand Down
Loading