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

[JENKINS-73640] Use AWS SDK for Java 2.x #1021

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

basil
Copy link
Member

@basil basil commented Dec 17, 2024

See JENKINS-73640. Builds on the work started by @dblanchette to migrate this plugin to AWS SDK for Java 2.x. The main improvement over the initial contribution is that I have fixed all integration tests so that mvn clean verify passes. I have not attempted to test this plugin against a real AWS account.

Testing done

mvn clean verify

Submitter checklist

  • Make sure you are opening from a topic/feature/bugfix branch (right side) and not your main branch!
  • Ensure that the pull request title represents the desired changelog entry
  • Please describe what you did
  • Link to relevant issues in GitHub or Jira
  • Link to relevant pull requests, esp. upstream and downstream changes
  • Ensure you have provided tests - that demonstrates feature works or fixes the issue

@basil basil added the enhancement Feature additions or enhancements label Dec 17, 2024
Comment on lines +2833 to +2834
if (type != null && !type.isEmpty()) {
type = (new InstanceTypeCompat(type)).getInstanceType().toString();
}
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Compatibility with serialized XStream XML.

Comment on lines +350 to +351
this.type = type != null && !type.isEmpty()
? (new InstanceTypeCompat(type)).getInstanceType().toString()
: null;
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Compatibility with CasC.

@basil basil force-pushed the JENKINS-73640 branch 3 times, most recently from bbe9216 to 00add16 Compare December 20, 2024 19:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Feature additions or enhancements
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants