@spinnaker/cloudfoundry 0.0.0-main-2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (286) hide show
  1. package/CHANGELOG.md +1085 -0
  2. package/LICENSE.txt +203 -0
  3. package/dist/cf.module.d.ts +24 -0
  4. package/dist/cf.settings.d.ts +7 -0
  5. package/dist/common/applicationName.validator.d.ts +1 -0
  6. package/dist/deploymentStrategy/CloudFoundryDeploymentStrategySelector.d.ts +21 -0
  7. package/dist/deploymentStrategy/strategies/redblack/redblack.strategy.d.ts +10 -0
  8. package/dist/deploymentStrategy/strategies/rollingredblack/AdditionalFields.d.ts +22 -0
  9. package/dist/domain/ICloudFoundryAccount.d.ts +7 -0
  10. package/dist/domain/ICloudFoundryApplication.d.ts +4 -0
  11. package/dist/domain/ICloudFoundryCluster.d.ts +5 -0
  12. package/dist/domain/ICloudFoundryDroplet.d.ts +19 -0
  13. package/dist/domain/ICloudFoundryInstance.d.ts +4 -0
  14. package/dist/domain/ICloudFoundryLoadBalancer.d.ts +25 -0
  15. package/dist/domain/ICloudFoundryServerGroup.d.ts +41 -0
  16. package/dist/domain/ICloudFoundrySpace.d.ts +9 -0
  17. package/dist/domain/index.d.ts +8 -0
  18. package/dist/help/cloudfoundry.help.d.ts +1 -0
  19. package/dist/image/image.reader.cf.d.ts +4 -0
  20. package/dist/index.d.ts +6 -0
  21. package/dist/index.js +5929 -0
  22. package/dist/index.js.map +1 -0
  23. package/dist/instance/details/CloudFoundryInstanceActions.d.ts +11 -0
  24. package/dist/instance/details/CloudFoundryInstanceDetails.d.ts +23 -0
  25. package/dist/instance/details/index.d.ts +1 -0
  26. package/dist/instance/details/sections/CloudFoundryInstanceDetailsSection.d.ts +9 -0
  27. package/dist/instance/details/sections/index.d.ts +1 -0
  28. package/dist/loadBalancer/configure/CloudFoundryMapLoadBalancerModal.d.ts +33 -0
  29. package/dist/loadBalancer/configure/loadBalancerDetails.d.ts +32 -0
  30. package/dist/loadBalancer/details/CloudFoundryLoadBalancerActions.d.ts +10 -0
  31. package/dist/loadBalancer/details/CloudFoundryLoadBalancerDetails.d.ts +26 -0
  32. package/dist/loadBalancer/details/index.d.ts +1 -0
  33. package/dist/loadBalancer/details/sections/CloudFoundryLoadBalancerDetailsSection.d.ts +9 -0
  34. package/dist/loadBalancer/details/sections/CloudFoundryLoadBalancerLinksSection.d.ts +9 -0
  35. package/dist/loadBalancer/details/sections/CloudFoundryLoadBalancerStatusSection.d.ts +9 -0
  36. package/dist/loadBalancer/details/sections/index.d.ts +3 -0
  37. package/dist/loadBalancer/index.d.ts +3 -0
  38. package/dist/loadBalancer/loadBalancer.transformer.d.ts +25 -0
  39. package/dist/pipeline/config/validation/cfTargetImpedance.validator.d.ts +9 -0
  40. package/dist/pipeline/config/validation/instanceSize.validator.d.ts +15 -0
  41. package/dist/pipeline/config/validation/requiredRoutes.validator.d.ts +4 -0
  42. package/dist/pipeline/stages/bakeCloudFoundryManifest/BakeCloudFoundryManifestConfig.d.ts +7 -0
  43. package/dist/pipeline/stages/bakeCloudFoundryManifest/BakeCloudFoundryManifestConfigForm.d.ts +13 -0
  44. package/dist/pipeline/stages/bakeCloudFoundryManifest/BakeCloudFoundryManifestDetailsTab.d.ts +6 -0
  45. package/dist/pipeline/stages/bakeCloudFoundryManifest/bakeCloudFoundryManifestStage.d.ts +1 -0
  46. package/dist/pipeline/stages/cloneServerGroup/CloudFoundryCloneServerGroupStageConfig.d.ts +11 -0
  47. package/dist/pipeline/stages/cloneServerGroup/cloudFoundryCloneServerGroupStage.module.d.ts +1 -0
  48. package/dist/pipeline/stages/createServiceBindings/CloudFoundryCreateServiceBindingsConfig.d.ts +9 -0
  49. package/dist/pipeline/stages/createServiceBindings/CloudFoundryCreateServiceBindingsStageConfigForm.d.ts +26 -0
  50. package/dist/pipeline/stages/createServiceBindings/cloudFoundryCreateServiceBindingsStage.d.ts +1 -0
  51. package/dist/pipeline/stages/createServiceKey/CloudFoundryCreateServiceKeyStageConfig.d.ts +19 -0
  52. package/dist/pipeline/stages/createServiceKey/cloudFoundryCreateServiceKeyStage.module.d.ts +1 -0
  53. package/dist/pipeline/stages/deleteServiceBindings/CloudFoundryDeleteServiceBindingsConfig.d.ts +10 -0
  54. package/dist/pipeline/stages/deleteServiceBindings/CloudFoundryDeleteServiceBindingsStageConfigForm.d.ts +20 -0
  55. package/dist/pipeline/stages/deleteServiceBindings/cloudFoundryDeleteServiceBindingsStage.d.ts +1 -0
  56. package/dist/pipeline/stages/deleteServiceKey/CloudFoundryDeleteServiceKeyStageConfig.d.ts +19 -0
  57. package/dist/pipeline/stages/deleteServiceKey/cloudFoundryDeleteServiceKeyStage.module.d.ts +1 -0
  58. package/dist/pipeline/stages/deployService/CloudFoundryDeployServiceStageConfig.d.ts +24 -0
  59. package/dist/pipeline/stages/deployService/CreateServiceInstanceDirectInput.d.ts +29 -0
  60. package/dist/pipeline/stages/deployService/CreateUserProvidedInput.d.ts +19 -0
  61. package/dist/pipeline/stages/deployService/ICloudFoundryServiceManifestSource.d.ts +24 -0
  62. package/dist/pipeline/stages/deployService/ServiceTagsInput.d.ts +17 -0
  63. package/dist/pipeline/stages/deployService/cloudFoundryDeployServiceStage.module.d.ts +1 -0
  64. package/dist/pipeline/stages/destroyAsg/cloudFoundryDestroyAsgStage.module.d.ts +1 -0
  65. package/dist/pipeline/stages/destroyService/CloudFoundryDestroyServiceStageConfig.d.ts +5 -0
  66. package/dist/pipeline/stages/destroyService/CloudFoundryDestroyServiceStageConfigForm.d.ts +19 -0
  67. package/dist/pipeline/stages/destroyService/cloudFoundryDestroyServiceStage.module.d.ts +1 -0
  68. package/dist/pipeline/stages/disableAsg/cloudFoundryDisableAsgStage.module.d.ts +1 -0
  69. package/dist/pipeline/stages/enableAsg/cloudFoundryEnableAsgStage.module.d.ts +1 -0
  70. package/dist/pipeline/stages/mapLoadBalancers/cloudFoundryMapLoadBalancersStage.module.d.ts +1 -0
  71. package/dist/pipeline/stages/resizeAsg/CloudFoundryResizeAsgStageConfig.d.ts +17 -0
  72. package/dist/pipeline/stages/resizeAsg/cloudFoundryResizeAsgStage.module.d.ts +1 -0
  73. package/dist/pipeline/stages/rollbackCluster/CloudFoundryRollbackClusterStageConfig.d.ts +17 -0
  74. package/dist/pipeline/stages/rollbackCluster/cloudFoundryRollbackClusterStage.module.d.ts +1 -0
  75. package/dist/pipeline/stages/runJob/CloudFoundryRunJobStageConfig.d.ts +14 -0
  76. package/dist/pipeline/stages/runJob/RunJobExecutionDetails.d.ts +6 -0
  77. package/dist/pipeline/stages/runJob/cloudFoundryRunJob.module.d.ts +1 -0
  78. package/dist/pipeline/stages/shareService/CloudFoundryShareServiceExecutionDetails.d.ts +6 -0
  79. package/dist/pipeline/stages/shareService/CloudFoundryShareServiceStageConfig.d.ts +21 -0
  80. package/dist/pipeline/stages/shareService/cloudFoundryShareServiceStage.module.d.ts +1 -0
  81. package/dist/pipeline/stages/unmapLoadBalancers/cloudFoundryUnmapLoadBalancersStage.module.d.ts +1 -0
  82. package/dist/pipeline/stages/unshareService/CloudFoundryUnshareServiceExecutionDetails.d.ts +6 -0
  83. package/dist/pipeline/stages/unshareService/CloudFoundryUnshareServiceStageConfig.d.ts +18 -0
  84. package/dist/pipeline/stages/unshareService/cloudFoundryUnshareServiceStage.module.d.ts +1 -0
  85. package/dist/presentation/forms/index.d.ts +2 -0
  86. package/dist/presentation/forms/inputs/FormikConfigField.d.ts +10 -0
  87. package/dist/presentation/forms/inputs/index.d.ts +1 -0
  88. package/dist/presentation/forms/serverGroup/Buildpacks.d.ts +8 -0
  89. package/dist/presentation/forms/serverGroup/EnvironmentVariables.d.ts +8 -0
  90. package/dist/presentation/forms/serverGroup/HealthCheck.d.ts +12 -0
  91. package/dist/presentation/forms/serverGroup/InstanceParameters.d.ts +12 -0
  92. package/dist/presentation/forms/serverGroup/Routes.d.ts +10 -0
  93. package/dist/presentation/forms/serverGroup/Services.d.ts +5 -0
  94. package/dist/presentation/forms/serverGroup/index.d.ts +6 -0
  95. package/dist/presentation/index.d.ts +3 -0
  96. package/dist/presentation/pipeline/index.d.ts +1 -0
  97. package/dist/presentation/pipeline/stages/CloudFoundryAsgStageConfig.d.ts +14 -0
  98. package/dist/presentation/pipeline/stages/CloudFoundryLoadBalancersExecutionDetails.d.ts +6 -0
  99. package/dist/presentation/pipeline/stages/CloudFoundryLoadBalancersStageConfig.d.ts +25 -0
  100. package/dist/presentation/pipeline/stages/CloudFoundryServiceExecutionDetails.d.ts +6 -0
  101. package/dist/presentation/pipeline/stages/CloudFoundryServiceKeyExecutionDetails.d.ts +6 -0
  102. package/dist/presentation/pipeline/stages/index.d.ts +5 -0
  103. package/dist/presentation/widgets/accountRegionClusterSelector/AccountRegionClusterSelector.d.ts +33 -0
  104. package/dist/presentation/widgets/accountRegionClusterSelector/FormikAccountRegionClusterSelector.d.ts +32 -0
  105. package/dist/presentation/widgets/accountRegionClusterSelector/index.d.ts +2 -0
  106. package/dist/presentation/widgets/index.d.ts +1 -0
  107. package/dist/presentation/widgets/recentLogs/CloudFoundryRecentLogs.d.ts +27 -0
  108. package/dist/routeDomains/index.d.ts +1 -0
  109. package/dist/routeDomains/routeDomainSelectField.d.ts +15 -0
  110. package/dist/serverGroup/configure/index.d.ts +4 -0
  111. package/dist/serverGroup/configure/serverGroupCommandBuilder.service.cf.d.ts +12 -0
  112. package/dist/serverGroup/configure/serverGroupCommandBuilderShim.service.cf.d.ts +14 -0
  113. package/dist/serverGroup/configure/serverGroupConfigurationModel.cf.d.ts +65 -0
  114. package/dist/serverGroup/configure/wizard/CreateServerGroupModal.d.ts +31 -0
  115. package/dist/serverGroup/configure/wizard/ServerGroupTemplateSelection.d.ts +16 -0
  116. package/dist/serverGroup/configure/wizard/sections/artifactSettings/ArtifactSettings.cf.d.ts +17 -0
  117. package/dist/serverGroup/configure/wizard/sections/artifactSettings/ConstantArtifactSettings.cf.d.ts +11 -0
  118. package/dist/serverGroup/configure/wizard/sections/basicSettings/BasicSettings.cf.d.ts +24 -0
  119. package/dist/serverGroup/configure/wizard/sections/cloneSettings/CloneSettings.cf.d.ts +21 -0
  120. package/dist/serverGroup/configure/wizard/sections/configurationSettings/ConfigurationSettings.cf.d.ts +22 -0
  121. package/dist/serverGroup/details/cfServerGroupDetailsGetter.d.ts +4 -0
  122. package/dist/serverGroup/details/cloudFoundryServerGroupActions.d.ts +24 -0
  123. package/dist/serverGroup/details/mapLoadBalancers/CloudFoundryMapLoadBalancersModal.d.ts +28 -0
  124. package/dist/serverGroup/details/mapLoadBalancers/CloudFoundryUnmapLoadBalancersModal.d.ts +28 -0
  125. package/dist/serverGroup/details/resize/CloudFoundryResizeServerGroupModal.d.ts +37 -0
  126. package/dist/serverGroup/details/rollback/CloudFoundryRollbackServerGroupModal.d.ts +36 -0
  127. package/dist/serverGroup/details/sections/ApplicationManagerSection.d.ts +6 -0
  128. package/dist/serverGroup/details/sections/BoundServicesSection.d.ts +6 -0
  129. package/dist/serverGroup/details/sections/BuildSection.d.ts +6 -0
  130. package/dist/serverGroup/details/sections/EnvironmentVariablesSection.d.ts +6 -0
  131. package/dist/serverGroup/details/sections/HealthCheckSection.d.ts +6 -0
  132. package/dist/serverGroup/details/sections/ICloudFoundryServerGroupDetailsSectionProps.d.ts +5 -0
  133. package/dist/serverGroup/details/sections/MetricsSection.d.ts +6 -0
  134. package/dist/serverGroup/details/sections/PackageSection.d.ts +6 -0
  135. package/dist/serverGroup/details/sections/ServerGroupInformationSection.d.ts +6 -0
  136. package/dist/serverGroup/details/sections/ServerGroupSizingSection.d.ts +6 -0
  137. package/dist/serverGroup/details/sections/index.d.ts +9 -0
  138. package/dist/serverGroup/index.d.ts +5 -0
  139. package/dist/serverGroup/serverGroup.transformer.d.ts +10 -0
  140. package/package.json +52 -0
  141. package/src/cf.module.ts +85 -0
  142. package/src/cf.settings.ts +14 -0
  143. package/src/common/applicationName.validator.ts +43 -0
  144. package/src/common/cloudFoundry.less +16 -0
  145. package/src/deploymentStrategy/CloudFoundryDeploymentStrategySelector.tsx +175 -0
  146. package/src/deploymentStrategy/strategies/redblack/redblack.strategy.ts +11 -0
  147. package/src/deploymentStrategy/strategies/rollingredblack/AdditionalFields.tsx +161 -0
  148. package/src/domain/ICloudFoundryAccount.ts +9 -0
  149. package/src/domain/ICloudFoundryApplication.ts +5 -0
  150. package/src/domain/ICloudFoundryCluster.ts +6 -0
  151. package/src/domain/ICloudFoundryDroplet.ts +22 -0
  152. package/src/domain/ICloudFoundryInstance.ts +5 -0
  153. package/src/domain/ICloudFoundryLoadBalancer.ts +29 -0
  154. package/src/domain/ICloudFoundryServerGroup.ts +47 -0
  155. package/src/domain/ICloudFoundrySpace.ts +10 -0
  156. package/src/domain/index.ts +8 -0
  157. package/src/help/cloudfoundry.help.ts +31 -0
  158. package/src/image/image.reader.cf.ts +17 -0
  159. package/src/index.ts +7 -0
  160. package/src/instance/details/CloudFoundryInstanceActions.tsx +59 -0
  161. package/src/instance/details/CloudFoundryInstanceDetails.tsx +154 -0
  162. package/src/instance/details/index.ts +1 -0
  163. package/src/instance/details/sections/CloudFoundryInstanceDetailsSection.tsx +49 -0
  164. package/src/instance/details/sections/index.ts +1 -0
  165. package/src/loadBalancer/configure/CloudFoundryMapLoadBalancerModal.tsx +210 -0
  166. package/src/loadBalancer/configure/loadBalancerDetails.tsx +228 -0
  167. package/src/loadBalancer/details/CloudFoundryLoadBalancerActions.tsx +61 -0
  168. package/src/loadBalancer/details/CloudFoundryLoadBalancerDetails.tsx +148 -0
  169. package/src/loadBalancer/details/index.ts +1 -0
  170. package/src/loadBalancer/details/sections/CloudFoundryLoadBalancerDetailsSection.tsx +63 -0
  171. package/src/loadBalancer/details/sections/CloudFoundryLoadBalancerLinksSection.tsx +34 -0
  172. package/src/loadBalancer/details/sections/CloudFoundryLoadBalancerStatusSection.tsx +27 -0
  173. package/src/loadBalancer/details/sections/index.ts +3 -0
  174. package/src/loadBalancer/index.ts +3 -0
  175. package/src/loadBalancer/loadBalancer.transformer.ts +144 -0
  176. package/src/logo/cf.icon.svg +12 -0
  177. package/src/logo/cf.logo.less +5 -0
  178. package/src/logo/cf.logo.svg +12 -0
  179. package/src/pipeline/config/validation/cfTargetImpedance.validator.ts +60 -0
  180. package/src/pipeline/config/validation/instanceSize.validator.ts +66 -0
  181. package/src/pipeline/config/validation/requiredRoutes.validator.ts +26 -0
  182. package/src/pipeline/stages/bakeCloudFoundryManifest/BakeCloudFoundryManifestConfig.tsx +62 -0
  183. package/src/pipeline/stages/bakeCloudFoundryManifest/BakeCloudFoundryManifestConfigForm.tsx +174 -0
  184. package/src/pipeline/stages/bakeCloudFoundryManifest/BakeCloudFoundryManifestDetailsTab.tsx +35 -0
  185. package/src/pipeline/stages/bakeCloudFoundryManifest/bakeCloudFoundryManifestConfig.spec.tsx +80 -0
  186. package/src/pipeline/stages/bakeCloudFoundryManifest/bakeCloudFoundryManifestStage.ts +35 -0
  187. package/src/pipeline/stages/cloneServerGroup/CloudFoundryCloneServerGroupStageConfig.tsx +113 -0
  188. package/src/pipeline/stages/cloneServerGroup/cloudFoundryCloneServerGroupStage.module.ts +14 -0
  189. package/src/pipeline/stages/createServiceBindings/CloudFoundryCreateServiceBindingsConfig.spec.tsx +35 -0
  190. package/src/pipeline/stages/createServiceBindings/CloudFoundryCreateServiceBindingsConfig.tsx +69 -0
  191. package/src/pipeline/stages/createServiceBindings/CloudFoundryCreateServiceBindingsStageConfigForm.tsx +230 -0
  192. package/src/pipeline/stages/createServiceBindings/cloudFoundryCreateServiceBindingsStage.ts +19 -0
  193. package/src/pipeline/stages/createServiceBindings/cloudFoundryCreateServiceBindingsStageForm.spec.tsx +50 -0
  194. package/src/pipeline/stages/createServiceKey/CloudFoundryCreateServiceKeyStageConfig.tsx +116 -0
  195. package/src/pipeline/stages/createServiceKey/cloudFoundryCreateServiceKeyStage.module.ts +21 -0
  196. package/src/pipeline/stages/deleteServiceBindings/CloudFoundryDeleteServiceBindingsConfig.tsx +69 -0
  197. package/src/pipeline/stages/deleteServiceBindings/CloudFoundryDeleteServiceBindingsStageConfigForm.tsx +158 -0
  198. package/src/pipeline/stages/deleteServiceBindings/cloudFoundryDeleteServiceBindingsStage.ts +19 -0
  199. package/src/pipeline/stages/deleteServiceBindings/cloudFoundryDeleteServiceBindingsStageForm.spec.tsx +49 -0
  200. package/src/pipeline/stages/deleteServiceKey/CloudFoundryDeleteServiceKeyStageConfig.tsx +116 -0
  201. package/src/pipeline/stages/deleteServiceKey/cloudFoundryDeleteServiceKeyStage.module.ts +22 -0
  202. package/src/pipeline/stages/deployService/CloudFoundryDeployServiceStageConfig.tsx +198 -0
  203. package/src/pipeline/stages/deployService/CreateServiceInstanceDirectInput.tsx +164 -0
  204. package/src/pipeline/stages/deployService/CreateUserProvidedInput.tsx +116 -0
  205. package/src/pipeline/stages/deployService/ICloudFoundryServiceManifestSource.ts +27 -0
  206. package/src/pipeline/stages/deployService/ServiceTagsInput.tsx +89 -0
  207. package/src/pipeline/stages/deployService/cloudFoundryDeployServiceStage.module.ts +153 -0
  208. package/src/pipeline/stages/deployService/cloudfoundryDeployServiceStage.less +12 -0
  209. package/src/pipeline/stages/destroyAsg/cloudFoundryDestroyAsgStage.module.ts +23 -0
  210. package/src/pipeline/stages/destroyService/CloudFoundryDestroyServiceStageConfig.tsx +46 -0
  211. package/src/pipeline/stages/destroyService/CloudFoundryDestroyServiceStageConfigForm.tsx +134 -0
  212. package/src/pipeline/stages/destroyService/cloudFoundryDestroyServiceStage.module.ts +20 -0
  213. package/src/pipeline/stages/disableAsg/cloudFoundryDisableAsgStage.module.ts +18 -0
  214. package/src/pipeline/stages/enableAsg/cloudFoundryEnableAsgStage.module.ts +18 -0
  215. package/src/pipeline/stages/mapLoadBalancers/cloudFoundryMapLoadBalancersStage.module.ts +21 -0
  216. package/src/pipeline/stages/resizeAsg/CloudFoundryResizeAsgStageConfig.tsx +148 -0
  217. package/src/pipeline/stages/resizeAsg/cloudFoundryResizeAsgStage.module.ts +52 -0
  218. package/src/pipeline/stages/rollbackCluster/CloudFoundryRollbackClusterStageConfig.tsx +90 -0
  219. package/src/pipeline/stages/rollbackCluster/cloudFoundryRollbackClusterStage.module.ts +19 -0
  220. package/src/pipeline/stages/runJob/CloudFoundryRunJobStageConfig.tsx +100 -0
  221. package/src/pipeline/stages/runJob/RunJobExecutionDetails.tsx +62 -0
  222. package/src/pipeline/stages/runJob/cloudFoundryRunJob.module.ts +24 -0
  223. package/src/pipeline/stages/shareService/CloudFoundryShareServiceExecutionDetails.tsx +52 -0
  224. package/src/pipeline/stages/shareService/CloudFoundryShareServiceStageConfig.tsx +141 -0
  225. package/src/pipeline/stages/shareService/cloudFoundryShareServiceStage.module.ts +21 -0
  226. package/src/pipeline/stages/unmapLoadBalancers/cloudFoundryUnmapLoadBalancersStage.module.ts +21 -0
  227. package/src/pipeline/stages/unshareService/CloudFoundryUnshareServiceExecutionDetails.tsx +46 -0
  228. package/src/pipeline/stages/unshareService/CloudFoundryUnshareServiceStageConfig.tsx +114 -0
  229. package/src/pipeline/stages/unshareService/cloudFoundryUnshareServiceStage.module.ts +21 -0
  230. package/src/presentation/forms/index.ts +2 -0
  231. package/src/presentation/forms/inputs/FormikConfigField.tsx +28 -0
  232. package/src/presentation/forms/inputs/index.ts +1 -0
  233. package/src/presentation/forms/serverGroup/Buildpacks.tsx +69 -0
  234. package/src/presentation/forms/serverGroup/EnvironmentVariables.tsx +94 -0
  235. package/src/presentation/forms/serverGroup/HealthCheck.tsx +57 -0
  236. package/src/presentation/forms/serverGroup/InstanceParameters.tsx +63 -0
  237. package/src/presentation/forms/serverGroup/Routes.tsx +74 -0
  238. package/src/presentation/forms/serverGroup/Services.tsx +62 -0
  239. package/src/presentation/forms/serverGroup/index.ts +6 -0
  240. package/src/presentation/index.ts +3 -0
  241. package/src/presentation/pipeline/index.ts +1 -0
  242. package/src/presentation/pipeline/stages/CloudFoundryAsgStageConfig.tsx +67 -0
  243. package/src/presentation/pipeline/stages/CloudFoundryLoadBalancersExecutionDetails.tsx +53 -0
  244. package/src/presentation/pipeline/stages/CloudFoundryLoadBalancersStageConfig.tsx +116 -0
  245. package/src/presentation/pipeline/stages/CloudFoundryServiceExecutionDetails.tsx +46 -0
  246. package/src/presentation/pipeline/stages/CloudFoundryServiceKeyExecutionDetails.tsx +52 -0
  247. package/src/presentation/pipeline/stages/index.ts +5 -0
  248. package/src/presentation/widgets/accountRegionClusterSelector/AccountRegionClusterSelector.spec.tsx +385 -0
  249. package/src/presentation/widgets/accountRegionClusterSelector/AccountRegionClusterSelector.tsx +231 -0
  250. package/src/presentation/widgets/accountRegionClusterSelector/FormikAccountRegionClusterSelector.tsx +164 -0
  251. package/src/presentation/widgets/accountRegionClusterSelector/index.ts +2 -0
  252. package/src/presentation/widgets/index.ts +1 -0
  253. package/src/presentation/widgets/recentLogs/CloudFoundryRecentLogs.tsx +112 -0
  254. package/src/routeDomains/index.ts +1 -0
  255. package/src/routeDomains/routeDomainSelectField.tsx +48 -0
  256. package/src/serverGroup/configure/index.ts +4 -0
  257. package/src/serverGroup/configure/serverGroupCommandBuilder.service.cf.ts +168 -0
  258. package/src/serverGroup/configure/serverGroupCommandBuilderShim.service.cf.ts +64 -0
  259. package/src/serverGroup/configure/serverGroupConfigurationModel.cf.ts +77 -0
  260. package/src/serverGroup/configure/wizard/CreateServerGroupModal.tsx +194 -0
  261. package/src/serverGroup/configure/wizard/ServerGroupTemplateSelection.tsx +55 -0
  262. package/src/serverGroup/configure/wizard/sections/artifactSettings/ArtifactSettings.cf.tsx +78 -0
  263. package/src/serverGroup/configure/wizard/sections/artifactSettings/ConstantArtifactSettings.cf.tsx +49 -0
  264. package/src/serverGroup/configure/wizard/sections/basicSettings/BasicSettings.cf.tsx +163 -0
  265. package/src/serverGroup/configure/wizard/sections/cloneSettings/CloneSettings.cf.tsx +101 -0
  266. package/src/serverGroup/configure/wizard/sections/configurationSettings/ConfigurationSettings.cf.tsx +230 -0
  267. package/src/serverGroup/configure/wizard/serverGroup.less +3 -0
  268. package/src/serverGroup/details/cfServerGroupDetailsGetter.ts +60 -0
  269. package/src/serverGroup/details/cloudFoundryServerGroupActions.tsx +365 -0
  270. package/src/serverGroup/details/mapLoadBalancers/CloudFoundryMapLoadBalancersModal.tsx +137 -0
  271. package/src/serverGroup/details/mapLoadBalancers/CloudFoundryUnmapLoadBalancersModal.tsx +137 -0
  272. package/src/serverGroup/details/resize/CloudFoundryResizeServerGroupModal.tsx +232 -0
  273. package/src/serverGroup/details/rollback/CloudFoundryRollbackServerGroupModal.tsx +179 -0
  274. package/src/serverGroup/details/sections/ApplicationManagerSection.tsx +28 -0
  275. package/src/serverGroup/details/sections/BoundServicesSection.tsx +39 -0
  276. package/src/serverGroup/details/sections/BuildSection.tsx +61 -0
  277. package/src/serverGroup/details/sections/EnvironmentVariablesSection.tsx +34 -0
  278. package/src/serverGroup/details/sections/HealthCheckSection.tsx +28 -0
  279. package/src/serverGroup/details/sections/ICloudFoundryServerGroupDetailsSectionProps.ts +6 -0
  280. package/src/serverGroup/details/sections/MetricsSection.tsx +28 -0
  281. package/src/serverGroup/details/sections/PackageSection.tsx +27 -0
  282. package/src/serverGroup/details/sections/ServerGroupInformationSection.tsx +58 -0
  283. package/src/serverGroup/details/sections/ServerGroupSizingSection.tsx +27 -0
  284. package/src/serverGroup/details/sections/index.ts +9 -0
  285. package/src/serverGroup/index.ts +5 -0
  286. package/src/serverGroup/serverGroup.transformer.ts +42 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1085 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [0.1.13](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.1.12...@spinnaker/cloudfoundry@0.1.13) (2024-06-10)
