Skip to content

Commit

Permalink
Release 4.5.3 (#1137)
Browse files Browse the repository at this point in the history
  • Loading branch information
BraisVQ authored Jul 8, 2024
1 parent b30f6f1 commit 6e6638a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,16 @@
### Added

### Changed
* Enhance SSDS Document Generation Performance using New Atlassian APIs ([#1084](https://github.com/opendevstack/ods-jenkins-shared-library/issues/1084))

### Fixed
* Fix Tailor deployment drifts for D, Q envs ([#1055](https://github.com/opendevstack/ods-jenkins-shared-library/pull/1055))

## [4.5.3] - 2024-07-08

### Fixed
* Fix deploy error for missing Jira config ([#1136](https://github.com/opendevstack/ods-jenkins-shared-library/pull/1136))

## [4.5.2] - 2024-06-25

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/org/ods/orchestration/InitStage.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ class InitStage extends Stage {
logger.debugClocked('Project#load')
MROPipelineUtil util = registry.get(MROPipelineUtil)

logger.info("Comparing Jira components against metadata.yml repositories")
def check = project.getComponentsFromJira()
if (check) {
logger.info("Comparing Jira components against metadata.yml repositories")
if (check.deployableState != 'DEPLOYABLE') {
throw new ComponentMismatchException(check.wikiMessage)
}
Expand Down
4 changes: 4 additions & 0 deletions src/org/ods/orchestration/usecase/JiraUseCase.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,10 @@ class JiraUseCase {
}

Map getComponents(String projectKey, String version) {
if (!this.jira) {
logger.warn("getComponents: Could *NOT* retrieve components because jira has invalid value.")
return [:]
}
return jira.getComponents(projectKey, version)
}

Expand Down

0 comments on commit 6e6638a

Please sign in to comment.