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

Bump cdk to 2.185.0 #1106

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions deployment/aws/cdk/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
from typing import Any, Dict, List, Optional, Union

from aws_cdk import App, CfnOutput, Duration, Stack, Tags
from aws_cdk import aws_apigatewayv2_alpha as apigw
from aws_cdk import aws_apigatewayv2 as apigw
from aws_cdk import aws_ec2 as ec2
from aws_cdk import aws_ecs as ecs
from aws_cdk import aws_ecs_patterns as ecs_patterns
from aws_cdk import aws_iam as iam
from aws_cdk import aws_lambda
from aws_cdk import aws_logs as logs
from aws_cdk.aws_apigatewayv2_integrations_alpha import HttpLambdaIntegration
from aws_cdk.aws_apigatewayv2_integrations import HttpLambdaIntegration
from config import StackSettings
from constructs import Construct

Expand Down
33 changes: 18 additions & 15 deletions deployment/aws/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion deployment/aws/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"private": true,
"dependencies": {
"cdk": "2.94.0"
"cdk": "2.1005.0"
},
"scripts": {
"cdk": "cdk"
Expand Down
6 changes: 3 additions & 3 deletions deployment/aws/requirements-cdk.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# aws cdk
aws-cdk-lib==2.94.0
aws_cdk-aws_apigatewayv2_alpha==2.94.0a0
aws_cdk-aws_apigatewayv2_integrations_alpha==2.94.0a0
aws-cdk-lib==2.185.0
# aws_cdk-aws_apigatewayv2_alpha==2.185.0
# aws_cdk-aws_apigatewayv2_integrations_alpha==2.185.0
constructs>=10.0.0

# pydantic settings
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PYTHON_VERSION=3.12
ARG PYTHON_VERSION=3.13

FROM bitnami/python:${PYTHON_VERSION}
RUN apt update && apt upgrade -y \
Expand Down
Loading