8000 Add CodeStarConnections to the client types (#12308) · localstack/localstack@3da5cb1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3da5cb1

Browse files
authored
Add CodeStarConnections to the client types (#12308)
1 parent 17d852a commit 3da5cb1

File tree

8 files changed

+32
-25
lines changed

8 files changed

+32
-25
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
repos:
44
- repo: https://github.com/astral-sh/ruff-pre-commit
55
# Ruff version.
6-
rev: v0.9.7
6+
rev: v0.9.8
77
hooks:
88
- id: ruff
99
args: [--fix, --exit-non-zero-on-fix]

localstack-core/localstack/utils/aws/client_types.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
from mypy_boto3_codecommit import CodeCommitClient
3434
from mypy_boto3_codedeploy import CodeDeployClient
3535
from mypy_boto3_codepipeline import CodePipelineClient
36+
from mypy_boto3_codestar_connections import CodeStarconnectionsClient
3637
from mypy_boto3_cognito_identity import CognitoIdentityClient
3738
from mypy_boto3_cognito_idp import CognitoIdentityProviderClient
3839
from mypy_boto3_dms import DatabaseMigrationServiceClient
@@ -140,6 +141,9 @@ class TypedServiceClientFactory(abc.ABC):
140141
codecommit: Union["CodeCommitClient", "MetadataRequestInjector[CodeCommitClient]"]
141142
codedeploy: Union["CodeDeployClient", "MetadataRequestInjector[CodeDeployClient]"]
142143
codepipeline: Union["CodePipelineClient", "MetadataRequestInjector[CodePipelineClient]"]
144+
codestar_connections: Union[
145+
"CodeStarconnectionsClient", "MetadataRequestInjector[CodeStarconnectionsClient]"
146+
]
143147
cognito_identity: Union[
144148
"CognitoIdentityClient", "MetadataRequestInjector[CognitoIdentityClient]"
145149
]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ typehint = [
137137
# typehint is an optional extension of the dev dependencies
138138
"localstack-core[dev]",
139139
# pinned / updated by ASF update action
140-
"boto3-stubs[acm,acm-pca,amplify,apigateway,apigatewayv2,appconfig,appconfigdata,application-autoscaling,appsync,athena,autoscaling,backup,batch,ce,cloudcontrol,cloudformation,cloudfront,cloudtrail,cloudwatch,codebuild,codecommit,codedeploy,codepipeline,cognito-identity,cognito-idp,dms,docdb,dynamodb,dynamodbstreams,ec2,ecr,ecs,efs,eks,elasticache,elasticbeanstalk,elbv2,emr,emr-serverless,es,events,firehose,fis,glacier,glue,iam,identitystore,iot,iot-data,iotanalytics,iotwireless,kafka,kinesis,kinesisanalytics,kinesisanalyticsv2,kms,lakeformation,lambda,logs,managedblockchain,mediaconvert,mediastore,mq,mwaa,neptune,opensearch,organizations,pi,pipes,pinpoint,qldb,qldb-session,rds,rds-data,redshift,redshift-data,resource-groups,resourcegroupstaggingapi,route53,route53resolver,s3,s3control,sagemaker,sagemaker-runtime,secretsmanager,serverlessrepo,servicediscovery,ses,sesv2,sns,sqs,ssm,sso-admin,stepfunctions,sts,timestream-query,timestream-write,transcribe,wafv2,xray]",
140+
"boto3-stubs[acm,acm-pca,amplify,apigateway,apigatewayv2,appconfig,appconfigdata,application-autoscaling,appsync,athena,autoscaling,backup,batch,ce,cloudcontrol,cloudformation,cloudfront,cloudtrail,cloudwatch,codebuild,codecommit,codedeploy,codepipeline,codestar-connections,cognito-identity,cognito-idp,dms,docdb,dynamodb,dynamodbstreams,ec2,ecr,ecs,efs,eks,elasticache,elasticbeanstalk,elbv2,emr,emr-serverless,es,events,firehose,fis,glacier,glue,iam,identitystore,iot,iot-data,iotanalytics,iotwireless,kafka,kinesis,kinesisanalytics,kinesisanalyticsv2,kms,lakeformation,lambda,logs,managedblockchain,mediaconvert,mediastore,mq,mwaa,neptune,opensearch,organizations,pi,pipes,pinpoint,qldb,qldb-session,rds,rds-data,redshift,redshift-data,resource-groups,resourcegroupstaggingapi,route53,route53resolver,s3,s3control,sagemaker,sagemaker-runtime,secretsmanager,serverlessrepo,servicediscovery,ses,sesv2,sns,sqs,ssm,sso-admin,stepfunctions,sts,timestream-query,timestream-write,transcribe,wafv2,xray]",
141141
]
142142

143143
[tool.setuptools]

requirements-base-runtime.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ rpds-py==0.23.1
170170
# via
171171
# jsonschema
172172
# referencing
173-
s3transfer==0.11.2
173+
s3transfer==0.11.3
174174
# via boto3
175175
semver==3.0.4
176176
# via localstack-core (pyproject.toml)

requirements-dev.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ aws-cdk-asset-node-proxy-agent-v6==2.1.0
3333
# via aws-cdk-lib
3434
aws-cdk-cloud-assembly-schema==39.2.20
3535
# via aws-cdk-lib
36-
aws-cdk-lib==2.180.0
36+
aws-cdk-lib==2.181.0
3737
# via localstack-core
3838
aws-sam-translator==1.95.0
3939
# via
@@ -83,7 +83,7 @@ cffi==1.17.1
8383
# via cryptography
8484
cfgv==3.4.0
8585
# via pre-commit
86-
cfn-lint==1.25.1
86+
cfn-lint==1.26.1
8787
# via moto-ext
8888
charset-normalizer==3.4.1
8989
# via requests
@@ -426,9 +426,9 @@ rsa==4.7.2
426426
# via awscli
427427
rstr==3.2.2
428428
# via localstack-core (pyproject.toml)
429-
ruff==0.9.7
429+
ruff==0.9.8
430430
# via localstack-core (pyproject.toml)
431-
s3transfer==0.11.2
431+
s3transfer==0.11.3
432432
# via
433433
# awscli
434434
# boto3

requirements-runtime.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ certifi==2025.1.31
6464
# requests
6565
cffi==1.17.1
6666
# via cryptography
67-
cfn-lint==1.25.1
67+
cfn-lint==1.26.1
6868
# via moto-ext
6969
charset-normalizer==3.4.1
7070
# via requests
@@ -312,7 +312,7 @@ rpds-py==0.23.1
312312
# referencing
313313
rsa==4.7.2
314314
# via awscli
315-
s3transfer==0.11.2
315+
s3transfer==0.11.3
316316
# via
317317
# awscli
318318
# boto3

requirements-test.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ aws-cdk-asset-node-proxy-agent-v6==2.1.0
3333
# via aws-cdk-lib
3434
aws-cdk-cloud-assembly-schema==39.2.20
3535
# via aws-cdk-lib
36-
aws-cdk-lib==2.180.0
36+
aws-cdk-lib==2.181.0
3737
# via localstack-core (pyproject.toml)
3838
aws-sam-translator==1.95.0
3939
# via
@@ -81,7 +81,7 @@ certifi==2025.1.31
8181
# requests
8282
cffi==1.17.1
8383
# via cryptography
84-
cfn-lint==1.25.1
84+
cfn-lint==1.26.1
8585
# via moto-ext
8686
charset-normalizer==3.4.1
8787
# via requests
@@ -390,7 +390,7 @@ rpds-py==0.23.1
390390
# referencing
391391
rsa==4.7.2
392392
# via awscli
393-
s3transfer==0.11.2
393+
s3transfer==0.11.3
394394
# via
395395
# awscli
396396
# boto3

requirements-typehint.txt

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ aws-cdk-asset-node-proxy-agent-v6==2.1.0
3333
# via aws-cdk-lib
3434
aws-cdk-cloud-assembly-schema==39.2.20
3535
# via aws-cdk-lib
36-
aws-cdk-lib==2.180.0
36+
aws-cdk-lib==2.181.0
3737
# via localstack-core
3838
aws-sam-translator==1.95.0
3939
# via
@@ -51,7 +51,7 @@ boto3==1.36.21
5151
# aws-sam-translator
5252
# localstack-core
5353
# moto-ext
54-
boto3-stubs==1.37.0
54+
boto3-stubs==1.37.2
5555
# via localstack-core (pyproject.toml)
5656
botocore==1.36.21
5757
# via
@@ -62,7 +62,7 @@ botocore==1.36.21
6262
# localstack-snapshot
6363
# moto-ext
6464
# s3transfer
65-
botocore-stubs==1.36.26
65+
botocore-stubs==1.37.1
6666
# via boto3-stubs
6767
build==1.2.2.post1
6868
# via
@@ -87,7 +87,7 @@ cffi==1.17.1
8787
# via cryptography
8888
cfgv==3.4.0
8989
# via pre-commit
90-
cfn-lint==1.25.1
90+
cfn-lint==1.26.1
9191
# via moto-ext
9292
charset-normalizer==3.4.1
9393
# via requests
@@ -285,28 +285,30 @@ mypy-boto3-autoscaling==1.37.0
285285
# via boto3-stubs
286286
mypy-boto3-backup==1.37.0
287287
# via boto3-stubs
288-
mypy-boto3-batch==1.37.0
288+
mypy-boto3-batch==1.37.2
289289
# via boto3-stubs
290290
mypy-boto3-ce==1.37.0
291291
# via boto3-stubs
292292
mypy-boto3-cloudcontrol==1.37.0
293293
# via boto3-stubs
294294
mypy-boto3-cloudformation==1.37.0
295295
# via boto3-stubs
296-
mypy-boto3-cloudfront==1.37.0
296+
mypy-boto3-cloudfront==1.37.2
297297
# via boto3-stubs
298298
mypy-boto3-cloudtrail==1.37.0
299299
# via boto3-stubs
300300
mypy-boto3-cloudwatch==1.37.0
301301
# via boto3-stubs
302-
mypy-boto3-codebuild==1.37.0
302+
mypy-boto3-codebuild==1.37.1
303303
# via boto3-stubs
304304
mypy-boto3-codecommit==1.37.0
305305
# via boto3-stubs
306306
mypy-boto3-codedeploy==1.37.0
307307
# via boto3-stubs
308308
mypy-boto3-codepipeline==1.37.0
309309
# via boto3-stubs
310+
mypy-boto3-codestar-connections==1.37.0
311+
# via boto3-stubs
310312
mypy-boto3-cognito-identity==1.37.0
311313
# via boto3-stubs
312314
mypy-boto3-cognito-idp==1.37.0
@@ -319,7 +321,7 @@ mypy-boto3-dynamodb==1.37.0
319321
# via boto3-stubs
320322
mypy-boto3-dynamodbstreams==1.37.0
321323
# via boto3-stubs
322-
mypy-boto3-ec2==1.37.0
324+
mypy-boto3-ec2==1.37.2
323325
# via boto3-stubs
324326
mypy-boto3-ecr==1.37.0
325327
# via boto3-stubs
@@ -355,7 +357,7 @@ mypy-boto3-iam==1.37.0
355357
# via boto3-stubs
356358
mypy-boto3-identitystore==1.37.0
357359
# via boto3-stubs
358-
mypy-boto3-iot==1.37.0
360+
mypy-boto3-iot==1.37.1
359361
# via boto3-stubs
360362
mypy-boto3-iot-data==1.37.0
361363
# via boto3-stubs
@@ -425,7 +427,7 @@ mypy-boto3-s3==1.37.0
425427
# via boto3-stubs
426428
mypy-boto3-s3control==1.37.0
427429
# via boto3-stubs
428-
mypy-boto3-sagemaker==1.37.0
430+
mypy-boto3-sagemaker==1.37.2
429431
# via boto3-stubs
430432
mypy-boto3-sagemaker-runtime==1.37.0
431433
# via boto3-stubs
@@ -630,9 +632,9 @@ rsa==4.7.2
630632
# via awscli
631633
rstr==3.2.2
632634
# via localstack-core
633-
ruff==0.9.7
635+
ruff==0.9.8
634636
# via localstack-core
635-
s3transfer==0.11.2
637+
s3transfer==0.11.3
636638
# via
637639
# awscli
638640
# boto3
@@ -664,7 +666,7 @@ typeguard==2.13.3
664666
# jsii
665667
types-awscrt==0.23.10
666668
# via botocore-stubs
667-
types-s3transfer==0.11.2
669+
types-s3transfer==0.11.3
668670
# via boto3-stubs
669671
typing-extensions==4.12.2
670672
# via
@@ -697,6 +699,7 @@ typing-extensions==4.12.2
697699
# mypy-boto3-codecommit
698700
# mypy-boto3-codedeploy
699701
# mypy-boto3-codepipeline
702+
# mypy-boto3-codestar-connections
700703
# mypy-boto3-cognito-identity
701704
# mypy-boto3-cognito-idp
702705
# mypy-boto3-dms

0 commit comments

Comments
 (0)
0