-
Notifications
You must be signed in to change notification settings - Fork 61
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
feat: Add support for custom SSL certificates #140
Conversation
Hello, I am a code review bot on flows.network. Here are my reviews of code commits in this PR. Overall Summary: The Pull Request introduces support for custom SSL certificates through various key changes, such as adding scripts and modules, updating dependencies, and creating new files. Potential issues include the lack of error handling in certain parts of the code, the impact of dependency updates on compatibility, and assumptions made about the success of certificate operations. Additionally, the removal of test files raises concerns about test coverage and the need to ensure thorough testing of custom SSL certificate functionality post-removal. Key Findings:
DetailsCommit 1b3016c0126a848e4da06665b0cc4cd8eff7d17eKey Changes:
Potential Problems:
Overall, the addition of custom SSL certificate support is a significant enhancement, but the error handling, compatibility testing, and robustness of the new implementation should be carefully reviewed before merging. Commit 6ba840efde52a5e028ce32977b30c6fc92a716b6Key Changes:
Potential Problems:
Commit 3f8a4d41b9d96eb76c597bd4e8d2a9b1bc6e2d32Key changes in the patch:
Potential problems:
|
@juntao @L-jasmine please check this |
LGTM. |
wasmedge-quickjs doesnt support custom SSL support. Currently, wasmedge-quickjs uses
webpki_roots
to inject commonly used ssl certs without a way to customize. Without this PR, you cant call any HTTPS endpoints which has a cert that isnt supported bywebpki_roots
crate. Particulary, its important for companies with custom SSL certs.