7
+
8
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.1.12](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.1.11...@spinnaker/cloudfoundry@0.1.12) (2024-05-10)
15
+
16
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
17
+
18
+
19
+
20
+
21
+
22
+ ## [0.1.11](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.1.10...@spinnaker/cloudfoundry@0.1.11) (2023-12-07)
23
+
24
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
25
+
26
+
27
+
28
+
29
+
30
+ ## [0.1.10](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.1.9...@spinnaker/cloudfoundry@0.1.10) (2023-10-16)
31
+
32
+
33
+ ### Bug Fixes
34
+
35
+ * **publish:** set access config in deck libraries ([#10049](https://github.com/spinnaker/deck/issues/10049)) ([2a5ebe2](https://github.com/spinnaker/deck/commit/2a5ebe25662eeb9d41b5071749266bf9d6d51104))
36
+
37
+
38
+
39
+
40
+
41
+ ## [0.1.9](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.1.8...@spinnaker/cloudfoundry@0.1.9) (2023-09-06)
42
+
43
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
44
+
45
+
46
+
47
+
48
+
49
+ ## [0.1.8](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.1.7...@spinnaker/cloudfoundry@0.1.8) (2023-07-20)
50
+
51
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
52
+
53
+
54
+
55
+
56
+
57
+ ## [0.1.7](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.1.6...@spinnaker/cloudfoundry@0.1.7) (2023-06-02)
58
+
59
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
60
+
61
+
62
+
63
+
64
+
65
+ ## [0.1.6](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.1.5...@spinnaker/cloudfoundry@0.1.6) (2023-05-11)
66
+
67
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
68
+
69
+
70
+
71
+
72
+
73
+ ## [0.1.5](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.1.4...@spinnaker/cloudfoundry@0.1.5) (2023-05-03)
74
+
75
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
76
+
77
+
78
+
79
+
80
+
81
+ ## [0.1.4](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.1.3...@spinnaker/cloudfoundry@0.1.4) (2023-04-03)
82
+
83
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
84
+
85
+
86
+
87
+
88
+
89
+ ## [0.1.3](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.1.2...@spinnaker/cloudfoundry@0.1.3) (2023-02-01)
90
+
91
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
92
+
93
+
94
+
95
+
96
+
97
+ ## [0.1.2](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.1.1...@spinnaker/cloudfoundry@0.1.2) (2022-10-21)
98
+
99
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
100
+
101
+
102
+
103
+
104
+
105
+ ## [0.1.1](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.1.0...@spinnaker/cloudfoundry@0.1.1) (2022-10-06)
106
+
107
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
108
+
109
+
110
+
111
+
112
+
113
+ # [0.1.0](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.176...@spinnaker/cloudfoundry@0.1.0) (2022-08-03)
114
+
115
+
116
+ ### Features
117
+
118
+ * **dependencies:** Update vulnerable dependencies ([#9875](https://github.com/spinnaker/deck/issues/9875)) ([bf92932](https://github.com/spinnaker/deck/commit/bf92932c9396a88fb902050b52f504e4ac01aaa0))
119
+
120
+
121
+
122
+
123
+
124
+ ## [0.0.176](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.175...@spinnaker/cloudfoundry@0.0.176) (2022-07-11)
125
+
126
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
127
+
128
+
129
+
130
+
131
+
132
+ ## [0.0.175](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.174...@spinnaker/cloudfoundry@0.0.175) (2022-07-01)
133
+
134
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
135
+
136
+
137
+
138
+
139
+
140
+ ## [0.0.174](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.173...@spinnaker/cloudfoundry@0.0.174) (2022-06-22)
141
+
142
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
143
+
144
+
145
+
146
+
147
+
148
+ ## [0.0.173](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.172...@spinnaker/cloudfoundry@0.0.173) (2022-05-13)
149
+
150
+
151
+ ### Bug Fixes
152
+
153
+ * **cf:** extract service name from context for execution details ([#9843](https://github.com/spinnaker/deck/issues/9843)) ([f8b704c](https://github.com/spinnaker/deck/commit/f8b704c831e4c90b3257740e93c214f74e9ee06f))
154
+
155
+
156
+
157
+
158
+
159
+ ## [0.0.172](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.171...@spinnaker/cloudfoundry@0.0.172) (2022-05-05)
160
+
161
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
162
+
163
+
164
+
165
+
166
+
167
+ ## [0.0.171](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.170...@spinnaker/cloudfoundry@0.0.171) (2022-04-21)
168
+
169
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
170
+
171
+
172
+
173
+
174
+
175
+ ## [0.0.170](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.169...@spinnaker/cloudfoundry@0.0.170) (2022-04-09)
176
+
177
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
178
+
179
+
180
+
181
+
182
+
183
+ ## [0.0.169](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.168...@spinnaker/cloudfoundry@0.0.169) (2022-03-08)
184
+
185
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
186
+
187
+
188
+
189
+
190
+
191
+ ## [0.0.168](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.167...@spinnaker/cloudfoundry@0.0.168) (2022-03-04)
192
+
193
+
194
+ ### Bug Fixes
195
+
196
+ * **cf:** return credentials in an array ([#9812](https://github.com/spinnaker/deck/issues/9812)) ([c96faa5](https://github.com/spinnaker/deck/commit/c96faa581482d251c07132bdcc023e04fc8e869b))
197
+
198
+
199
+
200
+
201
+
202
+ ## [0.0.167](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.166...@spinnaker/cloudfoundry@0.0.167) (2022-01-22)
203
+
204
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
205
+
206
+
207
+
208
+
209
+
210
+ ## [0.0.166](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.165...@spinnaker/cloudfoundry@0.0.166) (2022-01-12)
211
+
212
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
213
+
214
+
215
+
216
+
217
+
218
+ ## [0.0.165](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.164...@spinnaker/cloudfoundry@0.0.165) (2021-12-11)
219
+
220
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
221
+
222
+
223
+
224
+
225
+
226
+ ## [0.0.164](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.163...@spinnaker/cloudfoundry@0.0.164) (2021-12-08)
227
+
228
+
229
+ ### Bug Fixes
230
+
231
+ * **cf:** fix casing of Cloud Foundry across components ([#9784](https://github.com/spinnaker/deck/issues/9784)) ([0e13bf0](https://github.com/spinnaker/deck/commit/0e13bf0230dc557eb3a054a3a07dbe2ca3dfccc8))
232
+
233
+
234
+
235
+
236
+
237
+ ## [0.0.163](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.162...@spinnaker/cloudfoundry@0.0.163) (2021-12-01)
238
+
239
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
240
+
241
+
242
+
243
+
244
+
245
+ ## [0.0.162](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.161...@spinnaker/cloudfoundry@0.0.162) (2021-11-12)
246
+
247
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
248
+
249
+
250
+
251
+
252
+
253
+ ## [0.0.161](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.160...@spinnaker/cloudfoundry@0.0.161) (2021-11-03)
254
+
255
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
256
+
257
+
258
+
259
+
260
+
261
+ ## [0.0.160](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.159...@spinnaker/cloudfoundry@0.0.160) (2021-10-05)
262
+
263
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
264
+
265
+
266
+
267
+
268
+
269
+ ## [0.0.159](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.158...@spinnaker/cloudfoundry@0.0.159) (2021-10-01)
270
+
271
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
272
+
273
+
274
+
275
+
276
+
277
+ ## [0.0.158](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.156...@spinnaker/cloudfoundry@0.0.158) (2021-09-30)
278
+
279
+
280
+ ### Bug Fixes
281
+
282
+ * bump @types/react to 16.14.10 ([bb62b99](https://github.com/spinnaker/deck/commit/bb62b991514c2a81fbdf467c01f3ce7467f71718))
283
+
284
+
285
+
286
+
287
+
288
+ ## [0.0.157](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.156...@spinnaker/cloudfoundry@0.0.157) (2021-09-30)
289
+
290
+
291
+ ### Bug Fixes
292
+
293
+ * bump @types/react to 16.14.10 ([bb62b99](https://github.com/spinnaker/deck/commit/bb62b991514c2a81fbdf467c01f3ce7467f71718))
294
+
295
+
296
+
297
+
298
+
299
+ ## [0.0.156](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.155...@spinnaker/cloudfoundry@0.0.156) (2021-09-29)
300
+
301
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
302
+
303
+
304
+
305
+
306
+
307
+ ## [0.0.155](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.154...@spinnaker/cloudfoundry@0.0.155) (2021-09-24)
308
+
309
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
310
+
311
+
312
+
313
+
314
+
315
+ ## [0.0.154](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.153...@spinnaker/cloudfoundry@0.0.154) (2021-09-23)
316
+
317
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
318
+
319
+
320
+
321
+
322
+
323
+ ## [0.0.153](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.152...@spinnaker/cloudfoundry@0.0.153) (2021-09-23)
324
+
325
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
326
+
327
+
328
+
329
+
330
+
331
+ ## [0.0.152](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.151...@spinnaker/cloudfoundry@0.0.152) (2021-09-21)
332
+
333
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
334
+
335
+
336
+
337
+
338
+
339
+ ## [0.0.151](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.150...@spinnaker/cloudfoundry@0.0.151) (2021-09-18)
340
+
341
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
342
+
343
+
344
+
345
+
346
+
347
+ ## [0.0.150](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.149...@spinnaker/cloudfoundry@0.0.150) (2021-09-18)
348
+
349
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
350
+
351
+
352
+
353
+
354
+
355
+ ## [0.0.149](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.148...@spinnaker/cloudfoundry@0.0.149) (2021-09-16)
356
+
357
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
358
+
359
+
360
+
361
+
362
+
363
+ ## [0.0.148](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.147...@spinnaker/cloudfoundry@0.0.148) (2021-09-15)
364
+
365
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
366
+
367
+
368
+
369
+
370
+
371
+ ## [0.0.147](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.146...@spinnaker/cloudfoundry@0.0.147) (2021-09-14)
372
+
373
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
374
+
375
+
376
+
377
+
378
+
379
+ ## [0.0.146](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.145...@spinnaker/cloudfoundry@0.0.146) (2021-09-06)
380
+
381
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
382
+
383
+
384
+
385
+
386
+
387
+ ## [0.0.145](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.144...@spinnaker/cloudfoundry@0.0.145) (2021-09-02)
388
+
389
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
390
+
391
+
392
+
393
+
394
+
395
+ ## [0.0.144](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.143...@spinnaker/cloudfoundry@0.0.144) (2021-08-30)
396
+
397
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
398
+
399
+
400
+
401
+
402
+
403
+ ## [0.0.143](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.142...@spinnaker/cloudfoundry@0.0.143) (2021-08-25)
404
+
405
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
406
+
407
+
408
+
409
+
410
+
411
+ ## [0.0.142](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.141...@spinnaker/cloudfoundry@0.0.142) (2021-08-20)
412
+
413
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
414
+
415
+
416
+
417
+
418
+
419
+ ## [0.0.141](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.140...@spinnaker/cloudfoundry@0.0.141) (2021-08-18)
420
+
421
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
422
+
423
+
424
+
425
+
426
+
427
+ ## [0.0.140](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.139...@spinnaker/cloudfoundry@0.0.140) (2021-08-17)
428
+
429
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
430
+
431
+
432
+
433
+
434
+
435
+ ## [0.0.139](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.138...@spinnaker/cloudfoundry@0.0.139) (2021-08-13)
436
+
437
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
438
+
439
+
440
+
441
+
442
+
443
+ ## [0.0.138](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.137...@spinnaker/cloudfoundry@0.0.138) (2021-08-10)
444
+
445
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
446
+
447
+
448
+
449
+
450
+
451
+ ## [0.0.137](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.136...@spinnaker/cloudfoundry@0.0.137) (2021-08-05)
452
+
453
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
454
+
455
+
456
+
457
+
458
+
459
+ ## [0.0.136](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.135...@spinnaker/cloudfoundry@0.0.136) (2021-08-02)
460
+
461
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
462
+
463
+
464
+
465
+
466
+
467
+ ## [0.0.135](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.134...@spinnaker/cloudfoundry@0.0.135) (2021-07-30)
468
+
469
+
470
+ ### Bug Fixes
471
+
472
+ * **build:** Upgrade uirouter/react version ([cc5004b](https://github.com/spinnaker/deck/commit/cc5004bfded32642553077346c19e34820d24ae7))
473
+
474
+
475
+
476
+
477
+
478
+ ## [0.0.134](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.133...@spinnaker/cloudfoundry@0.0.134) (2021-07-26)
479
+
480
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
481
+
482
+
483
+
484
+
485
+
486
+ ## [0.0.133](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.132...@spinnaker/cloudfoundry@0.0.133) (2021-07-22)
487
+
488
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
489
+
490
+
491
+
492
+
493
+
494
+ ## [0.0.132](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.130...@spinnaker/cloudfoundry@0.0.132) (2021-07-22)
495
+
496
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
497
+
498
+
499
+
500
+
501
+
502
+ ## [0.0.131](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.130...@spinnaker/cloudfoundry@0.0.131) (2021-07-22)
503
+
504
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
505
+
506
+
507
+
508
+
509
+
510
+ ## [0.0.130](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.125...@spinnaker/cloudfoundry@0.0.130) (2021-07-19)
511
+
512
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
513
+
514
+
515
+
516
+
517
+
518
+ ## [0.0.129](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.125...@spinnaker/cloudfoundry@0.0.129) (2021-07-19)
519
+
520
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
521
+
522
+
523
+
524
+
525
+
526
+ ## [0.0.128](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.125...@spinnaker/cloudfoundry@0.0.128) (2021-07-19)
527
+
528
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
529
+
530
+
531
+
532
+
533
+
534
+ ## [0.0.127](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.125...@spinnaker/cloudfoundry@0.0.127) (2021-07-19)
535
+
536
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
537
+
538
+
539
+
540
+
541
+
542
+ ## [0.0.126](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.125...@spinnaker/cloudfoundry@0.0.126) (2021-07-19)
543
+
544
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
545
+
546
+
547
+
548
+
549
+
550
+ ## 0.0.125 (2021-07-17)
551
+
552
+
553
+ ### Bug Fixes
554
+
555
+ * **publishing:** Auto approve instead of adding "ready to merge" label ([51f536c](https://github.com/spinnaker/deck/commit/51f536c275e77854d8f173aeec86412ffbd66b6d))
556
+
557
+
558
+
559
+
560
+
561
+
562
+ ## [0.0.123](https://www.github.com/spinnaker/deck/compare/674fa308e881cccafb5cf6850a9dd454f112aebd...5fc2772dcf043d67e259fdd438efc59b6c8b856d) (2021-07-08)
563
+
564
+
565
+ ### Changes
566
+
567
+ chore(cloudfoundry): publish cloudfoundry@0.0.123 ([5fc2772d](https://github.com/spinnaker/deck/commit/5fc2772dcf043d67e259fdd438efc59b6c8b856d))
568
+ chore(*): Import TaskMonitorWrapper from core instead of NgReact [#9406](https://github.com/spinnaker/deck/pull/9406) ([cce5473b](https://github.com/spinnaker/deck/commit/cce5473b600f173f9df41c7dabe6e2fceb29999f))
569
+ fix(cloudfoundry): Fix failing unit test ([e3bc17c8](https://github.com/spinnaker/deck/commit/e3bc17c856e0906bcb70f3fa5f4b2dcd24eab279))
570
+ feat(cloudfoundry): show baked manifest [#9187](https://github.com/spinnaker/deck/pull/9187) ([f75a54bc](https://github.com/spinnaker/deck/commit/f75a54bc69bccd883df621c3b9ea29b26c3706cb))
571
+ feat(cloudfoundry/unbind): Delete Service Bindings stage [#9384](https://github.com/spinnaker/deck/pull/9384) ([45e8b9fc](https://github.com/spinnaker/deck/commit/45e8b9fcddc84a5476e1382a78d6e38a59c65f1d))
572
+
573
+
574
+
575
+ ## [0.0.122](https://www.github.com/spinnaker/deck/compare/817eb336754ed6efc9651c8020a6ad151677fa2d...674fa308e881cccafb5cf6850a9dd454f112aebd) (2021-07-03)
576
+
577
+
578
+ ### Changes
579
+
580
+ chore(cloudfoundry): publish cloudfoundry@0.0.122 ([674fa308](https://github.com/spinnaker/deck/commit/674fa308e881cccafb5cf6850a9dd454f112aebd))
581
+ feat(cloudfoundry): add flag to destroy service stage [#9400](https://github.com/spinnaker/deck/pull/9400) ([11a01e77](https://github.com/spinnaker/deck/commit/11a01e77f1ee11ef79fc1980fc507e14f5701665))
582
+
583
+
584
+
585
+ ## [0.0.121](https://www.github.com/spinnaker/deck/compare/a407e8205fb6fcf159b0a0150d0168b6af16e1bd...817eb336754ed6efc9651c8020a6ad151677fa2d) (2021-07-01)
586
+
587
+
588
+ ### Changes
589
+
590
+ chore(cloudfoundry): publish cloudfoundry@0.0.121 ([817eb336](https://github.com/spinnaker/deck/commit/817eb336754ed6efc9651c8020a6ad151677fa2d))
591
+ chore(build): Integrate with yarn workspaces ([e30e631b](https://github.com/spinnaker/deck/commit/e30e631b128bd1c8bfef3a48643ce0b4f9935f1d))
592
+
593
+
594
+
595
+ ## [0.0.120](https://www.github.com/spinnaker/deck/compare/c31c36d4faccdd7378096445624184ad3faac8e8...a407e8205fb6fcf159b0a0150d0168b6af16e1bd) (2021-06-20)
596
+
597
+
598
+ ### Changes
599
+
600
+ chore(cloudfoundry): publish cloudfoundry@0.0.120 ([a407e820](https://github.com/spinnaker/deck/commit/a407e8205fb6fcf159b0a0150d0168b6af16e1bd))
601
+ fix(cloudfoundry/mapLoadBalancer): Remove validation on Route in order to allow to save Spel Expressions [#9243](https://github.com/spinnaker/deck/pull/9243) ([1eda3e3c](https://github.com/spinnaker/deck/commit/1eda3e3c1931e3df66ddbc24ba5b5aac9294565c))
602
+
603
+
604
+
605
+ ## [0.0.119](https://www.github.com/spinnaker/deck/compare/48ce01feda8987fe7e659dae12589461311c22ea...c31c36d4faccdd7378096445624184ad3faac8e8) (2021-06-14)
606
+
607
+
608
+ ### Changes
609
+
610
+ chore(cloudfoundry): publish cloudfoundry@0.0.119 ([c31c36d4](https://github.com/spinnaker/deck/commit/c31c36d4faccdd7378096445624184ad3faac8e8))
611
+ refactor(packages): Migrate packages to make them independent ([38b5fa17](https://github.com/spinnaker/deck/commit/38b5fa17d82a1a032e84e6c3f51c806b5d6901b8))
612
+
613
+
614
+
615
+ ## [0.0.118](https://www.github.com/spinnaker/deck/compare/5cb63c1701ae9cf75acb6d6b8c70decf5db7cc43...48ce01feda8987fe7e659dae12589461311c22ea) (2021-06-10)
616
+
617
+
618
+ ### Changes
619
+
620
+ chore(cloudfoundry): publish cloudfoundry@0.0.118 ([48ce01fe](https://github.com/spinnaker/deck/commit/48ce01feda8987fe7e659dae12589461311c22ea))
621
+ fix(build): Fix distribution dir ([eb87451a](https://github.com/spinnaker/deck/commit/eb87451afb8a4696a4c6d76589cb95d8b4192398))
622
+
623
+
624
+
625
+ ## [0.0.117](https://www.github.com/spinnaker/deck/compare/00a9338e0331cb4e5852ba418555b90921989bec...5cb63c1701ae9cf75acb6d6b8c70decf5db7cc43) (2021-05-12)
626
+
627
+
628
+ ### Changes
629
+
630
+ chore(cloudfoundry): publish cloudfoundry@0.0.117 ([5cb63c17](https://github.com/spinnaker/deck/commit/5cb63c1701ae9cf75acb6d6b8c70decf5db7cc43))
631
+ refactor(core): Convert AddEntityTagLinks to React [#9147](https://github.com/spinnaker/deck/pull/9147) ([39fa7730](https://github.com/spinnaker/deck/commit/39fa77303b75ca6e5b0af96d1e011bcff452cede))
632
+
633
+
634
+
635
+ ## [0.0.116](https://www.github.com/spinnaker/deck/compare/5e4b42bada026d13bf19bbbbd2c9585f3e1b2c7e...00a9338e0331cb4e5852ba418555b90921989bec) (2021-04-29)
636
+
637
+
638
+ ### Changes
639
+
640
+ chore(cloudfoundry): publish cloudfoundry@0.0.116 ([00a9338e](https://github.com/spinnaker/deck/commit/00a9338e0331cb4e5852ba418555b90921989bec))
641
+ chore(rxjs): Remove now unused imports of Observable from 'rxjs' ([a4fc97f3](https://github.com/spinnaker/deck/commit/a4fc97f3abfa4395079e70c52e856dad4d0ecc68))
642
+ chore(rxjs): Run rxjs 5-to-6 migration tooling ([c11835cf](https://github.com/spinnaker/deck/commit/c11835cfef079d5d6af8dcfbafa4fe416a059a3e))
643
+
644
+
645
+
646
+ ## [0.0.115](https://www.github.com/spinnaker/deck/compare/5d9c4b9ba5901d6534c7b4bef101132089748bb8...5e4b42bada026d13bf19bbbbd2c9585f3e1b2c7e) (2021-04-23)
647
+
648
+
649
+ ### Changes
650
+
651
+ chore(cloudfoundry): publish cloudfoundry@0.0.115 ([5e4b42ba](https://github.com/spinnaker/deck/commit/5e4b42bada026d13bf19bbbbd2c9585f3e1b2c7e))
652
+ chore(cloudfoundry): Implements map load balancer modal. [#9086](https://github.com/spinnaker/deck/pull/9086) ([38c9dd16](https://github.com/spinnaker/deck/commit/38c9dd168b48f4672e874f559af4cf2c43145de4))
653
+
654
+
655
+
656
+ ## [0.0.114](https://www.github.com/spinnaker/deck/compare/3b655c6892628f41036bcd0210b188f18afa6c58...5d9c4b9ba5901d6534c7b4bef101132089748bb8) (2021-04-21)
657
+
658
+
659
+ ### Changes
660
+
661
+ chore(cloudfoundry): publish cloudfoundry@0.0.114 ([5d9c4b9b](https://github.com/spinnaker/deck/commit/5d9c4b9ba5901d6534c7b4bef101132089748bb8))
662
+
663
+
664
+
665
+ ## [0.0.113](https://www.github.com/spinnaker/deck/compare/e9f586bd1d947aa1b093dea481ed892149e734f7...3b655c6892628f41036bcd0210b188f18afa6c58) (2021-04-21)
666
+
667
+
668
+ ### Changes
669
+
670
+ chore(cloudfoundry): publish cloudfoundry@0.0.113 ([3b655c68](https://github.com/spinnaker/deck/commit/3b655c6892628f41036bcd0210b188f18afa6c58))
671
+ Remove webpack modules + webpack consolidation [#9097](https://github.com/spinnaker/deck/pull/9097) ([00145566](https://github.com/spinnaker/deck/commit/001455667f2afb5c728737863f7365fc4fcbb76b))
672
+
673
+
674
+
675
+ ## [0.0.112](https://www.github.com/spinnaker/deck/compare/ef148414a0a80393c205efae8b1f94bcc1510304...e9f586bd1d947aa1b093dea481ed892149e734f7) (2021-02-22)
676
+
677
+
678
+ ### Changes
679
+
680
+ chore(cloudfoundry): publish cloudfoundry@0.0.112 ([e9f586bd](https://github.com/spinnaker/deck/commit/e9f586bd1d947aa1b093dea481ed892149e734f7))
681
+ chore(lint): Update import statement ordering ([5a9768bc](https://github.com/spinnaker/deck/commit/5a9768bc6db2f527a73d6b1f5fb3120c101e094b))
682
+ chore(lint): Sort import statements ([cca56eaa](https://github.com/spinnaker/deck/commit/cca56eaaeeb412b7596c68a1260eefed7fbf6fed))
683
+
684
+
685
+
686
+ ## [0.0.111](https://www.github.com/spinnaker/deck/compare/2474b890e866566c4ed907b56c1fee25478a4a57...ef148414a0a80393c205efae8b1f94bcc1510304) (2021-02-08)
687
+
688
+
689
+ ### Changes
690
+
691
+ chore(cloudfoundry): publish cloudfoundry@0.0.111 ([ef148414](https://github.com/spinnaker/deck/commit/ef148414a0a80393c205efae8b1f94bcc1510304))
692
+ feat(cloudfoundry): support docker deployments on cloudfoundry [#8864](https://github.com/spinnaker/deck/pull/8864) ([5713c91c](https://github.com/spinnaker/deck/commit/5713c91c5e6a18cb23b6c2de125f64e418f8fbf1))
693
+
694
+
695
+
696
+ ## [0.0.110](https://www.github.com/spinnaker/deck/compare/f3ac557716952718e88b91d1b66059ea1ddbd877...2474b890e866566c4ed907b56c1fee25478a4a57) (2021-01-19)
697
+
698
+
699
+ ### Changes
700
+
701
+ chore(cloudfoundry): publish cloudfoundry@0.0.110 ([2474b890](https://github.com/spinnaker/deck/commit/2474b890e866566c4ed907b56c1fee25478a4a57))
702
+ fix(cloudFoundry): Update test fixture to prevent intermittent failure [#8855](https://github.com/spinnaker/deck/pull/8855) ([21bb427c](https://github.com/spinnaker/deck/commit/21bb427c19c302c70bbd082d159a8b5a135e8aa4))
703
+ Deangularize instance writer [#8834](https://github.com/spinnaker/deck/pull/8834) ([f16b0775](https://github.com/spinnaker/deck/commit/f16b0775917242a39ae70e86c5541020c898b872))
704
+
705
+
706
+
707
+ ## [0.0.109](https://www.github.com/spinnaker/deck/compare/66ef2dc70394fe12b9d58e6d867c6efa82db9ad6...f3ac557716952718e88b91d1b66059ea1ddbd877) (2021-01-13)
708
+
709
+
710
+ ### Changes
711
+
712
+ chore(cloudfoundry): publish cloudfoundry@0.0.109 ([f3ac5577](https://github.com/spinnaker/deck/commit/f3ac557716952718e88b91d1b66059ea1ddbd877))
713
+ refactor(core/deployment): Update redblack fields without force updating [#8840](https://github.com/spinnaker/deck/pull/8840) ([95eacfb6](https://github.com/spinnaker/deck/commit/95eacfb6f5cea460677aa0907b18555dedae4135))
714
+ feat(cloudfoundry): Simplification [#8826](https://github.com/spinnaker/deck/pull/8826) ([84b59207](https://github.com/spinnaker/deck/commit/84b592076f2e1eebc9fc63b3840575b719b30866))
715
+ feat(cloudfoundry): add create service binding stage [#8823](https://github.com/spinnaker/deck/pull/8823) ([a4866888](https://github.com/spinnaker/deck/commit/a486688825659824da866f111e7f571700995578))
716
+
717
+
718
+
719
+ ## [0.0.108](https://www.github.com/spinnaker/deck/compare/4c864604dbe68644a82acb7e6c324b3a41c9379d...66ef2dc70394fe12b9d58e6d867c6efa82db9ad6) (2020-12-16)
720
+
721
+
722
+ ### Changes
723
+
724
+ chore(cloudfoundry): publish cloudfoundry@0.0.108 ([66ef2dc7](https://github.com/spinnaker/deck/commit/66ef2dc70394fe12b9d58e6d867c6efa82db9ad6))
725
+ refactor(REST): Prefer REST('/foo/bar') over REST().path('foo', 'bar') ([1d4320a0](https://github.com/spinnaker/deck/commit/1d4320a08f73093483cbb93784e9115c236b1f8a))
726
+ refactor(api-deprecation): API is deprecated, switch to REST() ([97bfbf67](https://github.com/spinnaker/deck/commit/97bfbf67b5d359cc540918b62c99088ad82dfb1b))
727
+ refactor(api-deprecation): Migrate from API.one/all/withParams/getList() to path/query/get() ([587db3ab](https://github.com/spinnaker/deck/commit/587db3ab20040fb5c72fe48feb36eccd7d1f297a))
728
+
729
+
730
+
731
+ ## [0.0.107](https://www.github.com/spinnaker/deck/compare/feb224c8b4d72f3349b893a2ec7e194b218ed592...4c864604dbe68644a82acb7e6c324b3a41c9379d) (2020-10-28)
732
+
733
+
734
+ ### Changes
735
+
736
+ chore(cloudfoundry): publish cloudfoundry@0.0.107 ([4c864604](https://github.com/spinnaker/deck/commit/4c864604dbe68644a82acb7e6c324b3a41c9379d))
737
+ fix(promiselike): Revert typeRoots tsconfig change, move types to src/types and add KLUDGE to expose them in the @spinnaker/core bundle ([a929d3fa](https://github.com/spinnaker/deck/commit/a929d3fa4db978aaf7b6d8ada12abc5b03403821))
738
+
739
+
740
+
741
+ ## [0.0.106](https://www.github.com/spinnaker/deck/compare/47a8002877ce304ce51f928214e6b3b60820fc6c...feb224c8b4d72f3349b893a2ec7e194b218ed592) (2020-10-28)
742
+
743
+
744
+ ### Changes
745
+
746
+ chore(cloudfoundry): publish cloudfoundry@0.0.106 ([feb224c8](https://github.com/spinnaker/deck/commit/feb224c8b4d72f3349b893a2ec7e194b218ed592))
747
+ chore(promiselike): Migrate more code away from angularjs IPromise to PromiseLike [#8687](https://github.com/spinnaker/deck/pull/8687) ([1df3daa8](https://github.com/spinnaker/deck/commit/1df3daa88209e885abb3d528edae4a942a060afb))
748
+ chore(package): amazon@0.0.274 appengine@0.0.21 azure@0.0.259 cloudfoundry@0.0.105 core@0.0.522 docker@0.0.64 ecs@0.0.267 google@0.0.25 huaweicloud@0.0.7 kubernetes@0.0.53 oracle@0.0.14 tencentcloud@0.0.10 titus@0.0.149 [#8680](https://github.com/spinnaker/deck/pull/8680) ([47a80028](https://github.com/spinnaker/deck/commit/47a8002877ce304ce51f928214e6b3b60820fc6c))
749
+ chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
750
+ Revert "chore(package): amazon@0.0.274 appengine@0.0.21 azure@0.0.259 cloudfoundry@0.0.105 core@0.0.522 docker@0.0.64 ecs@0.0.267 google@0.0.25 huaweicloud@0.0.7 kubernetes@0.0.53 oracle@0.0.14 tencentcloud@0.0.10 titus@0.0.149" [#8678](https://github.com/spinnaker/deck/pull/8678) ([a220af58](https://github.com/spinnaker/deck/commit/a220af588e194762757be534cce2d7ae9dc508d5))
751
+
752
+
753
+
754
+ ## [0.0.105](https://www.github.com/spinnaker/deck/compare/a220af588e194762757be534cce2d7ae9dc508d5...47a8002877ce304ce51f928214e6b3b60820fc6c) (2020-10-26)
755
+
756
+
757
+ ### Changes
758
+
759
+ chore(package): amazon@0.0.274 appengine@0.0.21 azure@0.0.259 cloudfoundry@0.0.105 core@0.0.522 docker@0.0.64 ecs@0.0.267 google@0.0.25 huaweicloud@0.0.7 kubernetes@0.0.53 oracle@0.0.14 tencentcloud@0.0.10 titus@0.0.149 [#8680](https://github.com/spinnaker/deck/pull/8680) ([47a80028](https://github.com/spinnaker/deck/commit/47a8002877ce304ce51f928214e6b3b60820fc6c))
760
+ chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
761
+ Revert "chore(package): amazon@0.0.274 appengine@0.0.21 azure@0.0.259 cloudfoundry@0.0.105 core@0.0.522 docker@0.0.64 ecs@0.0.267 google@0.0.25 huaweicloud@0.0.7 kubernetes@0.0.53 oracle@0.0.14 tencentcloud@0.0.10 titus@0.0.149" [#8678](https://github.com/spinnaker/deck/pull/8678) ([a220af58](https://github.com/spinnaker/deck/commit/a220af588e194762757be534cce2d7ae9dc508d5))
762
+ chore(cloudfoundry): publish cloudfoundry@0.0.105 ([6d4e22c7](https://github.com/spinnaker/deck/commit/6d4e22c7ac49060d201cb98d3ff66a55f8144c3b))
763
+ chore(PromiseLike): Migrate code from IPromise types to PromiseLike ([d5ae512d](https://github.com/spinnaker/deck/commit/d5ae512d5025f16a99236307c2e8fb7c019c796d))
764
+ feat(typescript): Add a new `app/types` typeRoot to all the tsconfig.json files providing `PromiseLike` and *.svg imports ([e622a534](https://github.com/spinnaker/deck/commit/e622a5348f614ee8615fab13082ac5f2fdd95960))
765
+ chore(package): In packages, do not use webpack to typecheck [#8670](https://github.com/spinnaker/deck/pull/8670) ([8b3c134d](https://github.com/spinnaker/deck/commit/8b3c134d1ab82610611a194917cf5958047e1cc3))
766
+ chore(package): use node_modules/.bin/* in module scripts, add 'build' script (the old 'lib' script) [#8668](https://github.com/spinnaker/deck/pull/8668) ([231f7818](https://github.com/spinnaker/deck/commit/231f7818895e7e2a12bb3591a2112559e07ee01d))
767
+
768
+
769
+
770
+ ## [0.0.104](https://www.github.com/spinnaker/deck/compare/6d4e22c7ac49060d201cb98d3ff66a55f8144c3b...a220af588e194762757be534cce2d7ae9dc508d5) (2020-10-26)
771
+
772
+
773
+ ### Changes
774
+
775
+ Revert "chore(package): amazon@0.0.274 appengine@0.0.21 azure@0.0.259 cloudfoundry@0.0.105 core@0.0.522 docker@0.0.64 ecs@0.0.267 google@0.0.25 huaweicloud@0.0.7 kubernetes@0.0.53 oracle@0.0.14 tencentcloud@0.0.10 titus@0.0.149" [#8678](https://github.com/spinnaker/deck/pull/8678) ([a220af58](https://github.com/spinnaker/deck/commit/a220af588e194762757be534cce2d7ae9dc508d5))
776
+
777
+
778
+
779
+ ## [0.0.105](https://www.github.com/spinnaker/deck/compare/4b79b4d75628bc74b91b72980f0a5e8ba479335e...6d4e22c7ac49060d201cb98d3ff66a55f8144c3b) (2020-10-26)
780
+
781
+
782
+ ### Changes
783
+
784
+ chore(package): amazon@0.0.274 appengine@0.0.21 azure@0.0.259 cloudfoundry@0.0.105 core@0.0.522 docker@0.0.64 ecs@0.0.267 google@0.0.25 huaweicloud@0.0.7 kubernetes@0.0.53 oracle@0.0.14 tencentcloud@0.0.10 titus@0.0.149 [#8680](https://github.com/spinnaker/deck/pull/8680) ([47a80028](https://github.com/spinnaker/deck/commit/47a8002877ce304ce51f928214e6b3b60820fc6c))
785
+ chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
786
+ Revert "chore(package): amazon@0.0.274 appengine@0.0.21 azure@0.0.259 cloudfoundry@0.0.105 core@0.0.522 docker@0.0.64 ecs@0.0.267 google@0.0.25 huaweicloud@0.0.7 kubernetes@0.0.53 oracle@0.0.14 tencentcloud@0.0.10 titus@0.0.149" [#8678](https://github.com/spinnaker/deck/pull/8678) ([a220af58](https://github.com/spinnaker/deck/commit/a220af588e194762757be534cce2d7ae9dc508d5))
787
+ chore(cloudfoundry): publish cloudfoundry@0.0.105 ([6d4e22c7](https://github.com/spinnaker/deck/commit/6d4e22c7ac49060d201cb98d3ff66a55f8144c3b))
788
+ chore(PromiseLike): Migrate code from IPromise types to PromiseLike ([d5ae512d](https://github.com/spinnaker/deck/commit/d5ae512d5025f16a99236307c2e8fb7c019c796d))
789
+ feat(typescript): Add a new `app/types` typeRoot to all the tsconfig.json files providing `PromiseLike` and *.svg imports ([e622a534](https://github.com/spinnaker/deck/commit/e622a5348f614ee8615fab13082ac5f2fdd95960))
790
+ chore(package): In packages, do not use webpack to typecheck [#8670](https://github.com/spinnaker/deck/pull/8670) ([8b3c134d](https://github.com/spinnaker/deck/commit/8b3c134d1ab82610611a194917cf5958047e1cc3))
791
+ chore(package): use node_modules/.bin/* in module scripts, add 'build' script (the old 'lib' script) [#8668](https://github.com/spinnaker/deck/pull/8668) ([231f7818](https://github.com/spinnaker/deck/commit/231f7818895e7e2a12bb3591a2112559e07ee01d))
792
+
793
+
794
+
795
+ ## [0.0.104](https://www.github.com/spinnaker/deck/compare/f216cc6556bff90033b28bbe7e9f94517ddaa270...4b79b4d75628bc74b91b72980f0a5e8ba479335e) (2020-10-12)
796
+
797
+
798
+ ### Changes
799
+
800
+ Revert "chore(package): amazon@0.0.274 appengine@0.0.21 azure@0.0.259 cloudfoundry@0.0.105 core@0.0.522 docker@0.0.64 ecs@0.0.267 google@0.0.25 huaweicloud@0.0.7 kubernetes@0.0.53 oracle@0.0.14 tencentcloud@0.0.10 titus@0.0.149" [#8678](https://github.com/spinnaker/deck/pull/8678) ([a220af58](https://github.com/spinnaker/deck/commit/a220af588e194762757be534cce2d7ae9dc508d5))
801
+ chore(cloudfoundry): publish cloudfoundry@0.0.105 ([6d4e22c7](https://github.com/spinnaker/deck/commit/6d4e22c7ac49060d201cb98d3ff66a55f8144c3b))
802
+ chore(PromiseLike): Migrate code from IPromise types to PromiseLike ([d5ae512d](https://github.com/spinnaker/deck/commit/d5ae512d5025f16a99236307c2e8fb7c019c796d))
803
+ feat(typescript): Add a new `app/types` typeRoot to all the tsconfig.json files providing `PromiseLike` and *.svg imports ([e622a534](https://github.com/spinnaker/deck/commit/e622a5348f614ee8615fab13082ac5f2fdd95960))
804
+ chore(package): In packages, do not use webpack to typecheck [#8670](https://github.com/spinnaker/deck/pull/8670) ([8b3c134d](https://github.com/spinnaker/deck/commit/8b3c134d1ab82610611a194917cf5958047e1cc3))
805
+ chore(package): use node_modules/.bin/* in module scripts, add 'build' script (the old 'lib' script) [#8668](https://github.com/spinnaker/deck/pull/8668) ([231f7818](https://github.com/spinnaker/deck/commit/231f7818895e7e2a12bb3591a2112559e07ee01d))
806
+ chore(package): amazon@0.0.272 appengine@0.0.20 azure@0.0.258 cloudfoundry@0.0.104 core@0.0.519 docker@0.0.63 ecs@0.0.266 google@0.0.24 huaweicloud@0.0.6 kubernetes@0.0.52 oracle@0.0.12 tencentcloud@0.0.9 titus@0.0.148 [#8647](https://github.com/spinnaker/deck/pull/8647) ([4b79b4d7](https://github.com/spinnaker/deck/commit/4b79b4d75628bc74b91b72980f0a5e8ba479335e))
807
+ chore(prettier): Just Update Prettier™ [#8644](https://github.com/spinnaker/deck/pull/8644) ([8532bdd4](https://github.com/spinnaker/deck/commit/8532bdd4c08d59c38a0adde70ccac4f163c9dd97))
808
+
809
+
810
+
811
+ ## [0.0.103](https://www.github.com/spinnaker/deck/compare/5cdc7fa4494ada88702155bb91f80a0a16f3782e...f216cc6556bff90033b28bbe7e9f94517ddaa270) (2020-10-09)
812
+
813
+
814
+ ### Changes
815
+
816
+ Package bump amazon 0.0.271 azure 0.0.257 cloudfoundry 0.0.103 core 0.0.518 docker 0.0.62 google 0.0.23 oracle 0.0.11 tencentcloud 0.0.8 titus 0.0.147 [#8640](https://github.com/spinnaker/deck/pull/8640) ([f216cc65](https://github.com/spinnaker/deck/commit/f216cc6556bff90033b28bbe7e9f94517ddaa270))
817
+ chore(eslint): eslint --fix api-no-slashes [#8631](https://github.com/spinnaker/deck/pull/8631) ([fab1a0ad](https://github.com/spinnaker/deck/commit/fab1a0ad75200cca60dfb74455d99f332e3e376f))
818
+
819
+
820
+
821
+ ## [0.0.102](https://www.github.com/spinnaker/deck/compare/8aa1e3e514703fcf0b4bf7b06dffafe01e9c27ed...5cdc7fa4494ada88702155bb91f80a0a16f3782e) (2020-10-06)
822
+
823
+
824
+ ### Changes
825
+
826
+ chore(package): amazon@0.0.270 azure@0.0.256 cloudfoundry@0.0.102 core@0.0.517 docker@0.0.61 google@0.0.22 oracle@0.0.10 tencentcloud@0.0.7 [#8630](https://github.com/spinnaker/deck/pull/8630) ([5cdc7fa4](https://github.com/spinnaker/deck/commit/5cdc7fa4494ada88702155bb91f80a0a16f3782e))
827
+ Revert "fix(appname): encodeURIComponent for app name (#8586)" [#8627](https://github.com/spinnaker/deck/pull/8627) ([885cd169](https://github.com/spinnaker/deck/commit/885cd169ad0dca8e7e6683bc96d2c131af6b3a1e))
828
+
829
+
830
+
831
+ ## [0.0.101](https://www.github.com/spinnaker/deck/compare/682b3d1335d24eed782fc736de63893f1fab9f24...8aa1e3e514703fcf0b4bf7b06dffafe01e9c27ed) (2020-10-05)
832
+
833
+
834
+ ### Changes
835
+
836
+ chore(package): amazon@0.0.269 azure@0.0.255 cloudfoundry@0.0.101 core@0.0.516 docker@0.0.60 google@0.0.21 oracle@0.0.9 tencentcloud@0.0.6 [#8624](https://github.com/spinnaker/deck/pull/8624) ([8aa1e3e5](https://github.com/spinnaker/deck/commit/8aa1e3e514703fcf0b4bf7b06dffafe01e9c27ed))
837
+ fix(appname): encodeURIComponent for app name [#8586](https://github.com/spinnaker/deck/pull/8586) ([f1bb04e8](https://github.com/spinnaker/deck/commit/f1bb04e867e68e53f4e4edb22192afbcd9715d5d))
838
+
839
+
840
+
841
+ ## [0.0.100](https://www.github.com/spinnaker/deck/compare/2273dee2b3668ba105a34a062da669cdf7c207c5...682b3d1335d24eed782fc736de63893f1fab9f24) (2020-10-02)
842
+
843
+
844
+ ### Changes
845
+
846
+ chore(package): cloudfoundry@0.0.100 core@0.0.515 titus@0.0.146 [#8616](https://github.com/spinnaker/deck/pull/8616) ([682b3d13](https://github.com/spinnaker/deck/commit/682b3d1335d24eed782fc736de63893f1fab9f24))
847
+ fix(cf): naming typo in EnvironmentVariables [#8613](https://github.com/spinnaker/deck/pull/8613) ([2c4a272f](https://github.com/spinnaker/deck/commit/2c4a272f65a52ff35ae45a72a3618b682debb713))
848
+
849
+
850
+
851
+ ## [0.0.99](https://www.github.com/spinnaker/deck/compare/2f25b74759d27fe294eaf070059f1526a14494fd...2273dee2b3668ba105a34a062da669cdf7c207c5) (2020-09-23)
852
+
853
+
854
+ ### Changes
855
+
856
+ chore(package): amazon@0.0.267 appengine@0.0.18 azure@0.0.254 cloudfoundry@0.0.99 core@0.0.510 ecs@0.0.264 google@0.0.20 kubernetes@0.0.50 oracle@0.0.8 tencentcloud@0.0.5 titus@0.0.144 [#8591](https://github.com/spinnaker/deck/pull/8591) ([2273dee2](https://github.com/spinnaker/deck/commit/2273dee2b3668ba105a34a062da669cdf7c207c5))
857
+ feat(core/*): Deck layout optimizations [#8556](https://github.com/spinnaker/deck/pull/8556) ([2588b7f3](https://github.com/spinnaker/deck/commit/2588b7f3e1ecbfd590e7cc87a225bbfd056449e3))
858
+ fix(tencent+pcf): fix imports 'core' -> '@spinnaker/core' [#8582](https://github.com/spinnaker/deck/pull/8582) ([81c29380](https://github.com/spinnaker/deck/commit/81c29380c3c8d8957e440e2b2b7e4f35a1f4a89a))
859
+
860
+
861
+
862
+ ## [0.0.98](https://www.github.com/spinnaker/deck/compare/ced77a7453a0ffab5a14c38943288138fdcb084b...2f25b74759d27fe294eaf070059f1526a14494fd) (2020-09-14)
863
+
864
+
865
+ ### Changes
866
+
867
+ chore(package): amazon@0.0.265 appengine@0.0.16 cloudfoundry@0.0.98 core@0.0.506 ecs@0.0.262 titus@0.0.142 [#8564](https://github.com/spinnaker/deck/pull/8564) ([2f25b747](https://github.com/spinnaker/deck/commit/2f25b74759d27fe294eaf070059f1526a14494fd))
868
+ fix(provider/cf): fix env variables section [#8549](https://github.com/spinnaker/deck/pull/8549) ([680906fe](https://github.com/spinnaker/deck/commit/680906fe30ccd083d5c67359179b63a262f28602))
869
+ feat(provider/cf): add bake cf manifest stage [#8529](https://github.com/spinnaker/deck/pull/8529) ([040b0717](https://github.com/spinnaker/deck/commit/040b0717b7fb7f18f078d1aa61ec6348c9ecf53d))
870
+
871
+
872
+
873
+ ## [0.0.97](https://www.github.com/spinnaker/deck/compare/f227aa8ec00fffe63e39abc75b9c504180804623...ced77a7453a0ffab5a14c38943288138fdcb084b) (2020-08-25)
874
+
875
+
876
+ ### Changes
877
+
878
+ chore(package): publish amazon 0.0.263 appengine 0.0.15 azure 0.0.253 cloudfoundry 0.0.97 core 0.0.504 docker 0.0.59 ecs 0.0.261 google 0.0.19 huaweicloud 0.0.5 kubernetes 0.0.48 oracle 0.0.7 tencentcloud 0.0.4 titus 0.0.140 [#8520](https://github.com/spinnaker/deck/pull/8520) ([ced77a74](https://github.com/spinnaker/deck/commit/ced77a7453a0ffab5a14c38943288138fdcb084b))
879
+ chore(licenses): add license metadata to npm packages [#8512](https://github.com/spinnaker/deck/pull/8512) ([d4afa1bf](https://github.com/spinnaker/deck/commit/d4afa1bf2328cc91cf3195f810073b0b4726b3b5))
880
+
881
+
882
+
883
+ ## [0.0.96](https://www.github.com/spinnaker/deck/compare/d956a2460bdfc301c0c9c9d93e5159ed8f00bfc8...f227aa8ec00fffe63e39abc75b9c504180804623) (2020-04-21)
884
+
885
+
886
+ ### Changes
887
+
888
+ chore(package): publish amazon 0.0.251 appengine 0.0.11 azure 0.0.251 cloudfoundry 0.0.96 core 0.0.472 docker 0.0.56 ecs 0.0.256 google 0.0.13 huaweicloud 0.0.4 kubernetes 0.0.37 oracle 0.0.6 titus 0.0.135 [#8196](https://github.com/spinnaker/deck/pull/8196) ([f227aa8e](https://github.com/spinnaker/deck/commit/f227aa8ec00fffe63e39abc75b9c504180804623))
889
+ feat(plugins): Consolidate typescript config (partially). Do not strip comments. [#8180](https://github.com/spinnaker/deck/pull/8180) ([4434d99c](https://github.com/spinnaker/deck/commit/4434d99c4b61704c5e53f356ff9f3b31d715e593))
890
+
891
+
892
+
893
+ ## [0.0.95](https://www.github.com/spinnaker/deck/compare/664d174a790d16c8df06d227d0b26dfbd9a759a4...d956a2460bdfc301c0c9c9d93e5159ed8f00bfc8) (2020-03-20)
894
+
895
+
896
+ ### Changes
897
+
898
+ chore(package): publish appengine 0.0.10 azure 0.0.250 cloudfoundry 0.0.95 core 0.0.461 docker 0.0.54 ecs 0.0.253 google 0.0.11 huaweicloud 0.0.3 kubernetes 0.0.34 oracle 0.0.5 [#8064](https://github.com/spinnaker/deck/pull/8064) ([d956a246](https://github.com/spinnaker/deck/commit/d956a2460bdfc301c0c9c9d93e5159ed8f00bfc8))
899
+ refactor(svg): add SVGR loader for inlined react SVG support [#8055](https://github.com/spinnaker/deck/pull/8055) ([15e47a68](https://github.com/spinnaker/deck/commit/15e47a680a49f048860cd4a5a0688df16a0ce874))
900
+
901
+
902
+
903
+ ## [0.0.94](https://www.github.com/spinnaker/deck/compare/699bc0e7dde6ccbbf7f991272a9305f517151216...664d174a790d16c8df06d227d0b26dfbd9a759a4) (2020-03-12)
904
+
905
+
906
+ ### Changes
907
+
908
+ chore(package): publish amazon 0.0.245 appengine 0.0.9 azure 0.0.249 cloudfoundry 0.0.94 core 0.0.459 ecs 0.0.252 google 0.0.10 huaweicloud 0.0.2 kubernetes 0.0.33 oracle 0.0.4 [#8035](https://github.com/spinnaker/deck/pull/8035) ([664d174a](https://github.com/spinnaker/deck/commit/664d174a790d16c8df06d227d0b26dfbd9a759a4))
909
+ chore(lint): Fix all linter violations for importing from own subpackage alias ([ae375b14](https://github.com/spinnaker/deck/commit/ae375b145db815b12bd3daa1835d1107b5fd750a))
910
+ fix(cf): Validate application name on creation [#7971](https://github.com/spinnaker/deck/pull/7971) ([cde09a42](https://github.com/spinnaker/deck/commit/cde09a420160a8b7c769f1f9e60a82ecfccbedeb))
911
+ refactor(core/presentation): Switch the default value of formik fastField from true to false [#7968](https://github.com/spinnaker/deck/pull/7968) ([77512ecf](https://github.com/spinnaker/deck/commit/77512ecf86abab70556a2e6083a028a8a8072b5f))
912
+ fix(packages): Preserve webpackIgnore comments when bundling for npm packages [#7850](https://github.com/spinnaker/deck/pull/7850) ([8b84eedb](https://github.com/spinnaker/deck/commit/8b84eedb2f2130fab2d261935de81a2157b2b00e))
913
+ chore(lint): Run eslint on typescript files ([b51dce46](https://github.com/spinnaker/deck/commit/b51dce46be3df14070f06e06de874108dcf23569))
914
+ refactor(*): de-angularize confirmationModalService [#7759](https://github.com/spinnaker/deck/pull/7759) ([e6c6c662](https://github.com/spinnaker/deck/commit/e6c6c662b5326fcb184772c99f2212ce4336a1cb))
915
+ refactor(*): use consistent styles on modal headers ([10b34915](https://github.com/spinnaker/deck/commit/10b34915860ed46f21d0179bf87c3b456de49c56))
916
+ refactor(*): favor optional chaining over lodash.get ([dc2b3d74](https://github.com/spinnaker/deck/commit/dc2b3d7419c79159a89ad346bd64e2f4cc9fde75))
917
+ refactor(core): convert confirmation modal to react ([a59b2c32](https://github.com/spinnaker/deck/commit/a59b2c3264500080fad7caeb05054eef6f51d52c))
918
+ refactor(core): provide wrapper for dangerously setting html [#7721](https://github.com/spinnaker/deck/pull/7721) ([65488728](https://github.com/spinnaker/deck/commit/65488728e4ef08c2034123a88a9a4b96cb0e4bd9))
919
+ refactor(core): remove unused parameter options from confirmation modal [#7716](https://github.com/spinnaker/deck/pull/7716) ([d2838d80](https://github.com/spinnaker/deck/commit/d2838d80c7f14989368fc490a2d842b2d4952a42))
920
+ chore(core): upgrade to latest prettier [#7713](https://github.com/spinnaker/deck/pull/7713) ([6291f858](https://github.com/spinnaker/deck/commit/6291f858cb111d9c65affeb82ddd840f05c57b65))
921
+ refactor(eslint): Fix all 'one-var' eslint rule violations ([d070bd45](https://github.com/spinnaker/deck/commit/d070bd45ff3e185999e863e3f48c01f63eb45733))
922
+ chore(eslint): remove tslint ([9400826b](https://github.com/spinnaker/deck/commit/9400826bcb119cf7681e1ce37092b9fdd8b76b1b))
923
+ chore(typescript): Migrate most wildcard imports to javascript style imports - Migrate from "import * as foo from 'foo'" to "import foo from 'foo'" ([b6aabe18](https://github.com/spinnaker/deck/commit/b6aabe18a2c71f194087c01fd15ec369460f5e70))
924
+ feat(typescript): enable allowJs and allowSyntheticDefaultImports ([7ef58b6c](https://github.com/spinnaker/deck/commit/7ef58b6c122f9ce91eab95d5f444622a710ff968))
925
+ refactor(*): Remove exports-loader from n3-chart import ([f0613c1b](https://github.com/spinnaker/deck/commit/f0613c1b1648f0c2ea54623cb535a6d54bea2355))
926
+ fix(lint): Fixes for linter rules @typescript-eslint/ban-types and @typescript-eslint/no-inferrable-types ([7f3a8a4b](https://github.com/spinnaker/deck/commit/7f3a8a4b3a290548d89c6fb579edf35e542a3932))
927
+ chore(tsconfig): standardize all tsconfig.json files to es2017 [#7656](https://github.com/spinnaker/deck/pull/7656) ([c1c4d423](https://github.com/spinnaker/deck/commit/c1c4d423a0af57c6a8faf135a7a7ee3eb76d5466))
928
+ fix(cf): delete lb confirmation not displaying [#7594](https://github.com/spinnaker/deck/pull/7594) ([fcb1a409](https://github.com/spinnaker/deck/commit/fcb1a409b14a92ec926aea8f57a681eb4779e751))
929
+ feat(dataSources): widen + parameterize types, add default values ([4ed015a0](https://github.com/spinnaker/deck/commit/4ed015a07c028eb58807601a0b0fb9783b02b0d9))
930
+ refactor(core/presentation): use render props everywhere [#7316](https://github.com/spinnaker/deck/pull/7316) ([40c31972](https://github.com/spinnaker/deck/commit/40c31972129a1c74f5087fb5a8a7a181b2144c33))
931
+
932
+
933
+
934
+ ## [0.0.93](https://www.github.com/spinnaker/deck/compare/a99de3ae63588251648f6927c5707d1a0bef971e...699bc0e7dde6ccbbf7f991272a9305f517151216) (2019-08-07)
935
+
936
+
937
+ ### Changes
938
+
939
+ chore(cloudfoundry): Bump version to 0.0.93 ([699bc0e7](https://github.com/spinnaker/deck/commit/699bc0e7dde6ccbbf7f991272a9305f517151216))
940
+ fix(cf): Deploy stage config template import missing routes [#7291](https://github.com/spinnaker/deck/pull/7291) ([0488d516](https://github.com/spinnaker/deck/commit/0488d5162af903464041af6a000a5f079f2e7c7d))
941
+ feat(*/pipeline): Remove the concept of default stage timeouts, rename option [#7286](https://github.com/spinnaker/deck/pull/7286) ([abac63ce](https://github.com/spinnaker/deck/commit/abac63ce5c88b809fcf5ed1509136fe96489a051))
942
+ feat(cf): Logs for Run Job stage [#7263](https://github.com/spinnaker/deck/pull/7263) ([dd5bb024](https://github.com/spinnaker/deck/commit/dd5bb0242f13208e3ca544465b675af47207bb6e))
943
+ feat(core/presentation): Add a <Formik/> wrapper which applies fixes and opinions that we want in Spinnaker [#7272](https://github.com/spinnaker/deck/pull/7272) ([9c7885f6](https://github.com/spinnaker/deck/commit/9c7885f6e6645f7028db7ea3102edd59f2b67e76))
944
+
945
+
946
+
947
+ ## [0.0.92](https://www.github.com/spinnaker/deck/compare/1d7644fb001c51c06bb111a37b3604787c5d29ce...a99de3ae63588251648f6927c5707d1a0bef971e) (2019-07-03)
948
+
949
+
950
+ ### Changes
951
+
952
+ chore(cloudfoundry): Bump version to 0.0.92 ([a99de3ae](https://github.com/spinnaker/deck/commit/a99de3ae63588251648f6927c5707d1a0bef971e))
953
+ feat(cf): "Run Job" stage support for CloudFoundry [#7119](https://github.com/spinnaker/deck/pull/7119) ([454c536d](https://github.com/spinnaker/deck/commit/454c536d1274b19dc239af043f6a18b916df62b4))
954
+ chore(package): Just Update Prettier™ ([cdd6f237](https://github.com/spinnaker/deck/commit/cdd6f2379859d3c2b13bac59aa470c08b391a865))
955
+ refactor(cf): use new inline RadioInput [#7085](https://github.com/spinnaker/deck/pull/7085) ([be145517](https://github.com/spinnaker/deck/commit/be145517635f0cb92b3d826c78fa4b83dd55367a))
956
+ fix(cf): Assuming valid appsManager and metrics URLS [#7100](https://github.com/spinnaker/deck/pull/7100) ([e4325b16](https://github.com/spinnaker/deck/commit/e4325b16106678248b5f2371971fff663e3476b0))
957
+
958
+
959
+
960
+ ## [0.0.91](https://www.github.com/spinnaker/deck/compare/de8483af4a3ab634b573f13e115e19acb1a62005...1d7644fb001c51c06bb111a37b3604787c5d29ce) (2019-06-05)
961
+
962
+
963
+ ### Changes
964
+
965
+ chore(cloudfoundry): Bump version to 0.0.91 ([1d7644fb](https://github.com/spinnaker/deck/commit/1d7644fb001c51c06bb111a37b3604787c5d29ce))
966
+ fix(cf): Change CUPS label to Route Service URL [#7090](https://github.com/spinnaker/deck/pull/7090) ([2f958d9d](https://github.com/spinnaker/deck/commit/2f958d9d0112293c6abf9e01f1680d6032199c52))
967
+ refactor(*): make accountExtractor return an array of strings [#7068](https://github.com/spinnaker/deck/pull/7068) ([8398d770](https://github.com/spinnaker/deck/commit/8398d7706951ce567c352e5f96351366103ef2e3))
968
+ feature(cf): server group details creation timestamp links to pipeline [#7062](https://github.com/spinnaker/deck/pull/7062) ([7cbf241a](https://github.com/spinnaker/deck/commit/7cbf241a560fe77c61057d7494d14bcbc35d0c2d))
969
+ fix(cf): fix deploy service manifest artifact selection [#7059](https://github.com/spinnaker/deck/pull/7059) ([b7126732](https://github.com/spinnaker/deck/commit/b71267327c4f70544f594a82f414114ce252c527))
970
+ feat(cf): Accepting both JSON and YAML in the Deploy Service Configuration stage `parameters` field [#7042](https://github.com/spinnaker/deck/pull/7042) ([64589b6b](https://github.com/spinnaker/deck/commit/64589b6be8d4599526e9267124590710525b25ce))
971
+ fix(cf): add Artifactory link [#6994](https://github.com/spinnaker/deck/pull/6994) ([ce8a1637](https://github.com/spinnaker/deck/commit/ce8a1637505ddde40cacfea9ba8cc807c127bb8f))
972
+ fix(cf): reorg build info details on server group detail and summary [#6983](https://github.com/spinnaker/deck/pull/6983) ([84db0ef6](https://github.com/spinnaker/deck/commit/84db0ef6c88ba6b234a4f06d7f2af91b2d84ee41))
973
+ fix(cf): Clone sg modal appears. Removed unused lb code. [#6915](https://github.com/spinnaker/deck/pull/6915) ([f646a5a2](https://github.com/spinnaker/deck/commit/f646a5a284a336a8c04c875f74b4e163f4a48ad8))
974
+ feat(cf): add build info to server group [#6912](https://github.com/spinnaker/deck/pull/6912) ([7312bb5e](https://github.com/spinnaker/deck/commit/7312bb5e7bf2197e5bcfdacf1259e2eaf1f635b6))
975
+ fix(cf): Allow deletion of non existing cluster [#6907](https://github.com/spinnaker/deck/pull/6907) ([07895b00](https://github.com/spinnaker/deck/commit/07895b005309346611b83f6f81b627ad1e5e35e3))
976
+ feat(cf): Added support for rolling red black deployments [#6897](https://github.com/spinnaker/deck/pull/6897) ([7269d2e8](https://github.com/spinnaker/deck/commit/7269d2e831d770db582dd68be1f423b06dac38f2))
977
+ refactor(cf): remove destination from the SG command model [#6892](https://github.com/spinnaker/deck/pull/6892) ([632538d1](https://github.com/spinnaker/deck/commit/632538d17bc9d330c37932e362a95bf173d9e344))
978
+ feat(cf): Reduce angular dependencies [#6893](https://github.com/spinnaker/deck/pull/6893) ([62c2b513](https://github.com/spinnaker/deck/commit/62c2b513c9a7cdfbaea5d23d7328153ad4084178))
979
+ feat(cf): Delete Service Key pipeline stage [#6844](https://github.com/spinnaker/deck/pull/6844) ([662b1548](https://github.com/spinnaker/deck/commit/662b15487e277c43154f7f6dffd9cb820325a75e))
980
+ feat(cf): Remove React shims from pipeline stages [#6856](https://github.com/spinnaker/deck/pull/6856) ([33373c49](https://github.com/spinnaker/deck/commit/33373c49eb40010c3eb56d83f52369683ca34866))
981
+ fix(cloudfoundry): ensure basic validation of artifacts [#6851](https://github.com/spinnaker/deck/pull/6851) ([902613d4](https://github.com/spinnaker/deck/commit/902613d454f243009c6db8eb181283231cc79903))
982
+ refactor(cf): use Observable to set state to prevent memory leaks [#6832](https://github.com/spinnaker/deck/pull/6832) ([7338f7da](https://github.com/spinnaker/deck/commit/7338f7daffe876c8688a860121748790f20e76e6))
983
+ feat(cf): add deployment strategy to clone SG [#6827](https://github.com/spinnaker/deck/pull/6827) ([ca367271](https://github.com/spinnaker/deck/commit/ca3672711a3d98492e036e9ee5fde3801b21cdb9))
984
+ feat(cf): Create Service Key pipeline stage [#6821](https://github.com/spinnaker/deck/pull/6821) ([36074c23](https://github.com/spinnaker/deck/commit/36074c232f1dcf98ce0016c5e536df3b0d7300cc))
985
+ fix(provider/cf): Clone model so Orca monitors the correct foundation for up instances [#6817](https://github.com/spinnaker/deck/pull/6817) ([aad46c27](https://github.com/spinnaker/deck/commit/aad46c27de651ae72759d22ee6b64e4dbccae7ab))
986
+ fix(provider/cf): Fix provider selection for resize stage in pipeline [#6754](https://github.com/spinnaker/deck/pull/6754) ([476e0dda](https://github.com/spinnaker/deck/commit/476e0ddaecb0472fea010ed01c8c3c988a37b397))
987
+ refactor(core): de-angularize ApplicationModelBuilder, fix project executions [#6802](https://github.com/spinnaker/deck/pull/6802) ([72e164df](https://github.com/spinnaker/deck/commit/72e164dfcf11afbac559195a8fa6a91dd77ad2b9))
988
+ fix(provider/cf): Make expected artifacts selectable as clone manifests [#6796](https://github.com/spinnaker/deck/pull/6796) ([1a2af9ae](https://github.com/spinnaker/deck/commit/1a2af9aefd4c757d1d735d81cc9f0998004490ad))
989
+ fix(pipeline): Fix target impedance validator for clone server group [#6785](https://github.com/spinnaker/deck/pull/6785) ([8422d6a2](https://github.com/spinnaker/deck/commit/8422d6a2312ff08577fdcdbc74c49e107b2b06b2))
990
+ fix(cf): Repair Rollback Cluster pipeline stage [#6743](https://github.com/spinnaker/deck/pull/6743) ([e0a86392](https://github.com/spinnaker/deck/commit/e0a86392e7841b574a31eb6535d4a5d065535dad))
991
+ fix(cf): Map/Unmap LBs and UI cleanup [#6737](https://github.com/spinnaker/deck/pull/6737) ([c37500c5](https://github.com/spinnaker/deck/commit/c37500c5e3472e5407bf8250f74969c074338260))
992
+ fix(provider/cf): Default clone operations to start on creation [#6735](https://github.com/spinnaker/deck/pull/6735) ([09e96a2c](https://github.com/spinnaker/deck/commit/09e96a2c31bd3a9d1e259438f9dceb88146d54ee))
993
+ fix(artifacts): Exclude unmatchable expected artifact types [#6709](https://github.com/spinnaker/deck/pull/6709) ([03fa0d96](https://github.com/spinnaker/deck/commit/03fa0d962d743318bc63354676b2ea15c2216831))
994
+ fix({core,cloudfoundry}/deploy): better red/black, rolling red/black help text [#6699](https://github.com/spinnaker/deck/pull/6699) ([29b001b6](https://github.com/spinnaker/deck/commit/29b001b67abaaa0d401bf8e468bddb6d43502d91))
995
+ fix(cf): Share / unshare execution details [#6710](https://github.com/spinnaker/deck/pull/6710) ([b4ca2b82](https://github.com/spinnaker/deck/commit/b4ca2b82ef0a7b90565fb8f8462bccc22f604bcb))
996
+ feat(cf): prefix apps manager and metrics urls with https:// [#6637](https://github.com/spinnaker/deck/pull/6637) ([f80dfc58](https://github.com/spinnaker/deck/commit/f80dfc58b7be9bf5fe0c8f2346b92006d63e04da))
997
+ fix(cf): map single route at a time [#6700](https://github.com/spinnaker/deck/pull/6700) ([d00b45fa](https://github.com/spinnaker/deck/commit/d00b45fa227605c3f19b61fa5ac7e845fefc00ba))
998
+ feat(cf): Add Updatable Flag To Create Service [#6706](https://github.com/spinnaker/deck/pull/6706) ([dafedacd](https://github.com/spinnaker/deck/commit/dafedacd086aa7cdb82367b3cbc31df9b70b8129))
999
+ fix(cf): provide meaningful labels in resize dialog [#6704](https://github.com/spinnaker/deck/pull/6704) ([facc737b](https://github.com/spinnaker/deck/commit/facc737b08e71c774896901452fe5a356236baf3))
1000
+ chore(core): upgrade the version to formik 1.4.1 [#6705](https://github.com/spinnaker/deck/pull/6705) ([51eeba48](https://github.com/spinnaker/deck/commit/51eeba480ac1bc232c0df020e4bb788a28a8b744))
1001
+ fix(cf): fix the alignment issue for artifacts in deploy SG [#6701](https://github.com/spinnaker/deck/pull/6701) ([4f826d1a](https://github.com/spinnaker/deck/commit/4f826d1a39465a62e7da1c1c6be0759d36d99db2))
1002
+ feat(cf): Share/Unshare services [#6685](https://github.com/spinnaker/deck/pull/6685) ([e2940b4f](https://github.com/spinnaker/deck/commit/e2940b4f43f4bf0bde7568d36cf40e55bce2bbaf))
1003
+ fix(cf): populate saved pipeline stage data [#6689](https://github.com/spinnaker/deck/pull/6689) ([009d8c0e](https://github.com/spinnaker/deck/commit/009d8c0ec106c3e5ca1e5441372a6b06df626920))
1004
+ fix(cf): make Deploy Service pipeline stage work again [#6677](https://github.com/spinnaker/deck/pull/6677) ([8f866fff](https://github.com/spinnaker/deck/commit/8f866fffcfd69402537f70951a2daf370695e4aa))
1005
+ refactor(cf): Adopt artifact model in deploy stages [#6659](https://github.com/spinnaker/deck/pull/6659) ([de57adf0](https://github.com/spinnaker/deck/commit/de57adf09452e5a5ad3449b0ec2f552f27555092))
1006
+ fix(cf): rename text from load balancers to load balancer [#6643](https://github.com/spinnaker/deck/pull/6643) ([2224c5e2](https://github.com/spinnaker/deck/commit/2224c5e2e329ff76ed00670cf54752b33fc2578e))
1007
+ feat(cf): Display details in pipeline for services ([39fe4c60](https://github.com/spinnaker/deck/commit/39fe4c6089849c535daae0594e46541f000fdae5))
1008
+ chore(prettier): Just Use Prettier™ [#6600](https://github.com/spinnaker/deck/pull/6600) ([7d5fc346](https://github.com/spinnaker/deck/commit/7d5fc346bca54c5d53f9eb46d823cd993c102058))
1009
+ feat(cf): Use spinnaker's built-in timeouts [#6476](https://github.com/spinnaker/deck/pull/6476) ([22777135](https://github.com/spinnaker/deck/commit/22777135e971eca5b544d22100a0dfdaa9bda1c6))
1010
+ chore(angularjs): Remove all 'ngInject'; in favor of explicit DI annotation ([cc52bee0](https://github.com/spinnaker/deck/commit/cc52bee0b9956693f948806322658f225efa5546))
1011
+ chore(prettier): Just Use Prettier™ ([b6bab1e1](https://github.com/spinnaker/deck/commit/b6bab1e16bb46697fec347cd30934f00fb2e9807))
1012
+ chore(angularjs): Explicitly annotate all AngularJS injection points ([f3fd790e](https://github.com/spinnaker/deck/commit/f3fd790e20a4c3056edcb2c41282517e1cf35004))
1013
+ fix(cf): pipeline edit deploy server group [#6576](https://github.com/spinnaker/deck/pull/6576) ([b673d2c5](https://github.com/spinnaker/deck/commit/b673d2c564e0e3d572734221434c1e39ac550140))
1014
+ feat(cf): add clone SG pipeline stage [#6555](https://github.com/spinnaker/deck/pull/6555) ([26471c4b](https://github.com/spinnaker/deck/commit/26471c4b2a240dce95e7bffd19f8a820851bef4d))
1015
+ fix(eslint): Fix eslint warnings for @typescript-eslint/no-namespace ([93d83d68](https://github.com/spinnaker/deck/commit/93d83d680d9f5432d4735b89a91dcce1829ab6af))
1016
+ fix(eslint): Fix eslint warnings for no-useless-escape ([ddbe2082](https://github.com/spinnaker/deck/commit/ddbe208282f96c73239a32bddd4af6f9d098b088))
1017
+ fix(eslint): Fix eslint warnings for no-case-declarations ([8cba7ac4](https://github.com/spinnaker/deck/commit/8cba7ac43c171b39b92b5a68dfec3d0d229aae48))
1018
+ fix(amazon): Display capacity as text if using SPEL [#6535](https://github.com/spinnaker/deck/pull/6535) ([7e4b4571](https://github.com/spinnaker/deck/commit/7e4b45711de31637d1a97aa046c6696885578a52))
1019
+ chore(package): Just Update Prettier™ ([a8c17492](https://github.com/spinnaker/deck/commit/a8c174925f64045f70c11b2bfc11fe1fdd558660))
1020
+ chore(cf): rename serviceName to serviceInstanceName [#6523](https://github.com/spinnaker/deck/pull/6523) ([46de5cf9](https://github.com/spinnaker/deck/commit/46de5cf9815ab17a4de3ddc27ca083c326bebcb6))
1021
+ fix(cf): fix SG pipeline modal display issues [#6504](https://github.com/spinnaker/deck/pull/6504) ([539457cd](https://github.com/spinnaker/deck/commit/539457cd50b3a08e27e0a45104c1b0be9f1a0d08))
1022
+ chore(webpack): Switch to TerserPlugin. Split bundles into ~5mb chunks ([a35088ab](https://github.com/spinnaker/deck/commit/a35088ab28cc3b25c9e6731f6fb70bf7d0e14ef0))
1023
+ feat(cf): Add artifacts for user-defined services [#6468](https://github.com/spinnaker/deck/pull/6468) ([5f81f402](https://github.com/spinnaker/deck/commit/5f81f40204c237df2f378aa9e19c50c5a4e368b3))
1024
+ chore(typescript): Switch module from 'commonjs' to 'esnext' to emit raw dynamic 'import()' ([5c49dd2a](https://github.com/spinnaker/deck/commit/5c49dd2ab3c4226295a7e8041c25dabdbeee6a2c))
1025
+ chore(package): Add .npmignore to all packages ([0451046c](https://github.com/spinnaker/deck/commit/0451046c241b450ae4b05df0b67b61758c16acce))
1026
+ feat(cf): Add Map/Unmap SGs and LBs ([04bc98b7](https://github.com/spinnaker/deck/commit/04bc98b74688c102b7ab888b42a80e509b1048b8))
1027
+ refactor(cloudfoundry/modal): Refactor cloudfoundry modals to use WizardPage component ([651b2325](https://github.com/spinnaker/deck/commit/651b2325fbd75f55c87c08b8d3e9b917724dc8d6))
1028
+ feat(cf/serverGroup): Use discriminator 'type' field to improve type checking [#6449](https://github.com/spinnaker/deck/pull/6449) ([6bdd9b06](https://github.com/spinnaker/deck/commit/6bdd9b06530fb5e31379533755065c37c940e971))
1029
+ fix(*): Remove all self closing tags in AngularJS templates Reference: https://github.com/angular/angular.js/issues/1953#issuecomment-13135021 ([6f608a0a](https://github.com/spinnaker/deck/commit/6f608a0ab43616eb130c7417e560bc3df780f335))
1030
+ refactor(*): Don't use ts or js file extension in imports ([e5bf0538](https://github.com/spinnaker/deck/commit/e5bf0538003b291ef3d965cb184cc5895e2040b6))
1031
+ chore(*): bump @types/enzyme@3.1.15, @types/jasmine@3.3.7, enzyme@3.8.0, enzyme-adapter-react-16@1.7.1, karma@4.0.0, karma-jasmine@2.0.1, karma-webpack@3.0.5, typescript@^3.2.4, jasmine-core@3.3.0 - disable jasmine 3.0's random test order by default feature ([98a85e9b](https://github.com/spinnaker/deck/commit/98a85e9b40eb728b25fadfe67fb57cceb0c88aac))
1032
+ refactor(cf): make SG inputs reusable components ([c9e93df1](https://github.com/spinnaker/deck/commit/c9e93df134d29d593721869e2eb1a7d2f6a5f1fb))
1033
+ feat(cf): Reactify resize and rollback modals [#6325](https://github.com/spinnaker/deck/pull/6325) ([81061226](https://github.com/spinnaker/deck/commit/8106122695c16df705e46c94bfaf9d280381fbe2))
1034
+ feat(cf): create AccountRegionClusterSelector React component [#6314](https://github.com/spinnaker/deck/pull/6314) ([39837000](https://github.com/spinnaker/deck/commit/39837000d61df752de4cd1aa7785fa887a217f3b))
1035
+ refactor(provider/cf): reactify instance details [#6172](https://github.com/spinnaker/deck/pull/6172) ([f039770f](https://github.com/spinnaker/deck/commit/f039770f3fa8be59c6c2cc39ca965564ffa7da24))
1036
+ refactor(cf): reactify load balancer details pane [#6295](https://github.com/spinnaker/deck/pull/6295) ([655f7311](https://github.com/spinnaker/deck/commit/655f7311deb5e00d648a63ca2036f78eba01e612))
1037
+ feat(cf): add user provided service support [#6293](https://github.com/spinnaker/deck/pull/6293) ([f3d35e19](https://github.com/spinnaker/deck/commit/f3d35e1982ebc1d9917646767d03c1c1782c5e6f))
1038
+ refactor(cf): separate SG details sections [#6291](https://github.com/spinnaker/deck/pull/6291) ([16fd07d7](https://github.com/spinnaker/deck/commit/16fd07d7ac5acc257237c484c0a25bd0af8905d5))
1039
+ refactor(*): use mask-image CSS for cloud provider logos [#6280](https://github.com/spinnaker/deck/pull/6280) ([86baac96](https://github.com/spinnaker/deck/commit/86baac96af19a15b1339cd5f1856ee1e78d9d800))
1040
+ feat(provider/cf): support multiple buildpacks [#6223](https://github.com/spinnaker/deck/pull/6223) ([1bb55ac9](https://github.com/spinnaker/deck/commit/1bb55ac9b968edf9216241978617193de7a50a17))
1041
+ fix(provider/cf): show SG and Instance info with LoadBalancers [#6224](https://github.com/spinnaker/deck/pull/6224) ([294df78e](https://github.com/spinnaker/deck/commit/294df78ed24cf9812c8a34eaa0849112d15dc970))
1042
+ refactor(provider/cf): refactor create SG to use FormikFormField [#6212](https://github.com/spinnaker/deck/pull/6212) ([283fb366](https://github.com/spinnaker/deck/commit/283fb3665384594d76945bee6e508d7a88f67dda))
1043
+ fix(provider/cf): do not trigger validation on serviceName when hidden [#6197](https://github.com/spinnaker/deck/pull/6197) ([b3f7e917](https://github.com/spinnaker/deck/commit/b3f7e917b9a340cabf1628c87a26336364587052))
1044
+ feat(provider/cf): add SG clone action [#6162](https://github.com/spinnaker/deck/pull/6162) ([42e1790e](https://github.com/spinnaker/deck/commit/42e1790e3ccb64da772c0ec390e050c2a0afb098))
1045
+ feat(provider/cf): Server Group Detail port is default health check type [#6159](https://github.com/spinnaker/deck/pull/6159) ([b1740a4f](https://github.com/spinnaker/deck/commit/b1740a4f84382baf3d0ff361054b86bd05a57d41))
1046
+ refactor(core/account): Refactor AccountSelectInput to use 'value' prop ([307da1b9](https://github.com/spinnaker/deck/commit/307da1b93fb7a77364f51a2f7ea49652a20bb2d7))
1047
+ refactor(core/account): rename AccountSelectField to AccountSelectInput ([6f7f5435](https://github.com/spinnaker/deck/commit/6f7f543508176aee9eeb5ae40dea2bf03aa6a9ca))
1048
+ feat(provider/cf): add the metrics link to SG details [#6147](https://github.com/spinnaker/deck/pull/6147) ([142680bb](https://github.com/spinnaker/deck/commit/142680bb61e5527b47547bf989f3038ba4ccc486))
1049
+ feat(provider/cf): deploy Service via manifest [#6094](https://github.com/spinnaker/deck/pull/6094) ([d5c2511c](https://github.com/spinnaker/deck/commit/d5c2511ca7f3a5d7c699bb70e2d94dc659a5e9c3))
1050
+ chore(*): Add core alias to module tsconfigs ([6b8188bb](https://github.com/spinnaker/deck/commit/6b8188bb54ea2e70987841079a8aff7debd8bd66))
1051
+ feat(provider/cf): shorten the appsManagerUri [#6105](https://github.com/spinnaker/deck/pull/6105) ([fa9229c1](https://github.com/spinnaker/deck/commit/fa9229c1e1cc4ede07b6cc5107844aed44d56a19))
1052
+ fix(provider/cf): make validators more robust [#6047](https://github.com/spinnaker/deck/pull/6047) ([cd62a345](https://github.com/spinnaker/deck/commit/cd62a34588ca733faf27049a6a64c79678e49523))
1053
+ fix(provider/cf): use ICapacity type for scaling server groups ([27a26b3f](https://github.com/spinnaker/deck/commit/27a26b3ff27367b4ea83dbecc812272fb5f84d66))
1054
+ feat(provider/cf): option to define timeouts for service creation/destroy ([5165973d](https://github.com/spinnaker/deck/commit/5165973de9a55e826dfcc6a5275e58f3ef1a1cc8))
1055
+ feat(provider/cf): display cf health check details for app [#6081](https://github.com/spinnaker/deck/pull/6081) ([790c4b63](https://github.com/spinnaker/deck/commit/790c4b63ef83c638ae5a6ddd13063e92162322ab))
1056
+ fix(provider/cf): populate red/black strategy additional fields [#6072](https://github.com/spinnaker/deck/pull/6072) ([1f47d7c9](https://github.com/spinnaker/deck/commit/1f47d7c915c95f28ca566552db749a97e1d9dd89))
1057
+ refactor(provider/cf): use custom implementation of DeploymentStrategySelector ([c8b84568](https://github.com/spinnaker/deck/commit/c8b8456838751960935ab1f6de9e83f210f46948))
1058
+ refactor(provider/cf): reorder artifact types ([15de39f2](https://github.com/spinnaker/deck/commit/15de39f287e551bcf029f56e191566ac9e7d80da))
1059
+ feat(provider/cf): display service tags for server group ([72325a40](https://github.com/spinnaker/deck/commit/72325a40aaac63995169cb70c42658b8f43b4b38))
1060
+ feat(provider/cf): Allow health check config on deploy ([fd22aa00](https://github.com/spinnaker/deck/commit/fd22aa00aa9193c6b158177df57b380e401cc98f))
1061
+ fix(provider/cf): render start application checkbox value ([25a9aa8c](https://github.com/spinnaker/deck/commit/25a9aa8c49f82cc565f002d51d5c6663c5f75521))
1062
+ refactor(provider/cf): use DeploymentStrategySelector react component ([4a671366](https://github.com/spinnaker/deck/commit/4a67136677719cf1b1e281c5953033835fab39ee))
1063
+ refactor(provider/cf): reactify pipeline stages ([8847146d](https://github.com/spinnaker/deck/commit/8847146d5295396e9fe88046dab896c7603aa31b))
1064
+ fix(provider/cf): add missing trigger to deploys ([35cd08a6](https://github.com/spinnaker/deck/commit/35cd08a6eb783f619b138cb0c38cb425123a4aac))
1065
+ refactor(provider/cf): make better use of formik library capabilities ([081b48ad](https://github.com/spinnaker/deck/commit/081b48ad7df5f3a4e2565f2503a2324dff685aff))
1066
+ refactor(provider/cf): improve error messages on multiple route issues ([23cd1d6b](https://github.com/spinnaker/deck/commit/23cd1d6b25e5649428911c5e4fca33ab72a39b2c))
1067
+ fix(provider/cf): handle different success/error cases to display checksum ([c8cb9daa](https://github.com/spinnaker/deck/commit/c8cb9daacf1d38fbe5c003b15c4a92b2449615d8))
1068
+ fix(provider/cf): allow only alphanumeric and '_' for env variable keys ([90e6864e](https://github.com/spinnaker/deck/commit/90e6864ee7bfbd16206bd6e0141e4b9b20e0b888))
1069
+ chore(provider/cf): rename "Add services" to "Bind services" ([26341786](https://github.com/spinnaker/deck/commit/26341786cb0fc129aabca1e5db90c2a24a19cd01))
1070
+ chore(core/presentation): Update formik from 0.11.11 to 1.3.1 [#5917](https://github.com/spinnaker/deck/pull/5917) ([57b1e490](https://github.com/spinnaker/deck/commit/57b1e4904c04d04cb485d2850fd0675d41c4f60c))
1071
+ fix(provider/cf): fetch services on a per-region basis ([c0842ad0](https://github.com/spinnaker/deck/commit/c0842ad00bb6afb6b63e943fa5d9c78fe9ec1b3f))
1072
+ fix(provider/cf): ensure regions are initialized before rendering ([d80e2f64](https://github.com/spinnaker/deck/commit/d80e2f648d83c1af3fc8b7c7252c19218ea675fe))
1073
+ fix(provider/cf): fix deploy stage configuration from existing server group ([4db9789b](https://github.com/spinnaker/deck/commit/4db9789b72e2143f05a1a6c2d581f99438d6e7f0))
1074
+ refactor(provider/cf): rename deleteService to destroyService ([73ed9ae0](https://github.com/spinnaker/deck/commit/73ed9ae0c54ad2b90e346cdd63a19c145fc8f14e))
1075
+ fix(provider/cf): fix environment variable definition for CF deployments ([c8fae534](https://github.com/spinnaker/deck/commit/c8fae5347b058d65760577d928fd7e7277220116))
1076
+ refactor(*): Replace all uses of wrapped AccountSelectField with react version [#5832](https://github.com/spinnaker/deck/pull/5832) ([8e23f8fa](https://github.com/spinnaker/deck/commit/8e23f8fa06433783a1cd2ad5b1f571376340792b))
1077
+ fix(provider/cf): create servergroup ux improvements ([4348debd](https://github.com/spinnaker/deck/commit/4348debd80ab1bc12484191b8e5ed65b62092bf2))
1078
+ fix(provider/cf): repair null errors in deploy ([46989b4f](https://github.com/spinnaker/deck/commit/46989b4f992d7ad741eaa37dab965f6b721cb7f6))
1079
+ chore(package): prepare -> prepublishOnly for everything [#5806](https://github.com/spinnaker/deck/pull/5806) ([06f45b5c](https://github.com/spinnaker/deck/commit/06f45b5c0da71227e4f1d7bb9e7187e95231f4d2))
1080
+ refactor(core/modal): Improve wizardPage types so no type param is necessary ([8aff36a9](https://github.com/spinnaker/deck/commit/8aff36a9582b775a8e1dc2344938ecf1e22f85be))
1081
+ feat(provider/cf): add deploy and delete service pipeline stages ([876fcf55](https://github.com/spinnaker/deck/commit/876fcf55f33afa1a734cbd89e72149fbe3ebac68))
1082
+ refactor(core/modal): Use `formik` prop instead of spreading. Simplify WizardPage props. ([a1d03e0e](https://github.com/spinnaker/deck/commit/a1d03e0eeb0ea25f87cf5deac644f4f5025c2b0d))
1083
+ refactor(core/modal): Use TSX generics to render WizardModal ([2fad82c8](https://github.com/spinnaker/deck/commit/2fad82c8ddfdc912e7a7d72c98913351d12aa10c))
1084
+ chore(prettier): Just Update Prettier™ [#5754](https://github.com/spinnaker/deck/pull/5754) ([709f30f6](https://github.com/spinnaker/deck/commit/709f30f6eff0c8862cb8736465e4fd152abd693c))
1085
+ fix(cloudfoundry): module builds require the use of alias instead of a path directly in core [#5742](https://github.com/spinnaker/deck/pull/5742) ([4b8a7df3](https://github.com/spinnaker/deck/commit/4b8a7df3bb039d4eee6f2860c14cca91d2952e8e))