Skip to content

Commit

Permalink
Merge pull request #178 from ExpediaGroup/fix/fix_irsa
Browse files Browse the repository at this point in the history
fix: added aws-sts-jdk to solve irsa assume role issue
  • Loading branch information
abhimanyugupta07 authored Jun 14, 2024
2 parents e069c59 + c01fbad commit d50c536
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.5.6] - 2024-06-14
### Fixed
- Added aws-sts-jdk dependency in `beekeeper-metadata-cleanup`, `beekeeper-path-cleanup`, `beekeeper-scheduler-apiary` to solve IRSA unable to assume role issue.

## [3.5.5] - 2023-11-10
### Fixed
- Fixed paged API response by updating 'MetadataResponseConverter' and 'PathResponseConverter' to pass complete information about the number of pages and elements to the response Page.
Expand Down
3 changes: 1 addition & 2 deletions beekeeper-cleanup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
<artifactId>beekeeper-cleanup</artifactId>

<properties>
<aws.version>1.12.311</aws.version>
<hive.version>2.3.7</hive.version>
<hcommon-hive-metastore.version>1.4.2</hcommon-hive-metastore.version>
</properties>
Expand Down Expand Up @@ -83,7 +82,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-s3</artifactId>
<version>${aws.version}</version>
<version>${aws-java-sdk.version}</version>
</dependency>

<!-- test -->
Expand Down
5 changes: 5 additions & 0 deletions beekeeper-metadata-cleanup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
</properties>

<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-sts</artifactId>
<version>${aws-java-sdk.version}</version>
</dependency>
<dependency>
<groupId>com.expediagroup</groupId>
<artifactId>beekeeper-cleanup</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions beekeeper-path-cleanup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
<artifactId>beekeeper-path-cleanup</artifactId>

<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-sts</artifactId>
<version>${aws-java-sdk.version}</version>
</dependency>
<dependency>
<groupId>com.expediagroup</groupId>
<artifactId>beekeeper-cleanup</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions beekeeper-scheduler-apiary/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
<artifactId>beekeeper-scheduler-apiary</artifactId>

<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-sts</artifactId>
<version>${aws-java-sdk.version}</version>
</dependency>
<dependency>
<groupId>com.expediagroup</groupId>
<artifactId>beekeeper-scheduler</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
</scm>

<properties>
<aws-java-sdk.version>1.12.311</aws-java-sdk.version>
<apache.commons.lang3>3.0</apache.commons.lang3>
<assertj.version>3.12.2</assertj.version>
<awaitility.version>3.1.6</awaitility.version>
Expand Down Expand Up @@ -143,7 +144,6 @@
<artifactId>log4j-to-slf4j</artifactId>
<version>${log4j2.version}</version>
</dependency>

</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit d50c536

Please sign in to comment.