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: Update charm libraries #69

Merged
merged 1 commit into from
Feb 27, 2024
Merged
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def _on_all_certificates_invalidated(self, event: AllCertificatesInvalidatedEven

# Increment this PATCH version before using `charmcraft publish-lib` or reset
# to 0 if you are raising the major API version
LIBPATCH = 2
LIBPATCH = 3

PYDEPS = ["cryptography", "jsonschema"]

Expand Down Expand Up @@ -696,7 +696,7 @@ def generate_ca(

Args:
private_key (bytes): Private key
subject (str): Certificate subject
subject (str): Common Name that can be an IP or a Full Qualified Domain Name (FQDN).
private_key_password (bytes): Private key password
validity (int): Certificate validity time (in days)
country (str): Certificate Issuing country
Expand Down Expand Up @@ -962,7 +962,7 @@ def generate_csr(

Args:
private_key (bytes): Private key
subject (str): CSR Subject.
subject (str): CSR Common Name that can be an IP or a Full Qualified Domain Name (FQDN).
add_unique_id_to_subject_name (bool): Whether a unique ID must be added to the CSR's
subject name. Always leave to "True" when the CSR is used to request certificates
using the tls-certificates relation.
Expand Down
Loading