You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
We have updated our bamboo version from 5.8.0 to 6.3.2 and a number of deprecations and removals in the API has affected our plugin codebase. A specific code segment needs to be upgraded and we haven’t been able to figure out how. The basic requirement is to get the changes between two bamboo builds.
private TaskContext taskContext;
private String selectedRepoId;
public VcsRevision(TaskContext taskContext, String selectedRepoId) {
this.taskContext = taskContext;
this.selectedRepoId = selectedRepoId;
}
public String getRevisionIdentifier() throws TaskException {
String planKey = taskContext.getBuildContext().getPlanKey();
RepositoryDefinition selectedRepoDef = getSelectedRepositoryDefinition(selectedRepoId); // RepositoryDefinition has been upgraded to PlanRepositoryDefinition
String repositoryName = selectedRepoDef.getName();
BuildRepositoryChanges bc;
try {
bc = selectedRepoDef.getRepository().collectChangesSinceLastBuild(planKey, null);
} catch (RepositoryException e) {
}
return String.format(REVISION_ID, repositoryName, bc.getVcsRevisionKey());
}
RepositoryDefinition has been updated to PlanRepositoryDefinition, (as per https://docs.atlassian.com/atlassian-bamboo/6.3.2/deprecated-list.html ) and unlike RepositoryDefinition it does not have a getRepository() method.
Is there a way to replace the above or an alternative to the now unavailable getRepository().collectChangesSinceLastBuild(planKey, null) ?
return String.format(REVISION_ID, repositoryName, getBuildContext().getBuildChanges().getVcsRevisionKey(selectedRepoId));
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.