-
Notifications
You must be signed in to change notification settings - Fork 121
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
Add integration patches/CI for Ruby main and 3.3 #2071
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2071 +/- ##
==========================================
+ Coverage 78.95% 78.96% +0.01%
==========================================
Files 610 610
Lines 105293 105294 +1
Branches 14911 14920 +9
==========================================
+ Hits 83129 83143 +14
+ Misses 21511 21500 -11
+ Partials 653 651 -2 ☔ View full report in Codecov by Sentry. |
e146fd0
to
584efab
Compare
Per a recent test run, it looks like we need to implement
Even when under review, these integration tests help us respond to upstream changes :) |
Are we planning to submit a PR upstream to Ruby? |
Ahh I'll put up a PR to add support for
Yeah I've submitted a PR upstream and cut an issue to GnuTLS as well. ruby/openssl#830 |
abf9d23
to
a9d4a6e
Compare
a9d4a6e
to
3e0243d
Compare
Ruby's made a couple larger refactors to require versions later than OpenSSL 1.1.1. These changes require us to make a few tweaks to the patch in #2071 and have exposed a couple minor symbols that we don't support. Adding support for the ones that aren't complicated in this commit. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and the ISC license.
c8eda30
to
01e7f25
Compare
01e7f25
to
3ee9bb3
Compare
Ruby's made a couple larger refactors to require versions later than OpenSSL 1.1.1. These changes require us to make a few tweaks to the patch in aws#2071 and have exposed a couple minor symbols that we don't support. Adding support for the ones that aren't complicated in this commit. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and the ISC license.
Issues:
Resolves
CryptoAlg-2784
Description of changes:
Ruby 3.3 is relatively the same as 3.2 with just one more test failure due to conflicting error messages.
Ruby's master branch has added much more however.
test/openssl/pkey_rsa.rb
generated by certtool isn't parsable by us. I've pinned down the reason to a missingNULL
field in the ASN1 contents. I've cut an issue to gnutls, more details can be found there.I've replaced the file that Ruby's been using for the time being and replaced the original generation to use OpenSSL instead. OpenSSL's PKCS8 files adhere to the RFC.
Call-outs:
N/A
Testing:
New CI
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and the ISC license.