@spinnaker/azure 0.0.0-2025.1-0

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 (174) hide show
  1. package/CHANGELOG.md +873 -0
  2. package/LICENSE.txt +203 -0
  3. package/dist/azure.module.d.ts +3 -0
  4. package/dist/azure.settings.d.ts +8 -0
  5. package/dist/common/AzureModalFooter.d.ts +18 -0
  6. package/dist/help/azure.help.d.ts +1 -0
  7. package/dist/image/image.reader.d.ts +2 -0
  8. package/dist/index.d.ts +1 -0
  9. package/dist/index.js +6778 -0
  10. package/dist/index.js.map +1 -0
  11. package/dist/instance/azureInstanceType.service.d.ts +2 -0
  12. package/dist/instance/details/instance.details.controller.d.ts +2 -0
  13. package/dist/loadBalancer/configure/AzureLoadBalancerChoiceModal.d.ts +16 -0
  14. package/dist/loadBalancer/configure/createLoadBalancer.controller.d.ts +2 -0
  15. package/dist/loadBalancer/details/loadBalancerDetail.controller.d.ts +2 -0
  16. package/dist/loadBalancer/loadBalancer.transformer.d.ts +2 -0
  17. package/dist/pipeline/stages/bake/azureBakeStage.d.ts +2 -0
  18. package/dist/pipeline/stages/bake/bakeExecutionDetails.controller.d.ts +2 -0
  19. package/dist/pipeline/stages/destroyAsg/azureDestroyAsgStage.d.ts +2 -0
  20. package/dist/pipeline/stages/disableAsg/azureDisableAsgStage.d.ts +2 -0
  21. package/dist/pipeline/stages/enableAsg/azureEnableAsgStage.d.ts +2 -0
  22. package/dist/securityGroup/clone/cloneSecurityGroup.controller.d.ts +2 -0
  23. package/dist/securityGroup/configure/CreateSecurityGroupCtrl.d.ts +2 -0
  24. package/dist/securityGroup/configure/EditSecurityGroupCtrl.d.ts +2 -0
  25. package/dist/securityGroup/details/securityGroupDetail.controller.d.ts +2 -0
  26. package/dist/securityGroup/securityGroup.reader.d.ts +2 -0
  27. package/dist/securityGroup/securityGroup.transformer.d.ts +2 -0
  28. package/dist/securityGroup/securityGroup.write.service.d.ts +2 -0
  29. package/dist/serverGroup/configure/serverGroup.configure.azure.module.d.ts +2 -0
  30. package/dist/serverGroup/configure/serverGroupCommandBuilder.service.d.ts +2 -0
  31. package/dist/serverGroup/configure/serverGroupConfiguration.service.d.ts +2 -0
  32. package/dist/serverGroup/configure/wizard/CloneServerGroup.azure.controller.d.ts +2 -0
  33. package/dist/serverGroup/configure/wizard/ServerGroupInstanceArchetype.controller.d.ts +2 -0
  34. package/dist/serverGroup/configure/wizard/ServerGroupInstanceType.controller.d.ts +2 -0
  35. package/dist/serverGroup/configure/wizard/advancedSettings/ServerGroupAdvancedSettings.controller.d.ts +2 -0
  36. package/dist/serverGroup/configure/wizard/advancedSettings/advancedSettingsSelector.directive.d.ts +2 -0
  37. package/dist/serverGroup/configure/wizard/basicSettings/ServerGroupBasicSettings.controller.d.ts +2 -0
  38. package/dist/serverGroup/configure/wizard/basicSettings/image.regional.filter.d.ts +2 -0
  39. package/dist/serverGroup/configure/wizard/capacity/capacitySelector.directive.d.ts +2 -0
  40. package/dist/serverGroup/configure/wizard/healthSettings/ServerGroupHealthSettings.controller.d.ts +2 -0
  41. package/dist/serverGroup/configure/wizard/healthSettings/healthSettingsSelector.directive.d.ts +2 -0
  42. package/dist/serverGroup/configure/wizard/image/ServerGroupImageSettings.controller.d.ts +2 -0
  43. package/dist/serverGroup/configure/wizard/image/imageSettingsSelector.directive.d.ts +2 -0
  44. package/dist/serverGroup/configure/wizard/loadBalancers/ServerGroupLoadBalancers.controller.d.ts +2 -0
  45. package/dist/serverGroup/configure/wizard/loadBalancers/serverGroupLoadBalancersSelector.directive.d.ts +2 -0
  46. package/dist/serverGroup/configure/wizard/networkSettings/ServerGroupNetworkSettings.controller.d.ts +2 -0
  47. package/dist/serverGroup/configure/wizard/networkSettings/ServerGroupNetworkSettingsSelector.directive.d.ts +2 -0
  48. package/dist/serverGroup/configure/wizard/securityGroup/ServerGroupSecurityGroups.controller.d.ts +2 -0
  49. package/dist/serverGroup/configure/wizard/securityGroup/serverGroupSecurityGroupsSelector.directive.d.ts +2 -0
  50. package/dist/serverGroup/configure/wizard/tags/tagsSelector.directive.d.ts +2 -0
  51. package/dist/serverGroup/configure/wizard/zones/zoneSelector.directive.d.ts +2 -0
  52. package/dist/serverGroup/details/rollback/RollbackServerGroupModal.d.ts +25 -0
  53. package/dist/serverGroup/details/serverGroup.details.module.d.ts +2 -0
  54. package/dist/serverGroup/details/serverGroupDetails.azure.controller.d.ts +2 -0
  55. package/dist/serverGroup/serverGroup.transformer.d.ts +2 -0
  56. package/dist/utility.d.ts +28 -0
  57. package/dist/validation/applicationName.validator.d.ts +2 -0
  58. package/package.json +43 -0
  59. package/src/azure.module.ts +95 -0
  60. package/src/azure.settings.ts +16 -0
  61. package/src/common/AzureModalFooter.tsx +43 -0
  62. package/src/help/azure.help.ts +60 -0
  63. package/src/image/image.reader.js +43 -0
  64. package/src/image/image.reader.spec.js +108 -0
  65. package/src/index.ts +1 -0
  66. package/src/instance/azureInstanceType.service.js +831 -0
  67. package/src/instance/azureInstanceType.service.spec.js +17 -0
  68. package/src/instance/details/instance.details.controller.js +371 -0
  69. package/src/instance/details/instance.details.controller.spec.js +129 -0
  70. package/src/instance/details/instanceDetails.html +43 -0
  71. package/src/loadBalancer/configure/AzureLoadBalancerChoiceModal.tsx +101 -0
  72. package/src/loadBalancer/configure/advancedSettings.html +95 -0
  73. package/src/loadBalancer/configure/createLoadBalancer.controller.js +275 -0
  74. package/src/loadBalancer/configure/createLoadBalancer.controller.spec.js +39 -0
  75. package/src/loadBalancer/configure/createLoadBalancer.html +25 -0
  76. package/src/loadBalancer/configure/createLoadBalancerProperties.html +128 -0
  77. package/src/loadBalancer/configure/editLoadBalancer.html +26 -0
  78. package/src/loadBalancer/configure/healthCheck.html +74 -0
  79. package/src/loadBalancer/configure/listeners.html +50 -0
  80. package/src/loadBalancer/details/loadBalancerDetail.controller.js +181 -0
  81. package/src/loadBalancer/details/loadBalancerDetail.controller.spec.js +39 -0
  82. package/src/loadBalancer/details/loadBalancerDetail.html +128 -0
  83. package/src/loadBalancer/loadBalancer.transformer.js +109 -0
  84. package/src/logo/azure.icon.svg +196 -0
  85. package/src/logo/azure.logo.less +6 -0
  86. package/src/logo/logo_azure.png +0 -0
  87. package/src/pipeline/stages/bake/azureBakeStage.js +276 -0
  88. package/src/pipeline/stages/bake/bakeExecutionDetails.controller.js +40 -0
  89. package/src/pipeline/stages/bake/bakeExecutionDetails.html +50 -0
  90. package/src/pipeline/stages/bake/bakeStage.html +187 -0
  91. package/src/pipeline/stages/destroyAsg/azureDestroyAsgStage.js +73 -0
  92. package/src/pipeline/stages/destroyAsg/destroyAsgStage.html +9 -0
  93. package/src/pipeline/stages/destroyAsg/destroyAsgStepLabel.html +1 -0
  94. package/src/pipeline/stages/disableAsg/azureDisableAsgStage.js +65 -0
  95. package/src/pipeline/stages/disableAsg/disableAsgStage.html +11 -0
  96. package/src/pipeline/stages/disableAsg/disableAsgStepLabel.html +1 -0
  97. package/src/pipeline/stages/enableAsg/azureEnableAsgStage.js +70 -0
  98. package/src/pipeline/stages/enableAsg/enableAsgStage.html +11 -0
  99. package/src/pipeline/stages/enableAsg/enableAsgStepLabel.html +1 -0
  100. package/src/securityGroup/clone/cloneSecurityGroup.controller.js +162 -0
  101. package/src/securityGroup/clone/cloneSecurityGroup.html +8 -0
  102. package/src/securityGroup/configure/CreateSecurityGroup.controller.spec.js +78 -0
  103. package/src/securityGroup/configure/CreateSecurityGroupCtrl.js +265 -0
  104. package/src/securityGroup/configure/EditSecurityGroupCtrl.js +222 -0
  105. package/src/securityGroup/configure/configSecurityGroup.mixin.controller.js +262 -0
  106. package/src/securityGroup/configure/createSecurityGroup.html +20 -0
  107. package/src/securityGroup/configure/createSecurityGroupIngress.html +75 -0
  108. package/src/securityGroup/configure/createSecurityGroupProperties.html +88 -0
  109. package/src/securityGroup/configure/editSecurityGroup.html +19 -0
  110. package/src/securityGroup/details/securityGroupDetail.controller.js +142 -0
  111. package/src/securityGroup/details/securityGroupDetail.html +78 -0
  112. package/src/securityGroup/securityGroup.reader.js +17 -0
  113. package/src/securityGroup/securityGroup.transformer.js +13 -0
  114. package/src/securityGroup/securityGroup.write.service.js +57 -0
  115. package/src/serverGroup/configure/serverGroup.configure.azure.module.js +47 -0
  116. package/src/serverGroup/configure/serverGroupCommandBuilder.service.js +175 -0
  117. package/src/serverGroup/configure/serverGroupConfiguration.service.js +357 -0
  118. package/src/serverGroup/configure/serverGroupConfiguration.service.spec.js +209 -0
  119. package/src/serverGroup/configure/wizard/CloneServerGroup.azure.controller.js +247 -0
  120. package/src/serverGroup/configure/wizard/ServerGroupInstanceArchetype.controller.js +35 -0
  121. package/src/serverGroup/configure/wizard/ServerGroupInstanceType.controller.js +15 -0
  122. package/src/serverGroup/configure/wizard/advancedSettings/ServerGroupAdvancedSettings.controller.js +25 -0
  123. package/src/serverGroup/configure/wizard/advancedSettings/advancedSettings.html +5 -0
  124. package/src/serverGroup/configure/wizard/advancedSettings/advancedSettingsSelector.directive.html +138 -0
  125. package/src/serverGroup/configure/wizard/advancedSettings/advancedSettingsSelector.directive.js +43 -0
  126. package/src/serverGroup/configure/wizard/basicSettings/ServerGroupBasicSettings.controller.js +71 -0
  127. package/src/serverGroup/configure/wizard/basicSettings/basicSettings.html +131 -0
  128. package/src/serverGroup/configure/wizard/basicSettings/image.regional.filter.js +15 -0
  129. package/src/serverGroup/configure/wizard/basicSettings/image.regional.filter.spec.js +42 -0
  130. package/src/serverGroup/configure/wizard/capacity/capacity.html +5 -0
  131. package/src/serverGroup/configure/wizard/capacity/capacitySelector.directive.html +20 -0
  132. package/src/serverGroup/configure/wizard/capacity/capacitySelector.directive.js +21 -0
  133. package/src/serverGroup/configure/wizard/capacity/zones.html +5 -0
  134. package/src/serverGroup/configure/wizard/healthSettings/ServerGroupHealthSettings.controller.js +38 -0
  135. package/src/serverGroup/configure/wizard/healthSettings/healthSettings.html +5 -0
  136. package/src/serverGroup/configure/wizard/healthSettings/healthSettingsSelector.directive.html +32 -0
  137. package/src/serverGroup/configure/wizard/healthSettings/healthSettingsSelector.directive.js +22 -0
  138. package/src/serverGroup/configure/wizard/image/ServerGroupImageSettings.controller.js +34 -0
  139. package/src/serverGroup/configure/wizard/image/imageSettings.html +5 -0
  140. package/src/serverGroup/configure/wizard/image/imageSettingsSelector.directive.html +33 -0
  141. package/src/serverGroup/configure/wizard/image/imageSettingsSelector.directive.js +22 -0
  142. package/src/serverGroup/configure/wizard/instanceArchetype.html +33 -0
  143. package/src/serverGroup/configure/wizard/instanceType/instanceType.html +10 -0
  144. package/src/serverGroup/configure/wizard/instanceType.html +33 -0
  145. package/src/serverGroup/configure/wizard/loadBalancers/ServerGroupLoadBalancers.controller.js +137 -0
  146. package/src/serverGroup/configure/wizard/loadBalancers/loadBalancers.html +3 -0
  147. package/src/serverGroup/configure/wizard/loadBalancers/serverGroupLoadBalancersSelector.directive.html +41 -0
  148. package/src/serverGroup/configure/wizard/loadBalancers/serverGroupLoadBalancersSelector.directive.js +22 -0
  149. package/src/serverGroup/configure/wizard/networkSettings/ServerGroupNetworkSettings.controller.js +44 -0
  150. package/src/serverGroup/configure/wizard/networkSettings/ServerGroupNetworkSettingsSelector.directive.html +54 -0
  151. package/src/serverGroup/configure/wizard/networkSettings/ServerGroupNetworkSettingsSelector.directive.js +19 -0
  152. package/src/serverGroup/configure/wizard/networkSettings/networkSettings.html +3 -0
  153. package/src/serverGroup/configure/wizard/securityGroup/ServerGroupSecurityGroups.controller.js +28 -0
  154. package/src/serverGroup/configure/wizard/securityGroup/securityGroups.html +3 -0
  155. package/src/serverGroup/configure/wizard/securityGroup/serverGroupSecurityGroupsSelector.directive.html +40 -0
  156. package/src/serverGroup/configure/wizard/securityGroup/serverGroupSecurityGroupsSelector.directive.js +38 -0
  157. package/src/serverGroup/configure/wizard/serverGroupWizard.html +61 -0
  158. package/src/serverGroup/configure/wizard/tags/tags.html +5 -0
  159. package/src/serverGroup/configure/wizard/tags/tagsSelector.directive.html +16 -0
  160. package/src/serverGroup/configure/wizard/tags/tagsSelector.directive.js +30 -0
  161. package/src/serverGroup/configure/wizard/templateSelection.html +9 -0
  162. package/src/serverGroup/configure/wizard/zones/zoneSelector.directive.html +21 -0
  163. package/src/serverGroup/configure/wizard/zones/zoneSelector.directive.js +28 -0
  164. package/src/serverGroup/details/rollback/RollbackServerGroupModal.tsx +158 -0
  165. package/src/serverGroup/details/serverGroup.details.module.js +11 -0
  166. package/src/serverGroup/details/serverGroupDetails.azure.controller.js +260 -0
  167. package/src/serverGroup/details/serverGroupDetails.html +98 -0
  168. package/src/serverGroup/serverGroup.transformer.js +150 -0
  169. package/src/serverGroup/serverGroup.transformer.spec.js +256 -0
  170. package/src/subnet/subnetSelectField.directive.html +28 -0
  171. package/src/subnet/subnetSelectField.directive.js +35 -0
  172. package/src/utility.spec.ts +61 -0
  173. package/src/utility.ts +95 -0
  174. package/src/validation/applicationName.validator.js +44 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,873 @@
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.4.10](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.4.9...@spinnaker/azure@0.4.10) (2024-06-10)
7
+
8
+ **Note:** Version bump only for package @spinnaker/azure
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.4.9](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.4.8...@spinnaker/azure@0.4.9) (2024-05-10)
15
+
16
+ **Note:** Version bump only for package @spinnaker/azure
17
+
18
+
19
+
20
+
21
+
22
+ ## [0.4.8](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.4.7...@spinnaker/azure@0.4.8) (2023-12-07)
23
+
24
+ **Note:** Version bump only for package @spinnaker/azure
25
+
26
+
27
+
28
+
29
+
30
+ ## [0.4.7](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.4.6...@spinnaker/azure@0.4.7) (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.4.6](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.4.5...@spinnaker/azure@0.4.6) (2023-09-06)
42
+
43
+ **Note:** Version bump only for package @spinnaker/azure
44
+
45
+
46
+
47
+
48
+
49
+ ## [0.4.5](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.4.4...@spinnaker/azure@0.4.5) (2023-07-20)
50
+
51
+ **Note:** Version bump only for package @spinnaker/azure
52
+
53
+
54
+
55
+
56
+
57
+ ## [0.4.4](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.4.3...@spinnaker/azure@0.4.4) (2023-06-02)
58
+
59
+ **Note:** Version bump only for package @spinnaker/azure
60
+
61
+
62
+
63
+
64
+
65
+ ## [0.4.3](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.4.2...@spinnaker/azure@0.4.3) (2023-05-11)
66
+
67
+ **Note:** Version bump only for package @spinnaker/azure
68
+
69
+
70
+
71
+
72
+
73
+ ## [0.4.2](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.4.1...@spinnaker/azure@0.4.2) (2023-05-03)
74
+
75
+ **Note:** Version bump only for package @spinnaker/azure
76
+
77
+
78
+
79
+
80
+
81
+ ## [0.4.1](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.4.0...@spinnaker/azure@0.4.1) (2023-04-03)
82
+
83
+ **Note:** Version bump only for package @spinnaker/azure
84
+
85
+
86
+
87
+
88
+
89
+ # [0.4.0](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.31...@spinnaker/azure@0.4.0) (2023-02-01)
90
+
91
+
92
+ ### Bug Fixes
93
+
94
+ * **azure:** Register Azure Bake Execution Details Controller ([#9933](https://github.com/spinnaker/deck/issues/9933)) ([809475c](https://github.com/spinnaker/deck/commit/809475cb79ce5bc1048c362f3d440750151e71f6))
95
+
96
+
97
+ ### Features
98
+
99
+ * **Azure:** Update UI to handle custom and managed images. ([#9910](https://github.com/spinnaker/deck/issues/9910)) ([a9057b4](https://github.com/spinnaker/deck/commit/a9057b44f035fc76a7eb461cd2c28c420791457c))
100
+
101
+
102
+
103
+
104
+
105
+ ## [0.3.31](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.30...@spinnaker/azure@0.3.31) (2022-10-21)
106
+
107
+ **Note:** Version bump only for package @spinnaker/azure
108
+
109
+
110
+
111
+
112
+
113
+ ## [0.3.30](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.29...@spinnaker/azure@0.3.30) (2022-10-06)
114
+
115
+ **Note:** Version bump only for package @spinnaker/azure
116
+
117
+
118
+
119
+
120
+
121
+ ## [0.3.29](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.28...@spinnaker/azure@0.3.29) (2022-08-03)
122
+
123
+ **Note:** Version bump only for package @spinnaker/azure
124
+
125
+
126
+
127
+
128
+
129
+ ## [0.3.28](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.27...@spinnaker/azure@0.3.28) (2022-07-11)
130
+
131
+ **Note:** Version bump only for package @spinnaker/azure
132
+
133
+
134
+
135
+
136
+
137
+ ## [0.3.27](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.26...@spinnaker/azure@0.3.27) (2022-07-01)
138
+
139
+ **Note:** Version bump only for package @spinnaker/azure
140
+
141
+
142
+
143
+
144
+
145
+ ## [0.3.26](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.25...@spinnaker/azure@0.3.26) (2022-06-22)
146
+
147
+ **Note:** Version bump only for package @spinnaker/azure
148
+
149
+
150
+
151
+
152
+
153
+ ## [0.3.25](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.24...@spinnaker/azure@0.3.25) (2022-05-05)
154
+
155
+ **Note:** Version bump only for package @spinnaker/azure
156
+
157
+
158
+
159
+
160
+
161
+ ## [0.3.24](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.23...@spinnaker/azure@0.3.24) (2022-04-21)
162
+
163
+ **Note:** Version bump only for package @spinnaker/azure
164
+
165
+
166
+
167
+
168
+
169
+ ## [0.3.23](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.22...@spinnaker/azure@0.3.23) (2022-04-09)
170
+
171
+ **Note:** Version bump only for package @spinnaker/azure
172
+
173
+
174
+
175
+
176
+
177
+ ## [0.3.22](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.21...@spinnaker/azure@0.3.22) (2022-03-08)
178
+
179
+ **Note:** Version bump only for package @spinnaker/azure
180
+
181
+
182
+
183
+
184
+
185
+ ## [0.3.21](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.20...@spinnaker/azure@0.3.21) (2022-01-22)
186
+
187
+ **Note:** Version bump only for package @spinnaker/azure
188
+
189
+
190
+
191
+
192
+
193
+ ## [0.3.20](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.19...@spinnaker/azure@0.3.20) (2022-01-12)
194
+
195
+ **Note:** Version bump only for package @spinnaker/azure
196
+
197
+
198
+
199
+
200
+
201
+ ## [0.3.19](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.18...@spinnaker/azure@0.3.19) (2021-12-11)
202
+
203
+ **Note:** Version bump only for package @spinnaker/azure
204
+
205
+
206
+
207
+
208
+
209
+ ## [0.3.18](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.17...@spinnaker/azure@0.3.18) (2021-12-08)
210
+
211
+ **Note:** Version bump only for package @spinnaker/azure
212
+
213
+
214
+
215
+
216
+
217
+ ## [0.3.17](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.16...@spinnaker/azure@0.3.17) (2021-12-01)
218
+
219
+ **Note:** Version bump only for package @spinnaker/azure
220
+
221
+
222
+
223
+
224
+
225
+ ## [0.3.16](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.15...@spinnaker/azure@0.3.16) (2021-11-12)
226
+
227
+ **Note:** Version bump only for package @spinnaker/azure
228
+
229
+
230
+
231
+
232
+
233
+ ## [0.3.15](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.14...@spinnaker/azure@0.3.15) (2021-11-03)
234
+
235
+ **Note:** Version bump only for package @spinnaker/azure
236
+
237
+
238
+
239
+
240
+
241
+ ## [0.3.14](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.13...@spinnaker/azure@0.3.14) (2021-10-05)
242
+
243
+ **Note:** Version bump only for package @spinnaker/azure
244
+
245
+
246
+
247
+
248
+
249
+ ## [0.3.13](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.12...@spinnaker/azure@0.3.13) (2021-10-01)
250
+
251
+ **Note:** Version bump only for package @spinnaker/azure
252
+
253
+
254
+
255
+
256
+
257
+ ## [0.3.12](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.10...@spinnaker/azure@0.3.12) (2021-09-30)
258
+
259
+
260
+ ### Bug Fixes
261
+
262
+ * bump @types/react to 16.14.10 ([bb62b99](https://github.com/spinnaker/deck/commit/bb62b991514c2a81fbdf467c01f3ce7467f71718))
263
+
264
+
265
+
266
+
267
+
268
+ ## [0.3.11](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.10...@spinnaker/azure@0.3.11) (2021-09-30)
269
+
270
+
271
+ ### Bug Fixes
272
+
273
+ * bump @types/react to 16.14.10 ([bb62b99](https://github.com/spinnaker/deck/commit/bb62b991514c2a81fbdf467c01f3ce7467f71718))
274
+
275
+
276
+
277
+
278
+
279
+ ## [0.3.10](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.9...@spinnaker/azure@0.3.10) (2021-09-29)
280
+
281
+ **Note:** Version bump only for package @spinnaker/azure
282
+
283
+
284
+
285
+
286
+
287
+ ## [0.3.9](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.8...@spinnaker/azure@0.3.9) (2021-09-24)
288
+
289
+ **Note:** Version bump only for package @spinnaker/azure
290
+
291
+
292
+
293
+
294
+
295
+ ## [0.3.8](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.7...@spinnaker/azure@0.3.8) (2021-09-23)
296
+
297
+ **Note:** Version bump only for package @spinnaker/azure
298
+
299
+
300
+
301
+
302
+
303
+ ## [0.3.7](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.6...@spinnaker/azure@0.3.7) (2021-09-23)
304
+
305
+ **Note:** Version bump only for package @spinnaker/azure
306
+
307
+
308
+
309
+
310
+
311
+ ## [0.3.6](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.5...@spinnaker/azure@0.3.6) (2021-09-21)
312
+
313
+ **Note:** Version bump only for package @spinnaker/azure
314
+
315
+
316
+
317
+
318
+
319
+ ## [0.3.5](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.4...@spinnaker/azure@0.3.5) (2021-09-18)
320
+
321
+ **Note:** Version bump only for package @spinnaker/azure
322
+
323
+
324
+
325
+
326
+
327
+ ## [0.3.4](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.3...@spinnaker/azure@0.3.4) (2021-09-18)
328
+
329
+ **Note:** Version bump only for package @spinnaker/azure
330
+
331
+
332
+
333
+
334
+
335
+ ## [0.3.3](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.2...@spinnaker/azure@0.3.3) (2021-09-16)
336
+
337
+ **Note:** Version bump only for package @spinnaker/azure
338
+
339
+
340
+
341
+
342
+
343
+ ## [0.3.2](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.1...@spinnaker/azure@0.3.2) (2021-09-15)
344
+
345
+ **Note:** Version bump only for package @spinnaker/azure
346
+
347
+
348
+
349
+
350
+
351
+ ## [0.3.1](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.3.0...@spinnaker/azure@0.3.1) (2021-09-14)
352
+
353
+ **Note:** Version bump only for package @spinnaker/azure
354
+
355
+
356
+
357
+
358
+
359
+ # [0.3.0](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.2.0...@spinnaker/azure@0.3.0) (2021-09-06)
360
+
361
+
362
+ ### Features
363
+
364
+ * **provider/azure:** Allow specifying App Gateway sku ([#9635](https://github.com/spinnaker/deck/issues/9635)) ([7e02b80](https://github.com/spinnaker/deck/commit/7e02b80deec2030178011c710c7a1c3e094cf876))
365
+
366
+
367
+
368
+
369
+
370
+ # [0.2.0](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.1.0...@spinnaker/azure@0.2.0) (2021-09-02)
371
+
372
+
373
+ ### Features
374
+
375
+ * **provider/azure:** Add image settings to server group ([#9632](https://github.com/spinnaker/deck/issues/9632)) ([940dd28](https://github.com/spinnaker/deck/commit/940dd28c9184f073c94fdeb01a24227b5bfe2e63))
376
+ * **provider/azure:** Add userAssignedIdentities to azure UI ([#9627](https://github.com/spinnaker/deck/issues/9627)) ([1aaaf03](https://github.com/spinnaker/deck/commit/1aaaf03577396318e6a028178014b5d6931552d3))
377
+
378
+
379
+
380
+
381
+
382
+ # [0.1.0](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.0.293...@spinnaker/azure@0.1.0) (2021-08-30)
383
+
384
+
385
+ ### Features
386
+
387
+ * **provider/azure:** Add healthSettings to server groups ([#9622](https://github.com/spinnaker/deck/issues/9622)) ([b98c8f5](https://github.com/spinnaker/deck/commit/b98c8f5b0b3bda953edee16f59a3865b2cc87938))
388
+ * **provider/azure:** Allow empty load balancer for Azure scale sets ([#9620](https://github.com/spinnaker/deck/issues/9620)) ([63c1647](https://github.com/spinnaker/deck/commit/63c1647dce5baa331467d536147166b1f84f7d9f))
389
+
390
+
391
+
392
+
393
+
394
+ ## [0.0.293](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.0.292...@spinnaker/azure@0.0.293) (2021-08-25)
395
+
396
+ **Note:** Version bump only for package @spinnaker/azure
397
+
398
+
399
+
400
+
401
+
402
+ ## [0.0.292](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.0.291...@spinnaker/azure@0.0.292) (2021-08-20)
403
+
404
+ **Note:** Version bump only for package @spinnaker/azure
405
+
406
+
407
+
408
+
409
+
410
+ ## [0.0.291](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.0.290...@spinnaker/azure@0.0.291) (2021-08-18)
411
+
412
+ **Note:** Version bump only for package @spinnaker/azure
413
+
414
+
415
+
416
+
417
+
418
+ ## [0.0.290](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.0.289...@spinnaker/azure@0.0.290) (2021-08-17)
419
+
420
+ **Note:** Version bump only for package @spinnaker/azure
421
+
422
+
423
+
424
+
425
+
426
+ ## [0.0.289](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.0.288...@spinnaker/azure@0.0.289) (2021-08-13)
427
+
428
+ **Note:** Version bump only for package @spinnaker/azure
429
+
430
+
431
+
432
+
433
+
434
+ ## [0.0.288](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.0.287...@spinnaker/azure@0.0.288) (2021-08-10)
435
+
436
+ **Note:** Version bump only for package @spinnaker/azure
437
+
438
+
439
+
440
+
441
+
442
+ ## [0.0.287](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.0.286...@spinnaker/azure@0.0.287) (2021-08-05)
443
+
444
+ **Note:** Version bump only for package @spinnaker/azure
445
+
446
+
447
+
448
+
449
+
450
+ ## [0.0.286](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.0.285...@spinnaker/azure@0.0.286) (2021-08-02)
451
+
452
+ **Note:** Version bump only for package @spinnaker/azure
453
+
454
+
455
+
456
+
457
+
458
+ ## [0.0.285](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.0.284...@spinnaker/azure@0.0.285) (2021-07-30)
459
+
460
+ **Note:** Version bump only for package @spinnaker/azure
461
+
462
+
463
+
464
+
465
+
466
+ ## [0.0.284](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.0.283...@spinnaker/azure@0.0.284) (2021-07-26)
467
+
468
+ **Note:** Version bump only for package @spinnaker/azure
469
+
470
+
471
+
472
+
473
+
474
+ ## [0.0.283](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.0.282...@spinnaker/azure@0.0.283) (2021-07-22)
475
+
476
+ **Note:** Version bump only for package @spinnaker/azure
477
+
478
+
479
+
480
+
481
+
482
+ ## [0.0.282](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.0.280...@spinnaker/azure@0.0.282) (2021-07-22)
483
+
484
+ **Note:** Version bump only for package @spinnaker/azure
485
+
486
+
487
+
488
+
489
+
490
+ ## [0.0.281](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.0.280...@spinnaker/azure@0.0.281) (2021-07-22)
491
+
492
+ **Note:** Version bump only for package @spinnaker/azure
493
+
494
+
495
+
496
+
497
+
498
+ ## [0.0.280](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.0.275...@spinnaker/azure@0.0.280) (2021-07-19)
499
+
500
+ **Note:** Version bump only for package @spinnaker/azure
501
+
502
+
503
+
504
+
505
+
506
+ ## [0.0.279](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.0.275...@spinnaker/azure@0.0.279) (2021-07-19)
507
+
508
+ **Note:** Version bump only for package @spinnaker/azure
509
+
510
+
511
+
512
+
513
+
514
+ ## [0.0.278](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.0.275...@spinnaker/azure@0.0.278) (2021-07-19)
515
+
516
+ **Note:** Version bump only for package @spinnaker/azure
517
+
518
+
519
+
520
+
521
+
522
+ ## [0.0.277](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.0.275...@spinnaker/azure@0.0.277) (2021-07-19)
523
+
524
+ **Note:** Version bump only for package @spinnaker/azure
525
+
526
+
527
+
528
+
529
+
530
+ ## [0.0.276](https://github.com/spinnaker/deck/compare/@spinnaker/azure@0.0.275...@spinnaker/azure@0.0.276) (2021-07-19)
531
+
532
+ **Note:** Version bump only for package @spinnaker/azure
533
+
534
+
535
+
536
+
537
+
538
+ ## 0.0.275 (2021-07-17)
539
+
540
+
541
+ ### Bug Fixes
542
+
543
+ * **publishing:** Auto approve instead of adding "ready to merge" label ([51f536c](https://github.com/spinnaker/deck/commit/51f536c275e77854d8f173aeec86412ffbd66b6d))
544
+
545
+
546
+
547
+
548
+
549
+
550
+ ## [0.0.273](https://www.github.com/spinnaker/deck/compare/90ef4c83216fd0834f0e22833c7c9642c5744453...7967ddb72c6c3b030d9a654a9b80e9c12698db73) (2021-07-08)
551
+
552
+
553
+ ### Changes
554
+
555
+ chore(azure): publish azure@0.0.273 ([7967ddb7](https://github.com/spinnaker/deck/commit/7967ddb72c6c3b030d9a654a9b80e9c12698db73))
556
+ chore(*): Import TaskMonitorWrapper from core instead of NgReact [#9406](https://github.com/spinnaker/deck/pull/9406) ([cce5473b](https://github.com/spinnaker/deck/commit/cce5473b600f173f9df41c7dabe6e2fceb29999f))
557
+
558
+
559
+
560
+ ## [0.0.272](https://www.github.com/spinnaker/deck/compare/815b21e20d401f9730da97456929f6c71066c01c...90ef4c83216fd0834f0e22833c7c9642c5744453) (2021-07-01)
561
+
562
+
563
+ ### Changes
564
+
565
+ chore(azure): publish azure@0.0.272 ([90ef4c83](https://github.com/spinnaker/deck/commit/90ef4c83216fd0834f0e22833c7c9642c5744453))
566
+ chore(all): Remove ng template cache for webpack ([be6df680](https://github.com/spinnaker/deck/commit/be6df680689e0624b27635bc875d0b4390a3bc4a))
567
+ chore(build): Integrate with yarn workspaces ([e30e631b](https://github.com/spinnaker/deck/commit/e30e631b128bd1c8bfef3a48643ce0b4f9935f1d))
568
+
569
+
570
+
571
+ ## [0.0.271](https://www.github.com/spinnaker/deck/compare/2684800fff70b6a81e4596c32d26f52bcf568c79...815b21e20d401f9730da97456929f6c71066c01c) (2021-06-14)
572
+
573
+
574
+ ### Changes
575
+
576
+ chore(azure): publish azure@0.0.271 ([815b21e2](https://github.com/spinnaker/deck/commit/815b21e20d401f9730da97456929f6c71066c01c))
577
+ fix(imports): Convert requires to imports ([5839a0f4](https://github.com/spinnaker/deck/commit/5839a0f42059247c08ac52322f2c7dfd260b3644))
578
+ refactor(packages): Migrate packages to make them independent ([38b5fa17](https://github.com/spinnaker/deck/commit/38b5fa17d82a1a032e84e6c3f51c806b5d6901b8))
579
+
580
+
581
+
582
+ ## [0.0.270](https://www.github.com/spinnaker/deck/compare/7fec6f81f040b363e6196e07072c8c1ccf3d2cd2...2684800fff70b6a81e4596c32d26f52bcf568c79) (2021-06-10)
583
+
584
+
585
+ ### Changes
586
+
587
+ chore(azure): publish azure@0.0.270 ([2684800f](https://github.com/spinnaker/deck/commit/2684800fff70b6a81e4596c32d26f52bcf568c79))
588
+ fix(build): Fix distribution dir ([eb87451a](https://github.com/spinnaker/deck/commit/eb87451afb8a4696a4c6d76589cb95d8b4192398))
589
+
590
+
591
+
592
+ ## [0.0.269](https://www.github.com/spinnaker/deck/compare/e04b4649d1b12fce03d041f05b8cff6867aa547f...7fec6f81f040b363e6196e07072c8c1ccf3d2cd2) (2021-05-06)
593
+
594
+
595
+ ### Changes
596
+
597
+ chore(azure): publish azure@0.0.269 ([7fec6f81](https://github.com/spinnaker/deck/commit/7fec6f81f040b363e6196e07072c8c1ccf3d2cd2))
598
+ fix(core): pushed modal overlay to the background [#9111](https://github.com/spinnaker/deck/pull/9111) ([22859bea](https://github.com/spinnaker/deck/commit/22859bea9a4a1f2ecbcb7d131f204e9131b756cc))
599
+
600
+
601
+
602
+ ## [0.0.268](https://www.github.com/spinnaker/deck/compare/bcf31378b4c33a89fecfa5b170ca90c339809b42...e04b4649d1b12fce03d041f05b8cff6867aa547f) (2021-04-21)
603
+
604
+
605
+ ### Changes
606
+
607
+ chore(azure): publish azure@0.0.268 ([e04b4649](https://github.com/spinnaker/deck/commit/e04b4649d1b12fce03d041f05b8cff6867aa547f))
608
+
609
+
610
+
611
+ ## [0.0.267](https://www.github.com/spinnaker/deck/compare/868fa7ca2556e08165e808bdaa8f1ad3918a99a6...bcf31378b4c33a89fecfa5b170ca90c339809b42) (2021-04-21)
612
+
613
+
614
+ ### Changes
615
+
616
+ chore(azure): publish azure@0.0.267 ([bcf31378](https://github.com/spinnaker/deck/commit/bcf31378b4c33a89fecfa5b170ca90c339809b42))
617
+ Remove webpack modules + webpack consolidation [#9097](https://github.com/spinnaker/deck/pull/9097) ([00145566](https://github.com/spinnaker/deck/commit/001455667f2afb5c728737863f7365fc4fcbb76b))
618
+
619
+
620
+
621
+ ## [0.0.266](https://www.github.com/spinnaker/deck/compare/1b25eb578123e41781cb3cc58a6a3b94dce732f8...868fa7ca2556e08165e808bdaa8f1ad3918a99a6) (2021-03-30)
622
+
623
+
624
+ ### Changes
625
+
626
+ chore(azure): publish azure@0.0.266 ([868fa7ca](https://github.com/spinnaker/deck/commit/868fa7ca2556e08165e808bdaa8f1ad3918a99a6))
627
+ test: fix usage of httpMock ([80783042](https://github.com/spinnaker/deck/commit/807830424a51219b7aecf2cf7240039237e5a7af))
628
+
629
+
630
+
631
+ ## [0.0.265](https://www.github.com/spinnaker/deck/compare/e507f5d466ea55893cfe1f7bd80d233166f92a46...1b25eb578123e41781cb3cc58a6a3b94dce732f8) (2021-02-22)
632
+
633
+
634
+ ### Changes
635
+
636
+ chore(azure): publish azure@0.0.265 ([1b25eb57](https://github.com/spinnaker/deck/commit/1b25eb578123e41781cb3cc58a6a3b94dce732f8))
637
+ chore(lint): Sort import statements ([cca56eaa](https://github.com/spinnaker/deck/commit/cca56eaaeeb412b7596c68a1260eefed7fbf6fed))
638
+ refactor(core): Remove obsolete files ([63b465ab](https://github.com/spinnaker/deck/commit/63b465ab28f9f9314274f75154cfec4e7fa85265))
639
+
640
+
641
+
642
+ ## [0.0.264](https://www.github.com/spinnaker/deck/compare/ff75cbf1e66af815b4dca5fa723f9131bd10cc2e...e507f5d466ea55893cfe1f7bd80d233166f92a46) (2021-01-19)
643
+
644
+
645
+ ### Changes
646
+
647
+ chore(azure): publish azure@0.0.264 ([e507f5d4](https://github.com/spinnaker/deck/commit/e507f5d466ea55893cfe1f7bd80d233166f92a46))
648
+ Deangularize instance writer [#8834](https://github.com/spinnaker/deck/pull/8834) ([f16b0775](https://github.com/spinnaker/deck/commit/f16b0775917242a39ae70e86c5541020c898b872))
649
+
650
+
651
+
652
+ ## [0.0.263](https://www.github.com/spinnaker/deck/compare/50d5b0030430ed2a2309ca5563a76751116e8e74...ff75cbf1e66af815b4dca5fa723f9131bd10cc2e) (2020-12-16)
653
+
654
+
655
+ ### Changes
656
+
657
+ chore(azure): publish azure@0.0.263 ([ff75cbf1](https://github.com/spinnaker/deck/commit/ff75cbf1e66af815b4dca5fa723f9131bd10cc2e))
658
+ refactor(REST): Prefer REST('/foo/bar') over REST().path('foo', 'bar') ([1d4320a0](https://github.com/spinnaker/deck/commit/1d4320a08f73093483cbb93784e9115c236b1f8a))
659
+ refactor(api-deprecation): API is deprecated, switch to REST() ([97bfbf67](https://github.com/spinnaker/deck/commit/97bfbf67b5d359cc540918b62c99088ad82dfb1b))
660
+ refactor(api-deprecation): Prefer API.path('foo', 'bar') over API.path('foo').path('bar') ([39b08e72](https://github.com/spinnaker/deck/commit/39b08e72b4baef1063a3ab9b65584e6e4e73d3e2))
661
+ refactor(api-deprecation): Migrate from API.get(queryparams) to .query(queryparams).get() ([46db35b0](https://github.com/spinnaker/deck/commit/46db35b063b8c9b457f3f3675cd81a11a867c070))
662
+ refactor(api-deprecation): Migrate from API.one/all/withParams/getList() to path/query/get() ([587db3ab](https://github.com/spinnaker/deck/commit/587db3ab20040fb5c72fe48feb36eccd7d1f297a))
663
+ test(mock-http-client): Remove unnecessary API.baseUrl prefix in expectGET/etc calls ([807de9ad](https://github.com/spinnaker/deck/commit/807de9ada97154e3e8b699dece0f8d5ec4493942))
664
+ test(mock-http-client): Remove no longer needed references to $httpBackend in unit tests after migration to MockHttpClient ([924e80be](https://github.com/spinnaker/deck/commit/924e80be96fcd9e72cae7381cb50b577fa2ca709))
665
+ test(mock-http-client): Manually fix tests which didn't pass after auto-migrating using the eslint rule migrate-to-mock-http-client --fix ([e1238187](https://github.com/spinnaker/deck/commit/e1238187ffb851e2b2a6402004bc6a42e780ec9a))
666
+ test(mock-http-client): Run eslint rule migrate-to-mock-http-client --fix ([ef5d8ea0](https://github.com/spinnaker/deck/commit/ef5d8ea0661d360661831b57d3ee8457aae0ecfd))
667
+ test(azure): Remove test that asserts nothing ([c5614e4f](https://github.com/spinnaker/deck/commit/c5614e4f814754bd251f8555604b511fae9c6efd))
668
+ Avoid raw "$http" usage [#8790](https://github.com/spinnaker/deck/pull/8790) ([969f4fe0](https://github.com/spinnaker/deck/commit/969f4fe0e9ab75eef2ceb0a2287643425293e209))
669
+
670
+
671
+
672
+ ## [0.0.262](https://www.github.com/spinnaker/deck/compare/70bebc781c4e3a4707c0db45773324217d3190b6...50d5b0030430ed2a2309ca5563a76751116e8e74) (2020-11-07)
673
+
674
+
675
+ ### Changes
676
+
677
+ chore(azure): publish azure@0.0.262 ([50d5b003](https://github.com/spinnaker/deck/commit/50d5b0030430ed2a2309ca5563a76751116e8e74))
678
+ 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))
679
+
680
+
681
+
682
+ ## [0.0.261](https://www.github.com/spinnaker/deck/compare/07b9aec5230366385175d328230193b30591ab51...70bebc781c4e3a4707c0db45773324217d3190b6) (2020-10-28)
683
+
684
+
685
+ ### Changes
686
+
687
+ chore(azure): publish azure@0.0.261 ([70bebc78](https://github.com/spinnaker/deck/commit/70bebc781c4e3a4707c0db45773324217d3190b6))
688
+ 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))
689
+
690
+
691
+
692
+ ## [0.0.260](https://www.github.com/spinnaker/deck/compare/47a8002877ce304ce51f928214e6b3b60820fc6c...07b9aec5230366385175d328230193b30591ab51) (2020-10-28)
693
+
694
+
695
+ ### Changes
696
+
697
+ chore(azure): publish azure@0.0.260 ([07b9aec5](https://github.com/spinnaker/deck/commit/07b9aec5230366385175d328230193b30591ab51))
698
+ chore(azure/pipeline): Migrate from $q.all({}) to $q.all([]) ([7cc752b3](https://github.com/spinnaker/deck/commit/7cc752b3c63745f06aba45ef142424344ad6fda2))
699
+ chore(azure/serverGroup): Migrate from $q.all({}) to $q.all([]) ([8ab8a0ba](https://github.com/spinnaker/deck/commit/8ab8a0bafc3b51806bfa52a491daf5bce00b3092))
700
+ chore(azure/serverGroup): Migrate from $q.all({}) to $q.all([]) ([cadfff24](https://github.com/spinnaker/deck/commit/cadfff2415caccf0ce3fe613aa10c2ec071f5d2f))
701
+ chore(google/pipeline): Migrate from $q.all({}) to $q.all([]) ([87ef51c4](https://github.com/spinnaker/deck/commit/87ef51c43670b0988c446bccdbf00a6205385124))
702
+ 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))
703
+ chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
704
+ 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))
705
+
706
+
707
+
708
+ ## [0.0.259](https://www.github.com/spinnaker/deck/compare/a220af588e194762757be534cce2d7ae9dc508d5...47a8002877ce304ce51f928214e6b3b60820fc6c) (2020-10-26)
709
+
710
+
711
+ ### Changes
712
+
713
+ 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))
714
+ chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
715
+ 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))
716
+ chore(azure): publish azure@0.0.259 ([7852568d](https://github.com/spinnaker/deck/commit/7852568ddb76c0d430eb6e4eabff37bc315fb0cf))
717
+ 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))
718
+ 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))
719
+ 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))
720
+
721
+
722
+
723
+ ## [0.0.258](https://www.github.com/spinnaker/deck/compare/7852568ddb76c0d430eb6e4eabff37bc315fb0cf...a220af588e194762757be534cce2d7ae9dc508d5) (2020-10-26)
724
+
725
+
726
+ ### Changes
727
+
728
+ 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))
729
+
730
+
731
+
732
+ ## [0.0.259](https://www.github.com/spinnaker/deck/compare/4b79b4d75628bc74b91b72980f0a5e8ba479335e...7852568ddb76c0d430eb6e4eabff37bc315fb0cf) (2020-10-26)
733
+
734
+
735
+ ### Changes
736
+
737
+ 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))
738
+ chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
739
+ 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))
740
+ chore(azure): publish azure@0.0.259 ([7852568d](https://github.com/spinnaker/deck/commit/7852568ddb76c0d430eb6e4eabff37bc315fb0cf))
741
+ 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))
742
+ 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))
743
+ 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))
744
+
745
+
746
+
747
+ ## [0.0.258](https://www.github.com/spinnaker/deck/compare/f216cc6556bff90033b28bbe7e9f94517ddaa270...4b79b4d75628bc74b91b72980f0a5e8ba479335e) (2020-10-12)
748
+
749
+
750
+ ### Changes
751
+
752
+ 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))
753
+ chore(azure): publish azure@0.0.259 ([7852568d](https://github.com/spinnaker/deck/commit/7852568ddb76c0d430eb6e4eabff37bc315fb0cf))
754
+ 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))
755
+ 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))
756
+ 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))
757
+ 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))
758
+ chore(prettier): Just Update Prettier™ [#8644](https://github.com/spinnaker/deck/pull/8644) ([8532bdd4](https://github.com/spinnaker/deck/commit/8532bdd4c08d59c38a0adde70ccac4f163c9dd97))
759
+
760
+
761
+
762
+ ## [0.0.257](https://www.github.com/spinnaker/deck/compare/5cdc7fa4494ada88702155bb91f80a0a16f3782e...f216cc6556bff90033b28bbe7e9f94517ddaa270) (2020-10-09)
763
+
764
+
765
+ ### Changes
766
+
767
+ 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))
768
+ chore(eslint): eslint --fix api-no-slashes [#8631](https://github.com/spinnaker/deck/pull/8631) ([fab1a0ad](https://github.com/spinnaker/deck/commit/fab1a0ad75200cca60dfb74455d99f332e3e376f))
769
+
770
+
771
+
772
+ ## [0.0.256](https://www.github.com/spinnaker/deck/compare/8aa1e3e514703fcf0b4bf7b06dffafe01e9c27ed...5cdc7fa4494ada88702155bb91f80a0a16f3782e) (2020-10-06)
773
+
774
+
775
+ ### Changes
776
+
777
+ chore(package): amazon@0.0.270 azure@0.0.256 cloudfoundry@0.0.102 core@0.0.517 docker@0.0.61 google@0.0.22 oracle@0.0.10 tencentcloud@0.0.7 [#8630](https://github.com/spinnaker/deck/pull/8630) ([5cdc7fa4](https://github.com/spinnaker/deck/commit/5cdc7fa4494ada88702155bb91f80a0a16f3782e))
778
+ Revert "fix(appname): encodeURIComponent for app name (#8586)" [#8627](https://github.com/spinnaker/deck/pull/8627) ([885cd169](https://github.com/spinnaker/deck/commit/885cd169ad0dca8e7e6683bc96d2c131af6b3a1e))
779
+
780
+
781
+
782
+ ## [0.0.255](https://www.github.com/spinnaker/deck/compare/2273dee2b3668ba105a34a062da669cdf7c207c5...8aa1e3e514703fcf0b4bf7b06dffafe01e9c27ed) (2020-10-05)
783
+
784
+
785
+ ### Changes
786
+
787
+ chore(package): amazon@0.0.269 azure@0.0.255 cloudfoundry@0.0.101 core@0.0.516 docker@0.0.60 google@0.0.21 oracle@0.0.9 tencentcloud@0.0.6 [#8624](https://github.com/spinnaker/deck/pull/8624) ([8aa1e3e5](https://github.com/spinnaker/deck/commit/8aa1e3e514703fcf0b4bf7b06dffafe01e9c27ed))
788
+ fix(appname): encodeURIComponent for app name [#8586](https://github.com/spinnaker/deck/pull/8586) ([f1bb04e8](https://github.com/spinnaker/deck/commit/f1bb04e867e68e53f4e4edb22192afbcd9715d5d))
789
+
790
+
791
+
792
+ ## [0.0.254](https://www.github.com/spinnaker/deck/compare/ced77a7453a0ffab5a14c38943288138fdcb084b...2273dee2b3668ba105a34a062da669cdf7c207c5) (2020-09-23)
793
+
794
+
795
+ ### Changes
796
+
797
+ 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))
798
+ feat(core/*): Deck layout optimizations [#8556](https://github.com/spinnaker/deck/pull/8556) ([2588b7f3](https://github.com/spinnaker/deck/commit/2588b7f3e1ecbfd590e7cc87a225bbfd056449e3))
799
+
800
+
801
+
802
+ ## [0.0.253](https://www.github.com/spinnaker/deck/compare/b6e98d1fc71f66f2e2a5c03b6c6133de9c36b98b...ced77a7453a0ffab5a14c38943288138fdcb084b) (2020-08-25)
803
+
804
+
805
+ ### Changes
806
+
807
+ 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))
808
+ chore(licenses): add license metadata to npm packages [#8512](https://github.com/spinnaker/deck/pull/8512) ([d4afa1bf](https://github.com/spinnaker/deck/commit/d4afa1bf2328cc91cf3195f810073b0b4726b3b5))
809
+
810
+
811
+
812
+ ## [0.0.252](https://www.github.com/spinnaker/deck/compare/f227aa8ec00fffe63e39abc75b9c504180804623...b6e98d1fc71f66f2e2a5c03b6c6133de9c36b98b) (2020-07-28)
813
+
814
+
815
+ ### Changes
816
+
817
+ 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))
818
+ fix(bake): show advanced options [#8427](https://github.com/spinnaker/deck/pull/8427) ([7202e6f0](https://github.com/spinnaker/deck/commit/7202e6f044cbd92acfded63627eb2ae7cc2e9bac))
819
+
820
+
821
+
822
+ ## [0.0.251](https://www.github.com/spinnaker/deck/compare/d956a2460bdfc301c0c9c9d93e5159ed8f00bfc8...f227aa8ec00fffe63e39abc75b9c504180804623) (2020-04-21)
823
+
824
+
825
+ ### Changes
826
+
827
+ 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))
828
+ 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))
829
+
830
+
831
+
832
+ ## [0.0.250](https://www.github.com/spinnaker/deck/compare/664d174a790d16c8df06d227d0b26dfbd9a759a4...d956a2460bdfc301c0c9c9d93e5159ed8f00bfc8) (2020-03-20)
833
+
834
+
835
+ ### Changes
836
+
837
+ chore(package): publish appengine 0.0.10 azure 0.0.250 cloudfoundry 0.0.95 core 0.0.461 docker 0.0.54 ecs 0.0.253 google 0.0.11 huaweicloud 0.0.3 kubernetes 0.0.34 oracle 0.0.5 [#8064](https://github.com/spinnaker/deck/pull/8064) ([d956a246](https://github.com/spinnaker/deck/commit/d956a2460bdfc301c0c9c9d93e5159ed8f00bfc8))
838
+ 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))
839
+
840
+
841
+
842
+ ## [0.0.249](https://www.github.com/spinnaker/deck/compare/0ef76762f946d5f3731d904074092164c0b25315...664d174a790d16c8df06d227d0b26dfbd9a759a4) (2020-03-12)
843
+
844
+
845
+ ### Changes
846
+
847
+ chore(package): publish amazon 0.0.245 appengine 0.0.9 azure 0.0.249 cloudfoundry 0.0.94 core 0.0.459 ecs 0.0.252 google 0.0.10 huaweicloud 0.0.2 kubernetes 0.0.33 oracle 0.0.4 [#8035](https://github.com/spinnaker/deck/pull/8035) ([664d174a](https://github.com/spinnaker/deck/commit/664d174a790d16c8df06d227d0b26dfbd9a759a4))
848
+ 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))
849
+ refactor(*): de-angularize confirmationModalService [#7759](https://github.com/spinnaker/deck/pull/7759) ([e6c6c662](https://github.com/spinnaker/deck/commit/e6c6c662b5326fcb184772c99f2212ce4336a1cb))
850
+ refactor(*): use consistent styles on modal headers ([10b34915](https://github.com/spinnaker/deck/commit/10b34915860ed46f21d0179bf87c3b456de49c56))
851
+ refactor(core): convert confirmation modal to react ([a59b2c32](https://github.com/spinnaker/deck/commit/a59b2c3264500080fad7caeb05054eef6f51d52c))
852
+ 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))
853
+ chore(core): upgrade to latest prettier [#7713](https://github.com/spinnaker/deck/pull/7713) ([6291f858](https://github.com/spinnaker/deck/commit/6291f858cb111d9c65affeb82ddd840f05c57b65))
854
+ refactor(eslint): Fix all 'prefer-const' eslint rule violations ([90aa4775](https://github.com/spinnaker/deck/commit/90aa47754bc8815eb1bdfcceb4d05c9e1cdf325f))
855
+ refactor(eslint): Fix all 'one-var' eslint rule violations ([d070bd45](https://github.com/spinnaker/deck/commit/d070bd45ff3e185999e863e3f48c01f63eb45733))
856
+ refactor(eslint): Fix all 'no-var' eslint rule violations ([17487016](https://github.com/spinnaker/deck/commit/174870161a5a09ab7f15c74cb84d0f3e196cd7cb))
857
+ chore(eslint): remove tslint ([9400826b](https://github.com/spinnaker/deck/commit/9400826bcb119cf7681e1ce37092b9fdd8b76b1b))
858
+ 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))
859
+ 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))
860
+ 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))
861
+ refactor(angularjs): Always export the ng module name, not the module itself ([784d64b6](https://github.com/spinnaker/deck/commit/784d64b66a6410e622803b4b0519f7050e9c5f82))
862
+ 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))
863
+ feat(typescript): enable allowJs and allowSyntheticDefaultImports ([7ef58b6c](https://github.com/spinnaker/deck/commit/7ef58b6c122f9ce91eab95d5f444622a710ff968))
864
+ refactor(*): Remove exports-loader from n3-chart import ([f0613c1b](https://github.com/spinnaker/deck/commit/f0613c1b1648f0c2ea54623cb535a6d54bea2355))
865
+ 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))
866
+ fix(azure,gce): Fix typo breaking bake stage [#7631](https://github.com/spinnaker/deck/pull/7631) ([0a4f315e](https://github.com/spinnaker/deck/commit/0a4f315e11ec35ce905be93a6df5ee58399f0967))
867
+ feat(dataSources): widen + parameterize types, add default values ([4ed015a0](https://github.com/spinnaker/deck/commit/4ed015a07c028eb58807601a0b0fb9783b02b0d9))
868
+ fix(rosco): Re-evaluate roscoSelector on stage updates [#7577](https://github.com/spinnaker/deck/pull/7577) ([d620e057](https://github.com/spinnaker/deck/commit/d620e057e1c0d85984caa9a8ff0639d17ea9309c))
869
+ feat(rosco): Allow optional roscoDetailUrl for roscoMode bakes [#7575](https://github.com/spinnaker/deck/pull/7575) ([dae00c87](https://github.com/spinnaker/deck/commit/dae00c87adc5e69ac232a2145d35e73072cf5766))
870
+ feat(rosco): Allow roscoMode per stage/execution [#7564](https://github.com/spinnaker/deck/pull/7564) ([c2bbf20d](https://github.com/spinnaker/deck/commit/c2bbf20d83d2c82aa1442379b98d4ed71a3379a2))
871
+ 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))
872
+ chore(package): Just Update Prettier™ ([cdd6f237](https://github.com/spinnaker/deck/commit/cdd6f2379859d3c2b13bac59aa470c08b391a865))
873
+ feat(provider/azure): Enable data disk for server group [#7116](https://github.com/spinnaker/deck/pull/7116) ([f650ca9d](https://github.com/spinnaker/deck/commit/f650ca9db4abaf648d7003bd109b47d61a1b728d))