Skip to content

Commit 09aa2ef

Browse files
author
athena_federation_cut_release_workflow
committed
Cut release 2024.46.2
- Adding RDS Certs To Docker Image (#2419)
1 parent 671ce3a commit 09aa2ef

File tree

106 files changed

+299
-308
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+299
-308
lines changed

athena-aws-cmdb/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
FROM public.ecr.aws/lambda/java:11
22

33
# Copy function code and runtime dependencies from Maven layout
4-
COPY target/athena-aws-cmdb-2022.47.1.jar ${LAMBDA_TASK_ROOT}
4+
COPY target/athena-aws-cmdb-2024.46.2.jar ${LAMBDA_TASK_ROOT}
55
# Unpack the jar
6-
RUN jar xf athena-aws-cmdb-2022.47.1.jar
6+
RUN jar xf athena-aws-cmdb-2024.46.2.jar
77

88
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile)
99
CMD [ "com.amazonaws.athena.connectors.aws.cmdb.AwsCmdbCompositeHandler" ]

athena-aws-cmdb/athena-aws-cmdb.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Metadata:
1010
Labels:
1111
- athena-federation
1212
HomePageUrl: 'https://github.com/awslabs/aws-athena-query-federation'
13-
SemanticVersion: 2022.47.1
13+
SemanticVersion: 2024.46.2
1414
SourceCodeUrl: 'https://github.com/awslabs/aws-athena-query-federation'
1515
Parameters:
1616
AthenaCatalogName:
@@ -56,7 +56,7 @@ Resources:
5656
FunctionName: !Ref AthenaCatalogName
5757
PackageType: "Image"
5858
ImageUri: !Sub
59-
- '${Account}.dkr.ecr.${AWS::Region}.amazonaws.com/athena-federation-repository-aws-cmdb:2022.47.1'
59+
- '${Account}.dkr.ecr.${AWS::Region}.amazonaws.com/athena-federation-repository-aws-cmdb:2024.46.2'
6060
- Account: !If [IsRegionBAH, 084828588479, !If [IsRegionHKG, 183295418215, 292517598671]]
6161
Description: "Enables Amazon Athena to communicate with various AWS Services, making your resource inventories accessible via SQL."
6262
Timeout: !Ref LambdaTimeout

athena-aws-cmdb/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
<parent>
44
<artifactId>aws-athena-query-federation</artifactId>
55
<groupId>com.amazonaws</groupId>
6-
<version>2022.47.1</version>
6+
<version>2024.46.2</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>athena-aws-cmdb</artifactId>
10-
<version>2022.47.1</version>
10+
<version>2024.46.2</version>
1111
<dependencies>
1212
<dependency>
1313
<groupId>com.amazonaws</groupId>
1414
<artifactId>aws-athena-federation-sdk</artifactId>
15-
<version>2022.47.1</version>
15+
<version>2024.46.2</version>
1616
<classifier>withdep</classifier>
1717
</dependency>
1818
<dependency>

athena-clickhouse/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
FROM public.ecr.aws/lambda/java:11
22

33
# Copy function code and runtime dependencies from Maven layout
4-
COPY target/athena-clickhouse-2022.47.1.jar ${LAMBDA_TASK_ROOT}
4+
COPY target/athena-clickhouse-2024.46.2.jar ${LAMBDA_TASK_ROOT}
55
# Unpack the jar
6-
RUN jar xf athena-clickhouse-2022.47.1.jar
6+
RUN jar xf athena-clickhouse-2024.46.2.jar
77

88
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile)
99
CMD [ "com.amazonaws.athena.connectors.clickhouse.ClickHouseMuxCompositeHandler" ]

athena-clickhouse/athena-clickhouse.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Metadata:
1010
Labels:
1111
- athena-federation
1212
HomePageUrl: 'https://github.com/awslabs/aws-athena-query-federation'
13-
SemanticVersion: 2022.47.1
13+
SemanticVersion: 2024.46.2
1414
SourceCodeUrl: 'https://github.com/awslabs/aws-athena-query-federation'
1515
Parameters:
1616
LambdaFunctionName:
@@ -74,7 +74,7 @@ Resources:
7474
FunctionName: !Ref LambdaFunctionName
7575
PackageType: "Image"
7676
ImageUri: !Sub
77-
- '${Account}.dkr.ecr.${AWS::Region}.amazonaws.com/athena-federation-repository-clickhouse:2022.47.1'
77+
- '${Account}.dkr.ecr.${AWS::Region}.amazonaws.com/athena-federation-repository-clickhouse:2024.46.2'
7878
- Account: !If [IsRegionBAH, 084828588479, !If [IsRegionHKG, 183295418215, 292517598671]]
7979
Description: "Enables Amazon Athena to communicate with ClickHouse using JDBC"
8080
Timeout: !Ref LambdaTimeout

