-
Notifications
You must be signed in to change notification settings - Fork 222
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
Update SDK versions for JavaSDK 1+2 and KCL #238
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks like it is based off of 2.5.2, which is not close to 2.5.8 (the current release. This will definately clash with the most recent changes, as some of these versions aren't even in the same files
<kcl.version>2.5.2</kcl.version> | ||
<awssdk.version>2.25.11</awssdk.version> | ||
<aws-java-sdk.version>1.12.696</aws-java-sdk.version> | ||
<kcl.version>2.5.8</kcl.version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still need the -SNAPSHOT version for testing. We should not be using this version as it will confuse local builds with public releases
@@ -111,6 +111,31 @@ | |||
<artifactId>auth</artifactId> | |||
<version>${awssdk.version}</version> | |||
</dependency> | |||
<dependency> | |||
<groupId>software.amazon.awssdk</groupId> | |||
<artifactId>http-auth-spi</artifactId> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason these have to be added
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These were required on running, without which there was a class not found error when authenticating, with no code changes in my code from previous implementation.
I added the java sdk modules one-by-one until all class not found errors were resolved. This was with the default authentication chain.
Issue #, if available:
Description of changes:
Updating the SDK and KCL versions to bring in latest changes - especially required for new regions and authentication methods.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.