@spinnaker/titus 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 (185) hide show
  1. package/CHANGELOG.md +2661 -0
  2. package/LICENSE.txt +203 -0
  3. package/dist/domain/IJobDisruptionBudget.d.ts +35 -0
  4. package/dist/domain/ITitusCredentials.d.ts +5 -0
  5. package/dist/domain/ITitusInstance.d.ts +28 -0
  6. package/dist/domain/ITitusScalingPolicy.d.ts +4 -0
  7. package/dist/domain/ITitusServerGroup.d.ts +52 -0
  8. package/dist/domain/ITitusServiceJobProcesses.d.ts +3 -0
  9. package/dist/domain/index.d.ts +5 -0
  10. package/dist/help/titus.help.d.ts +1 -0
  11. package/dist/index.d.ts +6 -0
  12. package/dist/index.js +12828 -0
  13. package/dist/index.js.map +1 -0
  14. package/dist/instance/details/TitusInstanceDetails.d.ts +25 -0
  15. package/dist/instance/details/TitusInstanceDns.d.ts +8 -0
  16. package/dist/instance/details/TitusInstanceInformation.d.ts +7 -0
  17. package/dist/instance/details/index.d.ts +4 -0
  18. package/dist/instance/details/titusInstanceDetailsUtils.d.ts +14 -0
  19. package/dist/pipeline/stages/cloneServerGroup/cloneServerGroupExecutionDetails.controller.d.ts +2 -0
  20. package/dist/pipeline/stages/cloneServerGroup/titusCloneServerGroupStage.d.ts +2 -0
  21. package/dist/pipeline/stages/destroyAsg/titusDestroyAsgStage.d.ts +2 -0
  22. package/dist/pipeline/stages/disableAsg/titusDisableAsgStage.d.ts +2 -0
  23. package/dist/pipeline/stages/disableCluster/titusDisableClusterStage.d.ts +2 -0
  24. package/dist/pipeline/stages/enableAsg/titusEnableAsgStage.d.ts +2 -0
  25. package/dist/pipeline/stages/findAmi/titusFindAmiStage.d.ts +2 -0
  26. package/dist/pipeline/stages/resizeAsg/titusResizeAsgStage.d.ts +2 -0
  27. package/dist/pipeline/stages/runJob/RunJobExecutionDetails.d.ts +16 -0
  28. package/dist/pipeline/stages/runJob/TitusRunJobStageConfig.d.ts +25 -0
  29. package/dist/pipeline/stages/runJob/TitusSecurityGroupPicker.d.ts +34 -0
  30. package/dist/pipeline/stages/runJob/titusRunJobStage.d.ts +1 -0
  31. package/dist/pipeline/stages/scaleDownCluster/titusScaleDownClusterStage.d.ts +2 -0
  32. package/dist/pipeline/stages/shrinkCluster/titusShrinkClusterStage.d.ts +2 -0
  33. package/dist/reactShims/index.d.ts +1 -0
  34. package/dist/reactShims/titus.react.injector.d.ts +11 -0
  35. package/dist/reactShims/titus.react.module.d.ts +1 -0
  36. package/dist/securityGroup/securityGroup.read.service.d.ts +2 -0
  37. package/dist/serverGroup/configure/ServerGroupCommandBuilder.d.ts +2 -0
  38. package/dist/serverGroup/configure/serverGroup.configure.titus.module.d.ts +2 -0
  39. package/dist/serverGroup/configure/serverGroupConfiguration.service.d.ts +89 -0
  40. package/dist/serverGroup/configure/wizard/TitusCloneServerGroupModal.d.ts +31 -0
  41. package/dist/serverGroup/configure/wizard/pages/ServerGroupBasicSettings.d.ts +28 -0
  42. package/dist/serverGroup/configure/wizard/pages/ServerGroupParameters.d.ts +15 -0
  43. package/dist/serverGroup/configure/wizard/pages/ServerGroupResources.d.ts +11 -0
  44. package/dist/serverGroup/configure/wizard/pages/TitusMapLayout.d.ts +4 -0
  45. package/dist/serverGroup/configure/wizard/pages/disruptionBudget/JobDisruptionBudget.d.ts +40 -0
  46. package/dist/serverGroup/configure/wizard/pages/disruptionBudget/PolicyOptions.d.ts +2 -0
  47. package/dist/serverGroup/configure/wizard/pages/disruptionBudget/RateOptions.d.ts +2 -0
  48. package/dist/serverGroup/configure/wizard/pages/disruptionBudget/WindowPicker.d.ts +23 -0
  49. package/dist/serverGroup/configure/wizard/pages/index.d.ts +4 -0
  50. package/dist/serverGroup/details/TitusCapacityDetailsSection.d.ts +11 -0
  51. package/dist/serverGroup/details/TitusLaunchConfigSection.d.ts +9 -0
  52. package/dist/serverGroup/details/TitusPackageDetailsSection.d.ts +6 -0
  53. package/dist/serverGroup/details/TitusSecurityGroups.d.ts +17 -0
  54. package/dist/serverGroup/details/capacityDetailsSection.component.d.ts +1 -0
  55. package/dist/serverGroup/details/disruptionBudget/DisruptionBudgetSection.d.ts +19 -0
  56. package/dist/serverGroup/details/disruptionBudget/EditDisruptionBudgetModal.d.ts +14 -0
  57. package/dist/serverGroup/details/index.d.ts +5 -0
  58. package/dist/serverGroup/details/launchConfigSection.component.d.ts +1 -0
  59. package/dist/serverGroup/details/resize/TitusResizeServerGroupModal.d.ts +8 -0
  60. package/dist/serverGroup/details/resize/useTaskMonitor.d.ts +25 -0
  61. package/dist/serverGroup/details/rollback/rollbackServerGroup.controller.d.ts +2 -0
  62. package/dist/serverGroup/details/scalingActivity/TitusScalingActivitiesModal.d.ts +7 -0
  63. package/dist/serverGroup/details/scalingPolicy/CreateScalingPolicyButton.d.ts +21 -0
  64. package/dist/serverGroup/details/scalingPolicy/TitusCustomScalingPolicy.d.ts +7 -0
  65. package/dist/serverGroup/details/scalingPolicy/createScalingPolicyButton.component.d.ts +1 -0
  66. package/dist/serverGroup/details/scalingPolicy/index.d.ts +3 -0
  67. package/dist/serverGroup/details/scalingPolicy/scalingPolicy.module.d.ts +1 -0
  68. package/dist/serverGroup/details/scalingPolicy/targetTracking/TitusTargetTrackingChart.d.ts +9 -0
  69. package/dist/serverGroup/details/scalingPolicy/targetTracking/UpsertTargetTrackingModal.d.ts +10 -0
  70. package/dist/serverGroup/details/scalingPolicy/titusCustomScalingPolicy.component.d.ts +1 -0
  71. package/dist/serverGroup/details/scalingPolicy/upsert/TitusScalingPolicyCommandBuilderService.d.ts +10 -0
  72. package/dist/serverGroup/details/scalingPolicy/upsert/UpsertScalingPolicyModal.d.ts +10 -0
  73. package/dist/serverGroup/details/sections/ITitusServerGroupDetailsSectionProps.d.ts +5 -0
  74. package/dist/serverGroup/details/serverGroupDetails.titus.controller.d.ts +2 -0
  75. package/dist/serverGroup/details/serviceJobProcesses/ServiceJobProcesses.d.ts +3 -0
  76. package/dist/serverGroup/details/serviceJobProcesses/ServiceJobProcessesSection.d.ts +7 -0
  77. package/dist/serverGroup/details/titusPackageDetailsSection.component.d.ts +1 -0
  78. package/dist/serverGroup/details/titusSecurityGroups.component.d.ts +1 -0
  79. package/dist/serverGroup/serverGroup.transformer.d.ts +2 -0
  80. package/dist/titus.module.d.ts +5 -0
  81. package/dist/titus.settings.d.ts +14 -0
  82. package/dist/validation/ApplicationNameValidator.d.ts +1 -0
  83. package/package.json +52 -0
  84. package/src/domain/IJobDisruptionBudget.ts +19 -0
  85. package/src/domain/ITitusCredentials.ts +6 -0
  86. package/src/domain/ITitusInstance.ts +30 -0
  87. package/src/domain/ITitusScalingPolicy.ts +5 -0
  88. package/src/domain/ITitusServerGroup.ts +56 -0
  89. package/src/domain/ITitusServiceJobProcesses.ts +3 -0
  90. package/src/domain/index.ts +5 -0
  91. package/src/help/titus.help.ts +99 -0
  92. package/src/index.ts +6 -0
  93. package/src/instance/details/TitusInstanceDetails.tsx +234 -0
  94. package/src/instance/details/TitusInstanceDns.tsx +40 -0
  95. package/src/instance/details/TitusInstanceInformation.tsx +42 -0
  96. package/src/instance/details/index.ts +4 -0
  97. package/src/instance/details/titusInstanceDetailsUtils.spec.ts +124 -0
  98. package/src/instance/details/titusInstanceDetailsUtils.ts +181 -0
  99. package/src/logo/titus.logo.less +5 -0
  100. package/src/logo/titus.logo.png +0 -0
  101. package/src/logo/titus.logo.svg +7 -0
  102. package/src/pipeline/stages/cloneServerGroup/cloneServerGroupExecutionDetails.controller.js +66 -0
  103. package/src/pipeline/stages/cloneServerGroup/cloneServerGroupExecutionDetails.html +46 -0
  104. package/src/pipeline/stages/cloneServerGroup/cloneServerGroupStage.html +106 -0
  105. package/src/pipeline/stages/cloneServerGroup/cloneServerGroupStepLabel.html +1 -0
  106. package/src/pipeline/stages/cloneServerGroup/titusCloneServerGroupStage.js +104 -0
  107. package/src/pipeline/stages/destroyAsg/destroyAsgStage.html +9 -0
  108. package/src/pipeline/stages/destroyAsg/destroyAsgStepLabel.html +1 -0
  109. package/src/pipeline/stages/destroyAsg/titusDestroyAsgStage.js +65 -0
  110. package/src/pipeline/stages/disableAsg/disableAsgStage.html +11 -0
  111. package/src/pipeline/stages/disableAsg/disableAsgStepLabel.html +1 -0
  112. package/src/pipeline/stages/disableAsg/titusDisableAsgStage.js +69 -0
  113. package/src/pipeline/stages/disableCluster/disableClusterStage.html +26 -0
  114. package/src/pipeline/stages/disableCluster/titusDisableClusterStage.js +85 -0
  115. package/src/pipeline/stages/enableAsg/enableAsgStage.html +11 -0
  116. package/src/pipeline/stages/enableAsg/enableAsgStepLabel.html +1 -0
  117. package/src/pipeline/stages/enableAsg/titusEnableAsgStage.js +73 -0
  118. package/src/pipeline/stages/findAmi/findAmiStage.html +24 -0
  119. package/src/pipeline/stages/findAmi/titusFindAmiStage.js +79 -0
  120. package/src/pipeline/stages/resizeAsg/resizeAsgStage.html +99 -0
  121. package/src/pipeline/stages/resizeAsg/resizeAsgStepLabel.html +1 -0
  122. package/src/pipeline/stages/resizeAsg/titusResizeAsgStage.js +125 -0
  123. package/src/pipeline/stages/runJob/RunJobExecutionDetails.tsx +165 -0
  124. package/src/pipeline/stages/runJob/TitusRunJobStageConfig.tsx +466 -0
  125. package/src/pipeline/stages/runJob/TitusSecurityGroupPicker.tsx +170 -0
  126. package/src/pipeline/stages/runJob/titusRunJobStage.ts +30 -0
  127. package/src/pipeline/stages/scaleDownCluster/scaleDownClusterStage.html +35 -0
  128. package/src/pipeline/stages/scaleDownCluster/titusScaleDownClusterStage.js +79 -0
  129. package/src/pipeline/stages/shrinkCluster/shrinkClusterStage.html +34 -0
  130. package/src/pipeline/stages/shrinkCluster/titusShrinkClusterStage.js +73 -0
  131. package/src/reactShims/index.ts +1 -0
  132. package/src/reactShims/titus.react.injector.ts +17 -0
  133. package/src/reactShims/titus.react.module.ts +10 -0
  134. package/src/securityGroup/securityGroup.read.service.js +15 -0
  135. package/src/serverGroup/configure/ServerGroupCommandBuilder.js +247 -0
  136. package/src/serverGroup/configure/serverGroup.configure.titus.module.js +9 -0
  137. package/src/serverGroup/configure/serverGroupCommandBuilder.spec.js +63 -0
  138. package/src/serverGroup/configure/serverGroupConfiguration.service.ts +410 -0
  139. package/src/serverGroup/configure/wizard/TitusCloneServerGroupModal.tsx +293 -0
  140. package/src/serverGroup/configure/wizard/pages/ServerGroupBasicSettings.tsx +339 -0
  141. package/src/serverGroup/configure/wizard/pages/ServerGroupParameters.less +5 -0
  142. package/src/serverGroup/configure/wizard/pages/ServerGroupParameters.tsx +217 -0
  143. package/src/serverGroup/configure/wizard/pages/ServerGroupResources.tsx +200 -0
  144. package/src/serverGroup/configure/wizard/pages/TitusMapLayout.less +3 -0
  145. package/src/serverGroup/configure/wizard/pages/TitusMapLayout.tsx +29 -0
  146. package/src/serverGroup/configure/wizard/pages/disruptionBudget/JobDisruptionBudget.tsx +285 -0
  147. package/src/serverGroup/configure/wizard/pages/disruptionBudget/PolicyOptions.tsx +112 -0
  148. package/src/serverGroup/configure/wizard/pages/disruptionBudget/RateOptions.tsx +89 -0
  149. package/src/serverGroup/configure/wizard/pages/disruptionBudget/WindowPicker.tsx +202 -0
  150. package/src/serverGroup/configure/wizard/pages/index.ts +4 -0
  151. package/src/serverGroup/details/TitusCapacityDetailsSection.tsx +66 -0
  152. package/src/serverGroup/details/TitusLaunchConfigSection.tsx +35 -0
  153. package/src/serverGroup/details/TitusPackageDetailsSection.tsx +40 -0
  154. package/src/serverGroup/details/TitusSecurityGroups.tsx +107 -0
  155. package/src/serverGroup/details/capacityDetailsSection.component.ts +12 -0
  156. package/src/serverGroup/details/disruptionBudget/DisruptionBudgetSection.tsx +226 -0
  157. package/src/serverGroup/details/disruptionBudget/EditDisruptionBudgetModal.tsx +92 -0
  158. package/src/serverGroup/details/index.ts +5 -0
  159. package/src/serverGroup/details/launchConfigSection.component.ts +12 -0
  160. package/src/serverGroup/details/resize/TitusResizeServerGroupModal.tsx +302 -0
  161. package/src/serverGroup/details/resize/useTaskMonitor.ts +30 -0
  162. package/src/serverGroup/details/rollback/rollbackServerGroup.controller.js +149 -0
  163. package/src/serverGroup/details/rollback/rollbackServerGroup.html +133 -0
  164. package/src/serverGroup/details/scalingActivity/TitusScalingActivitiesModal.tsx +81 -0
  165. package/src/serverGroup/details/scalingPolicy/CreateScalingPolicyButton.tsx +102 -0
  166. package/src/serverGroup/details/scalingPolicy/TitusCustomScalingPolicy.tsx +13 -0
  167. package/src/serverGroup/details/scalingPolicy/createScalingPolicyButton.component.ts +15 -0
  168. package/src/serverGroup/details/scalingPolicy/index.js +3 -0
  169. package/src/serverGroup/details/scalingPolicy/scalingPolicy.module.ts +7 -0
  170. package/src/serverGroup/details/scalingPolicy/targetTracking/TitusTargetTrackingChart.tsx +57 -0
  171. package/src/serverGroup/details/scalingPolicy/targetTracking/UpsertTargetTrackingModal.tsx +82 -0
  172. package/src/serverGroup/details/scalingPolicy/titusCustomScalingPolicy.component.ts +17 -0
  173. package/src/serverGroup/details/scalingPolicy/upsert/TitusScalingPolicyCommandBuilderService.ts +115 -0
  174. package/src/serverGroup/details/scalingPolicy/upsert/UpsertScalingPolicyModal.tsx +157 -0
  175. package/src/serverGroup/details/sections/ITitusServerGroupDetailsSectionProps.ts +6 -0
  176. package/src/serverGroup/details/serverGroupDetails.html +191 -0
  177. package/src/serverGroup/details/serverGroupDetails.titus.controller.js +457 -0
  178. package/src/serverGroup/details/serviceJobProcesses/ServiceJobProcesses.ts +12 -0
  179. package/src/serverGroup/details/serviceJobProcesses/ServiceJobProcessesSection.tsx +136 -0
  180. package/src/serverGroup/details/titusPackageDetailsSection.component.ts +12 -0
  181. package/src/serverGroup/details/titusSecurityGroups.component.ts +12 -0
  182. package/src/serverGroup/serverGroup.transformer.js +90 -0
  183. package/src/titus.module.ts +95 -0
  184. package/src/titus.settings.ts +22 -0
  185. package/src/validation/ApplicationNameValidator.ts +43 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,2661 @@
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.5.44](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.43...@spinnaker/titus@0.5.44) (2024-06-10)
7
+
8
+ **Note:** Version bump only for package @spinnaker/titus
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.5.43](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.42...@spinnaker/titus@0.5.43) (2024-05-10)
15
+
16
+ **Note:** Version bump only for package @spinnaker/titus
17
+
18
+
19
+
20
+
21
+
22
+ ## [0.5.42](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.41...@spinnaker/titus@0.5.42) (2023-12-07)
23
+
24
+ **Note:** Version bump only for package @spinnaker/titus
25
+
26
+
27
+
28
+
29
+
30
+ ## [0.5.41](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.40...@spinnaker/titus@0.5.41) (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.5.40](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.39...@spinnaker/titus@0.5.40) (2023-09-06)
42
+
43
+ **Note:** Version bump only for package @spinnaker/titus
44
+
45
+
46
+
47
+
48
+
49
+ ## [0.5.39](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.38...@spinnaker/titus@0.5.39) (2023-07-20)
50
+
51
+ **Note:** Version bump only for package @spinnaker/titus
52
+
53
+
54
+
55
+
56
+
57
+ ## [0.5.38](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.37...@spinnaker/titus@0.5.38) (2023-06-02)
58
+
59
+ **Note:** Version bump only for package @spinnaker/titus
60
+
61
+
62
+
63
+
64
+
65
+ ## [0.5.37](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.36...@spinnaker/titus@0.5.37) (2023-05-11)
66
+
67
+ **Note:** Version bump only for package @spinnaker/titus
68
+
69
+
70
+
71
+
72
+
73
+ ## [0.5.36](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.35...@spinnaker/titus@0.5.36) (2023-05-03)
74
+
75
+ **Note:** Version bump only for package @spinnaker/titus
76
+
77
+
78
+
79
+
80
+
81
+ ## [0.5.35](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.34...@spinnaker/titus@0.5.35) (2023-04-03)
82
+
83
+ **Note:** Version bump only for package @spinnaker/titus
84
+
85
+
86
+
87
+
88
+
89
+ ## [0.5.34](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.33...@spinnaker/titus@0.5.34) (2023-02-02)
90
+
91
+ **Note:** Version bump only for package @spinnaker/titus
92
+
93
+
94
+
95
+
96
+
97
+ ## [0.5.33](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.32...@spinnaker/titus@0.5.33) (2023-02-01)
98
+
99
+ **Note:** Version bump only for package @spinnaker/titus
100
+
101
+
102
+
103
+
104
+
105
+ ## [0.5.32](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.31...@spinnaker/titus@0.5.32) (2022-10-21)
106
+
107
+ **Note:** Version bump only for package @spinnaker/titus
108
+
109
+
110
+
111
+
112
+
113
+ ## [0.5.31](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.30...@spinnaker/titus@0.5.31) (2022-10-06)
114
+
115
+ **Note:** Version bump only for package @spinnaker/titus
116
+
117
+
118
+
119
+
120
+
121
+ ## [0.5.30](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.29...@spinnaker/titus@0.5.30) (2022-08-25)
122
+
123
+ **Note:** Version bump only for package @spinnaker/titus
124
+
125
+
126
+
127
+
128
+
129
+ ## [0.5.29](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.28...@spinnaker/titus@0.5.29) (2022-08-03)
130
+
131
+ **Note:** Version bump only for package @spinnaker/titus
132
+
133
+
134
+
135
+
136
+
137
+ ## [0.5.28](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.27...@spinnaker/titus@0.5.28) (2022-07-11)
138
+
139
+ **Note:** Version bump only for package @spinnaker/titus
140
+
141
+
142
+
143
+
144
+
145
+ ## [0.5.27](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.26...@spinnaker/titus@0.5.27) (2022-07-01)
146
+
147
+ **Note:** Version bump only for package @spinnaker/titus
148
+
149
+
150
+
151
+
152
+
153
+ ## [0.5.26](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.25...@spinnaker/titus@0.5.26) (2022-06-22)
154
+
155
+ **Note:** Version bump only for package @spinnaker/titus
156
+
157
+
158
+
159
+
160
+
161
+ ## [0.5.25](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.24...@spinnaker/titus@0.5.25) (2022-05-05)
162
+
163
+ **Note:** Version bump only for package @spinnaker/titus
164
+
165
+
166
+
167
+
168
+
169
+ ## [0.5.24](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.23...@spinnaker/titus@0.5.24) (2022-04-21)
170
+
171
+ **Note:** Version bump only for package @spinnaker/titus
172
+
173
+
174
+
175
+
176
+
177
+ ## [0.5.23](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.22...@spinnaker/titus@0.5.23) (2022-04-09)
178
+
179
+ **Note:** Version bump only for package @spinnaker/titus
180
+
181
+
182
+
183
+
184
+
185
+ ## [0.5.22](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.21...@spinnaker/titus@0.5.22) (2022-03-08)
186
+
187
+ **Note:** Version bump only for package @spinnaker/titus
188
+
189
+
190
+
191
+
192
+
193
+ ## [0.5.21](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.20...@spinnaker/titus@0.5.21) (2022-01-22)
194
+
195
+ **Note:** Version bump only for package @spinnaker/titus
196
+
197
+
198
+
199
+
200
+
201
+ ## [0.5.20](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.19...@spinnaker/titus@0.5.20) (2022-01-12)
202
+
203
+ **Note:** Version bump only for package @spinnaker/titus
204
+
205
+
206
+
207
+
208
+
209
+ ## [0.5.19](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.18...@spinnaker/titus@0.5.19) (2021-12-11)
210
+
211
+ **Note:** Version bump only for package @spinnaker/titus
212
+
213
+
214
+
215
+
216
+
217
+ ## [0.5.18](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.17...@spinnaker/titus@0.5.18) (2021-12-08)
218
+
219
+ **Note:** Version bump only for package @spinnaker/titus
220
+
221
+
222
+
223
+
224
+
225
+ ## [0.5.17](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.16...@spinnaker/titus@0.5.17) (2021-12-01)
226
+
227
+ **Note:** Version bump only for package @spinnaker/titus
228
+
229
+
230
+
231
+
232
+
233
+ ## [0.5.16](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.15...@spinnaker/titus@0.5.16) (2021-11-12)
234
+
235
+ **Note:** Version bump only for package @spinnaker/titus
236
+
237
+
238
+
239
+
240
+
241
+ ## [0.5.15](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.14...@spinnaker/titus@0.5.15) (2021-11-03)
242
+
243
+ **Note:** Version bump only for package @spinnaker/titus
244
+
245
+
246
+
247
+
248
+
249
+ ## [0.5.14](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.13...@spinnaker/titus@0.5.14) (2021-10-05)
250
+
251
+ **Note:** Version bump only for package @spinnaker/titus
252
+
253
+
254
+
255
+
256
+
257
+ ## [0.5.13](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.12...@spinnaker/titus@0.5.13) (2021-10-01)
258
+
259
+ **Note:** Version bump only for package @spinnaker/titus
260
+
261
+
262
+
263
+
264
+
265
+ ## [0.5.12](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.10...@spinnaker/titus@0.5.12) (2021-09-30)
266
+
267
+
268
+ ### Bug Fixes
269
+
270
+ * bump @types/react to 16.14.10 ([bb62b99](https://github.com/spinnaker/deck/commit/bb62b991514c2a81fbdf467c01f3ce7467f71718))
271
+ * **titus:** yarn lint --fix ([0b51aa0](https://github.com/spinnaker/deck/commit/0b51aa0083f03dc8f3aaafa43227d96a0aefd710))
272
+
273
+
274
+
275
+
276
+
277
+ ## [0.5.11](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.10...@spinnaker/titus@0.5.11) (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
+ * **titus:** yarn lint --fix ([0b51aa0](https://github.com/spinnaker/deck/commit/0b51aa0083f03dc8f3aaafa43227d96a0aefd710))
284
+
285
+
286
+
287
+
288
+
289
+ ## [0.5.10](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.9...@spinnaker/titus@0.5.10) (2021-09-29)
290
+
291
+
292
+ ### Bug Fixes
293
+
294
+ * **titus:** Deal with absence of non-required fields ([#9711](https://github.com/spinnaker/deck/issues/9711)) ([4602446](https://github.com/spinnaker/deck/commit/460244626f2e2892dcbe5163d788bedf93c01a64))
295
+
296
+
297
+
298
+
299
+
300
+ ## [0.5.9](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.8...@spinnaker/titus@0.5.9) (2021-09-24)
301
+
302
+ **Note:** Version bump only for package @spinnaker/titus
303
+
304
+
305
+
306
+
307
+
308
+ ## [0.5.8](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.7...@spinnaker/titus@0.5.8) (2021-09-24)
309
+
310
+ **Note:** Version bump only for package @spinnaker/titus
311
+
312
+
313
+
314
+
315
+
316
+ ## [0.5.7](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.6...@spinnaker/titus@0.5.7) (2021-09-23)
317
+
318
+ **Note:** Version bump only for package @spinnaker/titus
319
+
320
+
321
+
322
+
323
+
324
+ ## [0.5.6](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.5...@spinnaker/titus@0.5.6) (2021-09-23)
325
+
326
+ **Note:** Version bump only for package @spinnaker/titus
327
+
328
+
329
+
330
+
331
+
332
+ ## [0.5.5](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.4...@spinnaker/titus@0.5.5) (2021-09-21)
333
+
334
+ **Note:** Version bump only for package @spinnaker/titus
335
+
336
+
337
+
338
+
339
+
340
+ ## [0.5.4](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.3...@spinnaker/titus@0.5.4) (2021-09-18)
341
+
342
+ **Note:** Version bump only for package @spinnaker/titus
343
+
344
+
345
+
346
+
347
+
348
+ ## [0.5.3](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.2...@spinnaker/titus@0.5.3) (2021-09-18)
349
+
350
+ **Note:** Version bump only for package @spinnaker/titus
351
+
352
+
353
+
354
+
355
+
356
+ ## [0.5.2](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.1...@spinnaker/titus@0.5.2) (2021-09-16)
357
+
358
+ **Note:** Version bump only for package @spinnaker/titus
359
+
360
+
361
+
362
+
363
+
364
+ ## [0.5.1](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.5.0...@spinnaker/titus@0.5.1) (2021-09-15)
365
+
366
+ **Note:** Version bump only for package @spinnaker/titus
367
+
368
+
369
+
370
+
371
+
372
+ # [0.5.0](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.4.8...@spinnaker/titus@0.5.0) (2021-09-14)
373
+
374
+
375
+ ### Bug Fixes
376
+
377
+ * **amazon:** Set default metric for new scaling policy ([#9655](https://github.com/spinnaker/deck/issues/9655)) ([63e55a9](https://github.com/spinnaker/deck/commit/63e55a988f5c8638d95ab324449d04c1cf40aeac))
378
+
379
+
380
+ ### Features
381
+
382
+ * **titus:** Titus policy command builder ([#9629](https://github.com/spinnaker/deck/issues/9629)) ([9901867](https://github.com/spinnaker/deck/commit/9901867af636e8ee7408b8ffee7e67d99ea6c969))
383
+
384
+
385
+
386
+
387
+
388
+ ## [0.4.8](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.4.7...@spinnaker/titus@0.4.8) (2021-09-07)
389
+
390
+ **Note:** Version bump only for package @spinnaker/titus
391
+
392
+
393
+
394
+
395
+
396
+ ## [0.4.7](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.4.6...@spinnaker/titus@0.4.7) (2021-09-06)
397
+
398
+
399
+ ### Bug Fixes
400
+
401
+ * **titus/subnet:** Support default titus subnetType in SubnetSelectInput ([#9641](https://github.com/spinnaker/deck/issues/9641)) ([cfde788](https://github.com/spinnaker/deck/commit/cfde7889cf72986e53418b76ff8aa354cc6875a5))
402
+
403
+
404
+
405
+
406
+
407
+ ## [0.4.6](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.4.5...@spinnaker/titus@0.4.6) (2021-09-02)
408
+
409
+ **Note:** Version bump only for package @spinnaker/titus
410
+
411
+
412
+
413
+
414
+
415
+ ## [0.4.5](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.4.4...@spinnaker/titus@0.4.5) (2021-08-30)
416
+
417
+
418
+ ### Bug Fixes
419
+
420
+ * **aws:** Clarify compatible target groups ([#9626](https://github.com/spinnaker/deck/issues/9626)) ([a28013b](https://github.com/spinnaker/deck/commit/a28013b8db11ad0ed288104d624cf1ea3ed19d34))
421
+
422
+
423
+
424
+
425
+
426
+ ## [0.4.4](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.4.3...@spinnaker/titus@0.4.4) (2021-08-30)
427
+
428
+ **Note:** Version bump only for package @spinnaker/titus
429
+
430
+
431
+
432
+
433
+
434
+ ## [0.4.3](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.4.2...@spinnaker/titus@0.4.3) (2021-08-25)
435
+
436
+ **Note:** Version bump only for package @spinnaker/titus
437
+
438
+
439
+
440
+
441
+
442
+ ## [0.4.2](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.4.1...@spinnaker/titus@0.4.2) (2021-08-20)
443
+
444
+
445
+ ### Bug Fixes
446
+
447
+ * **titus:** Update props in StepPolicyAction ([#9605](https://github.com/spinnaker/deck/issues/9605)) ([f1b039c](https://github.com/spinnaker/deck/commit/f1b039cd1b4f2df750b028569b1c3f2f2925897f))
448
+
449
+
450
+
451
+
452
+
453
+ ## [0.4.1](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.4.0...@spinnaker/titus@0.4.1) (2021-08-20)
454
+
455
+ **Note:** Version bump only for package @spinnaker/titus
456
+
457
+
458
+
459
+
460
+
461
+ # [0.4.0](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.3.2...@spinnaker/titus@0.4.0) (2021-08-18)
462
+
463
+
464
+ ### Features
465
+
466
+ * **titus:** Remove constraints for scaling activities ([#9597](https://github.com/spinnaker/deck/issues/9597)) ([caab693](https://github.com/spinnaker/deck/commit/caab6939f682e7c6a0d8fa6747f3bc14d452d9a1))
467
+
468
+
469
+
470
+
471
+
472
+ ## [0.3.2](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.3.1...@spinnaker/titus@0.3.2) (2021-08-17)
473
+
474
+ **Note:** Version bump only for package @spinnaker/titus
475
+
476
+
477
+
478
+
479
+
480
+ ## [0.3.1](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.3.0...@spinnaker/titus@0.3.1) (2021-08-13)
481
+
482
+ **Note:** Version bump only for package @spinnaker/titus
483
+
484
+
485
+
486
+
487
+
488
+ # [0.3.0](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.2.4...@spinnaker/titus@0.3.0) (2021-08-10)
489
+
490
+
491
+ ### Features
492
+
493
+ * **core/pipeline:** Check if deploy stage has a trigger that provide… ([#9538](https://github.com/spinnaker/deck/issues/9538)) ([287cecb](https://github.com/spinnaker/deck/commit/287cecb5abf0871c1a2429d8c370470d54417cad))
494
+
495
+
496
+
497
+
498
+
499
+ ## [0.2.4](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.2.3...@spinnaker/titus@0.2.4) (2021-08-05)
500
+
501
+
502
+ ### Bug Fixes
503
+
504
+ * **amazon/titus:** Add mode to stage view state ([#9551](https://github.com/spinnaker/deck/issues/9551)) ([a0a4eb5](https://github.com/spinnaker/deck/commit/a0a4eb52b853b510a81b8068548f0198c7c458b4))
505
+
506
+
507
+
508
+
509
+
510
+ ## [0.2.3](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.2.2...@spinnaker/titus@0.2.3) (2021-08-02)
511
+
512
+ **Note:** Version bump only for package @spinnaker/titus
513
+
514
+
515
+
516
+
517
+
518
+ ## [0.2.2](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.2.1...@spinnaker/titus@0.2.2) (2021-07-30)
519
+
520
+
521
+ ### Bug Fixes
522
+
523
+ * **all:** Fix lodash global usage ([d048432](https://github.com/spinnaker/deck/commit/d048432978f0aa0bceb2b58f80ea7301de153072))
524
+ * **build:** Upgrade uirouter/react version ([cc5004b](https://github.com/spinnaker/deck/commit/cc5004bfded32642553077346c19e34820d24ae7))
525
+ * **titus:** Hide scaling activity length ([#9525](https://github.com/spinnaker/deck/issues/9525)) ([e2003cc](https://github.com/spinnaker/deck/commit/e2003cc1312f2144e041cfcc72bf34435854d780))
526
+
527
+
528
+
529
+
530
+
531
+ ## [0.2.1](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.2.0...@spinnaker/titus@0.2.1) (2021-07-27)
532
+
533
+ **Note:** Version bump only for package @spinnaker/titus
534
+
535
+
536
+
537
+
538
+
539
+ # [0.2.0](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.1.4...@spinnaker/titus@0.2.0) (2021-07-26)
540
+
541
+
542
+ ### Features
543
+
544
+ * **titus/serverGroup:** View server group scaling activities ([#9444](https://github.com/spinnaker/deck/issues/9444)) ([ade2b6e](https://github.com/spinnaker/deck/commit/ade2b6e808ac393de995675de39d63478abfc6f5))
545
+
546
+
547
+
548
+
549
+
550
+ ## [0.1.4](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.1.3...@spinnaker/titus@0.1.4) (2021-07-22)
551
+
552
+ **Note:** Version bump only for package @spinnaker/titus
553
+
554
+
555
+
556
+
557
+
558
+ ## [0.1.3](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.1.2...@spinnaker/titus@0.1.3) (2021-07-22)
559
+
560
+ **Note:** Version bump only for package @spinnaker/titus
561
+
562
+
563
+
564
+
565
+
566
+ ## [0.1.2](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.1.0...@spinnaker/titus@0.1.2) (2021-07-22)
567
+
568
+ **Note:** Version bump only for package @spinnaker/titus
569
+
570
+
571
+
572
+
573
+
574
+ ## [0.1.1](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.1.0...@spinnaker/titus@0.1.1) (2021-07-22)
575
+
576
+ **Note:** Version bump only for package @spinnaker/titus
577
+
578
+
579
+
580
+
581
+
582
+ # [0.1.0](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.0.198...@spinnaker/titus@0.1.0) (2021-07-21)
583
+
584
+
585
+ ### Bug Fixes
586
+
587
+ * **titus:** Display entryPointList if not empty ([#9493](https://github.com/spinnaker/deck/issues/9493)) ([16cf1d1](https://github.com/spinnaker/deck/commit/16cf1d1aa81dae2ef0d59a80abb280f3192eeec9))
588
+
589
+
590
+ ### Features
591
+
592
+ * commit to test package bump PR creation ([#9492](https://github.com/spinnaker/deck/issues/9492)) ([d1f45b5](https://github.com/spinnaker/deck/commit/d1f45b5e5c228d359cae9450ac6f6cc80ef6f1eb))
593
+
594
+
595
+
596
+
597
+
598
+ ## [0.0.198](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.0.197...@spinnaker/titus@0.0.198) (2021-07-20)
599
+
600
+ **Note:** Version bump only for package @spinnaker/titus
601
+
602
+
603
+
604
+
605
+
606
+ ## [0.0.197](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.0.192...@spinnaker/titus@0.0.197) (2021-07-19)
607
+
608
+ **Note:** Version bump only for package @spinnaker/titus
609
+
610
+
611
+
612
+
613
+
614
+ ## [0.0.196](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.0.192...@spinnaker/titus@0.0.196) (2021-07-19)
615
+
616
+ **Note:** Version bump only for package @spinnaker/titus
617
+
618
+
619
+
620
+
621
+
622
+ ## [0.0.195](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.0.192...@spinnaker/titus@0.0.195) (2021-07-19)
623
+
624
+ **Note:** Version bump only for package @spinnaker/titus
625
+
626
+
627
+
628
+
629
+
630
+ ## [0.0.194](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.0.192...@spinnaker/titus@0.0.194) (2021-07-19)
631
+
632
+ **Note:** Version bump only for package @spinnaker/titus
633
+
634
+
635
+
636
+
637
+
638
+ ## [0.0.193](https://github.com/spinnaker/deck/compare/@spinnaker/titus@0.0.192...@spinnaker/titus@0.0.193) (2021-07-19)
639
+
640
+ **Note:** Version bump only for package @spinnaker/titus
641
+
642
+
643
+
644
+
645
+
646
+ ## 0.0.192 (2021-07-17)
647
+
648
+
649
+ ### Bug Fixes
650
+
651
+ * **publishing:** Auto approve instead of adding "ready to merge" label ([51f536c](https://github.com/spinnaker/deck/commit/51f536c275e77854d8f173aeec86412ffbd66b6d))
652
+
653
+
654
+
655
+
656
+
657
+
658
+ ## [0.0.190](https://www.github.com/spinnaker/deck/compare/e3e1f4340df9be06a2f292e13c40aa54f10172c6...dc32d0249bde99a124787baa40740bd78e9de3a3) (2021-07-09)
659
+
660
+
661
+ ### Changes
662
+
663
+ chore(titus): publish titus@0.0.190 ([dc32d024](https://github.com/spinnaker/deck/commit/dc32d0249bde99a124787baa40740bd78e9de3a3))
664
+ feat(titus/serverGroup): Add a subnet selector which automatically sets some container attributes [#9398](https://github.com/spinnaker/deck/pull/9398) ([47f4aa45](https://github.com/spinnaker/deck/commit/47f4aa45b0f83a5d56f52f1dbf85f8ec2fcefc5a))
665
+
666
+
667
+
668
+ ## [0.0.189](https://www.github.com/spinnaker/deck/compare/7d1059080b9564e0ab7a68a0fc6dab446d2c0fff...e3e1f4340df9be06a2f292e13c40aa54f10172c6) (2021-07-08)
669
+
670
+
671
+ ### Changes
672
+
673
+ chore(titus): publish titus@0.0.189 ([e3e1f434](https://github.com/spinnaker/deck/commit/e3e1f4340df9be06a2f292e13c40aa54f10172c6))
674
+ chore(*): Import TaskMonitorWrapper from core instead of NgReact [#9406](https://github.com/spinnaker/deck/pull/9406) ([cce5473b](https://github.com/spinnaker/deck/commit/cce5473b600f173f9df41c7dabe6e2fceb29999f))
675
+ feat(titus/pipeline): Support lists for Run Job entrypoint and command [#9383](https://github.com/spinnaker/deck/pull/9383) ([16cae2ac](https://github.com/spinnaker/deck/commit/16cae2ac0941e23329ea1447fd594f3a75173fc7))
676
+
677
+
678
+
679
+ ## [0.0.188](https://www.github.com/spinnaker/deck/compare/1565a0d647ce4c79979eb85822a285f5b798954a...7d1059080b9564e0ab7a68a0fc6dab446d2c0fff) (2021-07-01)
680
+
681
+
682
+ ### Changes
683
+
684
+ chore(titus): publish titus@0.0.188 ([7d105908](https://github.com/spinnaker/deck/commit/7d1059080b9564e0ab7a68a0fc6dab446d2c0fff))
685
+ chore(all): Remove ng template cache for webpack ([be6df680](https://github.com/spinnaker/deck/commit/be6df680689e0624b27635bc875d0b4390a3bc4a))
686
+ chore(build): Integrate with yarn workspaces ([e30e631b](https://github.com/spinnaker/deck/commit/e30e631b128bd1c8bfef3a48643ce0b4f9935f1d))
687
+
688
+
689
+
690
+ ## [0.0.187](https://www.github.com/spinnaker/deck/compare/c5d3d9e947f80fc710869d2f5d202e4c2c642d3c...1565a0d647ce4c79979eb85822a285f5b798954a) (2021-06-11)
691
+
692
+
693
+ ### Changes
694
+
695
+ chore(titus): publish titus@0.0.187 ([1565a0d6](https://github.com/spinnaker/deck/commit/1565a0d647ce4c79979eb85822a285f5b798954a))
696
+ chore(bump): Upgrade @spinnaker/scripts ([db9f47df](https://github.com/spinnaker/deck/commit/db9f47df6eae4e87319586721c1dc95cc86290a9))
697
+
698
+
699
+
700
+ ## [0.0.186](https://www.github.com/spinnaker/deck/compare/122a5e812114ee3d561eb2fdec9c2ce6e4c2ea31...c5d3d9e947f80fc710869d2f5d202e4c2c642d3c) (2021-06-11)
701
+
702
+
703
+ ### Changes
704
+
705
+ chore(titus): publish titus@0.0.186 ([c5d3d9e9](https://github.com/spinnaker/deck/commit/c5d3d9e947f80fc710869d2f5d202e4c2c642d3c))
706
+ chore(bump): Bumping packages in titus ([78e1f8d4](https://github.com/spinnaker/deck/commit/78e1f8d4c87e146e3330ba83d85edc1a15ac4beb))
707
+
708
+
709
+
710
+ ## [0.0.185](https://www.github.com/spinnaker/deck/compare/54db5d179ef19606e3c8a45c1ed91ebb0413955f...122a5e812114ee3d561eb2fdec9c2ce6e4c2ea31) (2021-06-10)
711
+
712
+
713
+ ### Changes
714
+
715
+ chore(titus): publish titus@0.0.185 ([122a5e81](https://github.com/spinnaker/deck/commit/122a5e812114ee3d561eb2fdec9c2ce6e4c2ea31))
716
+ feat(titus/pipeline): Add IPv6 toggle with defaults to Run Job Stage [#9292](https://github.com/spinnaker/deck/pull/9292) ([14cbd97e](https://github.com/spinnaker/deck/commit/14cbd97e533d1ed04800092e7ab0ba5f5101eb98))
717
+
718
+
719
+
720
+ ## [0.0.184](https://www.github.com/spinnaker/deck/compare/ea32853de35f4c797e4155b79cebd730977ac3d3...54db5d179ef19606e3c8a45c1ed91ebb0413955f) (2021-06-09)
721
+
722
+
723
+ ### Changes
724
+
725
+ chore(titus): publish titus@0.0.184 ([54db5d17](https://github.com/spinnaker/deck/commit/54db5d179ef19606e3c8a45c1ed91ebb0413955f))
726
+ chore(bump): Upgrade titus ([072829df](https://github.com/spinnaker/deck/commit/072829df4e1d129ba8cbe2ad9fb411ae8ba373bd))
727
+ refactor(packages): Migrate packages to make them independent ([9da3751a](https://github.com/spinnaker/deck/commit/9da3751a3b7420eb83ee6b589c1f73b12faed572))
728
+
729
+
730
+
731
+ ## [0.0.183](https://www.github.com/spinnaker/deck/compare/6f5c45da186af445d557c81fcbb09306dd2c3402...ea32853de35f4c797e4155b79cebd730977ac3d3) (2021-06-03)
732
+
733
+
734
+ ### Changes
735
+
736
+ chore(titus): publish titus@0.0.183 ([ea32853d](https://github.com/spinnaker/deck/commit/ea32853de35f4c797e4155b79cebd730977ac3d3))
737
+ refactor(build): Fix paths for rollup ([9a9468a2](https://github.com/spinnaker/deck/commit/9a9468a2e1da465d5b95ae996395f4e59b116a09))
738
+
739
+
740
+
741
+ ## [0.0.182](https://www.github.com/spinnaker/deck/compare/2c671f6c2d575fea330015be000c2024f7ac9e45...6f5c45da186af445d557c81fcbb09306dd2c3402) (2021-05-25)
742
+
743
+
744
+ ### Changes
745
+
746
+ chore(titus): publish titus@0.0.182 ([6f5c45da](https://github.com/spinnaker/deck/commit/6f5c45da186af445d557c81fcbb09306dd2c3402))
747
+ fix(build): Revert independent package changes ([c067090d](https://github.com/spinnaker/deck/commit/c067090dcee79a52ac7788cfb2d939b80f52423b))
748
+
749
+
750
+
751
+ ## [0.0.181](https://www.github.com/spinnaker/deck/compare/857ede54b752fc41b47579b859537dfb2888c8b4...2c671f6c2d575fea330015be000c2024f7ac9e45) (2021-05-24)
752
+
753
+
754
+ ### Changes
755
+
756
+ chore(titus): publish titus@0.0.181 ([2c671f6c](https://github.com/spinnaker/deck/commit/2c671f6c2d575fea330015be000c2024f7ac9e45))
757
+ chore(packages): Upgrade @spinnaker/scripts ([285c1942](https://github.com/spinnaker/deck/commit/285c19428b631318f51435f9972cafa71830dab4))
758
+
759
+
760
+
761
+ ## [0.0.180](https://www.github.com/spinnaker/deck/compare/7f96b70e8b1f63ce31a897a93926802c383b457a...857ede54b752fc41b47579b859537dfb2888c8b4) (2021-05-22)
762
+
763
+
764
+ ### Changes
765
+
766
+ chore(titus): publish titus@0.0.180 ([857ede54](https://github.com/spinnaker/deck/commit/857ede54b752fc41b47579b859537dfb2888c8b4))
767
+ chore(package): Upgrade @spinnaker/scripts package ([26bc67df](https://github.com/spinnaker/deck/commit/26bc67dfb113842093a1d9b57c53ae0d7744e9b3))
768
+
769
+
770
+
771
+ ## [0.0.179](https://www.github.com/spinnaker/deck/compare/e631cb2f0ac49721e37e26b4f8d3b3d0db9e4f8a...7f96b70e8b1f63ce31a897a93926802c383b457a) (2021-05-21)
772
+
773
+
774
+ ### Changes
775
+
776
+ chore(titus): publish titus@0.0.179 ([7f96b70e](https://github.com/spinnaker/deck/commit/7f96b70e8b1f63ce31a897a93926802c383b457a))
777
+ chore(bump): Bump packages ([fcdc3f76](https://github.com/spinnaker/deck/commit/fcdc3f76605a73a138d9db8dfa5b54a77f1d128a))
778
+ feat(titus/serverGroup): Add package details section [#9201](https://github.com/spinnaker/deck/pull/9201) ([f22396dd](https://github.com/spinnaker/deck/commit/f22396ddf9f61ec4ef7a3a5860330f0b93651abb))
779
+
780
+
781
+
782
+ ## [0.0.178](https://www.github.com/spinnaker/deck/compare/63a1a268b1897bb00a54887673e1c9d9713e05ed...e631cb2f0ac49721e37e26b4f8d3b3d0db9e4f8a) (2021-05-21)
783
+
784
+
785
+ ### Changes
786
+
787
+ chore(titus): publish titus@0.0.178 ([e631cb2f](https://github.com/spinnaker/deck/commit/e631cb2f0ac49721e37e26b4f8d3b3d0db9e4f8a))
788
+ feat(titus): Configure disruption budget in Run Job Stage [#9133](https://github.com/spinnaker/deck/pull/9133) ([063e9bd8](https://github.com/spinnaker/deck/commit/063e9bd822325f617584d0fc6bdf20bd2902f3dc))
789
+ feat(titus/serverGroup): Show custom image ids for deploy configs [#9186](https://github.com/spinnaker/deck/pull/9186) ([1232cc6c](https://github.com/spinnaker/deck/commit/1232cc6cd8cf6167fa62dd94ece7e61f3d287c48))
790
+
791
+
792
+
793
+ ## [0.0.177](https://www.github.com/spinnaker/deck/compare/d31ad76b5af16435418d01f38fe2a74ee426c3d6...63a1a268b1897bb00a54887673e1c9d9713e05ed) (2021-05-20)
794
+
795
+
796
+ ### Changes
797
+
798
+ chore(titus): publish titus@0.0.177 ([63a1a268](https://github.com/spinnaker/deck/commit/63a1a268b1897bb00a54887673e1c9d9713e05ed))
799
+ refactor(titus): Make titus package independent ([15f4e529](https://github.com/spinnaker/deck/commit/15f4e529bb2cbae501e41a8e28c1b1eba4dfeea7))
800
+
801
+
802
+
803
+ ## [0.0.176](https://www.github.com/spinnaker/deck/compare/5e840443184f38e3081a515b442ca03ee9cc1eb6...d31ad76b5af16435418d01f38fe2a74ee426c3d6) (2021-05-13)
804
+
805
+
806
+ ### Changes
807
+
808
+ chore(titus): publish titus@0.0.176 ([d31ad76b](https://github.com/spinnaker/deck/commit/d31ad76b5af16435418d01f38fe2a74ee426c3d6))
809
+ chore(titus): Remove outdated code [#9169](https://github.com/spinnaker/deck/pull/9169) ([839dc56c](https://github.com/spinnaker/deck/commit/839dc56c9a0a2f108f063463adc4deae0a30a96d))
810
+
811
+
812
+
813
+ ## [0.0.175](https://www.github.com/spinnaker/deck/compare/12d20a059a90e984f78e7910b5ce20762318ed70...5e840443184f38e3081a515b442ca03ee9cc1eb6) (2021-05-12)
814
+
815
+
816
+ ### Changes
817
+
818
+ chore(titus): publish titus@0.0.175 ([5e840443](https://github.com/spinnaker/deck/commit/5e840443184f38e3081a515b442ca03ee9cc1eb6))
819
+ refactor(core): Convert AddEntityTagLinks to React [#9147](https://github.com/spinnaker/deck/pull/9147) ([39fa7730](https://github.com/spinnaker/deck/commit/39fa77303b75ca6e5b0af96d1e011bcff452cede))
820
+ feat(aws/titus): Add help text to IPv6 field [#9139](https://github.com/spinnaker/deck/pull/9139) ([01aef56e](https://github.com/spinnaker/deck/commit/01aef56e4d9d645caa7f82a814b4b9be5d5d5ae1))
821
+
822
+
823
+
824
+ ## [0.0.174](https://www.github.com/spinnaker/deck/compare/22fb4d3f949a6bdb47a884a86a9dbc63d58b9660...12d20a059a90e984f78e7910b5ce20762318ed70) (2021-05-06)
825
+
826
+
827
+ ### Changes
828
+
829
+ chore(titus): publish titus@0.0.174 ([12d20a05](https://github.com/spinnaker/deck/commit/12d20a059a90e984f78e7910b5ce20762318ed70))
830
+ fix(titus): Fixing React.Children.only issue [#9127](https://github.com/spinnaker/deck/pull/9127) ([35b3eb5d](https://github.com/spinnaker/deck/commit/35b3eb5d26c1beee9946b1adb9ebd6bc59224369))
831
+
832
+
833
+
834
+ ## [0.0.173](https://www.github.com/spinnaker/deck/compare/cc4215d9492287fd3a1bb5ec41bc02d1b9689656...22fb4d3f949a6bdb47a884a86a9dbc63d58b9660) (2021-04-29)
835
+
836
+
837
+ ### Changes
838
+
839
+ chore(titus): publish titus@0.0.173 ([22fb4d3f](https://github.com/spinnaker/deck/commit/22fb4d3f949a6bdb47a884a86a9dbc63d58b9660))
840
+ fix(redblack): Update redblack fields for angular DeploymentStrategyS… [#9105](https://github.com/spinnaker/deck/pull/9105) ([b9a8b58e](https://github.com/spinnaker/deck/commit/b9a8b58e3499702dad7381d5f19a3cab17dd3e1c))
841
+ fix(titus/serverGroup): Remove empty key/pairs from job attributes [#9104](https://github.com/spinnaker/deck/pull/9104) ([5bd3e1e5](https://github.com/spinnaker/deck/commit/5bd3e1e50cbbec48d18114ec79bef27755ae2ff1))
842
+ fix(titus/serverGroup): Change wording on edit target tracking policy to match EC2. ([880ebcf1](https://github.com/spinnaker/deck/commit/880ebcf11d5b444d275495a82cbdc03e7812bfc9))
843
+ fix(titus/serverGroup): Fix height of metrics line chart ([8b9187bc](https://github.com/spinnaker/deck/commit/8b9187bc39a7a080edf02fd94be6ccf633cf0ebb))
844
+
845
+
846
+
847
+ ## [0.0.172](https://www.github.com/spinnaker/deck/compare/8b8ad574824979672715db0b655638b37d6c8c8f...cc4215d9492287fd3a1bb5ec41bc02d1b9689656) (2021-04-21)
848
+
849
+
850
+ ### Changes
851
+
852
+ chore(titus): publish titus@0.0.172 ([cc4215d9](https://github.com/spinnaker/deck/commit/cc4215d9492287fd3a1bb5ec41bc02d1b9689656))
853
+
854
+
855
+
856
+ ## [0.0.171](https://www.github.com/spinnaker/deck/compare/94adcf0cbcf70b3d9662221b391a427a383a91af...8b8ad574824979672715db0b655638b37d6c8c8f) (2021-04-21)
857
+
858
+
859
+ ### Changes
860
+
861
+ chore(titus): publish titus@0.0.171 ([8b8ad574](https://github.com/spinnaker/deck/commit/8b8ad574824979672715db0b655638b37d6c8c8f))
862
+ Remove webpack modules + webpack consolidation [#9097](https://github.com/spinnaker/deck/pull/9097) ([00145566](https://github.com/spinnaker/deck/commit/001455667f2afb5c728737863f7365fc4fcbb76b))
863
+
864
+
865
+
866
+ ## [0.0.170](https://www.github.com/spinnaker/deck/compare/f77b5dab835a7b4f9b0f4611b2020fecff31dee1...94adcf0cbcf70b3d9662221b391a427a383a91af) (2021-04-14)
867
+
868
+
869
+ ### Changes
870
+
871
+ chore(titus): publish titus@0.0.170 ([94adcf0c](https://github.com/spinnaker/deck/commit/94adcf0cbcf70b3d9662221b391a427a383a91af))
872
+ refactor(titus): Remove angular files from instance details [#9085](https://github.com/spinnaker/deck/pull/9085) ([a56c8e66](https://github.com/spinnaker/deck/commit/a56c8e66d43432160e9ca015cb9e101a080b1da3))
873
+ feat(titus): Update logic for auto-assigning IPv6 to containers [#9087](https://github.com/spinnaker/deck/pull/9087) ([ea399456](https://github.com/spinnaker/deck/commit/ea399456bc93c55833ea108bac70441d0a3f3f9b))
874
+ fix(titus/domain): Add titusUiEndpoint to ITitusInstance [#9084](https://github.com/spinnaker/deck/pull/9084) ([29bdd2a1](https://github.com/spinnaker/deck/commit/29bdd2a145d5050fa9eb7896398d7fffe211f717))
875
+
876
+
877
+
878
+ ## [0.0.169](https://www.github.com/spinnaker/deck/compare/d4bb9ff9c238b303df70ac8a3a95f561741435e9...f77b5dab835a7b4f9b0f4611b2020fecff31dee1) (2021-04-06)
879
+
880
+
881
+ ### Changes
882
+
883
+ chore(titus): publish titus@0.0.169 ([f77b5dab](https://github.com/spinnaker/deck/commit/f77b5dab835a7b4f9b0f4611b2020fecff31dee1))
884
+ feat(titus): Finish migrating instance details to react [#9034](https://github.com/spinnaker/deck/pull/9034) ([3ae687e5](https://github.com/spinnaker/deck/commit/3ae687e51992d1294672f78bbb1a041481044fc0))
885
+ feat(infrastructure/buttons): Add a new property configurable on sett… [#7822](https://github.com/spinnaker/deck/pull/7822) ([0bb92635](https://github.com/spinnaker/deck/commit/0bb9263502188fcbadd4b1d1218f345229e0d184))
886
+ fix(titus): Fix Run Job execution details imageId [#9074](https://github.com/spinnaker/deck/pull/9074) ([f4c21d03](https://github.com/spinnaker/deck/commit/f4c21d037234035af2d8b6841b049deb42d77f59))
887
+
888
+
889
+
890
+ ## [0.0.168](https://www.github.com/spinnaker/deck/compare/6b459169db2debf93284b09bced5573f0383e354...d4bb9ff9c238b303df70ac8a3a95f561741435e9) (2021-03-30)
891
+
892
+
893
+ ### Changes
894
+
895
+ chore(titus): publish titus@0.0.168 ([d4bb9ff9](https://github.com/spinnaker/deck/commit/d4bb9ff9c238b303df70ac8a3a95f561741435e9))
896
+ feat(amazon/serverGroup): Replace angular metric-alarm-chart with react MetricAlarmChart ([0861d2dc](https://github.com/spinnaker/deck/commit/0861d2dcd07135c45c8e3baf54b0ccdebff9ae6e))
897
+
898
+
899
+
900
+ ## [0.0.167](https://www.github.com/spinnaker/deck/compare/ca47691df90df6500bc07d07305ad24221c233af...6b459169db2debf93284b09bced5573f0383e354) (2021-03-24)
901
+
902
+
903
+ ### Changes
904
+
905
+ chore(titus): publish titus@0.0.167 ([6b459169](https://github.com/spinnaker/deck/commit/6b459169db2debf93284b09bced5573f0383e354))
906
+ feat(domain): Extend instance domains [#9028](https://github.com/spinnaker/deck/pull/9028) ([2a291a0b](https://github.com/spinnaker/deck/commit/2a291a0b381c574365ae88f0307905d2bdee2cb0))
907
+
908
+
909
+
910
+ ## [0.0.166](https://www.github.com/spinnaker/deck/compare/b0adde5ea91f5b88995d7d935da42f193ed8efb5...ca47691df90df6500bc07d07305ad24221c233af) (2021-03-19)
911
+
912
+
913
+ ### Changes
914
+
915
+ chore(titus): publish titus@0.0.166 ([ca47691d](https://github.com/spinnaker/deck/commit/ca47691df90df6500bc07d07305ad24221c233af))
916
+ fix(titus/serverGroup): allow underscores in the first character of environment variables [#9016](https://github.com/spinnaker/deck/pull/9016) ([b286fd65](https://github.com/spinnaker/deck/commit/b286fd65f8f87c651dfd5518249a6c65502e56ba))
917
+ chore: eslint --fix [#9015](https://github.com/spinnaker/deck/pull/9015) ([9a5ea31a](https://github.com/spinnaker/deck/commit/9a5ea31abf82e014c4a603fbfa12a50a1f2dd117))
918
+
919
+
920
+
921
+ ## [0.0.165](https://www.github.com/spinnaker/deck/compare/24b45ca12ff56ddcfe5dbe46d330f0aa4054ec9d...b0adde5ea91f5b88995d7d935da42f193ed8efb5) (2021-03-18)
922
+
923
+
924
+ ### Changes
925
+
926
+ chore(titus): publish titus@0.0.165 ([b0adde5e](https://github.com/spinnaker/deck/commit/b0adde5ea91f5b88995d7d935da42f193ed8efb5))
927
+ feat(titus/serverGroup): Validate environment variable names ([891b755f](https://github.com/spinnaker/deck/commit/891b755f0305f3d09fa79454ef19669f96a1a7d5))
928
+ refactor(titus/serverGroup): Migrate ServerGroupParameters.tsx to FormikFormField and FormInputs ([d16bb7e6](https://github.com/spinnaker/deck/commit/d16bb7e67600693cb737850eb331b0517b43a1b4))
929
+
930
+
931
+
932
+ ## [0.0.164](https://www.github.com/spinnaker/deck/compare/13024da015ffe581d7fea079be7492155e3b4c10...24b45ca12ff56ddcfe5dbe46d330f0aa4054ec9d) (2021-03-05)
933
+
934
+
935
+ ### Changes
936
+
937
+ chore(titus): publish titus@0.0.164 ([24b45ca1](https://github.com/spinnaker/deck/commit/24b45ca12ff56ddcfe5dbe46d330f0aa4054ec9d))
938
+ feat(titus): Add placeholder for custom scaling policy details [#8975](https://github.com/spinnaker/deck/pull/8975) ([687ac675](https://github.com/spinnaker/deck/commit/687ac675330feacfe07d3b5b120aa802e5b4df54))
939
+
940
+
941
+
942
+ ## [0.0.163](https://www.github.com/spinnaker/deck/compare/3c1b2f16758e507480402a38bf91dac70c8658b9...13024da015ffe581d7fea079be7492155e3b4c10) (2021-03-02)
943
+
944
+
945
+ ### Changes
946
+
947
+ chore(titus): publish titus@0.0.163 ([13024da0](https://github.com/spinnaker/deck/commit/13024da015ffe581d7fea079be7492155e3b4c10))
948
+ Merge branch 'master' into titus-ipv6-enable ([a784e1ef](https://github.com/spinnaker/deck/commit/a784e1efe464f950b994f981a195eaf2ecf4c9d6))
949
+ feat(titus/serverGroup): Enable ipv6 in test environment ([33976190](https://github.com/spinnaker/deck/commit/3397619092306364289eebaa60a912dcfb654aab))
950
+
951
+
952
+
953
+ ## [0.0.162](https://www.github.com/spinnaker/deck/compare/eacb58f584d2ff61cf87b968917d691b4e742914...3c1b2f16758e507480402a38bf91dac70c8658b9) (2021-02-22)
954
+
955
+
956
+ ### Changes
957
+
958
+ chore(titus): publish titus@0.0.162 ([3c1b2f16](https://github.com/spinnaker/deck/commit/3c1b2f16758e507480402a38bf91dac70c8658b9))
959
+ chore(lint): Update import statement ordering ([5a9768bc](https://github.com/spinnaker/deck/commit/5a9768bc6db2f527a73d6b1f5fb3120c101e094b))
960
+ chore(lint): Sort import statements ([cca56eaa](https://github.com/spinnaker/deck/commit/cca56eaaeeb412b7596c68a1260eefed7fbf6fed))
961
+
962
+
963
+
964
+ ## [0.0.161](https://www.github.com/spinnaker/deck/compare/177b4c7edbba4af4422bc90f482cbc2446740b96...eacb58f584d2ff61cf87b968917d691b4e742914) (2021-02-17)
965
+
966
+
967
+ ### Changes
968
+
969
+ chore(titus): publish titus@0.0.161 ([eacb58f5](https://github.com/spinnaker/deck/commit/eacb58f584d2ff61cf87b968917d691b4e742914))
970
+ Merge branch 'master' into titus-type-updates ([474d03da](https://github.com/spinnaker/deck/commit/474d03da6f24b14dff3620ea31e2d8c49ef0b5a9))
971
+ refactor(titus): Create component wrapper with generic functionality ([06585c58](https://github.com/spinnaker/deck/commit/06585c586e33f8c88cd191f03eefde54d7180858))
972
+ feat(titus): Show supplementary information for the bake configuration ([23aaed6c](https://github.com/spinnaker/deck/commit/23aaed6c5751ecf7259b4bf00e70e87437a922c5))
973
+
974
+
975
+
976
+ ## [0.0.160](https://www.github.com/spinnaker/deck/compare/97f7036db409afa1494e116af93bf634390e1015...177b4c7edbba4af4422bc90f482cbc2446740b96) (2021-02-08)
977
+
978
+
979
+ ### Changes
980
+
981
+ chore(titus): publish titus@0.0.160 ([177b4c7e](https://github.com/spinnaker/deck/commit/177b4c7edbba4af4422bc90f482cbc2446740b96))
982
+ refactor(aws/titus): Convert instance DNS to react [#8884](https://github.com/spinnaker/deck/pull/8884) ([745e1bf5](https://github.com/spinnaker/deck/commit/745e1bf5592b768e733f32b6fe6d6852b955c227))
983
+
984
+
985
+
986
+ ## [0.0.159](https://www.github.com/spinnaker/deck/compare/0cf88e98f90dd59bc4d68ba5ffab22d4d6d742ee...97f7036db409afa1494e116af93bf634390e1015) (2021-01-19)
987
+
988
+
989
+ ### Changes
990
+
991
+ chore(titus): publish titus@0.0.159 ([97f7036d](https://github.com/spinnaker/deck/commit/97f7036db409afa1494e116af93bf634390e1015))
992
+ Deangularize instance writer [#8834](https://github.com/spinnaker/deck/pull/8834) ([f16b0775](https://github.com/spinnaker/deck/commit/f16b0775917242a39ae70e86c5541020c898b872))
993
+
994
+
995
+
996
+ ## [0.0.158](https://www.github.com/spinnaker/deck/compare/301163f36a0533352e45d3fbf3060e42fedd0ced...0cf88e98f90dd59bc4d68ba5ffab22d4d6d742ee) (2021-01-13)
997
+
998
+
999
+ ### Changes
1000
+
1001
+ chore(titus): publish titus@0.0.158 ([0cf88e98](https://github.com/spinnaker/deck/commit/0cf88e98f90dd59bc4d68ba5ffab22d4d6d742ee))
1002
+ refactor(core): Extract server group name previewer into its own component [#8842](https://github.com/spinnaker/deck/pull/8842) ([a35e8bf2](https://github.com/spinnaker/deck/commit/a35e8bf29007e928374e79eb95eaf91d0f8d5f25))
1003
+
1004
+
1005
+
1006
+ ## [0.0.157](https://www.github.com/spinnaker/deck/compare/a876cf62a8503238f961f6d8bf0d11989dc9d756...301163f36a0533352e45d3fbf3060e42fedd0ced) (2021-01-13)
1007
+
1008
+
1009
+ ### Changes
1010
+
1011
+ chore(titus): publish titus@0.0.157 ([301163f3](https://github.com/spinnaker/deck/commit/301163f36a0533352e45d3fbf3060e42fedd0ced))
1012
+ feat(titus): Support SpEL for Run Job stage inputs [#8809](https://github.com/spinnaker/deck/pull/8809) ([82dca5f1](https://github.com/spinnaker/deck/commit/82dca5f1014c8a81a2100485a2a5d5ed324309d2))
1013
+ feat(titus): Support SpEL for Resources number inputs [#8808](https://github.com/spinnaker/deck/pull/8808) ([f5e81b8c](https://github.com/spinnaker/deck/commit/f5e81b8c7160e9c4ba9802080dbad49a76b79b78))
1014
+
1015
+
1016
+
1017
+ ## [0.0.156](https://www.github.com/spinnaker/deck/compare/838afe2303d1126a8453e94120392877e322d05c...a876cf62a8503238f961f6d8bf0d11989dc9d756) (2020-12-04)
1018
+
1019
+
1020
+ ### Changes
1021
+
1022
+ chore(titus): publish titus@0.0.156 ([a876cf62](https://github.com/spinnaker/deck/commit/a876cf62a8503238f961f6d8bf0d11989dc9d756))
1023
+ fix(amazon/instanceDetails): Fix typo [#8764](https://github.com/spinnaker/deck/pull/8764) ([a22f7252](https://github.com/spinnaker/deck/commit/a22f72525edb3195136b3df55bb78e499fe09dbc))
1024
+
1025
+
1026
+
1027
+ ## [0.0.155](https://www.github.com/spinnaker/deck/compare/e59c6e513d1fd6b10388f1afd8e2f40bb92d20fc...838afe2303d1126a8453e94120392877e322d05c) (2020-11-24)
1028
+
1029
+
1030
+ ### Changes
1031
+
1032
+ chore(titus): publish titus@0.0.155 ([838afe23](https://github.com/spinnaker/deck/commit/838afe2303d1126a8453e94120392877e322d05c))
1033
+ fix(titus): Disable edits of step scaling dimensions [#8747](https://github.com/spinnaker/deck/pull/8747) ([2ec9db04](https://github.com/spinnaker/deck/commit/2ec9db04ffc7e2b6c8b426e2ef13203600b29839))
1034
+ fix(titus): Fallback dimensions for target tracking policy [#8746](https://github.com/spinnaker/deck/pull/8746) ([fadab409](https://github.com/spinnaker/deck/commit/fadab409b483c2229ce64b18eccc6da031ef8acb))
1035
+
1036
+
1037
+
1038
+ ## [0.0.154](https://www.github.com/spinnaker/deck/compare/29d69351b78e28f6f411226e6021d08759fd5660...e59c6e513d1fd6b10388f1afd8e2f40bb92d20fc) (2020-11-18)
1039
+
1040
+
1041
+ ### Changes
1042
+
1043
+ chore(titus): publish titus@0.0.154 ([e59c6e51](https://github.com/spinnaker/deck/commit/e59c6e513d1fd6b10388f1afd8e2f40bb92d20fc))
1044
+ Titus target healthy percentage [#8734](https://github.com/spinnaker/deck/pull/8734) ([815a4864](https://github.com/spinnaker/deck/commit/815a4864d3e9acf866b9bc3220c3a282134b0fed))
1045
+
1046
+
1047
+
1048
+ ## [0.0.153](https://www.github.com/spinnaker/deck/compare/9292e77c0012c37b7e96faa98343885278ebd72b...29d69351b78e28f6f411226e6021d08759fd5660) (2020-11-07)
1049
+
1050
+
1051
+ ### Changes
1052
+
1053
+ chore(titus): publish titus@0.0.153 ([29d69351](https://github.com/spinnaker/deck/commit/29d69351b78e28f6f411226e6021d08759fd5660))
1054
+ fix(titus/pipeline): Set backingData before accessing it [#8711](https://github.com/spinnaker/deck/pull/8711) ([ac5b7bcd](https://github.com/spinnaker/deck/commit/ac5b7bcd2d7ac4cacd08d1f276f1640a22b83db1))
1055
+ refactor(core/instance): Create generic header for instance details panel [#8706](https://github.com/spinnaker/deck/pull/8706) ([37483823](https://github.com/spinnaker/deck/commit/37483823071dfbc76491b77004c5435479207cc6))
1056
+
1057
+
1058
+
1059
+ ## [0.0.152](https://www.github.com/spinnaker/deck/compare/a01454f9b823ffcbd07404fffefedfeaac8f8714...9292e77c0012c37b7e96faa98343885278ebd72b) (2020-11-03)
1060
+
1061
+
1062
+ ### Changes
1063
+
1064
+ chore(titus): publish titus@0.0.152 ([9292e77c](https://github.com/spinnaker/deck/commit/9292e77c0012c37b7e96faa98343885278ebd72b))
1065
+ refactor(aws/titus): Reactify instance insights [#8698](https://github.com/spinnaker/deck/pull/8698) ([deab22f3](https://github.com/spinnaker/deck/commit/deab22f34fe0cd82fc797a553732a148b72405b8))
1066
+
1067
+
1068
+
1069
+ ## [0.0.151](https://www.github.com/spinnaker/deck/compare/f037c6c8eaa17a16feb2206463eed78082375675...a01454f9b823ffcbd07404fffefedfeaac8f8714) (2020-10-28)
1070
+
1071
+
1072
+ ### Changes
1073
+
1074
+ chore(titus): publish titus@0.0.151 ([a01454f9](https://github.com/spinnaker/deck/commit/a01454f9b823ffcbd07404fffefedfeaac8f8714))
1075
+ 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))
1076
+
1077
+
1078
+
1079
+ ## [0.0.150](https://www.github.com/spinnaker/deck/compare/47a8002877ce304ce51f928214e6b3b60820fc6c...f037c6c8eaa17a16feb2206463eed78082375675) (2020-10-28)
1080
+
1081
+
1082
+ ### Changes
1083
+
1084
+ chore(titus): publish titus@0.0.150 ([f037c6c8](https://github.com/spinnaker/deck/commit/f037c6c8eaa17a16feb2206463eed78082375675))
1085
+ 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))
1086
+ chore(amazon/serverGroup): Fix typing bug ([f8b38de5](https://github.com/spinnaker/deck/commit/f8b38de539c2023e994fb34cd0f67c3fea163e69))
1087
+ chore(amazon/serverGroup): Migrate from $q.all({}) to $q.all([]) ([37ff2df7](https://github.com/spinnaker/deck/commit/37ff2df776e761dbb286fde994259e288cf0add3))
1088
+ chore(titus/serverGroup): Migrate from $q.all({}) to $q.all([]) ([70d8d7aa](https://github.com/spinnaker/deck/commit/70d8d7aa05f26f0a14939c4e375a75ceece1dcf8))
1089
+ 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))
1090
+ chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
1091
+ 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))
1092
+
1093
+
1094
+
1095
+ ## [0.0.149](https://www.github.com/spinnaker/deck/compare/a220af588e194762757be534cce2d7ae9dc508d5...47a8002877ce304ce51f928214e6b3b60820fc6c) (2020-10-26)
1096
+
1097
+
1098
+ ### Changes
1099
+
1100
+ 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))
1101
+ chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
1102
+ 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))
1103
+ chore(titus): publish titus@0.0.149 ([f41283f0](https://github.com/spinnaker/deck/commit/f41283f0f9d32bb88f7857c8f189e665b6fe8a72))
1104
+ 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))
1105
+ 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))
1106
+ 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))
1107
+
1108
+
1109
+
1110
+ ## [0.0.148](https://www.github.com/spinnaker/deck/compare/f41283f0f9d32bb88f7857c8f189e665b6fe8a72...a220af588e194762757be534cce2d7ae9dc508d5) (2020-10-26)
1111
+
1112
+
1113
+ ### Changes
1114
+
1115
+ 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))
1116
+
1117
+
1118
+
1119
+ ## [0.0.149](https://www.github.com/spinnaker/deck/compare/4b79b4d75628bc74b91b72980f0a5e8ba479335e...f41283f0f9d32bb88f7857c8f189e665b6fe8a72) (2020-10-26)
1120
+
1121
+
1122
+ ### Changes
1123
+
1124
+ 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))
1125
+ chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
1126
+ 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))
1127
+ chore(titus): publish titus@0.0.149 ([f41283f0](https://github.com/spinnaker/deck/commit/f41283f0f9d32bb88f7857c8f189e665b6fe8a72))
1128
+ 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))
1129
+ 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))
1130
+ 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))
1131
+
1132
+
1133
+
1134
+ ## [0.0.148](https://www.github.com/spinnaker/deck/compare/f216cc6556bff90033b28bbe7e9f94517ddaa270...4b79b4d75628bc74b91b72980f0a5e8ba479335e) (2020-10-12)
1135
+
1136
+
1137
+ ### Changes
1138
+
1139
+ 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))
1140
+ chore(titus): publish titus@0.0.149 ([f41283f0](https://github.com/spinnaker/deck/commit/f41283f0f9d32bb88f7857c8f189e665b6fe8a72))
1141
+ 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))
1142
+ 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))
1143
+ 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))
1144
+ 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))
1145
+ chore(prettier): Just Update Prettier™ [#8644](https://github.com/spinnaker/deck/pull/8644) ([8532bdd4](https://github.com/spinnaker/deck/commit/8532bdd4c08d59c38a0adde70ccac4f163c9dd97))
1146
+ refactor(core): Component for instance actions dropdown [#8642](https://github.com/spinnaker/deck/pull/8642) ([24b1db6c](https://github.com/spinnaker/deck/commit/24b1db6ceb84d16afef74472c7e7bb6280e6e570))
1147
+ chore(lint): eslint --fix react2angular-with-error-boundary ([defaf19b](https://github.com/spinnaker/deck/commit/defaf19b5f11f8cce70e14fa1cdd52e88e6de0fd))
1148
+
1149
+
1150
+
1151
+ ## [0.0.147](https://www.github.com/spinnaker/deck/compare/682b3d1335d24eed782fc736de63893f1fab9f24...f216cc6556bff90033b28bbe7e9f94517ddaa270) (2020-10-09)
1152
+
1153
+
1154
+ ### Changes
1155
+
1156
+ 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))
1157
+ feat(titus): Add monitored deploy strategy support to titus [#8596](https://github.com/spinnaker/deck/pull/8596) ([ae433221](https://github.com/spinnaker/deck/commit/ae433221c7d3324c0db0e6cf9466dc40ff256719))
1158
+
1159
+
1160
+
1161
+ ## [0.0.146](https://www.github.com/spinnaker/deck/compare/cccfdb37d0765f25e53998b1def0fd65739e5b44...682b3d1335d24eed782fc736de63893f1fab9f24) (2020-10-02)
1162
+
1163
+
1164
+ ### Changes
1165
+
1166
+ 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))
1167
+ fix(titus): Do not check for autoscaling feature flag, always enable autoscaling [#8615](https://github.com/spinnaker/deck/pull/8615) ([7400d6fc](https://github.com/spinnaker/deck/commit/7400d6fcc94e0dc1234122e1837ab96571c113cd))
1168
+
1169
+
1170
+
1171
+ ## [0.0.145](https://www.github.com/spinnaker/deck/compare/2273dee2b3668ba105a34a062da669cdf7c207c5...cccfdb37d0765f25e53998b1def0fd65739e5b44) (2020-10-01)
1172
+
1173
+
1174
+ ### Changes
1175
+
1176
+ chore(package): appengine@0.0.19 core@0.0.514 ecs@0.0.265 titus@0.0.145 [#8612](https://github.com/spinnaker/deck/pull/8612) ([cccfdb37](https://github.com/spinnaker/deck/commit/cccfdb37d0765f25e53998b1def0fd65739e5b44))
1177
+ (fix): Angular to react prop error [#8607](https://github.com/spinnaker/deck/pull/8607) ([619ad9c1](https://github.com/spinnaker/deck/commit/619ad9c1dd1cae3858ad07eb8b2b87461f0ca09e))
1178
+
1179
+
1180
+
1181
+ ## [0.0.144](https://www.github.com/spinnaker/deck/compare/e2dad1f3cc64fd58283c1f8d27031be35610d663...2273dee2b3668ba105a34a062da669cdf7c207c5) (2020-09-23)
1182
+
1183
+
1184
+ ### Changes
1185
+
1186
+ 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))
1187
+ feat(core/*): Deck layout optimizations [#8556](https://github.com/spinnaker/deck/pull/8556) ([2588b7f3](https://github.com/spinnaker/deck/commit/2588b7f3e1ecbfd590e7cc87a225bbfd056449e3))
1188
+ refactor(amazon/titus): Reactify instance information [#8579](https://github.com/spinnaker/deck/pull/8579) ([969b404e](https://github.com/spinnaker/deck/commit/969b404e356208010a4fa9c0464b6c0a268db0a5))
1189
+
1190
+
1191
+
1192
+ ## [0.0.143](https://www.github.com/spinnaker/deck/compare/2f25b74759d27fe294eaf070059f1526a14494fd...e2dad1f3cc64fd58283c1f8d27031be35610d663) (2020-09-18)
1193
+
1194
+
1195
+ ### Changes
1196
+
1197
+ chore(package): appengine@0.0.17 core@0.0.508 ecs@0.0.263 kubernetes@0.0.49 titus@0.0.143 [#8577](https://github.com/spinnaker/deck/pull/8577) ([e2dad1f3](https://github.com/spinnaker/deck/commit/e2dad1f3cc64fd58283c1f8d27031be35610d663))
1198
+ fix(titus/instance): Construct discovery health info in controller [#8572](https://github.com/spinnaker/deck/pull/8572) ([30da1a5b](https://github.com/spinnaker/deck/commit/30da1a5b82f04d30e86ba0db5ac0c8d38e88c892))
1199
+
1200
+
1201
+
1202
+ ## [0.0.142](https://www.github.com/spinnaker/deck/compare/9e9c4eb36f24d80255842a47548ed8390e2cb023...2f25b74759d27fe294eaf070059f1526a14494fd) (2020-09-14)
1203
+
1204
+
1205
+ ### Changes
1206
+
1207
+ 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))
1208
+ chore(typescript): Upgrade typescript to v4 ([c32bb975](https://github.com/spinnaker/deck/commit/c32bb9750fc6a22f5fa5055a104d5b65d56d9c3d))
1209
+
1210
+
1211
+
1212
+ ## [0.0.141](https://www.github.com/spinnaker/deck/compare/ced77a7453a0ffab5a14c38943288138fdcb084b...9e9c4eb36f24d80255842a47548ed8390e2cb023) (2020-09-03)
1213
+
1214
+
1215
+ ### Changes
1216
+
1217
+ chore(package): amazon@0.0.264 core@0.0.505 titus@0.0.141 [#8543](https://github.com/spinnaker/deck/pull/8543) ([9e9c4eb3](https://github.com/spinnaker/deck/commit/9e9c4eb36f24d80255842a47548ed8390e2cb023))
1218
+ refactor(aws/titus): Refactor instance status section to react [#8497](https://github.com/spinnaker/deck/pull/8497) ([f358e5e8](https://github.com/spinnaker/deck/commit/f358e5e8f8615a47ba98ade8b465246054d0c917))
1219
+
1220
+
1221
+
1222
+ ## [0.0.140](https://www.github.com/spinnaker/deck/compare/dcb8ceff74e7013d20a85bd8ac747b453d40bfe5...ced77a7453a0ffab5a14c38943288138fdcb084b) (2020-08-25)
1223
+
1224
+
1225
+ ### Changes
1226
+
1227
+ 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))
1228
+ chore(licenses): add license metadata to npm packages [#8512](https://github.com/spinnaker/deck/pull/8512) ([d4afa1bf](https://github.com/spinnaker/deck/commit/d4afa1bf2328cc91cf3195f810073b0b4726b3b5))
1229
+
1230
+
1231
+
1232
+ ## [0.0.139](https://www.github.com/spinnaker/deck/compare/e47310cb08dd3eeb2ccbe2dbfc7cde7cad4fa22b...dcb8ceff74e7013d20a85bd8ac747b453d40bfe5) (2020-07-31)
1233
+
1234
+
1235
+ ### Changes
1236
+
1237
+ chore(package): publish amazon 0.0.260 appengine 0.0.14 core 0.0.497 kubernetes 0.0.44 titus 0.0.139 [#8457](https://github.com/spinnaker/deck/pull/8457) ([dcb8ceff](https://github.com/spinnaker/deck/commit/dcb8ceff74e7013d20a85bd8ac747b453d40bfe5))
1238
+ fix(amazon/rollback): Wait 500 ms before opening a second modal [#8451](https://github.com/spinnaker/deck/pull/8451) ([75f23284](https://github.com/spinnaker/deck/commit/75f23284bc35d86a14949261aae06dd5e413506b))
1239
+
1240
+
1241
+
1242
+ ## [0.0.138](https://www.github.com/spinnaker/deck/compare/b6e98d1fc71f66f2e2a5c03b6c6133de9c36b98b...e47310cb08dd3eeb2ccbe2dbfc7cde7cad4fa22b) (2020-07-28)
1243
+
1244
+
1245
+ ### Changes
1246
+
1247
+ chore(package): publish amazon 0.0.259 core 0.0.494 docker 0.0.57 titus 0.0.138 [#8440](https://github.com/spinnaker/deck/pull/8440) ([e47310cb](https://github.com/spinnaker/deck/commit/e47310cb08dd3eeb2ccbe2dbfc7cde7cad4fa22b))
1248
+
1249
+
1250
+
1251
+ ## [0.0.137](https://www.github.com/spinnaker/deck/compare/638a6036d8a35c60121612c5c033e461626940a8...b6e98d1fc71f66f2e2a5c03b6c6133de9c36b98b) (2020-07-28)
1252
+
1253
+
1254
+ ### Changes
1255
+
1256
+ chore(package): publish amazon 0.0.258 azure 0.0.252 core 0.0.493 titus 0.0.137 [#8439](https://github.com/spinnaker/deck/pull/8439) ([b6e98d1f](https://github.com/spinnaker/deck/commit/b6e98d1fc71f66f2e2a5c03b6c6133de9c36b98b))
1257
+ fix(titus): Make iamProfile a required field in the UI and offer to fill in the default value if it's missing. [#8434](https://github.com/spinnaker/deck/pull/8434) ([0b392c53](https://github.com/spinnaker/deck/commit/0b392c53d060e3436a04069dd1f19d451e89f32b))
1258
+
1259
+
1260
+
1261
+ ## [0.0.136](https://www.github.com/spinnaker/deck/compare/f227aa8ec00fffe63e39abc75b9c504180804623...638a6036d8a35c60121612c5c033e461626940a8) (2020-06-17)
1262
+
1263
+
1264
+ ### Changes
1265
+
1266
+ chore(package): publish amazon 0.0.256 core 0.0.480 tencentcloud 0.0.3 titus 0.0.136 [#8355](https://github.com/spinnaker/deck/pull/8355) ([638a6036](https://github.com/spinnaker/deck/commit/638a6036d8a35c60121612c5c033e461626940a8))
1267
+ fix(titus/instance): Map titus account to awsAccount when building titus health check links [#8349](https://github.com/spinnaker/deck/pull/8349) ([b94635d1](https://github.com/spinnaker/deck/commit/b94635d18ca6d057fa446bad19b4fa87693f456d))
1268
+ Revert "fix(aws/titus): Server group names should be lower case (#8332)" [#8335](https://github.com/spinnaker/deck/pull/8335) ([a7cd1a5f](https://github.com/spinnaker/deck/commit/a7cd1a5f23eda4e63ab57c6c671fedb3ed252691))
1269
+ fix(aws/titus): Server group names should be lower case [#8332](https://github.com/spinnaker/deck/pull/8332) ([c0789da9](https://github.com/spinnaker/deck/commit/c0789da9e0b0f43719684bb1bf9dfbfb917a31bf))
1270
+
1271
+
1272
+
1273
+ ## [0.0.135](https://www.github.com/spinnaker/deck/compare/87938bdcf53ef098fc9d6fcae0139322c5b2371a...f227aa8ec00fffe63e39abc75b9c504180804623) (2020-04-21)
1274
+
1275
+
1276
+ ### Changes
1277
+
1278
+ 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))
1279
+ fix(titus): Fetch ipv6 details from scope, remove additional call [#8183](https://github.com/spinnaker/deck/pull/8183) ([5af3043b](https://github.com/spinnaker/deck/commit/5af3043be24f8d70bf898496161f9c145ff85159))
1280
+ 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))
1281
+ fix(titus/stages): Migrate runjob execution details to LabeledValeList [#8171](https://github.com/spinnaker/deck/pull/8171) ([c35267ed](https://github.com/spinnaker/deck/commit/c35267ede12fadd2664da43c818c8212fb3af7e0))
1282
+
1283
+
1284
+
1285
+ ## [0.0.134](https://www.github.com/spinnaker/deck/compare/b05cc399dbb3416eb287262f60c75a2105183a6f...87938bdcf53ef098fc9d6fcae0139322c5b2371a) (2020-04-06)
1286
+
1287
+
1288
+ ### Changes
1289
+
1290
+ chore(package): publish amazon 0.0.250 core 0.0.470 titus 0.0.134 [#8135](https://github.com/spinnaker/deck/pull/8135) ([87938bdc](https://github.com/spinnaker/deck/commit/87938bdcf53ef098fc9d6fcae0139322c5b2371a))
1291
+ fix(titus): Remove atlas health check poller in JDB [#8128](https://github.com/spinnaker/deck/pull/8128) ([8913bb9c](https://github.com/spinnaker/deck/commit/8913bb9cfd0d8465d185a2d22dc561a5ac928697))
1292
+
1293
+
1294
+
1295
+ ## [0.0.133](https://www.github.com/spinnaker/deck/compare/e2217c068146178acd45631c9535e9f1ef00d1db...b05cc399dbb3416eb287262f60c75a2105183a6f) (2020-03-27)
1296
+
1297
+
1298
+ ### Changes
1299
+
1300
+ chore(bump): Bump titus to 0.0.133 [#8105](https://github.com/spinnaker/deck/pull/8105) ([b05cc399](https://github.com/spinnaker/deck/commit/b05cc399dbb3416eb287262f60c75a2105183a6f))
1301
+ fix(titus): Solidify mapping of titus to awsAccount [#8102](https://github.com/spinnaker/deck/pull/8102) ([ca97cc33](https://github.com/spinnaker/deck/commit/ca97cc330d2081411979a3899abcf052e388c388))
1302
+ refactor(titus/serverGroupDetails): Move details field to core and use that in titus [#8097](https://github.com/spinnaker/deck/pull/8097) ([83f65d3b](https://github.com/spinnaker/deck/commit/83f65d3b0c417c5d9222820d41af602e317aa995))
1303
+ fix(amazon,ecs,titus): Match targetGroup by name and account [#8098](https://github.com/spinnaker/deck/pull/8098) ([43c8075e](https://github.com/spinnaker/deck/commit/43c8075e07564f747fe75f0d72dd440e8c766112))
1304
+
1305
+
1306
+
1307
+ ## [0.0.132](https://www.github.com/spinnaker/deck/compare/90ed419d314fa19c936444873d9a37a4875a48ef...e2217c068146178acd45631c9535e9f1ef00d1db) (2020-03-23)
1308
+
1309
+
1310
+ ### Changes
1311
+
1312
+ chore(titus): Bump to 0.0.132 [#8078](https://github.com/spinnaker/deck/pull/8078) ([e2217c06](https://github.com/spinnaker/deck/commit/e2217c068146178acd45631c9535e9f1ef00d1db))
1313
+ fix(titus): Update host account environment [#8076](https://github.com/spinnaker/deck/pull/8076) ([7f8e33ee](https://github.com/spinnaker/deck/commit/7f8e33ee578193a8c8a0cb87cfccf41c2451e5e9))
1314
+
1315
+
1316
+
1317
+ ## [0.0.131](https://www.github.com/spinnaker/deck/compare/9b912276e390dc7c464323b4503b025721359d09...90ed419d314fa19c936444873d9a37a4875a48ef) (2020-03-19)
1318
+
1319
+
1320
+ ### Changes
1321
+
1322
+ chore(titus/amazon): Bump to amazon@0.0.246, titus@0.0.131 [#8062](https://github.com/spinnaker/deck/pull/8062) ([90ed419d](https://github.com/spinnaker/deck/commit/90ed419d314fa19c936444873d9a37a4875a48ef))
1323
+ fix(titus/instance): Temporary workaround to get IPv6 for Titus instances [#8054](https://github.com/spinnaker/deck/pull/8054) ([c933e898](https://github.com/spinnaker/deck/commit/c933e8984d0de9f74b04d8746ff2ee723ea0fc0a))
1324
+ 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))
1325
+
1326
+
1327
+
1328
+ ## [0.0.130](https://www.github.com/spinnaker/deck/compare/279ae483aac486db172e2bb2f34a5a3ce2eb87b3...9b912276e390dc7c464323b4503b025721359d09) (2020-03-19)
1329
+
1330
+
1331
+ ### Changes
1332
+
1333
+ Update package.json [#8059](https://github.com/spinnaker/deck/pull/8059) ([9b912276](https://github.com/spinnaker/deck/commit/9b912276e390dc7c464323b4503b025721359d09))
1334
+ chore(titus): Reenable previous image rollbacks for titus [#8050](https://github.com/spinnaker/deck/pull/8050) ([9cea4059](https://github.com/spinnaker/deck/commit/9cea4059a4184400a271e6ce2c37e6152af36ac0))
1335
+
1336
+
1337
+
1338
+ ## [0.0.129](https://www.github.com/spinnaker/deck/compare/c8fb7afab15ac2adc6810c4c69e5dae0a9a22201...279ae483aac486db172e2bb2f34a5a3ce2eb87b3) (2020-02-27)
1339
+
1340
+
1341
+ ### Changes
1342
+
1343
+ chore: bump titus to 129 [#7976](https://github.com/spinnaker/deck/pull/7976) ([279ae483](https://github.com/spinnaker/deck/commit/279ae483aac486db172e2bb2f34a5a3ce2eb87b3))
1344
+ 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))
1345
+ fix(titus): Fix resetting region when updated account is not in that region [#7916](https://github.com/spinnaker/deck/pull/7916) ([16eefbb2](https://github.com/spinnaker/deck/commit/16eefbb2bd8fbdde3b83a688d55e56b614e4bce7))
1346
+
1347
+
1348
+
1349
+ ## [0.0.128](https://www.github.com/spinnaker/deck/compare/8bf7e339e896522e78b4d7e34d9b1cbe8f614d05...c8fb7afab15ac2adc6810c4c69e5dae0a9a22201) (2020-02-08)
1350
+
1351
+
1352
+ ### Changes
1353
+
1354
+ chore(package): bump core, amazon, docker, titus [#7856](https://github.com/spinnaker/deck/pull/7856) ([c8fb7afa](https://github.com/spinnaker/deck/commit/c8fb7afab15ac2adc6810c4c69e5dae0a9a22201))
1355
+
1356
+
1357
+
1358
+ ## [0.0.127](https://www.github.com/spinnaker/deck/compare/d8882a05e046a73ec1f051ed30a42be04b79f729...8bf7e339e896522e78b4d7e34d9b1cbe8f614d05) (2020-02-08)
1359
+
1360
+
1361
+ ### Changes
1362
+
1363
+ chore(package): bump core to 447, amazon to 235, docker to 51, titus to 127 [#7851](https://github.com/spinnaker/deck/pull/7851) ([8bf7e339](https://github.com/spinnaker/deck/commit/8bf7e339e896522e78b4d7e34d9b1cbe8f614d05))
1364
+ 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))
1365
+
1366
+
1367
+
1368
+ ## [0.0.126](https://www.github.com/spinnaker/deck/compare/18ba37b0ca218c846836c416d0a90b315e7cbf79...d8882a05e046a73ec1f051ed30a42be04b79f729) (2020-01-29)
1369
+
1370
+
1371
+ ### Changes
1372
+
1373
+ chore(titus): bump package to 0.0.126 [#7823](https://github.com/spinnaker/deck/pull/7823) ([d8882a05](https://github.com/spinnaker/deck/commit/d8882a05e046a73ec1f051ed30a42be04b79f729))
1374
+ fix(titus/serverGroup): use correct prop name for managed resource banner [#7820](https://github.com/spinnaker/deck/pull/7820) ([b4be2a5a](https://github.com/spinnaker/deck/commit/b4be2a5a75214eba430c10a310459a2258af62b3))
1375
+ chore(lint): Run eslint on typescript files ([b51dce46](https://github.com/spinnaker/deck/commit/b51dce46be3df14070f06e06de874108dcf23569))
1376
+ refactor(titus): Removing container migration as it is no longer used [#7807](https://github.com/spinnaker/deck/pull/7807) ([b5621845](https://github.com/spinnaker/deck/commit/b562184537f98d07bbdd91007977c0901f5964dc))
1377
+
1378
+
1379
+
1380
+ ## [0.0.125](https://www.github.com/spinnaker/deck/compare/2d8b2e1f1ea50af9bb0c53ee23c79a1a45eb6f4a...18ba37b0ca218c846836c416d0a90b315e7cbf79) (2020-01-14)
1381
+
1382
+
1383
+ ### Changes
1384
+
1385
+ chore(titus): bump package to 0.0.125 [#7779](https://github.com/spinnaker/deck/pull/7779) ([18ba37b0](https://github.com/spinnaker/deck/commit/18ba37b0ca218c846836c416d0a90b315e7cbf79))
1386
+ feat(titus): add Managed by Spinnaker section to details [#7776](https://github.com/spinnaker/deck/pull/7776) ([5cd46be3](https://github.com/spinnaker/deck/commit/5cd46be3fd70ef04532409f8a5bfce25711f6633))
1387
+ fix(titus): Blank IAM profile unclickable [#7775](https://github.com/spinnaker/deck/pull/7775) ([a020a96c](https://github.com/spinnaker/deck/commit/a020a96cb225eefc38656b7494982b0056e1ec1f))
1388
+
1389
+
1390
+
1391
+ ## [0.0.124](https://www.github.com/spinnaker/deck/compare/c0a3677540553db8c157febd70ef842d173b3946...2d8b2e1f1ea50af9bb0c53ee23c79a1a45eb6f4a) (2020-01-09)
1392
+
1393
+
1394
+ ### Changes
1395
+
1396
+ chore(titus): bump package to 0.0.123 [#7763](https://github.com/spinnaker/deck/pull/7763) ([2d8b2e1f](https://github.com/spinnaker/deck/commit/2d8b2e1f1ea50af9bb0c53ee23c79a1a45eb6f4a))
1397
+ refactor(*): de-angularize confirmationModalService [#7759](https://github.com/spinnaker/deck/pull/7759) ([e6c6c662](https://github.com/spinnaker/deck/commit/e6c6c662b5326fcb184772c99f2212ce4336a1cb))
1398
+ feat(core/amazon/titus): do not allow create/clone in managed clusters [#7754](https://github.com/spinnaker/deck/pull/7754) ([4302a0fc](https://github.com/spinnaker/deck/commit/4302a0fc90d2b1679dee204d15e59d3e53b3d0a0))
1399
+
1400
+
1401
+
1402
+ ## [0.0.123](https://www.github.com/spinnaker/deck/compare/420796aa5fdab14ce6d4a5679571f323b36a7bc5...c0a3677540553db8c157febd70ef842d173b3946) (2020-01-08)
1403
+
1404
+
1405
+ ### Changes
1406
+
1407
+ chore(titus): bump package to 0.0.123 [#7753](https://github.com/spinnaker/deck/pull/7753) ([c0a36775](https://github.com/spinnaker/deck/commit/c0a3677540553db8c157febd70ef842d173b3946))
1408
+ feat(core/amazon/titus): restrict menu items on managed resources [#7750](https://github.com/spinnaker/deck/pull/7750) ([ff87bda7](https://github.com/spinnaker/deck/commit/ff87bda72eed677b6e1b792bc5fae346ca459336))
1409
+
1410
+
1411
+
1412
+ ## [0.0.122](https://www.github.com/spinnaker/deck/compare/f17a582d206db8b5d2f5a13cd0ef3348724b762e...420796aa5fdab14ce6d4a5679571f323b36a7bc5) (2020-01-08)
1413
+
1414
+
1415
+ ### Changes
1416
+
1417
+ chore(titus): bump package to 0.0.122 [#7749](https://github.com/spinnaker/deck/pull/7749) ([420796aa](https://github.com/spinnaker/deck/commit/420796aa5fdab14ce6d4a5679571f323b36a7bc5))
1418
+ refactor(*): use consistent styles on modal headers ([10b34915](https://github.com/spinnaker/deck/commit/10b34915860ed46f21d0179bf87c3b456de49c56))
1419
+ refactor(core): convert confirmation modal to react ([a59b2c32](https://github.com/spinnaker/deck/commit/a59b2c3264500080fad7caeb05054eef6f51d52c))
1420
+ 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))
1421
+ chore(core): upgrade to latest prettier [#7713](https://github.com/spinnaker/deck/pull/7713) ([6291f858](https://github.com/spinnaker/deck/commit/6291f858cb111d9c65affeb82ddd840f05c57b65))
1422
+ refactor(eslint): Fix all 'prefer-const' eslint rule violations ([90aa4775](https://github.com/spinnaker/deck/commit/90aa47754bc8815eb1bdfcceb4d05c9e1cdf325f))
1423
+ refactor(eslint): Fix all 'one-var' eslint rule violations ([d070bd45](https://github.com/spinnaker/deck/commit/d070bd45ff3e185999e863e3f48c01f63eb45733))
1424
+ refactor(eslint): Fix all 'no-var' eslint rule violations ([17487016](https://github.com/spinnaker/deck/commit/174870161a5a09ab7f15c74cb84d0f3e196cd7cb))
1425
+ chore(eslint): remove tslint ([9400826b](https://github.com/spinnaker/deck/commit/9400826bcb119cf7681e1ce37092b9fdd8b76b1b))
1426
+ refactor(angularjs): use ES6 to import angular - migrate from `const angular = require('angular')` to `import * as angular from 'angular'` - Where possible, migrate from `import angular from 'angular'; angular.module('asdf')` to `import { module } from 'angular'; module('asdf')` ([88b8f4ae](https://github.com/spinnaker/deck/commit/88b8f4ae0b9e96ac8d8dbdeff592f3787f0617cb))
1427
+ refactor(angularjs): use ES6 imports for angularjs module deps - migrate from `require('@uirouter/angularjs').default` to import UIROUTER_ANGULARJS from '@uirouter/angularjs' - migrate from `require('angular-ui-bootstrap')` to import ANGULAR_UI_BOOTSTRAP from 'angular-ui-bootstrap' ([a076dc12](https://github.com/spinnaker/deck/commit/a076dc1280b56affcd30cdbea68a84fb7d5ba3f1))
1428
+ refactor(angularjs): Import angularjs module dependencies by name - Migrate angularjs module dependencies to import the exported string identifier, not via require('module').name ([ac1c86eb](https://github.com/spinnaker/deck/commit/ac1c86ebbc72e6d2d83eb57d6710c6ae2651ecc0))
1429
+ refactor(angularjs): Always export the ng module name, not the module itself ([784d64b6](https://github.com/spinnaker/deck/commit/784d64b66a6410e622803b4b0519f7050e9c5f82))
1430
+
1431
+
1432
+
1433
+ ## [0.0.121](https://www.github.com/spinnaker/deck/compare/f8c2421c025edeba07042bcbce81b5ad01901263...f17a582d206db8b5d2f5a13cd0ef3348724b762e) (2019-12-11)
1434
+
1435
+
1436
+ ### Changes
1437
+
1438
+ chore(titus): Bump version to 0.0.121 [#7689](https://github.com/spinnaker/deck/pull/7689) ([f17a582d](https://github.com/spinnaker/deck/commit/f17a582d206db8b5d2f5a13cd0ef3348724b762e))
1439
+ fix(titus): Temporarily disabling previous image rollbacks for Titus [#7688](https://github.com/spinnaker/deck/pull/7688) ([a88426d4](https://github.com/spinnaker/deck/commit/a88426d4330da9dd2ac254fd4ea58c8664839f22))
1440
+ 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))
1441
+ feat(typescript): enable allowJs and allowSyntheticDefaultImports ([7ef58b6c](https://github.com/spinnaker/deck/commit/7ef58b6c122f9ce91eab95d5f444622a710ff968))
1442
+
1443
+
1444
+
1445
+ ## [0.0.120](https://www.github.com/spinnaker/deck/compare/14bba26d010f1fa7cef083e7b26909ff17351db5...f8c2421c025edeba07042bcbce81b5ad01901263) (2019-12-09)
1446
+
1447
+
1448
+ ### Changes
1449
+
1450
+ chore(titus): Bump version to 0.0.120 [#7683](https://github.com/spinnaker/deck/pull/7683) ([f8c2421c](https://github.com/spinnaker/deck/commit/f8c2421c025edeba07042bcbce81b5ad01901263))
1451
+ fix(titus): Remove default metricName [#7680](https://github.com/spinnaker/deck/pull/7680) ([d855a69b](https://github.com/spinnaker/deck/commit/d855a69bdb5629ca360bf14fdc2d592e4ecbb820))
1452
+ chore(typescript): update to typescript 3.7.x [#7668](https://github.com/spinnaker/deck/pull/7668) ([145f540d](https://github.com/spinnaker/deck/commit/145f540d8bab6936a6d5bfb5caf4e1cba426f215))
1453
+ refactor(*): Remove exports-loader from n3-chart import ([f0613c1b](https://github.com/spinnaker/deck/commit/f0613c1b1648f0c2ea54623cb535a6d54bea2355))
1454
+ 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))
1455
+
1456
+
1457
+
1458
+ ## [0.0.119](https://www.github.com/spinnaker/deck/compare/544ff287337ce30433a33681b2a161a926015a07...14bba26d010f1fa7cef083e7b26909ff17351db5) (2019-11-26)
1459
+
1460
+
1461
+ ### Changes
1462
+
1463
+ chore(titus): Bump version to 0.0.119 [#7654](https://github.com/spinnaker/deck/pull/7654) ([14bba26d](https://github.com/spinnaker/deck/commit/14bba26d010f1fa7cef083e7b26909ff17351db5))
1464
+
1465
+
1466
+
1467
+ ## [0.0.118](https://www.github.com/spinnaker/deck/compare/258eb2e05b3beabc11d4807dcdb749a2b6178d87...544ff287337ce30433a33681b2a161a926015a07) (2019-10-30)
1468
+
1469
+
1470
+ ### Changes
1471
+
1472
+ chore(titus): Bump version to 0.0.118 ([544ff287](https://github.com/spinnaker/deck/commit/544ff287337ce30433a33681b2a161a926015a07))
1473
+ Reactify titus launch configuration [#7581](https://github.com/spinnaker/deck/pull/7581) ([8c29cbae](https://github.com/spinnaker/deck/commit/8c29cbae0278695316ba493a9f0cb7ae52b51d10))
1474
+
1475
+
1476
+
1477
+ ## [0.0.117](https://www.github.com/spinnaker/deck/compare/f5bd98e56596d82cdb1f49ba1d46242b635a8807...258eb2e05b3beabc11d4807dcdb749a2b6178d87) (2019-10-28)
1478
+
1479
+
1480
+ ### Changes
1481
+
1482
+ chore(titus): Bump version to 0.0.117 ([258eb2e0](https://github.com/spinnaker/deck/commit/258eb2e05b3beabc11d4807dcdb749a2b6178d87))
1483
+ feat(rosco): Allow optional roscoDetailUrl for roscoMode bakes [#7575](https://github.com/spinnaker/deck/pull/7575) ([dae00c87](https://github.com/spinnaker/deck/commit/dae00c87adc5e69ac232a2145d35e73072cf5766))
1484
+
1485
+
1486
+
1487
+ ## [0.0.116](https://www.github.com/spinnaker/deck/compare/2b2100fcccf554349a9a9cff6f3a45069db5d8e8...f5bd98e56596d82cdb1f49ba1d46242b635a8807) (2019-10-24)
1488
+
1489
+
1490
+ ### Changes
1491
+
1492
+ chore(titus): Bump version to 0.0.116 ([f5bd98e5](https://github.com/spinnaker/deck/commit/f5bd98e56596d82cdb1f49ba1d46242b635a8807))
1493
+ chore(titus): remove unused autoScalingEnabled toggle from settings interface [#7554](https://github.com/spinnaker/deck/pull/7554) ([8088211e](https://github.com/spinnaker/deck/commit/8088211ec191bf4b00c44b7224cc4ce529f5dda5))
1494
+
1495
+
1496
+
1497
+ ## [0.0.115](https://www.github.com/spinnaker/deck/compare/f928d70b0b2931bc2117a557571f6461b4e10a4e...2b2100fcccf554349a9a9cff6f3a45069db5d8e8) (2019-10-16)
1498
+
1499
+
1500
+ ### Changes
1501
+
1502
+ chore(titus): Bump version to 0.0.115 ([2b2100fc](https://github.com/spinnaker/deck/commit/2b2100fcccf554349a9a9cff6f3a45069db5d8e8))
1503
+ feat(ui): Show health check url beside target group [#7520](https://github.com/spinnaker/deck/pull/7520) ([ed7c4458](https://github.com/spinnaker/deck/commit/ed7c44589cfbf482047a0f47d30df97165053aa4))
1504
+
1505
+
1506
+
1507
+ ## [0.0.114](https://www.github.com/spinnaker/deck/compare/60290ed314e3b6d6bcb884bcefbdd94992c280b5...f928d70b0b2931bc2117a557571f6461b4e10a4e) (2019-10-15)
1508
+
1509
+
1510
+ ### Changes
1511
+
1512
+ chore(titus): Bump version to 0.0.114 ([f928d70b](https://github.com/spinnaker/deck/commit/f928d70b0b2931bc2117a557571f6461b4e10a4e))
1513
+ fix(docker,titus): re-align digest field on image + tag selector [#7526](https://github.com/spinnaker/deck/pull/7526) ([c7feedd6](https://github.com/spinnaker/deck/commit/c7feedd666342a0cc00b7ff913f3cc405ad80814))
1514
+
1515
+
1516
+
1517
+ ## [0.0.113](https://www.github.com/spinnaker/deck/compare/fa47f48f9fef478927c2a40aebc431b987bd235a...60290ed314e3b6d6bcb884bcefbdd94992c280b5) (2019-10-07)
1518
+
1519
+
1520
+ ### Changes
1521
+
1522
+ chore(titus): Bump version to 0.0.113 ([60290ed3](https://github.com/spinnaker/deck/commit/60290ed314e3b6d6bcb884bcefbdd94992c280b5))
1523
+ fix(titus/pipeline): use proper git ssh URL for docker bakes [#7480](https://github.com/spinnaker/deck/pull/7480) ([c6c69a36](https://github.com/spinnaker/deck/commit/c6c69a36da378993dbd9b389c674a933b75e74ae))
1524
+
1525
+
1526
+
1527
+ ## [0.0.112](https://www.github.com/spinnaker/deck/compare/d0ceddb592ff4f96eb84c7298588bb9884382afb...fa47f48f9fef478927c2a40aebc431b987bd235a) (2019-09-23)
1528
+
1529
+
1530
+ ### Changes
1531
+
1532
+ Bump package core to 0.0.411 and titus to 0.0.112 [#7423](https://github.com/spinnaker/deck/pull/7423) ([fa47f48f](https://github.com/spinnaker/deck/commit/fa47f48f9fef478927c2a40aebc431b987bd235a))
1533
+ chore(titus): Deprecating pipeline migration strategy [#7414](https://github.com/spinnaker/deck/pull/7414) ([97c85d99](https://github.com/spinnaker/deck/commit/97c85d99e4cdbb354c4fe78472fec3d23d7ae00e))
1534
+
1535
+
1536
+
1537
+ ## [0.0.111](https://www.github.com/spinnaker/deck/compare/62d65d79b62667c26fddc89c707e815f07886c05...d0ceddb592ff4f96eb84c7298588bb9884382afb) (2019-09-16)
1538
+
1539
+
1540
+ ### Changes
1541
+
1542
+ chore(titus): Bump version to 0.0.111 ([d0ceddb5](https://github.com/spinnaker/deck/commit/d0ceddb592ff4f96eb84c7298588bb9884382afb))
1543
+ feat(titus): direct link to stdout and stderr ( based on Netflix internal JIRA SSPLAT-653 ) [#7400](https://github.com/spinnaker/deck/pull/7400) ([f491ac69](https://github.com/spinnaker/deck/commit/f491ac69f3ed00b3afed738d4ffba0e5f34b8259))
1544
+
1545
+
1546
+
1547
+ ## [0.0.110](https://www.github.com/spinnaker/deck/compare/a68eddf4ee4c09ab37a450de7cb521d3df68f779...62d65d79b62667c26fddc89c707e815f07886c05) (2019-09-12)
1548
+
1549
+
1550
+ ### Changes
1551
+
1552
+ chore(titus): Bump version to 0.0.110 ([62d65d79](https://github.com/spinnaker/deck/commit/62d65d79b62667c26fddc89c707e815f07886c05))
1553
+ refactor(titus): Adding load balancer incompatibility [#7386](https://github.com/spinnaker/deck/pull/7386) ([7d65ea9e](https://github.com/spinnaker/deck/commit/7d65ea9ee7f9856ae4670f1e5462c7cb94e45890))
1554
+
1555
+
1556
+
1557
+ ## [0.0.109](https://www.github.com/spinnaker/deck/compare/251b160139e4009f329f622ad31b3a98c364bb96...a68eddf4ee4c09ab37a450de7cb521d3df68f779) (2019-09-03)
1558
+
1559
+
1560
+ ### Changes
1561
+
1562
+ Bump package core to 0.0.405 and titus to 0.0.109 [#7372](https://github.com/spinnaker/deck/pull/7372) ([a68eddf4](https://github.com/spinnaker/deck/commit/a68eddf4ee4c09ab37a450de7cb521d3df68f779))
1563
+ fix(titus): Removing NLB as it is not compatible with Titus [#7317](https://github.com/spinnaker/deck/pull/7317) ([373f581e](https://github.com/spinnaker/deck/commit/373f581e0689a0e1d3873c7b4cc6948fafadcf8e))
1564
+ refactor(titus): Making service job processes human friendly [#7350](https://github.com/spinnaker/deck/pull/7350) ([f0d3254a](https://github.com/spinnaker/deck/commit/f0d3254a892be6af0d8615f360bc06407fcbf58b))
1565
+
1566
+
1567
+
1568
+ ## [0.0.108](https://www.github.com/spinnaker/deck/compare/4fb03292ebb969ed936c0db9df97f75b7158bfb1...251b160139e4009f329f622ad31b3a98c364bb96) (2019-08-13)
1569
+
1570
+
1571
+ ### Changes
1572
+
1573
+ Bump package amazon to 0.0.208 and titus to 0.0.108 [#7321](https://github.com/spinnaker/deck/pull/7321) ([251b1601](https://github.com/spinnaker/deck/commit/251b160139e4009f329f622ad31b3a98c364bb96))
1574
+
1575
+
1576
+
1577
+ ## [0.0.107](https://www.github.com/spinnaker/deck/compare/7abf78a804b1516de66cf1a6c9a6c1ceaaeea330...4fb03292ebb969ed936c0db9df97f75b7158bfb1) (2019-08-07)
1578
+
1579
+
1580
+ ### Changes
1581
+
1582
+ chore(titus): Bump version to 0.0.107 ([4fb03292](https://github.com/spinnaker/deck/commit/4fb03292ebb969ed936c0db9df97f75b7158bfb1))
1583
+ 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))
1584
+
1585
+
1586
+
1587
+ ## [0.0.106](https://www.github.com/spinnaker/deck/compare/7a2cf9989b3bbed9db8f7285a639635555fccfe3...7abf78a804b1516de66cf1a6c9a6c1ceaaeea330) (2019-07-26)
1588
+
1589
+
1590
+ ### Changes
1591
+
1592
+ chore(titus): Bump version to 0.0.106 ([7abf78a8](https://github.com/spinnaker/deck/commit/7abf78a804b1516de66cf1a6c9a6c1ceaaeea330))
1593
+ 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))
1594
+
1595
+
1596
+
1597
+ ## [0.0.105](https://www.github.com/spinnaker/deck/compare/fba3c4a3c11a68b6064f5ddd95722344ab2974b1...7a2cf9989b3bbed9db8f7285a639635555fccfe3) (2019-07-15)
1598
+
1599
+
1600
+ ### Changes
1601
+
1602
+ chore(titus): Bump version to 0.0.105 ([7a2cf998](https://github.com/spinnaker/deck/commit/7a2cf9989b3bbed9db8f7285a639635555fccfe3))
1603
+ feat(titus): Adding support for service job processes [#7186](https://github.com/spinnaker/deck/pull/7186) ([0e5e66a3](https://github.com/spinnaker/deck/commit/0e5e66a3fae50abddb98cb2d97036a32907ea811))
1604
+
1605
+
1606
+
1607
+ ## [0.0.104](https://www.github.com/spinnaker/deck/compare/3baa1bd34d0ef73749cfcd9a50bb121e2803c99c...fba3c4a3c11a68b6064f5ddd95722344ab2974b1) (2019-07-09)
1608
+
1609
+
1610
+ ### Changes
1611
+
1612
+ Bump package core to 0.0.390 and amazon to 0.0.202 and titus to 0.0.104 [#7207](https://github.com/spinnaker/deck/pull/7207) ([fba3c4a3](https://github.com/spinnaker/deck/commit/fba3c4a3c11a68b6064f5ddd95722344ab2974b1))
1613
+ fix(spel): Fix exceptions when account is an expression [#7168](https://github.com/spinnaker/deck/pull/7168) ([a468de45](https://github.com/spinnaker/deck/commit/a468de458f784bc3e23b340acf053871d2d35678))
1614
+
1615
+
1616
+
1617
+ ## [0.0.103](https://www.github.com/spinnaker/deck/compare/d30a91f06a95fd08a32d34b595ecbf72663958f9...3baa1bd34d0ef73749cfcd9a50bb121e2803c99c) (2019-07-09)
1618
+
1619
+
1620
+ ### Changes
1621
+
1622
+ chore(titus): Bump version to 0.0.103 [#7202](https://github.com/spinnaker/deck/pull/7202) ([3baa1bd3](https://github.com/spinnaker/deck/commit/3baa1bd34d0ef73749cfcd9a50bb121e2803c99c))
1623
+ fix(titus): fix resize from Server Group Actions menu [#7201](https://github.com/spinnaker/deck/pull/7201) ([1b1ff2c5](https://github.com/spinnaker/deck/commit/1b1ff2c5d127cfa784730712fa6f95527a527dbd))
1624
+
1625
+
1626
+
1627
+ ## [0.0.102](https://www.github.com/spinnaker/deck/compare/65795ca493a86126355b3e87290ef360f9dd111a...d30a91f06a95fd08a32d34b595ecbf72663958f9) (2019-07-03)
1628
+
1629
+
1630
+ ### Changes
1631
+
1632
+ chore(titus): Bump version to 0.0.102 ([d30a91f0](https://github.com/spinnaker/deck/commit/d30a91f06a95fd08a32d34b595ecbf72663958f9))
1633
+ refactor(core/serverGroup): Extract capacity details components to reuse across providers [#7182](https://github.com/spinnaker/deck/pull/7182) ([6630f9bc](https://github.com/spinnaker/deck/commit/6630f9bca7bd17e99bafa174b7659bc6c63f79fd))
1634
+ refactor(titus/serverGroup): Reactify Titus Resize Server Group Modal [#7175](https://github.com/spinnaker/deck/pull/7175) ([20df06e8](https://github.com/spinnaker/deck/commit/20df06e8c8dc323a83cc75b53da7792070f49911))
1635
+
1636
+
1637
+
1638
+ ## [0.0.101](https://www.github.com/spinnaker/deck/compare/4422b34071224020b983b4c8a56fc8dd043f3e4f...65795ca493a86126355b3e87290ef360f9dd111a) (2019-06-28)
1639
+
1640
+
1641
+ ### Changes
1642
+
1643
+ chore(titus): Bump version to 0.0.101 [#7165](https://github.com/spinnaker/deck/pull/7165) ([65795ca4](https://github.com/spinnaker/deck/commit/65795ca493a86126355b3e87290ef360f9dd111a))
1644
+ fix(runjob): Fixing security group matching by name [#7164](https://github.com/spinnaker/deck/pull/7164) ([cfe322c8](https://github.com/spinnaker/deck/commit/cfe322c810af012025857c167fe8740852a5afb9))
1645
+
1646
+
1647
+
1648
+ ## [0.0.100](https://www.github.com/spinnaker/deck/compare/0e156c118ec062d8503097bea3fc13d61f19d06b...4422b34071224020b983b4c8a56fc8dd043f3e4f) (2019-06-28)
1649
+
1650
+
1651
+ ### Changes
1652
+
1653
+ Bump package core to 0.0.380 and docker to 0.0.43 and amazon to 0.0.198 and titus to 0.0.100 [#7163](https://github.com/spinnaker/deck/pull/7163) ([4422b340](https://github.com/spinnaker/deck/commit/4422b34071224020b983b4c8a56fc8dd043f3e4f))
1654
+ fix(titus): allow security group in cluster config by name [#7160](https://github.com/spinnaker/deck/pull/7160) ([422be22d](https://github.com/spinnaker/deck/commit/422be22d3a6563eeab280afc0c4b9176fe6d9705))
1655
+ chore(package): Just Update Prettier™ ([cdd6f237](https://github.com/spinnaker/deck/commit/cdd6f2379859d3c2b13bac59aa470c08b391a865))
1656
+
1657
+
1658
+
1659
+ ## [0.0.99](https://www.github.com/spinnaker/deck/compare/63e1f9e667ce46310503689511834d097d27aedd...0e156c118ec062d8503097bea3fc13d61f19d06b) (2019-06-05)
1660
+
1661
+
1662
+ ### Changes
1663
+
1664
+ chore(titus): Bump version to 0.0.99 ([0e156c11](https://github.com/spinnaker/deck/commit/0e156c118ec062d8503097bea3fc13d61f19d06b))
1665
+ refactor(*): make accountExtractor return an array of strings [#7068](https://github.com/spinnaker/deck/pull/7068) ([8398d770](https://github.com/spinnaker/deck/commit/8398d7706951ce567c352e5f96351366103ef2e3))
1666
+ refactor(titus): Moving constraints from lists to maps [#7069](https://github.com/spinnaker/deck/pull/7069) ([008544f8](https://github.com/spinnaker/deck/commit/008544f8dc773fe6fe196e9f79d0b527d7baed5b))
1667
+
1668
+
1669
+
1670
+ ## [0.0.98](https://www.github.com/spinnaker/deck/compare/044410b9ca50aace1ffb779cafd0d639ae23325c...63e1f9e667ce46310503689511834d097d27aedd) (2019-05-28)
1671
+
1672
+
1673
+ ### Changes
1674
+
1675
+ Bump package core to 0.0.373 and docker to 0.0.41 and titus to 0.0.98 [#7066](https://github.com/spinnaker/deck/pull/7066) ([63e1f9e6](https://github.com/spinnaker/deck/commit/63e1f9e667ce46310503689511834d097d27aedd))
1676
+ refactor(core): allow checklist component to accept objects as a prop [#7058](https://github.com/spinnaker/deck/pull/7058) ([50f23fcc](https://github.com/spinnaker/deck/commit/50f23fcca731ebbc3bf9a25805223632ea8a3364))
1677
+ fix(docker): Fixed imageId parsing and digest support [#7053](https://github.com/spinnaker/deck/pull/7053) ([59259a91](https://github.com/spinnaker/deck/commit/59259a91cee44f88d2559b2728a889919a635853))
1678
+
1679
+
1680
+
1681
+ ## [0.0.97](https://www.github.com/spinnaker/deck/compare/1dce7cec0a00144ae283395b37ef53dcacc698f8...044410b9ca50aace1ffb779cafd0d639ae23325c) (2019-05-15)
1682
+
1683
+
1684
+ ### Changes
1685
+
1686
+ Bump package core to 0.0.366 and titus to 0.0.97 [#7001](https://github.com/spinnaker/deck/pull/7001) ([044410b9](https://github.com/spinnaker/deck/commit/044410b9ca50aace1ffb779cafd0d639ae23325c))
1687
+ feat(titus): Render run job output file as YAML [#6992](https://github.com/spinnaker/deck/pull/6992) ([4c06d10d](https://github.com/spinnaker/deck/commit/4c06d10d70bc53008aaeeee1ae7441c36bfcf485))
1688
+
1689
+
1690
+
1691
+ ## [0.0.96](https://www.github.com/spinnaker/deck/compare/ffde9061b77ae4dba6db89781a7228171fc2db3b...1dce7cec0a00144ae283395b37ef53dcacc698f8) (2019-05-09)
1692
+
1693
+
1694
+ ### Changes
1695
+
1696
+ Bump package core to 0.0.362 and titus to 0.0.96 [#6964](https://github.com/spinnaker/deck/pull/6964) ([1dce7cec](https://github.com/spinnaker/deck/commit/1dce7cec0a00144ae283395b37ef53dcacc698f8))
1697
+ fix(titus): consider platformHealthOnly flag when setting budget health [#6963](https://github.com/spinnaker/deck/pull/6963) ([cdd46e00](https://github.com/spinnaker/deck/commit/cdd46e00b217e2010aba1dbec9d956ed64cd9227))
1698
+
1699
+
1700
+
1701
+ ## [0.0.95](https://www.github.com/spinnaker/deck/compare/b2f3c8e9c1a7d364d0a490e5eae6ed45f57b136e...ffde9061b77ae4dba6db89781a7228171fc2db3b) (2019-05-08)
1702
+
1703
+
1704
+ ### Changes
1705
+
1706
+ Bump package core to 0.0.361 and titus to 0.0.95 [#6954](https://github.com/spinnaker/deck/pull/6954) ([ffde9061](https://github.com/spinnaker/deck/commit/ffde9061b77ae4dba6db89781a7228171fc2db3b))
1707
+ fix(titus): import TitusReactInjector from subdirectory [#6952](https://github.com/spinnaker/deck/pull/6952) ([bbcbd736](https://github.com/spinnaker/deck/commit/bbcbd7363b860f12f624a1a6b1f0b2c2d70f0050))
1708
+
1709
+
1710
+
1711
+ ## [0.0.94](https://www.github.com/spinnaker/deck/compare/dad6fbb17eb226ec14fb950b37affa6315d66f19...b2f3c8e9c1a7d364d0a490e5eae6ed45f57b136e) (2019-05-08)
1712
+
1713
+
1714
+ ### Changes
1715
+
1716
+ Bump package core to 0.0.360 and amazon to 0.0.188 and titus to 0.0.94 [#6951](https://github.com/spinnaker/deck/pull/6951) ([b2f3c8e9](https://github.com/spinnaker/deck/commit/b2f3c8e9c1a7d364d0a490e5eae6ed45f57b136e))
1717
+ feat(titus): allow editing of existing disruption budget [#6950](https://github.com/spinnaker/deck/pull/6950) ([016be9e2](https://github.com/spinnaker/deck/commit/016be9e269700ec78d5f809c60c6d43665183254))
1718
+ refactor(core): convert providerSelection modal to React [#6936](https://github.com/spinnaker/deck/pull/6936) ([67baf43a](https://github.com/spinnaker/deck/commit/67baf43add977faded5eabb1e01b454acbdd1bce))
1719
+
1720
+
1721
+
1722
+ ## [0.0.93](https://www.github.com/spinnaker/deck/compare/9b2d53c1182f3908ed026d46cd27adae8b5fec2b...dad6fbb17eb226ec14fb950b37affa6315d66f19) (2019-05-08)
1723
+
1724
+
1725
+ ### Changes
1726
+
1727
+ chore(titus): Bump version to 0.0.93 [#6946](https://github.com/spinnaker/deck/pull/6946) ([dad6fbb1](https://github.com/spinnaker/deck/commit/dad6fbb17eb226ec14fb950b37affa6315d66f19))
1728
+ feat(titus): show disruption duration in readable format [#6945](https://github.com/spinnaker/deck/pull/6945) ([607ba212](https://github.com/spinnaker/deck/commit/607ba2123336b69ee18df59af9c2ebb83bb37268))
1729
+
1730
+
1731
+
1732
+ ## [0.0.92](https://www.github.com/spinnaker/deck/compare/4b4a360875f1db097b9d24ca0fff0b297b215a9c...9b2d53c1182f3908ed026d46cd27adae8b5fec2b) (2019-05-07)
1733
+
1734
+
1735
+ ### Changes
1736
+
1737
+ Bump package core to 0.0.359 and titus to 0.0.92 [#6942](https://github.com/spinnaker/deck/pull/6942) ([9b2d53c1](https://github.com/spinnaker/deck/commit/9b2d53c1182f3908ed026d46cd27adae8b5fec2b))
1738
+ feat(titus): show disruption budget in job details panel [#6938](https://github.com/spinnaker/deck/pull/6938) ([a6b80f88](https://github.com/spinnaker/deck/commit/a6b80f88c68afe524647c1a87546ce857649b262))
1739
+ fix(titus): allow editing default policy options when toggling default [#6932](https://github.com/spinnaker/deck/pull/6932) ([9b53dea0](https://github.com/spinnaker/deck/commit/9b53dea0c01e30f98c3881de973dd489710cb451))
1740
+
1741
+
1742
+
1743
+ ## [0.0.91](https://www.github.com/spinnaker/deck/compare/34e61d784015d1bde63d7be5bcc3f7ef183dd909...4b4a360875f1db097b9d24ca0fff0b297b215a9c) (2019-05-06)
1744
+
1745
+
1746
+ ### Changes
1747
+
1748
+ Bump package core to 0.0.358 and titus to 0.0.91 [#6931](https://github.com/spinnaker/deck/pull/6931) ([4b4a3608](https://github.com/spinnaker/deck/commit/4b4a360875f1db097b9d24ca0fff0b297b215a9c))
1749
+ feat(titus): job disruption budget UI [#6925](https://github.com/spinnaker/deck/pull/6925) ([8a2667c4](https://github.com/spinnaker/deck/commit/8a2667c4b82199a63445223e5fc4e946dda9ce11))
1750
+
1751
+
1752
+
1753
+ ## [0.0.90](https://www.github.com/spinnaker/deck/compare/1c163bff483e2179b3c280c44d192a233d14b47f...34e61d784015d1bde63d7be5bcc3f7ef183dd909) (2019-04-30)
1754
+
1755
+
1756
+ ### Changes
1757
+
1758
+ chore(titus): Bump version to 0.0.90 [#6911](https://github.com/spinnaker/deck/pull/6911) ([34e61d78](https://github.com/spinnaker/deck/commit/34e61d784015d1bde63d7be5bcc3f7ef183dd909))
1759
+ refactor(titus): Allow customization of instance details [#6908](https://github.com/spinnaker/deck/pull/6908) ([d6d882cd](https://github.com/spinnaker/deck/commit/d6d882cd6049ce97e661197acefdcdfd9fa13cbd))
1760
+
1761
+
1762
+
1763
+ ## [0.0.89](https://www.github.com/spinnaker/deck/compare/792ccd4e1f87720dbcc3b0606785a1dae2afd022...1c163bff483e2179b3c280c44d192a233d14b47f) (2019-04-22)
1764
+
1765
+
1766
+ ### Changes
1767
+
1768
+ chore(titus): Bump version to 0.0.89 [#6873](https://github.com/spinnaker/deck/pull/6873) ([1c163bff](https://github.com/spinnaker/deck/commit/1c163bff483e2179b3c280c44d192a233d14b47f))
1769
+ fix(titus): correctly render JSON objects in run job details [#6872](https://github.com/spinnaker/deck/pull/6872) ([9a622f0e](https://github.com/spinnaker/deck/commit/9a622f0edea428a5582aa17ba8b42be1a454d4c9))
1770
+
1771
+
1772
+
1773
+ ## [0.0.88](https://www.github.com/spinnaker/deck/compare/2abfe4ff8e4d1ecd651a4d0e8267e6f1dcae62b2...792ccd4e1f87720dbcc3b0606785a1dae2afd022) (2019-04-18)
1774
+
1775
+
1776
+ ### Changes
1777
+
1778
+ Bump package core to 0.0.353 and titus to 0.0.88 [#6867](https://github.com/spinnaker/deck/pull/6867) ([792ccd4e](https://github.com/spinnaker/deck/commit/792ccd4e1f87720dbcc3b0606785a1dae2afd022))
1779
+ feat(titus): Include links appropriately from property file contents [#6730](https://github.com/spinnaker/deck/pull/6730) ([769ebf89](https://github.com/spinnaker/deck/commit/769ebf89c08948df63bf33de47c1b7883a0db5f9))
1780
+
1781
+
1782
+
1783
+ ## [0.0.87](https://www.github.com/spinnaker/deck/compare/300042078dcb0b85b9397cda3cd8432034d5babb...2abfe4ff8e4d1ecd651a4d0e8267e6f1dcae62b2) (2019-04-16)
1784
+
1785
+
1786
+ ### Changes
1787
+
1788
+ Bump package core to 0.0.351 and docker to 0.0.36 and amazon to 0.0.185 and titus to 0.0.87 [#6855](https://github.com/spinnaker/deck/pull/6855) ([2abfe4ff](https://github.com/spinnaker/deck/commit/2abfe4ff8e4d1ecd651a4d0e8267e6f1dcae62b2))
1789
+ fix(titus): send serverGroupName when terminating instances [#6854](https://github.com/spinnaker/deck/pull/6854) ([30556adf](https://github.com/spinnaker/deck/commit/30556adfe25ce3295d0d2cad30db0be18b785fea))
1790
+ fix(titus): correctly set dirty field on command viewstate [#6795](https://github.com/spinnaker/deck/pull/6795) ([6ddc4760](https://github.com/spinnaker/deck/commit/6ddc47602b701fce5890fe266429ddff38e8b0c3))
1791
+
1792
+
1793
+
1794
+ ## [0.0.86](https://www.github.com/spinnaker/deck/compare/80b52c2844bab427519aee9b34c4e2b030f3cf34...300042078dcb0b85b9397cda3cd8432034d5babb) (2019-04-01)
1795
+
1796
+
1797
+ ### Changes
1798
+
1799
+ Bump package amazon to 0.0.183 and titus to 0.0.86 [#6793](https://github.com/spinnaker/deck/pull/6793) ([30004207](https://github.com/spinnaker/deck/commit/300042078dcb0b85b9397cda3cd8432034d5babb))
1800
+ fix(amazon): allow deletion of scaling policies without alarms [#6779](https://github.com/spinnaker/deck/pull/6779) ([e96e7a92](https://github.com/spinnaker/deck/commit/e96e7a927c56540c998fd6d09134df8438978625))
1801
+
1802
+
1803
+
1804
+ ## [0.0.85](https://www.github.com/spinnaker/deck/compare/c370988879194b2b0bd5c492da08cf0cdf8ae706...80b52c2844bab427519aee9b34c4e2b030f3cf34) (2019-03-27)
1805
+
1806
+
1807
+ ### Changes
1808
+
1809
+ chore(titus): Bump version to 0.0.85 [#6771](https://github.com/spinnaker/deck/pull/6771) ([80b52c28](https://github.com/spinnaker/deck/commit/80b52c2844bab427519aee9b34c4e2b030f3cf34))
1810
+ fix(titus): send cloudProvider as a string to ConfigBinLink [#6770](https://github.com/spinnaker/deck/pull/6770) ([4b8e48dd](https://github.com/spinnaker/deck/commit/4b8e48dd65dc60e0cfbd11a2ee7567b6d58302e6))
1811
+
1812
+
1813
+
1814
+ ## [0.0.84](https://www.github.com/spinnaker/deck/compare/a8e04c22ac695ba24734704ce6fda2775e60eca0...c370988879194b2b0bd5c492da08cf0cdf8ae706) (2019-03-27)
1815
+
1816
+
1817
+ ### Changes
1818
+
1819
+ chore(titus): Bump version to 0.0.84 [#6769](https://github.com/spinnaker/deck/pull/6769) ([c3709888](https://github.com/spinnaker/deck/commit/c370988879194b2b0bd5c492da08cf0cdf8ae706))
1820
+ fix(titus): remove metricOptions field [#6768](https://github.com/spinnaker/deck/pull/6768) ([e6a305e7](https://github.com/spinnaker/deck/commit/e6a305e7c922f481f9cd14ddce6c14b707659ed3))
1821
+ refactor(titus): remove config bin code [#6767](https://github.com/spinnaker/deck/pull/6767) ([c64a8768](https://github.com/spinnaker/deck/commit/c64a876822532cd791d5672442df1fc419073a85))
1822
+
1823
+
1824
+
1825
+ ## [0.0.83](https://www.github.com/spinnaker/deck/compare/79c0d9e237ac6426e943cb2aade686de536b7416...a8e04c22ac695ba24734704ce6fda2775e60eca0) (2019-03-27)
1826
+
1827
+
1828
+ ### Changes
1829
+
1830
+ chore(titus): Bump version to 0.0.83 [#6763](https://github.com/spinnaker/deck/pull/6763) ([a8e04c22](https://github.com/spinnaker/deck/commit/a8e04c22ac695ba24734704ce6fda2775e60eca0))
1831
+ style(titus): tweak styles for config bin modal [#6762](https://github.com/spinnaker/deck/pull/6762) ([5474d627](https://github.com/spinnaker/deck/commit/5474d6278bb4762c73b138ff567ddbcb3df15ca5))
1832
+
1833
+
1834
+
1835
+ ## [0.0.82](https://www.github.com/spinnaker/deck/compare/b85bd3ef21ea12ce882f28962ae1f4fb23d37597...79c0d9e237ac6426e943cb2aade686de536b7416) (2019-03-27)
1836
+
1837
+
1838
+ ### Changes
1839
+
1840
+ chore(titus): Bump version to 0.0.82 [#6760](https://github.com/spinnaker/deck/pull/6760) ([79c0d9e2](https://github.com/spinnaker/deck/commit/79c0d9e237ac6426e943cb2aade686de536b7416))
1841
+ refactor(titus): export more config bin stuff [#6759](https://github.com/spinnaker/deck/pull/6759) ([fb6eeb4f](https://github.com/spinnaker/deck/commit/fb6eeb4f2b4c10fc6aeabba25eaa4ffb21ceece0))
1842
+
1843
+
1844
+
1845
+ ## [0.0.81](https://www.github.com/spinnaker/deck/compare/33986e01c7902243e71e6cffc722df4d995f9833...b85bd3ef21ea12ce882f28962ae1f4fb23d37597) (2019-03-27)
1846
+
1847
+
1848
+ ### Changes
1849
+
1850
+ Bump package core to 0.0.346 and amazon to 0.0.182 and titus to 0.0.81 [#6758](https://github.com/spinnaker/deck/pull/6758) ([b85bd3ef](https://github.com/spinnaker/deck/commit/b85bd3ef21ea12ce882f28962ae1f4fb23d37597))
1851
+ refactor(titus): generalize ConfigBin and export it [#6757](https://github.com/spinnaker/deck/pull/6757) ([f32aa230](https://github.com/spinnaker/deck/commit/f32aa23030642d8e403d731038eb60c97915c1d9))
1852
+
1853
+
1854
+
1855
+ ## [0.0.80](https://www.github.com/spinnaker/deck/compare/1deafa4550bb0e1d5f01c45af924be0de3f46186...33986e01c7902243e71e6cffc722df4d995f9833) (2019-03-20)
1856
+
1857
+
1858
+ ### Changes
1859
+
1860
+ Bump package core to 0.0.345 and amazon to 0.0.181 and titus to 0.0.80 [#6726](https://github.com/spinnaker/deck/pull/6726) ([33986e01](https://github.com/spinnaker/deck/commit/33986e01c7902243e71e6cffc722df4d995f9833))
1861
+ fix(titus): use arrow function to avoid bad this binding in callback [#6724](https://github.com/spinnaker/deck/pull/6724) ([33d674db](https://github.com/spinnaker/deck/commit/33d674db07fa82c3880a9eb46560c5d6c492b9a8))
1862
+ feat(titus): Surface env and resources for runjob stage [#6697](https://github.com/spinnaker/deck/pull/6697) ([8a6cdfc1](https://github.com/spinnaker/deck/commit/8a6cdfc1ff8e10d5c0604047cd06d15febccc60a))
1863
+ 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))
1864
+
1865
+
1866
+
1867
+ ## [0.0.79](https://www.github.com/spinnaker/deck/compare/a9877861b97a784631d2ecbd0c84d57d207cfd76...1deafa4550bb0e1d5f01c45af924be0de3f46186) (2019-03-12)
1868
+
1869
+
1870
+ ### Changes
1871
+
1872
+ Bump package core to 0.0.343 and amazon to 0.0.179 and titus to 0.0.79 [#6672](https://github.com/spinnaker/deck/pull/6672) ([1deafa45](https://github.com/spinnaker/deck/commit/1deafa4550bb0e1d5f01c45af924be0de3f46186))
1873
+ refactor(*): remove unused local storage caches [#6665](https://github.com/spinnaker/deck/pull/6665) ([e2b4d8e9](https://github.com/spinnaker/deck/commit/e2b4d8e9371d5d2f1f9b60e2a592e10b47df73e2))
1874
+
1875
+
1876
+
1877
+ ## [0.0.78](https://www.github.com/spinnaker/deck/compare/28301107f3de0a574b7030bfd3cf442c7061b2e2...a9877861b97a784631d2ecbd0c84d57d207cfd76) (2019-02-25)
1878
+
1879
+
1880
+ ### Changes
1881
+
1882
+ Bump package core to 0.0.340 and titus to 0.0.78 [#6620](https://github.com/spinnaker/deck/pull/6620) ([a9877861](https://github.com/spinnaker/deck/commit/a9877861b97a784631d2ecbd0c84d57d207cfd76))
1883
+ feat(titus): Reordering properties file contents based on length [#6617](https://github.com/spinnaker/deck/pull/6617) ([67d6ecce](https://github.com/spinnaker/deck/commit/67d6ecce60b4ae426beed8127f37dd7cd8323588))
1884
+
1885
+
1886
+
1887
+ ## [0.0.77](https://www.github.com/spinnaker/deck/compare/7aee95b05829b848f34dd0bc38ad8d4f13342953...28301107f3de0a574b7030bfd3cf442c7061b2e2) (2019-02-25)
1888
+
1889
+
1890
+ ### Changes
1891
+
1892
+ Bump package core to 0.0.339 and amazon to 0.0.177 and titus to 0.0.77 [#6615](https://github.com/spinnaker/deck/pull/6615) ([28301107](https://github.com/spinnaker/deck/commit/28301107f3de0a574b7030bfd3cf442c7061b2e2))
1893
+ fix(titus): Help users with iam profile setting [#6552](https://github.com/spinnaker/deck/pull/6552) ([5e77299d](https://github.com/spinnaker/deck/commit/5e77299dd68ded99c20a7e01f13bb4146c11c8c7))
1894
+
1895
+
1896
+
1897
+ ## [0.0.76](https://www.github.com/spinnaker/deck/compare/2b2ccff259cedc559b6aad5e0cc16f072a551a8a...7aee95b05829b848f34dd0bc38ad8d4f13342953) (2019-02-21)
1898
+
1899
+
1900
+ ### Changes
1901
+
1902
+ chore(titus): Bump version to 0.0.76 ([7aee95b0](https://github.com/spinnaker/deck/commit/7aee95b05829b848f34dd0bc38ad8d4f13342953))
1903
+ chore(prettier): Just Use Prettier™ [#6600](https://github.com/spinnaker/deck/pull/6600) ([7d5fc346](https://github.com/spinnaker/deck/commit/7d5fc346bca54c5d53f9eb46d823cd993c102058))
1904
+ fix(html): Fix various invalid HTML [#6599](https://github.com/spinnaker/deck/pull/6599) ([04bb4a01](https://github.com/spinnaker/deck/commit/04bb4a01c2d988aab5b5b8ae6e3aadbc59214898))
1905
+ chore(prettier): Just Use Prettier™ ([5cf6c79d](https://github.com/spinnaker/deck/commit/5cf6c79da63404bb7238291d38bb7f5cfd10c26b))
1906
+ chore(angularjs): Do not use .component('foo', new Foo()) ([3ffa4fb7](https://github.com/spinnaker/deck/commit/3ffa4fb7498df815014d61071e8588f0b34bf8b9))
1907
+
1908
+
1909
+
1910
+ ## [0.0.75](https://www.github.com/spinnaker/deck/compare/3470a3a339cd5299835ab774e26e0e5f753ee7bb...2b2ccff259cedc559b6aad5e0cc16f072a551a8a) (2019-02-21)
1911
+
1912
+
1913
+ ### Changes
1914
+
1915
+ Bump package core to 0.0.337 and docker to 0.0.34 and amazon to 0.0.175 and titus to 0.0.75 [#6593](https://github.com/spinnaker/deck/pull/6593) ([2b2ccff2](https://github.com/spinnaker/deck/commit/2b2ccff259cedc559b6aad5e0cc16f072a551a8a))
1916
+ chore(angularjs): Remove all 'ngInject'; in favor of explicit DI annotation ([cc52bee0](https://github.com/spinnaker/deck/commit/cc52bee0b9956693f948806322658f225efa5546))
1917
+ chore(prettier): Just Use Prettier™ ([b6bab1e1](https://github.com/spinnaker/deck/commit/b6bab1e16bb46697fec347cd30934f00fb2e9807))
1918
+ chore(angularjs): Explicitly annotate all AngularJS injection points ([f3fd790e](https://github.com/spinnaker/deck/commit/f3fd790e20a4c3056edcb2c41282517e1cf35004))
1919
+ fix(eslint): Fix eslint warnings for @typescript-eslint/ban-types ([aa4e8df6](https://github.com/spinnaker/deck/commit/aa4e8df647185b5aa1338c4da2871dbe74fbab40))
1920
+ fix(eslint): Fix eslint warnings for no-useless-escape ([ddbe2082](https://github.com/spinnaker/deck/commit/ddbe208282f96c73239a32bddd4af6f9d098b088))
1921
+
1922
+
1923
+
1924
+ ## [0.0.74](https://www.github.com/spinnaker/deck/compare/6cd6042fabc17724911ca4797727a6638d8609ad...3470a3a339cd5299835ab774e26e0e5f753ee7bb) (2019-02-14)
1925
+
1926
+
1927
+ ### Changes
1928
+
1929
+ Bump package core to 0.0.331 and amazon to 0.0.171 and titus to 0.0.74 [#6551](https://github.com/spinnaker/deck/pull/6551) ([3470a3a3](https://github.com/spinnaker/deck/commit/3470a3a339cd5299835ab774e26e0e5f753ee7bb))
1930
+ refactor(core): de-angularize UrlBuilder [#6541](https://github.com/spinnaker/deck/pull/6541) ([eb0374c4](https://github.com/spinnaker/deck/commit/eb0374c47e5b0fef21507462c540bdd4db632201))
1931
+ chore(package): Just Update Prettier™ ([a8c17492](https://github.com/spinnaker/deck/commit/a8c174925f64045f70c11b2bfc11fe1fdd558660))
1932
+
1933
+
1934
+
1935
+ ## [0.0.73](https://www.github.com/spinnaker/deck/compare/696f946b9539fa35662f2cf9de5e4ce0e4c9223a...6cd6042fabc17724911ca4797727a6638d8609ad) (2019-02-07)
1936
+
1937
+
1938
+ ### Changes
1939
+
1940
+ Bump package core to 0.0.328 and docker to 0.0.33 and amazon to 0.0.167 and titus to 0.0.73 [#6507](https://github.com/spinnaker/deck/pull/6507) ([6cd6042f](https://github.com/spinnaker/deck/commit/6cd6042fabc17724911ca4797727a6638d8609ad))
1941
+ fix(titus): do not call setState on wizard validation [#6506](https://github.com/spinnaker/deck/pull/6506) ([226c2d22](https://github.com/spinnaker/deck/commit/226c2d224fd94d7408a3bde6b04fe659b2b25ef4))
1942
+ chore(webpack): Switch to TerserPlugin. Split bundles into ~5mb chunks ([a35088ab](https://github.com/spinnaker/deck/commit/a35088ab28cc3b25c9e6731f6fb70bf7d0e14ef0))
1943
+
1944
+
1945
+
1946
+ ## [0.0.72](https://www.github.com/spinnaker/deck/compare/60f4f345d5b4c3f1fb9ec1ae013f3a6cc48e0297...696f946b9539fa35662f2cf9de5e4ce0e4c9223a) (2019-02-06)
1947
+
1948
+
1949
+ ### Changes
1950
+
1951
+ chore(titus): Bump version to 0.0.72 [#6496](https://github.com/spinnaker/deck/pull/6496) ([696f946b](https://github.com/spinnaker/deck/commit/696f946b9539fa35662f2cf9de5e4ce0e4c9223a))
1952
+ fix(titus): Make iamProfile a required field in run job stage [#6487](https://github.com/spinnaker/deck/pull/6487) ([7848f7aa](https://github.com/spinnaker/deck/commit/7848f7aa6e3a71335caebbd6aa7eece2746a1285))
1953
+
1954
+
1955
+
1956
+ ## [0.0.71](https://www.github.com/spinnaker/deck/compare/a93921f920b6c963306cf93e946045cd925be772...60f4f345d5b4c3f1fb9ec1ae013f3a6cc48e0297) (2019-02-05)
1957
+
1958
+
1959
+ ### Changes
1960
+
1961
+ Bump package core to 0.0.325 and docker to 0.0.32 and amazon to 0.0.165 and titus to 0.0.71 [#6491](https://github.com/spinnaker/deck/pull/6491) ([60f4f345](https://github.com/spinnaker/deck/commit/60f4f345d5b4c3f1fb9ec1ae013f3a6cc48e0297))
1962
+ chore(typescript): Switch module from 'commonjs' to 'esnext' to emit raw dynamic 'import()' ([5c49dd2a](https://github.com/spinnaker/deck/commit/5c49dd2ab3c4226295a7e8041c25dabdbeee6a2c))
1963
+
1964
+
1965
+
1966
+ ## [0.0.70](https://www.github.com/spinnaker/deck/compare/a74ab2970bd97809d5a5310934aa6fb4b704aaa6...a93921f920b6c963306cf93e946045cd925be772) (2019-02-04)
1967
+
1968
+
1969
+ ### Changes
1970
+
1971
+ Bump package core to 0.0.324 and amazon to 0.0.163 and titus to 0.0.70 [#6482](https://github.com/spinnaker/deck/pull/6482) ([a93921f9](https://github.com/spinnaker/deck/commit/a93921f920b6c963306cf93e946045cd925be772))
1972
+ fix(titus): use variable for account on configbin scaling metrics [#6481](https://github.com/spinnaker/deck/pull/6481) ([5971752f](https://github.com/spinnaker/deck/commit/5971752f85ce66d2ed3d7f439e9a2460e45318ff))
1973
+ chore(package): Add .npmignore to all packages ([0451046c](https://github.com/spinnaker/deck/commit/0451046c241b450ae4b05df0b67b61758c16acce))
1974
+
1975
+
1976
+
1977
+ ## [0.0.69](https://www.github.com/spinnaker/deck/compare/1bd15760e11260a5c05c555251951e696600f0f9...a74ab2970bd97809d5a5310934aa6fb4b704aaa6) (2019-02-02)
1978
+
1979
+
1980
+ ### Changes
1981
+
1982
+ Bump package core to 0.0.323 and amazon to 0.0.162 and titus to 0.0.69 [#6475](https://github.com/spinnaker/deck/pull/6475) ([a74ab297](https://github.com/spinnaker/deck/commit/a74ab2970bd97809d5a5310934aa6fb4b704aaa6))
1983
+ refactor(titus/modal): Refactor titus modals to use WizardPage component ([1f972158](https://github.com/spinnaker/deck/commit/1f972158ca0e1dd5bd078f37edea511a125510ad))
1984
+
1985
+
1986
+
1987
+ ## [0.0.68](https://www.github.com/spinnaker/deck/compare/441212cdcdd45cc0f5e163d90502029f0fb09cb7...1bd15760e11260a5c05c555251951e696600f0f9) (2019-01-27)
1988
+
1989
+
1990
+ ### Changes
1991
+
1992
+ Bump package core to 0.0.319 and docker to 0.0.31 and amazon to 0.0.159 and titus to 0.0.68 [#6436](https://github.com/spinnaker/deck/pull/6436) ([1bd15760](https://github.com/spinnaker/deck/commit/1bd15760e11260a5c05c555251951e696600f0f9))
1993
+ refactor(*): Don't use js or ts file extension in require() ([35be1f08](https://github.com/spinnaker/deck/commit/35be1f0872f5958514c920ee97510d36484e33eb))
1994
+
1995
+
1996
+
1997
+ ## [0.0.67](https://www.github.com/spinnaker/deck/compare/478936eb234c71dbd94a1fa69a148945b69b283e...441212cdcdd45cc0f5e163d90502029f0fb09cb7) (2019-01-15)
1998
+
1999
+
2000
+ ### Changes
2001
+
2002
+ chore(titus): Bump version to 0.0.67 [#6378](https://github.com/spinnaker/deck/pull/6378) ([441212cd](https://github.com/spinnaker/deck/commit/441212cdcdd45cc0f5e163d90502029f0fb09cb7))
2003
+ feat(titus/runJob): Add support for env attrs and container attrs [#6377](https://github.com/spinnaker/deck/pull/6377) ([6a1bc8de](https://github.com/spinnaker/deck/commit/6a1bc8de468163c4a4cdbaf9fa25b9af26356e97))
2004
+ feat(aws/titus): warn on scaling policy creation if min/max are identical [#6366](https://github.com/spinnaker/deck/pull/6366) ([a931df26](https://github.com/spinnaker/deck/commit/a931df26ef2e371a0630e6c2cd2661f07d9d9629))
2005
+
2006
+
2007
+
2008
+ ## [0.0.66](https://www.github.com/spinnaker/deck/compare/672e4d3f4f21de6ea13354a030dd9ba71a18900a...478936eb234c71dbd94a1fa69a148945b69b283e) (2019-01-10)
2009
+
2010
+
2011
+ ### Changes
2012
+
2013
+ Bump package core to 0.0.309 and docker to 0.0.29 and amazon to 0.0.150 and titus to 0.0.66 [#6343](https://github.com/spinnaker/deck/pull/6343) ([478936eb](https://github.com/spinnaker/deck/commit/478936eb234c71dbd94a1fa69a148945b69b283e))
2014
+ fix(*): allow modal to stay open on auto-close [#6329](https://github.com/spinnaker/deck/pull/6329) ([e802c451](https://github.com/spinnaker/deck/commit/e802c4515726e74f0f2157bde292fc43a6b46271))
2015
+
2016
+
2017
+
2018
+ ## [0.0.65](https://www.github.com/spinnaker/deck/compare/e2e18e6b0c94416ba11ddf49a75e8373d7228983...672e4d3f4f21de6ea13354a030dd9ba71a18900a) (2019-01-07)
2019
+
2020
+
2021
+ ### Changes
2022
+
2023
+ Bump package core to 0.0.305 and amazon to 0.0.148 and titus to 0.0.65 [#6315](https://github.com/spinnaker/deck/pull/6315) ([672e4d3f](https://github.com/spinnaker/deck/commit/672e4d3f4f21de6ea13354a030dd9ba71a18900a))
2024
+ 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))
2025
+
2026
+
2027
+
2028
+ ## [0.0.64](https://www.github.com/spinnaker/deck/compare/ef53374ede07cb5bc83837ca3e1938db0d7ff193...e2e18e6b0c94416ba11ddf49a75e8373d7228983) (2018-12-12)
2029
+
2030
+
2031
+ ### Changes
2032
+
2033
+ Package bump [#6183](https://github.com/spinnaker/deck/pull/6183) ([e2e18e6b](https://github.com/spinnaker/deck/commit/e2e18e6b0c94416ba11ddf49a75e8373d7228983))
2034
+ fix(titus): Simplify image id validation ([5f94c175](https://github.com/spinnaker/deck/commit/5f94c175fe50b1c18acf16fbf6b16678220e4f82))
2035
+
2036
+
2037
+
2038
+ ## [0.0.63](https://www.github.com/spinnaker/deck/compare/dfd67288664f18e8eb334f3f48efcc2e63725103...ef53374ede07cb5bc83837ca3e1938db0d7ff193) (2018-12-07)
2039
+
2040
+
2041
+ ### Changes
2042
+
2043
+ chore(titus): Bump version to 0.0.63 ([ef53374e](https://github.com/spinnaker/deck/commit/ef53374ede07cb5bc83837ca3e1938db0d7ff193))
2044
+ refactor(core/account): Refactor AccountSelectInput to use 'value' prop ([307da1b9](https://github.com/spinnaker/deck/commit/307da1b93fb7a77364f51a2f7ea49652a20bb2d7))
2045
+ refactor(core/account): rename AccountSelectField to AccountSelectInput ([6f7f5435](https://github.com/spinnaker/deck/commit/6f7f543508176aee9eeb5ae40dea2bf03aa6a9ca))
2046
+ chore(*): Add core alias to module tsconfigs ([6b8188bb](https://github.com/spinnaker/deck/commit/6b8188bb54ea2e70987841079a8aff7debd8bd66))
2047
+
2048
+
2049
+
2050
+ ## [0.0.62](https://www.github.com/spinnaker/deck/compare/2f34c93b70fbf151c50f7e23c61be127bd07ef77...dfd67288664f18e8eb334f3f48efcc2e63725103) (2018-12-03)
2051
+
2052
+
2053
+ ### Changes
2054
+
2055
+ Package bump [#6130](https://github.com/spinnaker/deck/pull/6130) ([dfd67288](https://github.com/spinnaker/deck/commit/dfd67288664f18e8eb334f3f48efcc2e63725103))
2056
+ fix(titus): display security groups in details when firewalls feature is disabled [#6103](https://github.com/spinnaker/deck/pull/6103) ([0fb7f3ff](https://github.com/spinnaker/deck/commit/0fb7f3ffc846047e984219b39ff5c5813013cb4a))
2057
+
2058
+
2059
+
2060
+ ## [0.0.61](https://www.github.com/spinnaker/deck/compare/afe47c65f7a51873cfcc2d19b9f693aeaa7e1730...2f34c93b70fbf151c50f7e23c61be127bd07ef77) (2018-11-13)
2061
+
2062
+
2063
+ ### Changes
2064
+
2065
+ chore(titus): Bump version to 0.0.61 ([2f34c93b](https://github.com/spinnaker/deck/commit/2f34c93b70fbf151c50f7e23c61be127bd07ef77))
2066
+
2067
+
2068
+
2069
+ ## [0.0.60](https://www.github.com/spinnaker/deck/compare/a29d6f3f93af90e36db2d04a7a89418cd08b5f7a...afe47c65f7a51873cfcc2d19b9f693aeaa7e1730) (2018-11-13)
2070
+
2071
+
2072
+ ### Changes
2073
+
2074
+ Package bump [#6026](https://github.com/spinnaker/deck/pull/6026) ([afe47c65](https://github.com/spinnaker/deck/commit/afe47c65f7a51873cfcc2d19b9f693aeaa7e1730))
2075
+ feat(titus): Show capacity group is run job advanced options [#6030](https://github.com/spinnaker/deck/pull/6030) ([2434be2b](https://github.com/spinnaker/deck/commit/2434be2b4ea0ba9cef9a5b6aa5771a79af803b7d))
2076
+ refactor(amazon): convert resize modal to react [#6013](https://github.com/spinnaker/deck/pull/6013) ([b6151455](https://github.com/spinnaker/deck/commit/b6151455434bdcf9283dae58d703606dd2991916))
2077
+ fix(amazon+titus/serverGroup): Revert custom sort logic no longer needed with react-select ([a53d5d88](https://github.com/spinnaker/deck/commit/a53d5d8823af7eac991ec6d257431f6930cd28d1))
2078
+
2079
+
2080
+
2081
+ ## [0.0.57](https://www.github.com/spinnaker/deck/compare/91beff346f39f0fa05e8e91c655c81650dd1026c...a29d6f3f93af90e36db2d04a7a89418cd08b5f7a) (2018-11-09)
2082
+
2083
+
2084
+ ### Changes
2085
+
2086
+ chore(titus): Bump version to 0.0.57 ([a29d6f3f](https://github.com/spinnaker/deck/commit/a29d6f3f93af90e36db2d04a7a89418cd08b5f7a))
2087
+ feat(titus): Support digest in run job stage ([74e0f665](https://github.com/spinnaker/deck/commit/74e0f665b4f7d0441ed45939c1bafb7d634424f5))
2088
+ refactor(docker): Consolidate and clean up image selector functions ([cbed7ae4](https://github.com/spinnaker/deck/commit/cbed7ae465b113f0a70f79f24afe2e58581db9b8))
2089
+
2090
+
2091
+
2092
+ ## [0.0.56](https://www.github.com/spinnaker/deck/compare/054c156f34fc30581763a1aa4f024640e9462966...91beff346f39f0fa05e8e91c655c81650dd1026c) (2018-11-01)
2093
+
2094
+
2095
+ ### Changes
2096
+
2097
+ chore(titus): Bump version to 0.0.56 ([91beff34](https://github.com/spinnaker/deck/commit/91beff346f39f0fa05e8e91c655c81650dd1026c))
2098
+ refactor(core): Convert DeploymentStrategySelector to react ([79587138](https://github.com/spinnaker/deck/commit/795871386c51f7c5b21bac4a3d2806853759ffe7))
2099
+
2100
+
2101
+
2102
+ ## [0.0.55](https://www.github.com/spinnaker/deck/compare/21bd3d49447de05ef6e981e8459a5fed117a104b...054c156f34fc30581763a1aa4f024640e9462966) (2018-10-31)
2103
+
2104
+
2105
+ ### Changes
2106
+
2107
+ chore(titus): Bump version to 0.0.55 ([054c156f](https://github.com/spinnaker/deck/commit/054c156f34fc30581763a1aa4f024640e9462966))
2108
+ 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))
2109
+
2110
+
2111
+
2112
+ ## [0.0.54](https://www.github.com/spinnaker/deck/compare/66a46aa683cc67c2f61a0710bff18c0075674355...21bd3d49447de05ef6e981e8459a5fed117a104b) (2018-10-22)
2113
+
2114
+
2115
+ ### Changes
2116
+
2117
+ chore(titus): bump to 54 ([21bd3d49](https://github.com/spinnaker/deck/commit/21bd3d49447de05ef6e981e8459a5fed117a104b))
2118
+ 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))
2119
+ feat(rollback): Support wait before disable during an orchestrated rollback [#5851](https://github.com/spinnaker/deck/pull/5851) ([28bb7583](https://github.com/spinnaker/deck/commit/28bb75830d56d62b54884fc8ce8426f82dbeda78))
2120
+
2121
+
2122
+
2123
+ ## [0.0.53](https://www.github.com/spinnaker/deck/compare/f3a26517bc7cd3b8c30fe058d90d1b8349113477...66a46aa683cc67c2f61a0710bff18c0075674355) (2018-10-10)
2124
+
2125
+
2126
+ ### Changes
2127
+
2128
+ chore(titus): Bump to 0.0.53 [#5842](https://github.com/spinnaker/deck/pull/5842) ([66a46aa6](https://github.com/spinnaker/deck/commit/66a46aa683cc67c2f61a0710bff18c0075674355))
2129
+ fix(titus/deploy): Support extra characters in detail field ([f98c3b0c](https://github.com/spinnaker/deck/commit/f98c3b0cc2908986fa1c4191efcf218ae0ef471d))
2130
+
2131
+
2132
+
2133
+ ## [0.0.52](https://www.github.com/spinnaker/deck/compare/c12629b67ee569c8fca2750490bc81d6a59ca8b9...f3a26517bc7cd3b8c30fe058d90d1b8349113477) (2018-10-05)
2134
+
2135
+
2136
+ ### Changes
2137
+
2138
+ chore(titus): Bump to 0.0.52 ([f3a26517](https://github.com/spinnaker/deck/commit/f3a26517bc7cd3b8c30fe058d90d1b8349113477))
2139
+ fix(titus/deploy): Account selector set both account and credentials ([c091782a](https://github.com/spinnaker/deck/commit/c091782a78dcea33143cb6a989f2ed55b77ea56b))
2140
+
2141
+
2142
+
2143
+ ## [0.0.51](https://www.github.com/spinnaker/deck/compare/a275b78fdadbd8327ee313f634fe48455029f6eb...c12629b67ee569c8fca2750490bc81d6a59ca8b9) (2018-10-04)
2144
+
2145
+
2146
+ ### Changes
2147
+
2148
+ chore(titus): Bump to 0.0.51 ([c12629b6](https://github.com/spinnaker/deck/commit/c12629b67ee569c8fca2750490bc81d6a59ca8b9))
2149
+ fix(titus/runJob): Fix account selector from incorrectly changing account ([d3d46100](https://github.com/spinnaker/deck/commit/d3d46100329dd3a2ac318f77c1fb5d46fba3c048))
2150
+ fix(titus/deploy): Fix changing repository and tag affecting imageid ([83207cb8](https://github.com/spinnaker/deck/commit/83207cb8bad4bd25a88dea987a173fbba497a36e))
2151
+
2152
+
2153
+
2154
+ ## [0.0.49](https://www.github.com/spinnaker/deck/compare/063dae98f1bbfb70412c3e0ecaf0b87fa855b95b...a275b78fdadbd8327ee313f634fe48455029f6eb) (2018-10-03)
2155
+
2156
+
2157
+ ### Changes
2158
+
2159
+ chore(titus): bump to 0.0.49 [#5823](https://github.com/spinnaker/deck/pull/5823) ([a275b78f](https://github.com/spinnaker/deck/commit/a275b78fdadbd8327ee313f634fe48455029f6eb))
2160
+ fix(titus/deploy): fix parameterized imageId fix [#5822](https://github.com/spinnaker/deck/pull/5822) ([203a441d](https://github.com/spinnaker/deck/commit/203a441dc7e0c867a7f2bbf4334c3a13244a54af))
2161
+
2162
+
2163
+
2164
+ ## [0.0.48](https://www.github.com/spinnaker/deck/compare/4db7d38dca96330cfd54299d2f01466538d16d40...063dae98f1bbfb70412c3e0ecaf0b87fa855b95b) (2018-10-02)
2165
+
2166
+
2167
+ ### Changes
2168
+
2169
+ chore(titus): Bump to 0.0.48 ([063dae98](https://github.com/spinnaker/deck/commit/063dae98f1bbfb70412c3e0ecaf0b87fa855b95b))
2170
+ fix(titus/deploy): Preserve parameterized imageId ([01945e52](https://github.com/spinnaker/deck/commit/01945e52a89cc8c3309360cb3a60308dad52a2a5))
2171
+
2172
+
2173
+
2174
+ ## [0.0.47](https://www.github.com/spinnaker/deck/compare/64fd880b9298f52d818660fb2dab22ac243c2392...4db7d38dca96330cfd54299d2f01466538d16d40) (2018-10-02)
2175
+
2176
+
2177
+ ### Changes
2178
+
2179
+ chore(titus): Bump to 0.0.47 ([4db7d38d](https://github.com/spinnaker/deck/commit/4db7d38dca96330cfd54299d2f01466538d16d40))
2180
+ fix(titus/deploy): Firewall selector did not refresh on account change ([80db6ef4](https://github.com/spinnaker/deck/commit/80db6ef44f7e550e82e4212afc649b3c2edcf378))
2181
+
2182
+
2183
+
2184
+ ## [0.0.46](https://www.github.com/spinnaker/deck/compare/1536a70851d36e48dc41589dbf966f72b6fa2795...64fd880b9298f52d818660fb2dab22ac243c2392) (2018-10-02)
2185
+
2186
+
2187
+ ### Changes
2188
+
2189
+ chore(titus): Bump to 0.0.46 ([64fd880b](https://github.com/spinnaker/deck/commit/64fd880b9298f52d818660fb2dab22ac243c2392))
2190
+ fix(titus/runJob): Set defaults earlier in lifecycle ([c7de212b](https://github.com/spinnaker/deck/commit/c7de212b653482765d45cd93d7effa61094e57f9))
2191
+
2192
+
2193
+
2194
+ ## [0.0.45](https://www.github.com/spinnaker/deck/compare/07ff0d1b4f47570eecdd27e0b96c2bce26fde416...1536a70851d36e48dc41589dbf966f72b6fa2795) (2018-10-01)
2195
+
2196
+
2197
+ ### Changes
2198
+
2199
+ chore(titus): Bump to 0.0.45 ([1536a708](https://github.com/spinnaker/deck/commit/1536a70851d36e48dc41589dbf966f72b6fa2795))
2200
+ refactor(titus/runJob): Convert run job stage config to react ([4cfd9bf5](https://github.com/spinnaker/deck/commit/4cfd9bf56a733fe94b325111b18fe246461ba39a))
2201
+
2202
+
2203
+
2204
+ ## [0.0.44](https://www.github.com/spinnaker/deck/compare/278e2f8f3f73e9b1fe9417c0bbf4e22238ba6fa2...07ff0d1b4f47570eecdd27e0b96c2bce26fde416) (2018-10-01)
2205
+
2206
+
2207
+ ### Changes
2208
+
2209
+ chore(titus): Bump to 0.0.44 ([07ff0d1b](https://github.com/spinnaker/deck/commit/07ff0d1b4f47570eecdd27e0b96c2bce26fde416))
2210
+ chore(package): prepare -> prepublishOnly for everything [#5806](https://github.com/spinnaker/deck/pull/5806) ([06f45b5c](https://github.com/spinnaker/deck/commit/06f45b5c0da71227e4f1d7bb9e7187e95231f4d2))
2211
+ fix(titus/runJob): Fix log link to not go to archived [#5809](https://github.com/spinnaker/deck/pull/5809) ([fc60b2d5](https://github.com/spinnaker/deck/commit/fc60b2d513b5448f78b60346d7b4722516ce3802))
2212
+ refactor(core/modal): Improve wizardPage types so no type param is necessary ([8aff36a9](https://github.com/spinnaker/deck/commit/8aff36a9582b775a8e1dc2344938ecf1e22f85be))
2213
+
2214
+
2215
+
2216
+ ## [0.0.43](https://www.github.com/spinnaker/deck/compare/3adbf368d6e15e063280c6a684623a43857f9f1b...278e2f8f3f73e9b1fe9417c0bbf4e22238ba6fa2) (2018-09-27)
2217
+
2218
+
2219
+ ### Changes
2220
+
2221
+ chore(titus): Bump to 0.0.43 ([278e2f8f](https://github.com/spinnaker/deck/commit/278e2f8f3f73e9b1fe9417c0bbf4e22238ba6fa2))
2222
+ fix(titus/deploy): Disable image selection for titus deploy stage [#5796](https://github.com/spinnaker/deck/pull/5796) ([134861a0](https://github.com/spinnaker/deck/commit/134861a0ea308d30352c35331e68565acfcd8ca5))
2223
+
2224
+
2225
+
2226
+ ## [0.0.42](https://www.github.com/spinnaker/deck/compare/593925769b08e5a2fd52670811d6d75374952b79...3adbf368d6e15e063280c6a684623a43857f9f1b) (2018-09-26)
2227
+
2228
+
2229
+ ### Changes
2230
+
2231
+ chore(titus): bump to 0.0.42 [#5792](https://github.com/spinnaker/deck/pull/5792) ([3adbf368](https://github.com/spinnaker/deck/commit/3adbf368d6e15e063280c6a684623a43857f9f1b))
2232
+ fix(titus/serverGroup): Do not send undefined tag to Docker Tag Selector [#5790](https://github.com/spinnaker/deck/pull/5790) ([ce209217](https://github.com/spinnaker/deck/commit/ce20921780117101b82466cad765490885675db1))
2233
+
2234
+
2235
+
2236
+ ## [0.0.41](https://www.github.com/spinnaker/deck/compare/24ead63c21ce85576afd228d392161af374f6bf5...593925769b08e5a2fd52670811d6d75374952b79) (2018-09-26)
2237
+
2238
+
2239
+ ### Changes
2240
+
2241
+ chore(titus): Bump to 0.0.41 ([59392576](https://github.com/spinnaker/deck/commit/593925769b08e5a2fd52670811d6d75374952b79))
2242
+ refactor(core/modal): Refactor remaining Wizard Pages to use prop instead of spreading. [#5784](https://github.com/spinnaker/deck/pull/5784) ([ae1c7099](https://github.com/spinnaker/deck/commit/ae1c7099b7e18b85741b682adefc23a4f52fab94))
2243
+
2244
+
2245
+
2246
+ ## [0.0.40](https://www.github.com/spinnaker/deck/compare/ab8cf06aef38c7875ef3d91a575d74e7fa4248d9...24ead63c21ce85576afd228d392161af374f6bf5) (2018-09-25)
2247
+
2248
+
2249
+ ### Changes
2250
+
2251
+ fix(titus/runJob): Fix firewall selector [#5781](https://github.com/spinnaker/deck/pull/5781) ([24ead63c](https://github.com/spinnaker/deck/commit/24ead63c21ce85576afd228d392161af374f6bf5))
2252
+
2253
+
2254
+
2255
+ ## [0.0.39](https://www.github.com/spinnaker/deck/compare/0f6804ae80e901958a2aac8bf85c6cdbb9e5366b...ab8cf06aef38c7875ef3d91a575d74e7fa4248d9) (2018-09-25)
2256
+
2257
+
2258
+ ### Changes
2259
+
2260
+ chore(titus): Bump to 0.0.39 ([ab8cf06a](https://github.com/spinnaker/deck/commit/ab8cf06aef38c7875ef3d91a575d74e7fa4248d9))
2261
+ refactor(titus/deploy): Convert deploy dialog to react ([1dc5e4a5](https://github.com/spinnaker/deck/commit/1dc5e4a515f846b02c575563f3c3e2c23b07ee9f))
2262
+ refactor(titus): Expose server group command services in react injector ([0631440b](https://github.com/spinnaker/deck/commit/0631440b6161cf05f194aa50a9843d001bd16b1e))
2263
+ chore(titus): Remove unused advanced settings selector ([99f6a74f](https://github.com/spinnaker/deck/commit/99f6a74f235fb7dd5ee29a0d202c2dad503b065d))
2264
+ refactor(titus/serverGroup): Move the security group refreshing into the server group configuration ([4f45bd34](https://github.com/spinnaker/deck/commit/4f45bd34cadc7245aca766cad326c5062f35e2ba))
2265
+ refactor(titus/serverGroup): Switch server group configuration to use standard dirty map ([ba661411](https://github.com/spinnaker/deck/commit/ba661411f7e300a810942b1dff4cc124131d1b62))
2266
+ refactor(titus/deploy): Convert serverGroupConfiguration to TS, refactor load balancer selector to not manage data ([4807fbe7](https://github.com/spinnaker/deck/commit/4807fbe7a5aa0d41b2586232a5cea600d3840edd))
2267
+ chore(prettier): Just Update Prettier™ [#5754](https://github.com/spinnaker/deck/pull/5754) ([709f30f6](https://github.com/spinnaker/deck/commit/709f30f6eff0c8862cb8736465e4fd152abd693c))
2268
+
2269
+
2270
+
2271
+ ## [0.0.38](https://www.github.com/spinnaker/deck/compare/482627025411c89ec54b0b1294ce4a71a2ae95dc...0f6804ae80e901958a2aac8bf85c6cdbb9e5366b) (2018-09-05)
2272
+
2273
+
2274
+ ### Changes
2275
+
2276
+ chore(titus): Bump to 0.0.38 ([0f6804ae](https://github.com/spinnaker/deck/commit/0f6804ae80e901958a2aac8bf85c6cdbb9e5366b))
2277
+ refactor(core/task): Simplify task monitoring in React Modals Some other minor modal related bug fixes ([94c30e04](https://github.com/spinnaker/deck/commit/94c30e04a797d83834a1a074149a73f886ebfcc1))
2278
+ fix(ux): minor text revisions for server group enable modal [#5664](https://github.com/spinnaker/deck/pull/5664) ([c64b6d78](https://github.com/spinnaker/deck/commit/c64b6d7808b234e61598a629b496f4bd3a907e17))
2279
+
2280
+
2281
+
2282
+ ## [0.0.37](https://www.github.com/spinnaker/deck/compare/c95b2b363ecd78a7edbe367510fb08cc4c30073f...482627025411c89ec54b0b1294ce4a71a2ae95dc) (2018-08-23)
2283
+
2284
+
2285
+ ### Changes
2286
+
2287
+ chore(titus): Bump to 0.0.37 ([48262702](https://github.com/spinnaker/deck/commit/482627025411c89ec54b0b1294ce4a71a2ae95dc))
2288
+ feat(titus): Support stdout console logs [#5653](https://github.com/spinnaker/deck/pull/5653) ([91ec0c58](https://github.com/spinnaker/deck/commit/91ec0c583db0fbb052c40a9bb70f5dfc03409992))
2289
+ feat(titus): Add titus ui endpoint to the instance object ([75592564](https://github.com/spinnaker/deck/commit/75592564ae4679d60e2d48ebc27484a9c573c29e))
2290
+
2291
+
2292
+
2293
+ ## [0.0.36](https://www.github.com/spinnaker/deck/compare/818265472800034e13f5dce7e313ae8a88603d17...c95b2b363ecd78a7edbe367510fb08cc4c30073f) (2018-08-21)
2294
+
2295
+
2296
+ ### Changes
2297
+
2298
+ chore(titus): Bump to 0.0.36 [#5646](https://github.com/spinnaker/deck/pull/5646) ([c95b2b36](https://github.com/spinnaker/deck/commit/c95b2b363ecd78a7edbe367510fb08cc4c30073f))
2299
+ fix(titus): Fix run job firewall picker [#5645](https://github.com/spinnaker/deck/pull/5645) ([6bf76517](https://github.com/spinnaker/deck/commit/6bf7651762f750803872d369b829aa8e511cb08e))
2300
+
2301
+
2302
+
2303
+ ## [0.0.35](https://www.github.com/spinnaker/deck/compare/215c4314ffba98fc5b769abc4b3fe041ba5c8360...818265472800034e13f5dce7e313ae8a88603d17) (2018-07-31)
2304
+
2305
+
2306
+ ### Changes
2307
+
2308
+ chore(titus): bump to 0.0.35 [#5551](https://github.com/spinnaker/deck/pull/5551) ([81826547](https://github.com/spinnaker/deck/commit/818265472800034e13f5dce7e313ae8a88603d17))
2309
+ fix(titus): sets default disk size to 10000 and retry on run job stage to 0 ([246f89c4](https://github.com/spinnaker/deck/commit/246f89c433eb9001e99ca81aaceef6beda72fbdf))
2310
+ refactor(*): Add server group configuration command to all configured command functions ([4d23c971](https://github.com/spinnaker/deck/commit/4d23c971e1d3eb5a234d3315fd166c9d37059413))
2311
+
2312
+
2313
+
2314
+ ## [0.0.34](https://www.github.com/spinnaker/deck/compare/eadf5c4bd6eb0ba51093fb1230e94919585324ea...215c4314ffba98fc5b769abc4b3fe041ba5c8360) (2018-07-13)
2315
+
2316
+
2317
+ ### Changes
2318
+
2319
+ chore(titus): bump to 0.0.34 ([215c4314](https://github.com/spinnaker/deck/commit/215c4314ffba98fc5b769abc4b3fe041ba5c8360))
2320
+ fix(titus): no longer hide metadata fields since they are not set by the backend to labels anymore ([d584057c](https://github.com/spinnaker/deck/commit/d584057c9edc167027a545235556e01cad4c2d40))
2321
+ feat(titus): Show amazon account for run job stage ([0ee18004](https://github.com/spinnaker/deck/commit/0ee18004006c46e853abb34b37374272903fdf5e))
2322
+ feat(titus): Show aws account backing titus account in deploy dialog ([fc2fae98](https://github.com/spinnaker/deck/commit/fc2fae98a50c4611641a05c2fc92b69aae499c73))
2323
+
2324
+
2325
+
2326
+ ## [0.0.33](https://www.github.com/spinnaker/deck/compare/dff579f32e255d387f4b952ac458e590a2bb6225...eadf5c4bd6eb0ba51093fb1230e94919585324ea) (2018-06-20)
2327
+
2328
+
2329
+ ### Changes
2330
+
2331
+ chore(titus): Bump to 0.0.33 [#5472](https://github.com/spinnaker/deck/pull/5472) ([eadf5c4b](https://github.com/spinnaker/deck/commit/eadf5c4bd6eb0ba51093fb1230e94919585324ea))
2332
+ fix(titus): Default to 1 percent for container migrations vs 1 instance [#5471](https://github.com/spinnaker/deck/pull/5471) ([c4ba987d](https://github.com/spinnaker/deck/commit/c4ba987d391a934cd77b25e277600e9a167d71e8))
2333
+
2334
+
2335
+
2336
+ ## [0.0.32](https://www.github.com/spinnaker/deck/compare/b66b2b565268cfc33481dd55267d7ff176967e77...dff579f32e255d387f4b952ac458e590a2bb6225) (2018-06-07)
2337
+
2338
+
2339
+ ### Changes
2340
+
2341
+ chore(titus): Bump to 0.0.32 ([dff579f3](https://github.com/spinnaker/deck/commit/dff579f32e255d387f4b952ac458e590a2bb6225))
2342
+ fix(titus/instance): fix titus instance ssh links [#5429](https://github.com/spinnaker/deck/pull/5429) ([cb8419d2](https://github.com/spinnaker/deck/commit/cb8419d2133954db646d2fa1835d67a85962afbb))
2343
+
2344
+
2345
+
2346
+ ## [0.0.31](https://www.github.com/spinnaker/deck/compare/d8b5eed4f851c738f5eec454bab73dbe476eba62...b66b2b565268cfc33481dd55267d7ff176967e77) (2018-05-25)
2347
+
2348
+
2349
+ ### Changes
2350
+
2351
+ chore(*): package bumps: core to 230, amazon to 100, titus to 31 [#5392](https://github.com/spinnaker/deck/pull/5392) ([b66b2b56](https://github.com/spinnaker/deck/commit/b66b2b565268cfc33481dd55267d7ff176967e77))
2352
+ refactor(amazon): de-angularize services [#5391](https://github.com/spinnaker/deck/pull/5391) ([445147da](https://github.com/spinnaker/deck/commit/445147dad6ef59d0befbf33f3347d5e6f0493260))
2353
+ refactor(core): de-angularize services [#5385](https://github.com/spinnaker/deck/pull/5385) ([37a96b16](https://github.com/spinnaker/deck/commit/37a96b168cae0cb5517c269e858bc16020f753c2))
2354
+
2355
+
2356
+
2357
+ ## [0.0.30](https://www.github.com/spinnaker/deck/compare/6505931b46776e39e3132d695d5ddb95e422999f...d8b5eed4f851c738f5eec454bab73dbe476eba62) (2018-05-24)
2358
+
2359
+
2360
+ ### Changes
2361
+
2362
+ chore(titus): Bump to 0.0.30 ([d8b5eed4](https://github.com/spinnaker/deck/commit/d8b5eed4f851c738f5eec454bab73dbe476eba62))
2363
+ refactor(core): De-angularize application read service ([96ddb67a](https://github.com/spinnaker/deck/commit/96ddb67a331f11ba292fd65111ef45eecdfbb0c4))
2364
+ refactor(core): de-angularize services [#5377](https://github.com/spinnaker/deck/pull/5377) ([bda420f9](https://github.com/spinnaker/deck/commit/bda420f98933852e734452a40d9ab788912dbb42))
2365
+
2366
+
2367
+
2368
+ ## [0.0.29](https://www.github.com/spinnaker/deck/compare/ee8eeba3406b261ae4cf8cf2c5a41589c0b191aa...6505931b46776e39e3132d695d5ddb95e422999f) (2018-05-23)
2369
+
2370
+
2371
+ ### Changes
2372
+
2373
+ chore(*): bump core/amazon/titus packages [#5375](https://github.com/spinnaker/deck/pull/5375) ([6505931b](https://github.com/spinnaker/deck/commit/6505931b46776e39e3132d695d5ddb95e422999f))
2374
+ refactor(core): de-angularize services [#5365](https://github.com/spinnaker/deck/pull/5365) ([5d159622](https://github.com/spinnaker/deck/commit/5d159622f43fb2aa859a46b47665c8c60165224e))
2375
+ feat(*/instance): add moniker info + env to instance link templates [#5367](https://github.com/spinnaker/deck/pull/5367) ([b70c6d98](https://github.com/spinnaker/deck/commit/b70c6d98a92adc3f2ddabb4d449c6ced3249480c))
2376
+
2377
+
2378
+
2379
+ ## [0.0.28](https://www.github.com/spinnaker/deck/compare/6e20b41114db7ebba7a7dabd55818349871c5595...ee8eeba3406b261ae4cf8cf2c5a41589c0b191aa) (2018-05-21)
2380
+
2381
+
2382
+ ### Changes
2383
+
2384
+ chore(*): bump core/amazon/titus packages [#5363](https://github.com/spinnaker/deck/pull/5363) ([ee8eeba3](https://github.com/spinnaker/deck/commit/ee8eeba3406b261ae4cf8cf2c5a41589c0b191aa))
2385
+ fix(core): force Registry config block to run earlier [#5360](https://github.com/spinnaker/deck/pull/5360) ([68003f5c](https://github.com/spinnaker/deck/commit/68003f5c70c5a41b46be66c31810f26bdf730341))
2386
+ refactor(core): de-angularize services [#5354](https://github.com/spinnaker/deck/pull/5354) ([ab380a10](https://github.com/spinnaker/deck/commit/ab380a105abd46116de1ea0b70c560f066732644))
2387
+
2388
+
2389
+
2390
+ ## [0.0.27](https://www.github.com/spinnaker/deck/compare/24b11526b12f7085d15f7e611523c2038714fedc...6e20b41114db7ebba7a7dabd55818349871c5595) (2018-05-18)
2391
+
2392
+
2393
+ ### Changes
2394
+
2395
+ chore(*): bump packages for amazon/appengine/core/google/k8s/titus [#5353](https://github.com/spinnaker/deck/pull/5353) ([6e20b411](https://github.com/spinnaker/deck/commit/6e20b41114db7ebba7a7dabd55818349871c5595))
2396
+ refactor(*): de-angular-ize task reader/writer/executor [#5352](https://github.com/spinnaker/deck/pull/5352) ([56ede9d2](https://github.com/spinnaker/deck/commit/56ede9d28f704926f4fadf60af42612138e5b4ce))
2397
+ fix(titus): update UI endpoint when run job details props update [#5349](https://github.com/spinnaker/deck/pull/5349) ([56f10afc](https://github.com/spinnaker/deck/commit/56f10afcbea693b7642939ca7c10c17e7f9a3f50))
2398
+
2399
+
2400
+
2401
+ ## [0.0.26](https://www.github.com/spinnaker/deck/compare/ccc161a67722b8306e467c36bb64b9201c7a5d78...24b11526b12f7085d15f7e611523c2038714fedc) (2018-05-17)
2402
+
2403
+
2404
+ ### Changes
2405
+
2406
+ chore(*): Bump core/amazon/docker/titus/kayenta [#5344](https://github.com/spinnaker/deck/pull/5344) ([24b11526](https://github.com/spinnaker/deck/commit/24b11526b12f7085d15f7e611523c2038714fedc))
2407
+ refactor(*): De-angular pipelineConfigProvider and rename to PipelineRegistry [#5340](https://github.com/spinnaker/deck/pull/5340) ([40d11f8c](https://github.com/spinnaker/deck/commit/40d11f8c5a48284bca56e639e46cf846311a5dd4))
2408
+
2409
+
2410
+
2411
+ ## [0.0.25](https://www.github.com/spinnaker/deck/compare/3bd4d6868afb06fcc488a62662862db299000a4f...ccc161a67722b8306e467c36bb64b9201c7a5d78) (2018-05-14)
2412
+
2413
+
2414
+ ### Changes
2415
+
2416
+ chore(titus): Bump to 0.0.25 ([ccc161a6](https://github.com/spinnaker/deck/commit/ccc161a67722b8306e467c36bb64b9201c7a5d78))
2417
+ refactor(core): De-angular pipelineConfig.service [#5306](https://github.com/spinnaker/deck/pull/5306) ([bf797263](https://github.com/spinnaker/deck/commit/bf797263217544f29c888dc4293b13dd027ee872))
2418
+
2419
+
2420
+
2421
+ ## [0.0.24](https://www.github.com/spinnaker/deck/compare/b6e32996e0ff8cbd8bac8cb5fb68ec465fda30d0...3bd4d6868afb06fcc488a62662862db299000a4f) (2018-05-11)
2422
+
2423
+
2424
+ ### Changes
2425
+
2426
+ chore(titus): bump to 0.0.24 ([3bd4d686](https://github.com/spinnaker/deck/commit/3bd4d6868afb06fcc488a62662862db299000a4f))
2427
+
2428
+
2429
+
2430
+ ## [0.0.23](https://www.github.com/spinnaker/deck/compare/39309c8c2c7ee1fc415915d7f0bad3fd84399154...b6e32996e0ff8cbd8bac8cb5fb68ec465fda30d0) (2018-05-11)
2431
+
2432
+
2433
+ ### Changes
2434
+
2435
+ chore(titus): bump to 0.0.23 ([b6e32996](https://github.com/spinnaker/deck/commit/b6e32996e0ff8cbd8bac8cb5fb68ec465fda30d0))
2436
+ feat(titus): filter .titus prefix in job attritbutes ([983b497a](https://github.com/spinnaker/deck/commit/983b497ab913a08ea04d929eac388a88ce2824aa))
2437
+
2438
+
2439
+
2440
+ ## [0.0.22](https://www.github.com/spinnaker/deck/compare/46e5883c1fe81b9ba7b44bb272f3728c57c7e436...39309c8c2c7ee1fc415915d7f0bad3fd84399154) (2018-05-09)
2441
+
2442
+
2443
+ ### Changes
2444
+
2445
+ chore(titus): bump package to 0.0.22 [#5298](https://github.com/spinnaker/deck/pull/5298) ([39309c8c](https://github.com/spinnaker/deck/commit/39309c8c2c7ee1fc415915d7f0bad3fd84399154))
2446
+ fix(titus): fix links to job execution details [#5296](https://github.com/spinnaker/deck/pull/5296) ([05e12dca](https://github.com/spinnaker/deck/commit/05e12dcacd538ef7ba848a46289466909fd74646))
2447
+ refactor(core): rename Security Groups to Firewalls [#5284](https://github.com/spinnaker/deck/pull/5284) ([d9291085](https://github.com/spinnaker/deck/commit/d929108509898833b535d20be01179dffaf187bf))
2448
+
2449
+
2450
+
2451
+ ## [0.0.21](https://www.github.com/spinnaker/deck/compare/c1a15394ffbbfd899d6df1dccfed8b2e991d7952...46e5883c1fe81b9ba7b44bb272f3728c57c7e436) (2018-05-08)
2452
+
2453
+
2454
+ ### Changes
2455
+
2456
+ chore(titus): bump package to 0.0.21 [#5283](https://github.com/spinnaker/deck/pull/5283) ([46e5883c](https://github.com/spinnaker/deck/commit/46e5883c1fe81b9ba7b44bb272f3728c57c7e436))
2457
+ refactor(titus): convert run job details to React [#5282](https://github.com/spinnaker/deck/pull/5282) ([2cef0469](https://github.com/spinnaker/deck/commit/2cef04697c9ca7f9232a3478abed4ac40252875d))
2458
+
2459
+
2460
+
2461
+ ## [0.0.20](https://www.github.com/spinnaker/deck/compare/70e1f15bee2043de12ea24dd1fcc320ac137a795...c1a15394ffbbfd899d6df1dccfed8b2e991d7952) (2018-05-07)
2462
+
2463
+
2464
+ ### Changes
2465
+
2466
+ chore(titus): bump package to 0.0.20 ([c1a15394](https://github.com/spinnaker/deck/commit/c1a15394ffbbfd899d6df1dccfed8b2e991d7952))
2467
+ feat(titus): allow run job to be restarted ([b3dc68b2](https://github.com/spinnaker/deck/commit/b3dc68b2f2a2887d4cb93f73c3baff0c56ff1989))
2468
+
2469
+
2470
+
2471
+ ## [0.0.19](https://www.github.com/spinnaker/deck/compare/beb0ab63331af031fcdc669aab474ca657ba3726...70e1f15bee2043de12ea24dd1fcc320ac137a795) (2018-05-04)
2472
+
2473
+
2474
+ ### Changes
2475
+
2476
+ chore(titus): bump to 0.0.19 ([70e1f15b](https://github.com/spinnaker/deck/commit/70e1f15bee2043de12ea24dd1fcc320ac137a795))
2477
+ fix(provider/titus): fix premature display of titus logs ([68f6018e](https://github.com/spinnaker/deck/commit/68f6018e682f3f0cbdeb280d2850e90f3fd57e57))
2478
+
2479
+
2480
+
2481
+ ## [0.0.18](https://www.github.com/spinnaker/deck/compare/41fb7a3df02b5c68a19701ad5f7f96c6d268d2a3...beb0ab63331af031fcdc669aab474ca657ba3726) (2018-05-04)
2482
+
2483
+
2484
+ ### Changes
2485
+
2486
+ chore(titus): bump package to 0.0.18 [#5272](https://github.com/spinnaker/deck/pull/5272) ([beb0ab63](https://github.com/spinnaker/deck/commit/beb0ab63331af031fcdc669aab474ca657ba3726))
2487
+ fix(provider/titus): removes allocateIp and ports since these are no longer used [#5271](https://github.com/spinnaker/deck/pull/5271) ([1ba564eb](https://github.com/spinnaker/deck/commit/1ba564eb63294d11c01082c33f2269fde5ea25e4))
2488
+
2489
+
2490
+
2491
+ ## [0.0.17](https://www.github.com/spinnaker/deck/compare/87e3a0662d228ade9dbcb07d7582042457cedb15...41fb7a3df02b5c68a19701ad5f7f96c6d268d2a3) (2018-05-04)
2492
+
2493
+
2494
+ ### Changes
2495
+
2496
+ refactor(titus): move container attributes above env ([41fb7a3d](https://github.com/spinnaker/deck/commit/41fb7a3df02b5c68a19701ad5f7f96c6d268d2a3))
2497
+ perf(*): transpile to latest two modern browsers only [#5260](https://github.com/spinnaker/deck/pull/5260) ([caf1a8a8](https://github.com/spinnaker/deck/commit/caf1a8a84139fb4e5fe4c12959e02a9309d4a7db))
2498
+
2499
+
2500
+
2501
+ ## [0.0.16](https://www.github.com/spinnaker/deck/compare/75c7c655dcb9832655c2a61a1b248ca489b3c9ae...87e3a0662d228ade9dbcb07d7582042457cedb15) (2018-05-03)
2502
+
2503
+
2504
+ ### Changes
2505
+
2506
+ chore(titus): bump package to 0.0.16 ([87e3a066](https://github.com/spinnaker/deck/commit/87e3a0662d228ade9dbcb07d7582042457cedb15))
2507
+ fix(titus): clean up sidebar to be inline with aws ([c983675d](https://github.com/spinnaker/deck/commit/c983675d984fa3501c847271d03d3c524d0e0fc0))
2508
+
2509
+
2510
+
2511
+ ## [0.0.15](https://www.github.com/spinnaker/deck/compare/a44c43223b37db160a69a65ce3c9dc3d050660b9...75c7c655dcb9832655c2a61a1b248ca489b3c9ae) (2018-04-30)
2512
+
2513
+
2514
+ ### Changes
2515
+
2516
+ chore(titus): bump version to 0.0.15 ([75c7c655](https://github.com/spinnaker/deck/commit/75c7c655dcb9832655c2a61a1b248ca489b3c9ae))
2517
+ feat(titus): support container attributes ([052c9ecf](https://github.com/spinnaker/deck/commit/052c9ecfc6ed7eee9b5a545cef772b78f34f76da))
2518
+
2519
+
2520
+
2521
+ ## [0.0.14](https://www.github.com/spinnaker/deck/compare/8e8cee4bb137cb3b302b6aaa9a154b0abf7eeb18...a44c43223b37db160a69a65ce3c9dc3d050660b9) (2018-04-23)
2522
+
2523
+
2524
+ ### Changes
2525
+
2526
+ chore(titus): Bump package to 0.0.14 ([a44c4322](https://github.com/spinnaker/deck/commit/a44c43223b37db160a69a65ce3c9dc3d050660b9))
2527
+ refactor(*): De-angularize account service ([cc6d3332](https://github.com/spinnaker/deck/commit/cc6d333254159ab713a83bc89f13938d4c98e256))
2528
+ refactor(*): De-angularize API service ([cc8adc9d](https://github.com/spinnaker/deck/commit/cc8adc9df3f191ff2590a0bb5eea3f794cc85544))
2529
+ refactor(*): De-angularize authentication service ([a4d96cd3](https://github.com/spinnaker/deck/commit/a4d96cd340b49203f453afafd8d92512da6c831b))
2530
+ refactor(*): De-angularize cloud provider registry ([5aaf40d8](https://github.com/spinnaker/deck/commit/5aaf40d8599e372b3f49ba2db3dffbd711bf437e))
2531
+
2532
+
2533
+
2534
+ ## [0.0.13](https://www.github.com/spinnaker/deck/compare/2d3b5dc136e584ac5fdb24029307abe09d7bb37f...8e8cee4bb137cb3b302b6aaa9a154b0abf7eeb18) (2018-04-17)
2535
+
2536
+
2537
+ ### Changes
2538
+
2539
+ chore(*): bump packages for de-angularized help contents [#5200](https://github.com/spinnaker/deck/pull/5200) ([8e8cee4b](https://github.com/spinnaker/deck/commit/8e8cee4bb137cb3b302b6aaa9a154b0abf7eeb18))
2540
+ refactor(*): de-angularize help contents/registry [#5199](https://github.com/spinnaker/deck/pull/5199) ([d6bfa5c2](https://github.com/spinnaker/deck/commit/d6bfa5c22c2196942230721ecc38ddb68e56874f))
2541
+
2542
+
2543
+
2544
+ ## [0.0.12](https://www.github.com/spinnaker/deck/compare/4929eea623537f02595c75c6483a29e085500efe...2d3b5dc136e584ac5fdb24029307abe09d7bb37f) (2018-04-16)
2545
+
2546
+
2547
+ ### Changes
2548
+
2549
+ chore(titus): bump to 0.0.12 ([2d3b5dc1](https://github.com/spinnaker/deck/commit/2d3b5dc136e584ac5fdb24029307abe09d7bb37f))
2550
+ fix(titus): backwards compatible instance security groups ([1b565955](https://github.com/spinnaker/deck/commit/1b565955192e68577aa2f3aa5be4f6dd88a57110))
2551
+
2552
+
2553
+
2554
+ ## [0.0.11](https://www.github.com/spinnaker/deck/compare/b09bc91822d8694070260c51dce62d17ca87a0c5...4929eea623537f02595c75c6483a29e085500efe) (2018-04-16)
2555
+
2556
+
2557
+ ### Changes
2558
+
2559
+ chore(titus): bump package to 0.11 ([4929eea6](https://github.com/spinnaker/deck/commit/4929eea623537f02595c75c6483a29e085500efe))
2560
+ fix(titus): use securityGroup instead of securityGroupDetails ([11bae4a1](https://github.com/spinnaker/deck/commit/11bae4a12c190c2abd1eab7ba4d08a4bb0fa73bc))
2561
+ fix(titus): rename environment to environment variables and labels to job attributes ([3a31ae19](https://github.com/spinnaker/deck/commit/3a31ae194c76e554e56d6abf1b7b9a1fcb2589b8))
2562
+ refactor(core): Remove angular from cluster filter service ([76f0d5ec](https://github.com/spinnaker/deck/commit/76f0d5ec4f112bee40b591e744cd3dc1e936b2e2))
2563
+
2564
+
2565
+
2566
+ ## [0.0.10](https://www.github.com/spinnaker/deck/compare/dc2f680ec43673e76bb02c2f837c45befffb467f...b09bc91822d8694070260c51dce62d17ca87a0c5) (2018-04-12)
2567
+
2568
+
2569
+ ### Changes
2570
+
2571
+ chore(amazon/titus): bump packages to 90, 10 [#5166](https://github.com/spinnaker/deck/pull/5166) ([b09bc918](https://github.com/spinnaker/deck/commit/b09bc91822d8694070260c51dce62d17ca87a0c5))
2572
+ refactor(*): De-angularize caches [#5161](https://github.com/spinnaker/deck/pull/5161) ([2f654733](https://github.com/spinnaker/deck/commit/2f6547336c43fdf5ced72dc029700e214d07c1b9))
2573
+
2574
+
2575
+
2576
+ ## [0.0.9](https://www.github.com/spinnaker/deck/compare/a950527294839941d9e7b10422673e955200090c...dc2f680ec43673e76bb02c2f837c45befffb467f) (2018-04-11)
2577
+
2578
+
2579
+ ### Changes
2580
+
2581
+ chore(titus): Bump to 0.0.9 ([dc2f680e](https://github.com/spinnaker/deck/commit/dc2f680ec43673e76bb02c2f837c45befffb467f))
2582
+ refactor(titus/loadBalancer): Refactor to use AmazonLoadBalancersTag ([04d0a882](https://github.com/spinnaker/deck/commit/04d0a882aaf204f5285438600671f52e8ba2d2d6))
2583
+ refactor(core/entityTag): Convert clusterTargetBuilder.service to plain JS ([378f228a](https://github.com/spinnaker/deck/commit/378f228aec8cdb4a02990785505a67c1b9ad2adc))
2584
+ refactor(core/naming): Convert angular naming.service to plain NameUtils ([d9f313bd](https://github.com/spinnaker/deck/commit/d9f313bd36508961f2a6be8d32c5155e0b5b893d))
2585
+ chore(tslint): ❯ npx tslint --fix -p tsconfig.json ([b1ddb67c](https://github.com/spinnaker/deck/commit/b1ddb67c2c7a74f451baac070a65c985c2b6fb8e))
2586
+ chore(tslint): Add prettier-tslint rules, manually fix lint errors that don't have --fix ([e74be825](https://github.com/spinnaker/deck/commit/e74be825f0f0c3e8ed24717188b0e76d6cc99bd8))
2587
+ Just Use Prettier™ ([532ab778](https://github.com/spinnaker/deck/commit/532ab7784ca93569308c8f2ab80a18d313b910f9))
2588
+
2589
+
2590
+
2591
+ ## [0.0.8](https://www.github.com/spinnaker/deck/compare/6701afacb19cdf7ecfb5db287851e8c3ebb1d2a1...a950527294839941d9e7b10422673e955200090c) (2018-04-08)
2592
+
2593
+
2594
+ ### Changes
2595
+
2596
+ chore(titus): bump package to 0.0.8 [#5138](https://github.com/spinnaker/deck/pull/5138) ([a9505272](https://github.com/spinnaker/deck/commit/a950527294839941d9e7b10422673e955200090c))
2597
+ fix(titus/loadBalancer): Fix load balancer icon [#5134](https://github.com/spinnaker/deck/pull/5134) ([83b05b04](https://github.com/spinnaker/deck/commit/83b05b046574515cd19bffddc4465e733cf72150))
2598
+ fix(titus/deploy): Show loading spinner for target groups in deploy config [#5133](https://github.com/spinnaker/deck/pull/5133) ([a13b778b](https://github.com/spinnaker/deck/commit/a13b778b28484c30648ca723021b4a1e689185eb))
2599
+
2600
+
2601
+
2602
+ ## [0.0.7](https://www.github.com/spinnaker/deck/compare/d0433c6b38152668aa378d9c7339c0605f80b0cc...6701afacb19cdf7ecfb5db287851e8c3ebb1d2a1) (2018-04-05)
2603
+
2604
+
2605
+ ### Changes
2606
+
2607
+ chore(titus): bump package to 0.0.7 [#5122](https://github.com/spinnaker/deck/pull/5122) ([6701afac](https://github.com/spinnaker/deck/commit/6701afacb19cdf7ecfb5db287851e8c3ebb1d2a1))
2608
+ fix(titus): keep instance/job title on same line as icon [#5118](https://github.com/spinnaker/deck/pull/5118) ([964f6e91](https://github.com/spinnaker/deck/commit/964f6e914a95e7d6633e264c58ab07c4fee1c97b))
2609
+ fix(titus): fix alignment of migration config fields [#5116](https://github.com/spinnaker/deck/pull/5116) ([19dc6df2](https://github.com/spinnaker/deck/commit/19dc6df24a0135fbb9ac125f499c648f5d35eff7))
2610
+
2611
+
2612
+
2613
+ ## [0.0.6](https://www.github.com/spinnaker/deck/compare/5edff2efbb2e34332b465ca5158124acec15375a...d0433c6b38152668aa378d9c7339c0605f80b0cc) (2018-04-04)
2614
+
2615
+
2616
+ ### Changes
2617
+
2618
+ chore(amazon/titus): bump packages to 0.0.88, 0.0.6 [#5112](https://github.com/spinnaker/deck/pull/5112) ([d0433c6b](https://github.com/spinnaker/deck/commit/d0433c6b38152668aa378d9c7339c0605f80b0cc))
2619
+ feat(aws): offer rollback when user enables an older server group [#5109](https://github.com/spinnaker/deck/pull/5109) ([555e7466](https://github.com/spinnaker/deck/commit/555e7466fe8bec03bb0b5dc53a7fde73a2dfd99a))
2620
+
2621
+
2622
+
2623
+ ## [0.0.5](https://www.github.com/spinnaker/deck/compare/dde3f5f4cdd8a255c3b99bc30de15a431686da90...5edff2efbb2e34332b465ca5158124acec15375a) (2018-03-29)
2624
+
2625
+
2626
+ ### Changes
2627
+
2628
+ chore(titus): bump package version to 0.0.5 [#5101](https://github.com/spinnaker/deck/pull/5101) ([5edff2ef](https://github.com/spinnaker/deck/commit/5edff2efbb2e34332b465ca5158124acec15375a))
2629
+ feat(titus): Support rollback of disabled server groups (parity with aws) [#5100](https://github.com/spinnaker/deck/pull/5100) ([f742ffc4](https://github.com/spinnaker/deck/commit/f742ffc4898ce1f8e5e230db5535cc272a414d32))
2630
+ Updating to use auto-generated files from icomoon.app [#5086](https://github.com/spinnaker/deck/pull/5086) ([c96f74b7](https://github.com/spinnaker/deck/commit/c96f74b720624631b65405e847593c0e52b4a5fb))
2631
+ chore(package): minify package bundles in production mode only ([a5bde826](https://github.com/spinnaker/deck/commit/a5bde826f2c641c6075fbb3900f740050892eb72))
2632
+
2633
+
2634
+
2635
+ ## [0.0.4](https://www.github.com/spinnaker/deck/compare/bb117572d3740217e86aae14b504b53c304d57a1...dde3f5f4cdd8a255c3b99bc30de15a431686da90) (2018-03-23)
2636
+
2637
+
2638
+ ### Changes
2639
+
2640
+ chore(titus): bump package version to 0.0.4 [#5056](https://github.com/spinnaker/deck/pull/5056) ([dde3f5f4](https://github.com/spinnaker/deck/commit/dde3f5f4cdd8a255c3b99bc30de15a431686da90))
2641
+ feat(titus): Support specifying a percentage of instances to relaunch [#5054](https://github.com/spinnaker/deck/pull/5054) ([507fc5e2](https://github.com/spinnaker/deck/commit/507fc5e2b01f84f7b651584e88d714f1d63bcf52))
2642
+ fix(titus): restore load balancer tag icon [#5053](https://github.com/spinnaker/deck/pull/5053) ([a8ce307a](https://github.com/spinnaker/deck/commit/a8ce307a2518086996bd668e251cbbc9a5b1c17d))
2643
+
2644
+
2645
+
2646
+ ## [0.0.3](https://www.github.com/spinnaker/deck/compare/857448f890e4f7aa0de036b61ae50e6e0a363eaf...bb117572d3740217e86aae14b504b53c304d57a1) (2018-03-21)
2647
+
2648
+
2649
+ ### Changes
2650
+
2651
+ fix(titus): handle strategy change [#5044](https://github.com/spinnaker/deck/pull/5044) ([bb117572](https://github.com/spinnaker/deck/commit/bb117572d3740217e86aae14b504b53c304d57a1))
2652
+ chore(webpack): update webpack configurations for webpack 4 ([40981eae](https://github.com/spinnaker/deck/commit/40981eae4c404cd833cf186a9df50d3a56b5c927))
2653
+
2654
+
2655
+
2656
+ ## [0.0.2](https://www.github.com/spinnaker/deck/compare/b6a5ba470448da6bb7eceee19137e302d19fea2b...857448f890e4f7aa0de036b61ae50e6e0a363eaf) (2018-03-16)
2657
+
2658
+
2659
+ ### Changes
2660
+
2661
+ chore(titus): bump package to 0.2 ([857448f8](https://github.com/spinnaker/deck/commit/857448f890e4f7aa0de036b61ae50e6e0a363eaf))