athena-clickhouse/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33
<parent>
44
<artifactId>aws-athena-query-federation</artifactId>
55
<groupId>com.amazonaws</groupId>
6-
<version>2022.47.1</version>
6+
<version>2024.46.2</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>athena-clickhouse</artifactId>
10-
<version>2022.47.1</version>
10+
<version>2024.46.2</version>
1111
<dependencies>
1212
<dependency>
1313
<groupId>com.amazonaws</groupId>
1414
<artifactId>athena-jdbc</artifactId>
15-
<version>2022.47.1</version>
15+
<version>2024.46.2</version>
1616
</dependency>
1717
<dependency>
1818
<groupId>com.amazonaws</groupId>
1919
<artifactId>athena-mysql</artifactId>
20-
<version>2022.47.1</version>
20+
<version>2024.46.2</version>
2121
</dependency>
2222
<dependency>
2323
<groupId>com.clickhouse</groupId>
@@ -28,7 +28,7 @@
2828
<dependency>
2929
<groupId>com.amazonaws</groupId>
3030
<artifactId>athena-jdbc</artifactId>
31-
<version>2022.47.1</version>
31+
<version>2024.46.2</version>
3232
<type>test-jar</type>
3333
<scope>test</scope>
3434
</dependency>
@@ -74,5 +74,5 @@
7474
</executions>
7575
</plugin>
7676
</plugins>
77-
</build>
77+
</build>
7878
</project>

athena-cloudera-hive/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
FROM public.ecr.aws/lambda/java:11
22

33
# Copy function code and runtime dependencies from Maven layout
4-
COPY target/athena-cloudera-hive-2022.47.1.jar ${LAMBDA_TASK_ROOT}
4+
COPY target/athena-cloudera-hive-2024.46.2.jar ${LAMBDA_TASK_ROOT}
55
# Unpack the jar
6-
RUN jar xf athena-cloudera-hive-2022.47.1.jar
6+
RUN jar xf athena-cloudera-hive-2024.46.2.jar
77

88
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile)
99
CMD [ "com.amazonaws.athena.connectors.cloudera.HiveMuxCompositeHandler" ]

athena-cloudera-hive/athena-cloudera-hive.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Metadata:
1010
Labels:
1111
- athena-federation
1212
HomePageUrl: 'https://github.com/awslabs/aws-athena-query-federation'
13-
SemanticVersion: 2022.47.1
13+
SemanticVersion: 2024.46.2
1414
SourceCodeUrl: 'https://github.com/awslabs/aws-athena-query-federation'
1515
Parameters:
1616
LambdaFunctionName:
@@ -69,7 +69,7 @@ Resources:
6969
FunctionName: !Ref LambdaFunctionName
7070
PackageType: "Image"
7171
ImageUri: !Sub
72-
- '${Account}.dkr.ecr.${AWS::Region}.amazonaws.com/athena-federation-repository-cloudera-hive:2022.47.1'
72+
- '${Account}.dkr.ecr.${AWS::Region}.amazonaws.com/athena-federation-repository-cloudera-hive:2024.46.2'
7373
- Account: !If [IsRegionBAH, 084828588479, !If [IsRegionHKG, 183295418215, 292517598671]]
7474
Description: "Enables Amazon Athena to communicate with Coludera Hive using JDBC"
7575
Timeout: !Ref LambdaTimeout

athena-cloudera-hive/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@
33
<parent>
44
<artifactId>aws-athena-query-federation</artifactId>
55
<groupId>com.amazonaws</groupId>
6-
<version>2022.47.1</version>
6+
<version>2024.46.2</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>athena-cloudera-hive</artifactId>
10-
<version>2022.47.1</version>
10+
<version>2024.46.2</version>
1111
<properties>
1212
<clouderaVersion>2.6.23.1027</clouderaVersion>
1313
</properties>
1414
<dependencies>
1515
<dependency>
1616
<groupId>com.amazonaws</groupId>
1717
<artifactId>athena-federation-integ-test</artifactId>
18-
<version>2022.47.1</version>
18+
<version>2024.46.2</version>
1919
<scope>test</scope>
2020
</dependency>
2121
<dependency>
2222
<groupId>com.amazonaws</groupId>
2323
<artifactId>athena-jdbc</artifactId>
24-
<version>2022.47.1</version>
24+
<version>2024.46.2</version>
2525
</dependency>
2626
<dependency>
2727
<groupId>Hive</groupId>
@@ -31,7 +31,7 @@
3131
<dependency>
3232
<groupId>com.amazonaws</groupId>
3333
<artifactId>athena-jdbc</artifactId>
34-
<version>2022.47.1</version>
34+
<version>2024.46.2</version>
3535
<type>test-jar</type>
3636
<scope>test</scope>
3737
</dependency>

athena-cloudera-impala/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
FROM public.ecr.aws/lambda/java:11
22

33
# Copy function code and runtime dependencies from Maven layout
4-
COPY target/athena-cloudera-impala-2022.47.1.jar ${LAMBDA_TASK_ROOT}
4+
COPY target/athena-cloudera-impala-2024.46.2.jar ${LAMBDA_TASK_ROOT}
55
# Unpack the jar
6-
RUN jar xf athena-cloudera-impala-2022.47.1.jar
6+
RUN jar xf athena-cloudera-impala-2024.46.2.jar
77

88
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile)
99
CMD [ "com.amazonaws.athena.connectors.cloudera.ImpalaMuxCompositeHandler" ]

0 commit comments

Comments
 (0)