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

chore(deps): bump openssl from 1.1.1s to 1.1.1t #10266

Merged
merged 2 commits into from
Feb 9, 2023
Merged

Conversation

fffonion
Copy link
Contributor

@fffonion fffonion commented Feb 9, 2023

@fffonion
Copy link
Contributor Author

fffonion commented Feb 9, 2023

This PR also includes a fix to manifest that version requirements are now sorted. Existing manifest are sorted by this helper script:

import sys
import re
ip = sys.argv[1]
op = sys.argv[1] + ".new"

with open(ip) as fi:
    with open(op, "w") as fo:
        for l in fi.readlines():
            m = re.findall("(\s+-\s+)(lib.*?.so.*?) \((.+)\)\n", l)
            if m:
                reqs = sorted(m[0][2].split(", "))
                fo.write("%s%s (%s)\n" % (m[0][0], m[0][1], ", ".join(reqs)))
            else:
                fo.write(l)

import os
os.remove(ip)
os.rename(op, ip)
print(op)

@chronolaw
Copy link
Contributor

need change log entry.

@chronolaw
Copy link
Contributor

Should we cherry pick this PR to release/3.2.x?

@fffonion
Copy link
Contributor Author

fffonion commented Feb 9, 2023

backport is at #10267

@fffonion fffonion merged commit 90eae63 into master Feb 9, 2023
@fffonion fffonion deleted the openssl-111t branch February 9, 2023 07:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants