Skip to content

Commit b2c893f

Browse files
chore: update dependencies
1 parent d34ef45 commit b2c893f

File tree

10 files changed

+15
-18
lines changed

10 files changed

+15
-18
lines changed

.pylintrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

modules/terraform-aws-ca-lambda/lambda_code/tls_cert/tls_cert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class CaChainResponse:
6969
base64_ca_chain: str
7070

7171

72-
# pylint:disable=too-many-arguments
72+
# pylint:disable=too-many-arguments,too-many-positional-arguments
7373
def sign_tls_certificate(project, env_name, csr, ca_name, csr_info, domain, max_cert_lifetime, enable_public_crl):
7474
# get CA cert from DynamoDB
7575
ca_cert_bytes_b64 = db_list_certificates(project, env_name, ca_name)[0]["Certificate"]["B"]

modules/terraform-aws-ca-lambda/requirements-dev.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
bandit == 1.7.9
2-
black == 24.8.0
3-
boto3 == 1.35.29
2+
black == 24.10.0
3+
boto3 == 1.35.40
44
cryptography == 43.0.1
55
dataclasses-json == 0.6.7
66
prospector == 1.10.3

modules/terraform-aws-ca-lambda/utils/certs/ca.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def tls_cert_construct_subject_name(csr_cert, cert_request_info):
5151
return subject.x509_name()
5252

5353

54-
# pylint:disable=too-many-arguments
54+
# pylint:disable=too-many-arguments,too-many-positional-arguments
5555
def ca_kms_sign_ca_certificate_request(
5656
project,
5757
env_name,
@@ -179,7 +179,7 @@ def ca_build_cert(csr_cert, ca_cert, lifetime, delta, cert_request_info):
179179
)
180180

181181

182-
# pylint:disable=too-many-arguments,too-many-locals
182+
# pylint:disable=too-many-arguments,too-many-positional-arguments,too-many-locals
183183
def ca_kms_sign_tls_certificate_request(
184184
project,
185185
env_name,
@@ -325,7 +325,7 @@ def subject_from_ca_info(ca_info, default_common_name=None):
325325
return subject
326326

327327

328-
# pylint:disable=too-many-arguments
328+
# pylint:disable=too-many-arguments,too-many-positional-arguments
329329
def ca_kms_publish_crl(
330330
ca_info,
331331
ca_key_info,

modules/terraform-aws-ca-lambda/utils/certs/s3.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def s3_download_file(bucket_name, key):
1313
Key=key,
1414
)
1515
except client.exceptions.NoSuchKey:
16-
print(f"file {key} not found in s3 bucket {bucket_name}")
16+
print(f"file {key} not found in s3 bucket {bucket_name}") # noqa
1717

1818
return None
1919

@@ -32,7 +32,7 @@ def s3_upload_file(file, bucket_name, key, content_type):
3232
print(f"uploaded {key} to s3 bucket {bucket_name}")
3333

3434

35-
# pylint:disable=too-many-arguments
35+
# pylint:disable=too-many-arguments,too-many-positional-arguments
3636
def s3_upload(
3737
external_s3_bucket_name, internal_s3_bucket_name, file, key, content_type="application/x-pkcs7-crl", external=True
3838
):

requirements-dev.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
asn1crypto == 1.5.1
33
assertpy == 1.1
44
bandit == 1.7.10
5-
black == 24.8.0
6-
boto3 == 1.35.29
5+
black == 24.10.0
6+
boto3 == 1.35.40
77
certvalidator == 0.11.1
88
cryptography == 43.0.1
99
dataclasses-json == 0.6.7
10-
prospector == 1.10.3
10+
prospector == 1.12.1
1111
pytest == 8.3.3
1212
requests == 2.32.3
1313
structlog == 24.4.0

requirements-docs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
cairosvg == 2.7.1
2-
mkdocs-material == 9.5.39
2+
mkdocs-material == 9.5.40
33
pillow == 10.4.0
44
urllib3 == 2.2.3

scripts/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
boto3 == 1.35.29
1+
boto3 == 1.35.40

utils/modules/certs/crypto.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def certificate_validated(pem_cert, trust_roots, purposes=None, check_crl=True):
4343
return True
4444

4545

46-
def create_csr_info( # pylint:disable=too-many-arguments
46+
def create_csr_info( # pylint:disable=too-many-arguments,too-many-positional-arguments
4747
common_name,
4848
country=None,
4949
locality=None,

utils/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
asn1crypto == 1.5.1
2-
boto3 == 1.35.29
2+
boto3 == 1.35.40
33
certvalidator == 0.11.1
44
cryptography == 43.0.1
55
validators == 0.34.0

0 commit comments

Comments
 (0)