Skip to content

Commit

Permalink
fix: power vs images (#1927)
Browse files Browse the repository at this point in the history
  • Loading branch information
jvallexm authored and GitHub Enterprise committed May 16, 2024
1 parent f8cf23c commit d420ed2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file.
- Fixed an issue causing images imported into an existing Power VS Workspace to have incorrect Terraform references
- Fixed an issue causing Power VS Images to not reload when changing the name of an existing Power VS Workspace
- Fixed an issue causing the LogDNA provider to not be added to `versions.tf` when the instance is enabled
- Fixed an issue incorrectly causing valid Power VS images to show as invalid on validation

## 1.15.4

Expand Down
6 changes: 4 additions & 2 deletions client/src/Craig.js
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,8 @@ class Craig extends React.Component {
"imageID",
image.imageID || image.pi_image_id
) &&
!workspace.use_data
!workspace.use_data &&
workspace.zone === zone
) {
invalidItems.power_images.push({
workspace: workspace.name,
Expand All @@ -512,7 +513,8 @@ class Craig extends React.Component {
workspace.imageNames.forEach((name) => {
if (
!splatContains(foundImages, "name", name) &&
!workspace.use_data
!workspace.use_data &&
workspace.zone === zone
) {
invalidItems.power_images.push({
workspace: workspace.name,
Expand Down
3 changes: 2 additions & 1 deletion client/src/lib/docs/release-notes.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"fixes": [
"Fixed an issue causing images imported into an existing Power VS Workspace to have incorrect Terraform references",
"Fixed an issue causing Power VS Images to not reload when changing the name of an existing Power VS Workspace",
"Fixed an issue causing the LogDNA provider to not be added to `versions.tf` when the instance is enabled"
"Fixed an issue causing the LogDNA provider to not be added to `versions.tf` when the instance is enabled",
"Fixed an issue incorrectly causing valid Power VS images to show as invalid on validation"
],
"upgrade_notes": []
},
Expand Down

0 comments on commit d420ed2

Please sign in to comment.