@spinnaker/oracle 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 (117) hide show
  1. package/CHANGELOG.md +868 -0
  2. package/LICENSE.txt +203 -0
  3. package/dist/common/footer.component.d.ts +2 -0
  4. package/dist/domain/IOracleLoadBalancer.d.ts +114 -0
  5. package/dist/helpContents/oracleHelpContents.d.ts +1 -0
  6. package/dist/image/image.reader.d.ts +2 -0
  7. package/dist/index.d.ts +1 -0
  8. package/dist/index.js +3634 -0
  9. package/dist/index.js.map +1 -0
  10. package/dist/instance/details/instance.details.controller.d.ts +2 -0
  11. package/dist/loadBalancer/configure/createLoadBalancer.controller.d.ts +87 -0
  12. package/dist/loadBalancer/details/loadBalancerDetail.controller.d.ts +21 -0
  13. package/dist/loadBalancer/loadBalancer.transformer.d.ts +12 -0
  14. package/dist/oracle.module.d.ts +2 -0
  15. package/dist/oracle.settings.d.ts +15 -0
  16. package/dist/pipeline/stages/bake/bakeExecutionDetails.controller.d.ts +2 -0
  17. package/dist/pipeline/stages/bake/ociBakeStage.d.ts +2 -0
  18. package/dist/pipeline/stages/destroyAsg/destroyAsgStage.d.ts +2 -0
  19. package/dist/pipeline/stages/disableAsg/disableAsgStage.d.ts +2 -0
  20. package/dist/pipeline/stages/findAmi/findAmiStage.d.ts +2 -0
  21. package/dist/pipeline/stages/findImageFromTags/oracleFindImageFromTagsStage.d.ts +2 -0
  22. package/dist/pipeline/stages/resizeAsg/resizeAsgStage.d.ts +2 -0
  23. package/dist/pipeline/stages/scaleDownCluster/scaleDownClusterStage.d.ts +2 -0
  24. package/dist/pipeline/stages/shrinkCluster/shrinkClusterStage.d.ts +2 -0
  25. package/dist/securityGroup/configure/createSecurityGroup.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/serverGroup/configure/serverGroup.configure.module.d.ts +2 -0
  29. package/dist/serverGroup/configure/serverGroupCommandBuilder.service.d.ts +2 -0
  30. package/dist/serverGroup/configure/serverGroupConfiguration.service.d.ts +2 -0
  31. package/dist/serverGroup/configure/wizard/basicSettings/basicSettings.controller.d.ts +2 -0
  32. package/dist/serverGroup/configure/wizard/capacity/capacitySelector.component.d.ts +2 -0
  33. package/dist/serverGroup/configure/wizard/cloneServerGroup.controller.d.ts +2 -0
  34. package/dist/serverGroup/details/resize/resizeCapacity.component.d.ts +2 -0
  35. package/dist/serverGroup/details/resize/resizeServerGroup.controller.d.ts +2 -0
  36. package/dist/serverGroup/details/rollback/rollbackServerGroup.controller.d.ts +2 -0
  37. package/dist/serverGroup/details/serverGroupDetails.controller.d.ts +2 -0
  38. package/dist/serverGroup/serverGroup.transformer.d.ts +2 -0
  39. package/package.json +38 -0
  40. package/src/common/footer.component.html +7 -0
  41. package/src/common/footer.component.js +18 -0
  42. package/src/common/ocid/ocid.component.js +15 -0
  43. package/src/common/ocid/ocid.template.html +10 -0
  44. package/src/common/ocid/truncateOcid.filter.js +14 -0
  45. package/src/domain/IOracleLoadBalancer.ts +110 -0
  46. package/src/helpContents/oracleHelpContents.ts +52 -0
  47. package/src/image/image.reader.js +38 -0
  48. package/src/index.ts +1 -0
  49. package/src/instance/details/instance.details.controller.js +56 -0
  50. package/src/instance/details/instanceDetails.html +31 -0
  51. package/src/loadBalancer/configure/backendSets.html +67 -0
  52. package/src/loadBalancer/configure/certificates.html +63 -0
  53. package/src/loadBalancer/configure/createLoadBalancer.controller.spec.ts +201 -0
  54. package/src/loadBalancer/configure/createLoadBalancer.controller.ts +540 -0
  55. package/src/loadBalancer/configure/createLoadBalancer.html +25 -0
  56. package/src/loadBalancer/configure/createLoadBalancerProperties.html +167 -0
  57. package/src/loadBalancer/configure/editLoadBalancer.html +26 -0
  58. package/src/loadBalancer/configure/listeners.html +88 -0
  59. package/src/loadBalancer/details/loadBalancerDetail.controller.spec.ts +62 -0
  60. package/src/loadBalancer/details/loadBalancerDetail.controller.ts +163 -0
  61. package/src/loadBalancer/details/loadBalancerDetail.html +100 -0
  62. package/src/loadBalancer/loadBalancer.transformer.ts +144 -0
  63. package/src/oracle.module.ts +94 -0
  64. package/src/oracle.settings.ts +19 -0
  65. package/src/pipeline/disableAsg/disableAsgStage.html +11 -0
  66. package/src/pipeline/disableAsg/disableAsgStage.js +62 -0
  67. package/src/pipeline/disableAsg/disableAsgStepLabel.html +1 -0
  68. package/src/pipeline/stages/bake/bakeExecutionDetails.controller.js +38 -0
  69. package/src/pipeline/stages/bake/bakeExecutionDetails.html +52 -0
  70. package/src/pipeline/stages/bake/bakeStage.html +109 -0
  71. package/src/pipeline/stages/bake/ociBakeStage.js +147 -0
  72. package/src/pipeline/stages/destroyAsg/destroyAsgStage.html +9 -0
  73. package/src/pipeline/stages/destroyAsg/destroyAsgStage.js +64 -0
  74. package/src/pipeline/stages/destroyAsg/destroyAsgStepLabel.html +1 -0
  75. package/src/pipeline/stages/disableAsg/disableAsgStage.html +11 -0
  76. package/src/pipeline/stages/disableAsg/disableAsgStage.js +63 -0
  77. package/src/pipeline/stages/disableAsg/disableAsgStepLabel.html +1 -0
  78. package/src/pipeline/stages/findAmi/findAmiStage.html +20 -0
  79. package/src/pipeline/stages/findAmi/findAmiStage.js +82 -0
  80. package/src/pipeline/stages/findImageFromTags/findImageFromTagsExecutionDetails.html +44 -0
  81. package/src/pipeline/stages/findImageFromTags/findImageFromTagsStage.html +11 -0
  82. package/src/pipeline/stages/findImageFromTags/oracleFindImageFromTagsStage.js +36 -0
  83. package/src/pipeline/stages/resizeAsg/resizeAsgStage.html +89 -0
  84. package/src/pipeline/stages/resizeAsg/resizeAsgStage.js +101 -0
  85. package/src/pipeline/stages/resizeAsg/resizeAsgStepLabel.html +1 -0
  86. package/src/pipeline/stages/scaleDownCluster/scaleDownClusterStage.html +35 -0
  87. package/src/pipeline/stages/scaleDownCluster/scaleDownClusterStage.js +75 -0
  88. package/src/pipeline/stages/shrinkCluster/shrinkClusterStage.html +34 -0
  89. package/src/pipeline/stages/shrinkCluster/shrinkClusterStage.js +71 -0
  90. package/src/securityGroup/configure/createSecurityGroup.controller.js +19 -0
  91. package/src/securityGroup/configure/createSecurityGroup.html +19 -0
  92. package/src/securityGroup/securityGroup.reader.js +15 -0
  93. package/src/securityGroup/securityGroup.transformer.js +25 -0
  94. package/src/serverGroup/configure/serverGroup.configure.module.js +15 -0
  95. package/src/serverGroup/configure/serverGroupCommandBuilder.service.js +105 -0
  96. package/src/serverGroup/configure/serverGroupConfiguration.service.js +229 -0
  97. package/src/serverGroup/configure/wizard/advancedSettings/advancedSettings.html +13 -0
  98. package/src/serverGroup/configure/wizard/basicSettings/basicSettings.controller.js +35 -0
  99. package/src/serverGroup/configure/wizard/basicSettings/basicSettings.html +134 -0
  100. package/src/serverGroup/configure/wizard/capacity/capacity.html +7 -0
  101. package/src/serverGroup/configure/wizard/capacity/capacitySelector.component.html +13 -0
  102. package/src/serverGroup/configure/wizard/capacity/capacitySelector.component.js +17 -0
  103. package/src/serverGroup/configure/wizard/cloneServerGroup.controller.js +109 -0
  104. package/src/serverGroup/configure/wizard/instanceType/instanceType.html +29 -0
  105. package/src/serverGroup/configure/wizard/loadBalancers/loadBalancers.html +44 -0
  106. package/src/serverGroup/configure/wizard/network/networkSettings.html +15 -0
  107. package/src/serverGroup/configure/wizard/serverGroupWizard.html +40 -0
  108. package/src/serverGroup/configure/wizard/templateSelection/templateSelection.html +9 -0
  109. package/src/serverGroup/details/resize/resizeCapacity.component.html +36 -0
  110. package/src/serverGroup/details/resize/resizeCapacity.component.js +42 -0
  111. package/src/serverGroup/details/resize/resizeServerGroup.controller.js +62 -0
  112. package/src/serverGroup/details/resize/resizeServerGroup.html +33 -0
  113. package/src/serverGroup/details/rollback/rollbackServerGroup.controller.js +73 -0
  114. package/src/serverGroup/details/rollback/rollbackServerGroup.html +41 -0
  115. package/src/serverGroup/details/serverGroupDetails.controller.js +230 -0
  116. package/src/serverGroup/details/serverGroupDetails.html +94 -0
  117. package/src/serverGroup/serverGroup.transformer.js +29 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,868 @@
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.0.91](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.90...@spinnaker/oracle@0.0.91) (2024-06-10)
7
+
8
+ **Note:** Version bump only for package @spinnaker/oracle
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.0.90](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.89...@spinnaker/oracle@0.0.90) (2024-05-10)
15
+
16
+ **Note:** Version bump only for package @spinnaker/oracle
17
+
18
+
19
+
20
+
21
+
22
+ ## [0.0.89](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.88...@spinnaker/oracle@0.0.89) (2023-12-07)
23
+
24
+ **Note:** Version bump only for package @spinnaker/oracle
25
+
26
+
27
+
28
+
29
+
30
+ ## [0.0.88](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.87...@spinnaker/oracle@0.0.88) (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.0.87](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.86...@spinnaker/oracle@0.0.87) (2023-09-06)
42
+
43
+ **Note:** Version bump only for package @spinnaker/oracle
44
+
45
+
46
+
47
+
48
+
49
+ ## [0.0.86](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.85...@spinnaker/oracle@0.0.86) (2023-07-20)
50
+
51
+ **Note:** Version bump only for package @spinnaker/oracle
52
+
53
+
54
+
55
+
56
+
57
+ ## [0.0.85](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.84...@spinnaker/oracle@0.0.85) (2023-06-02)
58
+
59
+ **Note:** Version bump only for package @spinnaker/oracle
60
+
61
+
62
+
63
+
64
+
65
+ ## [0.0.84](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.83...@spinnaker/oracle@0.0.84) (2023-05-11)
66
+
67
+ **Note:** Version bump only for package @spinnaker/oracle
68
+
69
+
70
+
71
+
72
+
73
+ ## [0.0.83](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.82...@spinnaker/oracle@0.0.83) (2023-05-03)
74
+
75
+ **Note:** Version bump only for package @spinnaker/oracle
76
+
77
+
78
+
79
+
80
+
81
+ ## [0.0.82](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.81...@spinnaker/oracle@0.0.82) (2023-04-03)
82
+
83
+ **Note:** Version bump only for package @spinnaker/oracle
84
+
85
+
86
+
87
+
88
+
89
+ ## [0.0.81](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.80...@spinnaker/oracle@0.0.81) (2023-02-01)
90
+
91
+ **Note:** Version bump only for package @spinnaker/oracle
92
+
93
+
94
+
95
+
96
+
97
+ ## [0.0.80](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.79...@spinnaker/oracle@0.0.80) (2022-10-21)
98
+
99
+ **Note:** Version bump only for package @spinnaker/oracle
100
+
101
+
102
+
103
+
104
+
105
+ ## [0.0.79](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.78...@spinnaker/oracle@0.0.79) (2022-10-06)
106
+
107
+ **Note:** Version bump only for package @spinnaker/oracle
108
+
109
+
110
+
111
+
112
+
113
+ ## [0.0.78](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.77...@spinnaker/oracle@0.0.78) (2022-08-03)
114
+
115
+ **Note:** Version bump only for package @spinnaker/oracle
116
+
117
+
118
+
119
+
120
+
121
+ ## [0.0.77](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.76...@spinnaker/oracle@0.0.77) (2022-07-11)
122
+
123
+ **Note:** Version bump only for package @spinnaker/oracle
124
+
125
+
126
+
127
+
128
+
129
+ ## [0.0.76](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.75...@spinnaker/oracle@0.0.76) (2022-07-01)
130
+
131
+ **Note:** Version bump only for package @spinnaker/oracle
132
+
133
+
134
+
135
+
136
+
137
+ ## [0.0.75](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.74...@spinnaker/oracle@0.0.75) (2022-06-22)
138
+
139
+ **Note:** Version bump only for package @spinnaker/oracle
140
+
141
+
142
+
143
+
144
+
145
+ ## [0.0.74](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.73...@spinnaker/oracle@0.0.74) (2022-05-05)
146
+
147
+ **Note:** Version bump only for package @spinnaker/oracle
148
+
149
+
150
+
151
+
152
+
153
+ ## [0.0.73](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.72...@spinnaker/oracle@0.0.73) (2022-04-21)
154
+
155
+ **Note:** Version bump only for package @spinnaker/oracle
156
+
157
+
158
+
159
+
160
+
161
+ ## [0.0.72](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.71...@spinnaker/oracle@0.0.72) (2022-04-09)
162
+
163
+ **Note:** Version bump only for package @spinnaker/oracle
164
+
165
+
166
+
167
+
168
+
169
+ ## [0.0.71](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.70...@spinnaker/oracle@0.0.71) (2022-03-08)
170
+
171
+ **Note:** Version bump only for package @spinnaker/oracle
172
+
173
+
174
+
175
+
176
+
177
+ ## [0.0.70](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.69...@spinnaker/oracle@0.0.70) (2022-01-22)
178
+
179
+ **Note:** Version bump only for package @spinnaker/oracle
180
+
181
+
182
+
183
+
184
+
185
+ ## [0.0.69](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.68...@spinnaker/oracle@0.0.69) (2022-01-12)
186
+
187
+ **Note:** Version bump only for package @spinnaker/oracle
188
+
189
+
190
+
191
+
192
+
193
+ ## [0.0.68](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.67...@spinnaker/oracle@0.0.68) (2021-12-11)
194
+
195
+ **Note:** Version bump only for package @spinnaker/oracle
196
+
197
+
198
+
199
+
200
+
201
+ ## [0.0.67](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.66...@spinnaker/oracle@0.0.67) (2021-12-08)
202
+
203
+ **Note:** Version bump only for package @spinnaker/oracle
204
+
205
+
206
+
207
+
208
+
209
+ ## [0.0.66](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.65...@spinnaker/oracle@0.0.66) (2021-12-01)
210
+
211
+ **Note:** Version bump only for package @spinnaker/oracle
212
+
213
+
214
+
215
+
216
+
217
+ ## [0.0.65](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.64...@spinnaker/oracle@0.0.65) (2021-11-30)
218
+
219
+ **Note:** Version bump only for package @spinnaker/oracle
220
+
221
+
222
+
223
+
224
+
225
+ ## [0.0.64](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.63...@spinnaker/oracle@0.0.64) (2021-11-12)
226
+
227
+ **Note:** Version bump only for package @spinnaker/oracle
228
+
229
+
230
+
231
+
232
+
233
+ ## [0.0.63](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.62...@spinnaker/oracle@0.0.63) (2021-11-03)
234
+
235
+ **Note:** Version bump only for package @spinnaker/oracle
236
+
237
+
238
+
239
+
240
+
241
+ ## [0.0.62](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.61...@spinnaker/oracle@0.0.62) (2021-10-05)
242
+
243
+ **Note:** Version bump only for package @spinnaker/oracle
244
+
245
+
246
+
247
+
248
+
249
+ ## [0.0.61](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.60...@spinnaker/oracle@0.0.61) (2021-10-01)
250
+
251
+ **Note:** Version bump only for package @spinnaker/oracle
252
+
253
+
254
+
255
+
256
+
257
+ ## [0.0.60](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.58...@spinnaker/oracle@0.0.60) (2021-09-30)
258
+
259
+ **Note:** Version bump only for package @spinnaker/oracle
260
+
261
+
262
+
263
+
264
+
265
+ ## [0.0.59](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.58...@spinnaker/oracle@0.0.59) (2021-09-30)
266
+
267
+ **Note:** Version bump only for package @spinnaker/oracle
268
+
269
+
270
+
271
+
272
+
273
+ ## [0.0.58](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.57...@spinnaker/oracle@0.0.58) (2021-09-29)
274
+
275
+ **Note:** Version bump only for package @spinnaker/oracle
276
+
277
+
278
+
279
+
280
+
281
+ ## [0.0.57](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.56...@spinnaker/oracle@0.0.57) (2021-09-24)
282
+
283
+ **Note:** Version bump only for package @spinnaker/oracle
284
+
285
+
286
+
287
+
288
+
289
+ ## [0.0.56](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.55...@spinnaker/oracle@0.0.56) (2021-09-23)
290
+
291
+ **Note:** Version bump only for package @spinnaker/oracle
292
+
293
+
294
+
295
+
296
+
297
+ ## [0.0.55](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.54...@spinnaker/oracle@0.0.55) (2021-09-23)
298
+
299
+ **Note:** Version bump only for package @spinnaker/oracle
300
+
301
+
302
+
303
+
304
+
305
+ ## [0.0.54](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.53...@spinnaker/oracle@0.0.54) (2021-09-21)
306
+
307
+ **Note:** Version bump only for package @spinnaker/oracle
308
+
309
+
310
+
311
+
312
+
313
+ ## [0.0.53](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.52...@spinnaker/oracle@0.0.53) (2021-09-18)
314
+
315
+ **Note:** Version bump only for package @spinnaker/oracle
316
+
317
+
318
+
319
+
320
+
321
+ ## [0.0.52](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.51...@spinnaker/oracle@0.0.52) (2021-09-18)
322
+
323
+ **Note:** Version bump only for package @spinnaker/oracle
324
+
325
+
326
+
327
+
328
+
329
+ ## [0.0.51](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.50...@spinnaker/oracle@0.0.51) (2021-09-16)
330
+
331
+ **Note:** Version bump only for package @spinnaker/oracle
332
+
333
+
334
+
335
+
336
+
337
+ ## [0.0.50](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.49...@spinnaker/oracle@0.0.50) (2021-09-15)
338
+
339
+ **Note:** Version bump only for package @spinnaker/oracle
340
+
341
+
342
+
343
+
344
+
345
+ ## [0.0.49](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.48...@spinnaker/oracle@0.0.49) (2021-09-14)
346
+
347
+ **Note:** Version bump only for package @spinnaker/oracle
348
+
349
+
350
+
351
+
352
+
353
+ ## [0.0.48](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.47...@spinnaker/oracle@0.0.48) (2021-09-06)
354
+
355
+ **Note:** Version bump only for package @spinnaker/oracle
356
+
357
+
358
+
359
+
360
+
361
+ ## [0.0.47](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.46...@spinnaker/oracle@0.0.47) (2021-09-02)
362
+
363
+ **Note:** Version bump only for package @spinnaker/oracle
364
+
365
+
366
+
367
+
368
+
369
+ ## [0.0.46](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.45...@spinnaker/oracle@0.0.46) (2021-08-30)
370
+
371
+ **Note:** Version bump only for package @spinnaker/oracle
372
+
373
+
374
+
375
+
376
+
377
+ ## [0.0.45](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.44...@spinnaker/oracle@0.0.45) (2021-08-25)
378
+
379
+ **Note:** Version bump only for package @spinnaker/oracle
380
+
381
+
382
+
383
+
384
+
385
+ ## [0.0.44](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.43...@spinnaker/oracle@0.0.44) (2021-08-20)
386
+
387
+ **Note:** Version bump only for package @spinnaker/oracle
388
+
389
+
390
+
391
+
392
+
393
+ ## [0.0.43](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.42...@spinnaker/oracle@0.0.43) (2021-08-18)
394
+
395
+ **Note:** Version bump only for package @spinnaker/oracle
396
+
397
+
398
+
399
+
400
+
401
+ ## [0.0.42](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.41...@spinnaker/oracle@0.0.42) (2021-08-17)
402
+
403
+ **Note:** Version bump only for package @spinnaker/oracle
404
+
405
+
406
+
407
+
408
+
409
+ ## [0.0.41](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.40...@spinnaker/oracle@0.0.41) (2021-08-13)
410
+
411
+ **Note:** Version bump only for package @spinnaker/oracle
412
+
413
+
414
+
415
+
416
+
417
+ ## [0.0.40](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.39...@spinnaker/oracle@0.0.40) (2021-08-10)
418
+
419
+ **Note:** Version bump only for package @spinnaker/oracle
420
+
421
+
422
+
423
+
424
+
425
+ ## [0.0.39](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.38...@spinnaker/oracle@0.0.39) (2021-08-05)
426
+
427
+ **Note:** Version bump only for package @spinnaker/oracle
428
+
429
+
430
+
431
+
432
+
433
+ ## [0.0.38](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.37...@spinnaker/oracle@0.0.38) (2021-08-02)
434
+
435
+ **Note:** Version bump only for package @spinnaker/oracle
436
+
437
+
438
+
439
+
440
+
441
+ ## [0.0.37](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.36...@spinnaker/oracle@0.0.37) (2021-07-30)
442
+
443
+
444
+ ### Bug Fixes
445
+
446
+ * **all:** Fix lodash global usage ([d048432](https://github.com/spinnaker/deck/commit/d048432978f0aa0bceb2b58f80ea7301de153072))
447
+
448
+
449
+
450
+
451
+
452
+ ## [0.0.36](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.35...@spinnaker/oracle@0.0.36) (2021-07-26)
453
+
454
+ **Note:** Version bump only for package @spinnaker/oracle
455
+
456
+
457
+
458
+
459
+
460
+ ## [0.0.35](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.34...@spinnaker/oracle@0.0.35) (2021-07-22)
461
+
462
+ **Note:** Version bump only for package @spinnaker/oracle
463
+
464
+
465
+
466
+
467
+
468
+ ## [0.0.34](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.32...@spinnaker/oracle@0.0.34) (2021-07-22)
469
+
470
+ **Note:** Version bump only for package @spinnaker/oracle
471
+
472
+
473
+
474
+
475
+
476
+ ## [0.0.33](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.32...@spinnaker/oracle@0.0.33) (2021-07-22)
477
+
478
+ **Note:** Version bump only for package @spinnaker/oracle
479
+
480
+
481
+
482
+
483
+
484
+ ## [0.0.32](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.27...@spinnaker/oracle@0.0.32) (2021-07-19)
485
+
486
+ **Note:** Version bump only for package @spinnaker/oracle
487
+
488
+
489
+
490
+
491
+
492
+ ## [0.0.31](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.27...@spinnaker/oracle@0.0.31) (2021-07-19)
493
+
494
+ **Note:** Version bump only for package @spinnaker/oracle
495
+
496
+
497
+
498
+
499
+
500
+ ## [0.0.30](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.27...@spinnaker/oracle@0.0.30) (2021-07-19)
501
+
502
+ **Note:** Version bump only for package @spinnaker/oracle
503
+
504
+
505
+
506
+
507
+
508
+ ## [0.0.29](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.27...@spinnaker/oracle@0.0.29) (2021-07-19)
509
+
510
+ **Note:** Version bump only for package @spinnaker/oracle
511
+
512
+
513
+
514
+
515
+
516
+ ## [0.0.28](https://github.com/spinnaker/deck/compare/@spinnaker/oracle@0.0.27...@spinnaker/oracle@0.0.28) (2021-07-19)
517
+
518
+ **Note:** Version bump only for package @spinnaker/oracle
519
+
520
+
521
+
522
+
523
+
524
+ ## 0.0.27 (2021-07-17)
525
+
526
+
527
+ ### Bug Fixes
528
+
529
+ * **publishing:** Auto approve instead of adding "ready to merge" label ([51f536c](https://github.com/spinnaker/deck/commit/51f536c275e77854d8f173aeec86412ffbd66b6d))
530
+
531
+
532
+
533
+
534
+
535
+
536
+ ## [0.0.25](https://www.github.com/spinnaker/deck/compare/57fb94206d47b2e27c8b5f480ed016f175980d63...02209adde500d281dd62d940027d81e7161f44c7) (2021-07-01)
537
+
538
+
539
+ ### Changes
540
+
541
+ chore(oracle): publish oracle@0.0.25 ([02209add](https://github.com/spinnaker/deck/commit/02209adde500d281dd62d940027d81e7161f44c7))
542
+ chore(all): Remove ng template cache for webpack ([be6df680](https://github.com/spinnaker/deck/commit/be6df680689e0624b27635bc875d0b4390a3bc4a))
543
+ chore(build): Integrate with yarn workspaces ([e30e631b](https://github.com/spinnaker/deck/commit/e30e631b128bd1c8bfef3a48643ce0b4f9935f1d))
544
+
545
+
546
+
547
+ ## [0.0.24](https://www.github.com/spinnaker/deck/compare/db7916f73419819cfd370ec4299a4712fa5e7a61...57fb94206d47b2e27c8b5f480ed016f175980d63) (2021-06-14)
548
+
549
+
550
+ ### Changes
551
+
552
+ chore(oracle): publish oracle@0.0.24 ([57fb9420](https://github.com/spinnaker/deck/commit/57fb94206d47b2e27c8b5f480ed016f175980d63))
553
+ refactor(packages): Migrate packages to make them independent ([38b5fa17](https://github.com/spinnaker/deck/commit/38b5fa17d82a1a032e84e6c3f51c806b5d6901b8))
554
+
555
+
556
+
557
+ ## [0.0.23](https://www.github.com/spinnaker/deck/compare/e12992a5f95fabdb00c1689956dbdfd549df86da...db7916f73419819cfd370ec4299a4712fa5e7a61) (2021-06-10)
558
+
559
+
560
+ ### Changes
561
+
562
+ chore(oracle): publish oracle@0.0.23 ([db7916f7](https://github.com/spinnaker/deck/commit/db7916f73419819cfd370ec4299a4712fa5e7a61))
563
+ fix(build): Fix distribution dir ([eb87451a](https://github.com/spinnaker/deck/commit/eb87451afb8a4696a4c6d76589cb95d8b4192398))
564
+
565
+
566
+
567
+ ## [0.0.22](https://www.github.com/spinnaker/deck/compare/6ffcf2a6014737a41a9a80bd6106d75e168d8b10...e12992a5f95fabdb00c1689956dbdfd549df86da) (2021-04-21)
568
+
569
+
570
+ ### Changes
571
+
572
+ chore(oracle): publish oracle@0.0.22 ([e12992a5](https://github.com/spinnaker/deck/commit/e12992a5f95fabdb00c1689956dbdfd549df86da))
573
+
574
+
575
+
576
+ ## [0.0.21](https://www.github.com/spinnaker/deck/compare/7dbb516920c91617b3b5a342c8606b44f7279dcc...6ffcf2a6014737a41a9a80bd6106d75e168d8b10) (2021-04-21)
577
+
578
+
579
+ ### Changes
580
+
581
+ chore(oracle): publish oracle@0.0.21 ([6ffcf2a6](https://github.com/spinnaker/deck/commit/6ffcf2a6014737a41a9a80bd6106d75e168d8b10))
582
+ Remove webpack modules + webpack consolidation [#9097](https://github.com/spinnaker/deck/pull/9097) ([00145566](https://github.com/spinnaker/deck/commit/001455667f2afb5c728737863f7365fc4fcbb76b))
583
+
584
+
585
+
586
+ ## [0.0.20](https://www.github.com/spinnaker/deck/compare/fb07fb77c97bc3e50ab767dc5b9e30561f019e24...7dbb516920c91617b3b5a342c8606b44f7279dcc) (2021-02-22)
587
+
588
+
589
+ ### Changes
590
+
591
+ chore(oracle): publish oracle@0.0.20 ([7dbb5169](https://github.com/spinnaker/deck/commit/7dbb516920c91617b3b5a342c8606b44f7279dcc))
592
+ chore(lint): Update import statement ordering ([5a9768bc](https://github.com/spinnaker/deck/commit/5a9768bc6db2f527a73d6b1f5fb3120c101e094b))
593
+ chore(lint): Sort import statements ([cca56eaa](https://github.com/spinnaker/deck/commit/cca56eaaeeb412b7596c68a1260eefed7fbf6fed))
594
+
595
+
596
+
597
+ ## [0.0.19](https://www.github.com/spinnaker/deck/compare/fe3af33ae5c53c62792e8917344b4fa27f91257b...fb07fb77c97bc3e50ab767dc5b9e30561f019e24) (2021-01-19)
598
+
599
+
600
+ ### Changes
601
+
602
+ chore(oracle): publish oracle@0.0.19 ([fb07fb77](https://github.com/spinnaker/deck/commit/fb07fb77c97bc3e50ab767dc5b9e30561f019e24))
603
+ Deangularize instance writer [#8834](https://github.com/spinnaker/deck/pull/8834) ([f16b0775](https://github.com/spinnaker/deck/commit/f16b0775917242a39ae70e86c5541020c898b872))
604
+
605
+
606
+
607
+ ## [0.0.18](https://www.github.com/spinnaker/deck/compare/305cbb8596783fdb6c9abc8fd1a84ba45feda429...fe3af33ae5c53c62792e8917344b4fa27f91257b) (2020-12-16)
608
+
609
+
610
+ ### Changes
611
+
612
+ chore(oracle): publish oracle@0.0.18 ([fe3af33a](https://github.com/spinnaker/deck/commit/fe3af33ae5c53c62792e8917344b4fa27f91257b))
613
+ refactor(REST): Prefer REST('/foo/bar') over REST().path('foo', 'bar') ([1d4320a0](https://github.com/spinnaker/deck/commit/1d4320a08f73093483cbb93784e9115c236b1f8a))
614
+ refactor(api-deprecation): API is deprecated, switch to REST() ([97bfbf67](https://github.com/spinnaker/deck/commit/97bfbf67b5d359cc540918b62c99088ad82dfb1b))
615
+ refactor(api-deprecation): Prefer API.path('foo', 'bar') over API.path('foo').path('bar') ([39b08e72](https://github.com/spinnaker/deck/commit/39b08e72b4baef1063a3ab9b65584e6e4e73d3e2))
616
+ refactor(api-deprecation): Migrate from API.one/all/withParams/getList() to path/query/get() ([587db3ab](https://github.com/spinnaker/deck/commit/587db3ab20040fb5c72fe48feb36eccd7d1f297a))
617
+ test(mock-http-client): Remove unnecessary API.baseUrl prefix in expectGET/etc calls ([807de9ad](https://github.com/spinnaker/deck/commit/807de9ada97154e3e8b699dece0f8d5ec4493942))
618
+ 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))
619
+ test(mock-http-client): Run eslint rule migrate-to-mock-http-client --fix ([ef5d8ea0](https://github.com/spinnaker/deck/commit/ef5d8ea0661d360661831b57d3ee8457aae0ecfd))
620
+ Avoid raw "$http" usage [#8790](https://github.com/spinnaker/deck/pull/8790) ([969f4fe0](https://github.com/spinnaker/deck/commit/969f4fe0e9ab75eef2ceb0a2287643425293e209))
621
+
622
+
623
+
624
+ ## [0.0.17](https://www.github.com/spinnaker/deck/compare/ec99c0ab69d004dcbdf2f6fce32c6b64be19584f...305cbb8596783fdb6c9abc8fd1a84ba45feda429) (2020-11-07)
625
+
626
+
627
+ ### Changes
628
+
629
+ chore(oracle): publish oracle@0.0.17 ([305cbb85](https://github.com/spinnaker/deck/commit/305cbb8596783fdb6c9abc8fd1a84ba45feda429))
630
+ 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))
631
+
632
+
633
+
634
+ ## [0.0.16](https://www.github.com/spinnaker/deck/compare/08d3ddc9d4fae4d8fd4cf55a496a3e3ff63ae8a8...ec99c0ab69d004dcbdf2f6fce32c6b64be19584f) (2020-10-28)
635
+
636
+
637
+ ### Changes
638
+
639
+ chore(oracle): publish oracle@0.0.16 ([ec99c0ab](https://github.com/spinnaker/deck/commit/ec99c0ab69d004dcbdf2f6fce32c6b64be19584f))
640
+ 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))
641
+ chore(PromiseLike): Migrate remaining IPromise typings to PromiseLike ([2c0d0f68](https://github.com/spinnaker/deck/commit/2c0d0f6814689d93820eab4e97e5d89f98a61cc5))
642
+
643
+
644
+
645
+ ## [0.0.15](https://www.github.com/spinnaker/deck/compare/47a8002877ce304ce51f928214e6b3b60820fc6c...08d3ddc9d4fae4d8fd4cf55a496a3e3ff63ae8a8) (2020-10-28)
646
+
647
+
648
+ ### Changes
649
+
650
+ chore(oracle): publish oracle@0.0.15 ([08d3ddc9](https://github.com/spinnaker/deck/commit/08d3ddc9d4fae4d8fd4cf55a496a3e3ff63ae8a8))
651
+ 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))
652
+ chore(oracle/serverGroup): Migrate from $q.all({}) to $q.all([]) ([5c0713ab](https://github.com/spinnaker/deck/commit/5c0713ab8103491d71614a23f2163c6c9f61640f))
653
+ chore(oracle/serverGroup): Migrate from $q.all({}) to $q.all([]) ([c6208823](https://github.com/spinnaker/deck/commit/c6208823ab8a49643f132a08515261ef79449d5d))
654
+ 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))
655
+ chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
656
+ 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))
657
+
658
+
659
+
660
+ ## [0.0.14](https://www.github.com/spinnaker/deck/compare/a220af588e194762757be534cce2d7ae9dc508d5...47a8002877ce304ce51f928214e6b3b60820fc6c) (2020-10-26)
661
+
662
+
663
+ ### Changes
664
+
665
+ 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))
666
+ chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
667
+ 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))
668
+ chore(oracle): publish oracle@0.0.14 ([e083d752](https://github.com/spinnaker/deck/commit/e083d752135993bf2fe2441a8d76f4fe8247be04))
669
+ 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))
670
+ 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))
671
+ 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))
672
+ fix(deck): Bugfix 6112: provide default settings for oracle provider in deck microservice to remove Halyard dependency. [#8665](https://github.com/spinnaker/deck/pull/8665) ([6022821f](https://github.com/spinnaker/deck/commit/6022821f895597e7bf8b9d62d02d7ba5c92ab70f))
673
+
674
+
675
+
676
+ ## [0.0.13](https://www.github.com/spinnaker/deck/compare/e083d752135993bf2fe2441a8d76f4fe8247be04...a220af588e194762757be534cce2d7ae9dc508d5) (2020-10-26)
677
+
678
+
679
+ ### Changes
680
+
681
+ 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))
682
+
683
+
684
+
685
+ ## [0.0.14](https://www.github.com/spinnaker/deck/compare/ae9292ed1f1774d779a3c8ed41c5d97f76991097...e083d752135993bf2fe2441a8d76f4fe8247be04) (2020-10-26)
686
+
687
+
688
+ ### Changes
689
+
690
+ 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))
691
+ chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
692
+ 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))
693
+ chore(oracle): publish oracle@0.0.14 ([e083d752](https://github.com/spinnaker/deck/commit/e083d752135993bf2fe2441a8d76f4fe8247be04))
694
+ 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))
695
+ 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))
696
+ 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))
697
+ fix(deck): Bugfix 6112: provide default settings for oracle provider in deck microservice to remove Halyard dependency. [#8665](https://github.com/spinnaker/deck/pull/8665) ([6022821f](https://github.com/spinnaker/deck/commit/6022821f895597e7bf8b9d62d02d7ba5c92ab70f))
698
+
699
+
700
+
701
+ ## [0.0.13](https://www.github.com/spinnaker/deck/compare/4b79b4d75628bc74b91b72980f0a5e8ba479335e...ae9292ed1f1774d779a3c8ed41c5d97f76991097) (2020-10-14)
702
+
703
+
704
+ ### Changes
705
+
706
+ 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))
707
+ chore(oracle): publish oracle@0.0.14 ([e083d752](https://github.com/spinnaker/deck/commit/e083d752135993bf2fe2441a8d76f4fe8247be04))
708
+ 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))
709
+ 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))
710
+ 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))
711
+ fix(deck): Bugfix 6112: provide default settings for oracle provider in deck microservice to remove Halyard dependency. [#8665](https://github.com/spinnaker/deck/pull/8665) ([6022821f](https://github.com/spinnaker/deck/commit/6022821f895597e7bf8b9d62d02d7ba5c92ab70f))
712
+ chore(package): amazon@0.0.273 core@0.0.520 oracle@0.0.13 [#8655](https://github.com/spinnaker/deck/pull/8655) ([ae9292ed](https://github.com/spinnaker/deck/commit/ae9292ed1f1774d779a3c8ed41c5d97f76991097))
713
+ fix(oracle): enforce valid oracle load balancer subnet choices ([7f266fbf](https://github.com/spinnaker/deck/commit/7f266fbf79f2e13d875bb030b5f8afa831616a3d))
714
+
715
+
716
+
717
+ ## [0.0.12](https://www.github.com/spinnaker/deck/compare/f216cc6556bff90033b28bbe7e9f94517ddaa270...4b79b4d75628bc74b91b72980f0a5e8ba479335e) (2020-10-12)
718
+
719
+
720
+ ### Changes
721
+
722
+ 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))
723
+ chore(prettier): Just Update Prettier™ [#8644](https://github.com/spinnaker/deck/pull/8644) ([8532bdd4](https://github.com/spinnaker/deck/commit/8532bdd4c08d59c38a0adde70ccac4f163c9dd97))
724
+
725
+
726
+
727
+ ## [0.0.11](https://www.github.com/spinnaker/deck/compare/5cdc7fa4494ada88702155bb91f80a0a16f3782e...f216cc6556bff90033b28bbe7e9f94517ddaa270) (2020-10-09)
728
+
729
+
730
+ ### Changes
731
+
732
+ 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))
733
+ chore(eslint): eslint --fix api-no-slashes [#8631](https://github.com/spinnaker/deck/pull/8631) ([fab1a0ad](https://github.com/spinnaker/deck/commit/fab1a0ad75200cca60dfb74455d99f332e3e376f))
734
+
735
+
736
+
737
+ ## [0.0.10](https://www.github.com/spinnaker/deck/compare/8aa1e3e514703fcf0b4bf7b06dffafe01e9c27ed...5cdc7fa4494ada88702155bb91f80a0a16f3782e) (2020-10-06)
738
+
739
+
740
+ ### Changes
741
+
742
+ 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))
743
+ Revert "fix(appname): encodeURIComponent for app name (#8586)" [#8627](https://github.com/spinnaker/deck/pull/8627) ([885cd169](https://github.com/spinnaker/deck/commit/885cd169ad0dca8e7e6683bc96d2c131af6b3a1e))
744
+
745
+
746
+
747
+ ## [0.0.9](https://www.github.com/spinnaker/deck/compare/2273dee2b3668ba105a34a062da669cdf7c207c5...8aa1e3e514703fcf0b4bf7b06dffafe01e9c27ed) (2020-10-05)
748
+
749
+
750
+ ### Changes
751
+
752
+ 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))
753
+ fix(appname): encodeURIComponent for app name [#8586](https://github.com/spinnaker/deck/pull/8586) ([f1bb04e8](https://github.com/spinnaker/deck/commit/f1bb04e867e68e53f4e4edb22192afbcd9715d5d))
754
+
755
+
756
+
757
+ ## [0.0.8](https://www.github.com/spinnaker/deck/compare/ced77a7453a0ffab5a14c38943288138fdcb084b...2273dee2b3668ba105a34a062da669cdf7c207c5) (2020-09-23)
758
+
759
+
760
+ ### Changes
761
+
762
+ 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))
763
+ feat(core/*): Deck layout optimizations [#8556](https://github.com/spinnaker/deck/pull/8556) ([2588b7f3](https://github.com/spinnaker/deck/commit/2588b7f3e1ecbfd590e7cc87a225bbfd056449e3))
764
+
765
+
766
+
767
+ ## [0.0.7](https://www.github.com/spinnaker/deck/compare/f227aa8ec00fffe63e39abc75b9c504180804623...ced77a7453a0ffab5a14c38943288138fdcb084b) (2020-08-25)
768
+
769
+
770
+ ### Changes
771
+
772
+ 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))
773
+ chore(licenses): add license metadata to npm packages [#8512](https://github.com/spinnaker/deck/pull/8512) ([d4afa1bf](https://github.com/spinnaker/deck/commit/d4afa1bf2328cc91cf3195f810073b0b4726b3b5))
774
+
775
+
776
+
777
+ ## [0.0.6](https://www.github.com/spinnaker/deck/compare/d956a2460bdfc301c0c9c9d93e5159ed8f00bfc8...f227aa8ec00fffe63e39abc75b9c504180804623) (2020-04-21)
778
+
779
+
780
+ ### Changes
781
+
782
+ 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))
783
+ 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))
784
+
785
+
786
+
787
+ ## [0.0.5](https://www.github.com/spinnaker/deck/compare/664d174a790d16c8df06d227d0b26dfbd9a759a4...d956a2460bdfc301c0c9c9d93e5159ed8f00bfc8) (2020-03-20)
788
+
789
+
790
+ ### Changes
791
+
792
+ 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))
793
+ 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))
794
+
795
+
796
+
797
+ ## [0.0.4](https://www.github.com/spinnaker/deck/compare/625fdb15b5e8e2d45fb833f6d26e0bba2b89c53e...664d174a790d16c8df06d227d0b26dfbd9a759a4) (2020-03-12)
798
+
799
+
800
+ ### Changes
801
+
802
+ 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))
803
+ fix(oracle): Add a webpack config for oracle. Remove import from core/* alias ([f386e53a](https://github.com/spinnaker/deck/commit/f386e53ae051f6227f733bf1eec75ea275811514))
804
+ chore(lint): Run eslint on typescript files ([b51dce46](https://github.com/spinnaker/deck/commit/b51dce46be3df14070f06e06de874108dcf23569))
805
+ chore(lint): Run eslint on javascript files ([38a6324a](https://github.com/spinnaker/deck/commit/38a6324aa9f116c70c7644113f5f84214fd95679))
806
+ refactor(*): de-angularize confirmationModalService [#7759](https://github.com/spinnaker/deck/pull/7759) ([e6c6c662](https://github.com/spinnaker/deck/commit/e6c6c662b5326fcb184772c99f2212ce4336a1cb))
807
+ refactor(*): use consistent styles on modal headers ([10b34915](https://github.com/spinnaker/deck/commit/10b34915860ed46f21d0179bf87c3b456de49c56))
808
+ refactor(core): convert confirmation modal to react ([a59b2c32](https://github.com/spinnaker/deck/commit/a59b2c3264500080fad7caeb05054eef6f51d52c))
809
+ 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))
810
+ chore(core): upgrade to latest prettier [#7713](https://github.com/spinnaker/deck/pull/7713) ([6291f858](https://github.com/spinnaker/deck/commit/6291f858cb111d9c65affeb82ddd840f05c57b65))
811
+ refactor(eslint): Fix all 'prefer-const' eslint rule violations ([90aa4775](https://github.com/spinnaker/deck/commit/90aa47754bc8815eb1bdfcceb4d05c9e1cdf325f))
812
+ refactor(eslint): Fix all 'one-var' eslint rule violations ([d070bd45](https://github.com/spinnaker/deck/commit/d070bd45ff3e185999e863e3f48c01f63eb45733))
813
+ refactor(eslint): Fix all 'no-var' eslint rule violations ([17487016](https://github.com/spinnaker/deck/commit/174870161a5a09ab7f15c74cb84d0f3e196cd7cb))
814
+ fix(angular-ui-bootstrap): Kludge: cast angular-ui-bootstrap default import as 'any' ([e4c06a7b](https://github.com/spinnaker/deck/commit/e4c06a7be782f434dabc0d18d879319473acc645))
815
+ 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))
816
+ 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))
817
+ 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))
818
+ refactor(angularjs): Always export the ng module name, not the module itself ([784d64b6](https://github.com/spinnaker/deck/commit/784d64b66a6410e622803b4b0519f7050e9c5f82))
819
+ feat(typescript): enable allowJs and allowSyntheticDefaultImports ([7ef58b6c](https://github.com/spinnaker/deck/commit/7ef58b6c122f9ce91eab95d5f444622a710ff968))
820
+ chore(typescript): update to typescript 3.7.x [#7668](https://github.com/spinnaker/deck/pull/7668) ([145f540d](https://github.com/spinnaker/deck/commit/145f540d8bab6936a6d5bfb5caf4e1cba426f215))
821
+ 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))
822
+ feat(dataSources): widen + parameterize types, add default values ([4ed015a0](https://github.com/spinnaker/deck/commit/4ed015a07c028eb58807601a0b0fb9783b02b0d9))
823
+ feat(rosco): Allow optional roscoDetailUrl for roscoMode bakes [#7575](https://github.com/spinnaker/deck/pull/7575) ([dae00c87](https://github.com/spinnaker/deck/commit/dae00c87adc5e69ac232a2145d35e73072cf5766))
824
+
825
+
826
+
827
+ ## [0.0.3](https://www.github.com/spinnaker/deck/compare/b51ca4baf88cf154c64a4b252eacd84b27188b0c...625fdb15b5e8e2d45fb833f6d26e0bba2b89c53e) (2019-08-07)
828
+
829
+
830
+ ### Changes
831
+
832
+ chore(oracle): Bump version to 0.0.3 ([625fdb15](https://github.com/spinnaker/deck/commit/625fdb15b5e8e2d45fb833f6d26e0bba2b89c53e))
833
+ 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))
834
+
835
+
836
+
837
+ ## [0.0.2](https://www.github.com/spinnaker/deck/compare/480e99e9e9d92f298b45db33a32bfb9c1594ea70...b51ca4baf88cf154c64a4b252eacd84b27188b0c) (2019-06-05)
838
+
839
+
840
+ ### Changes
841
+
842
+ chore(oracle): Bump version to 0.0.2 ([b51ca4ba](https://github.com/spinnaker/deck/commit/b51ca4baf88cf154c64a4b252eacd84b27188b0c))
843
+ refactor(*): remove cache-clearing calls that do not do anything [#6861](https://github.com/spinnaker/deck/pull/6861) ([0a5fd58e](https://github.com/spinnaker/deck/commit/0a5fd58ed76c894f9a8b0ab7027bd07e0dfc43ce))
844
+ refactor(core): de-angularize ApplicationModelBuilder, fix project executions [#6802](https://github.com/spinnaker/deck/pull/6802) ([72e164df](https://github.com/spinnaker/deck/commit/72e164dfcf11afbac559195a8fa6a91dd77ad2b9))
845
+ refactor(*): remove unused local storage caches [#6665](https://github.com/spinnaker/deck/pull/6665) ([e2b4d8e9](https://github.com/spinnaker/deck/commit/e2b4d8e9371d5d2f1f9b60e2a592e10b47df73e2))
846
+ fix(bake/oracle): Added extendedAttributes [#6627](https://github.com/spinnaker/deck/pull/6627) ([0cdcb1ea](https://github.com/spinnaker/deck/commit/0cdcb1ea365e21f27bd4ced995a390e28b5e171e))
847
+ chore(prettier): Just Use Prettier™ [#6600](https://github.com/spinnaker/deck/pull/6600) ([7d5fc346](https://github.com/spinnaker/deck/commit/7d5fc346bca54c5d53f9eb46d823cd993c102058))
848
+ chore(angularjs): Remove all 'ngInject'; in favor of explicit DI annotation ([cc52bee0](https://github.com/spinnaker/deck/commit/cc52bee0b9956693f948806322658f225efa5546))
849
+ chore(prettier): Just Use Prettier™ ([b6bab1e1](https://github.com/spinnaker/deck/commit/b6bab1e16bb46697fec347cd30934f00fb2e9807))
850
+ chore(angularjs): Explicitly annotate all AngularJS injection points ([f3fd790e](https://github.com/spinnaker/deck/commit/f3fd790e20a4c3056edcb2c41282517e1cf35004))
851
+ fix(eslint): Fix eslint warnings for @typescript-eslint/camelcase ([d72bc173](https://github.com/spinnaker/deck/commit/d72bc1733596ff96d1685e2245aa23145d007f63))
852
+ chore(package): Just Update Prettier™ ([a8c17492](https://github.com/spinnaker/deck/commit/a8c174925f64045f70c11b2bfc11fe1fdd558660))
853
+ chore(typescript): Switch module from 'commonjs' to 'esnext' to emit raw dynamic 'import()' ([5c49dd2a](https://github.com/spinnaker/deck/commit/5c49dd2ab3c4226295a7e8041c25dabdbeee6a2c))
854
+ chore(package): Add .npmignore to all packages ([0451046c](https://github.com/spinnaker/deck/commit/0451046c241b450ae4b05df0b67b61758c16acce))
855
+ fix(*): Remove all self closing tags in AngularJS templates Reference: https://github.com/angular/angular.js/issues/1953#issuecomment-13135021 ([6f608a0a](https://github.com/spinnaker/deck/commit/6f608a0ab43616eb130c7417e560bc3df780f335))
856
+ refactor(*): Don't use js or ts file extension in require() ([35be1f08](https://github.com/spinnaker/deck/commit/35be1f0872f5958514c920ee97510d36484e33eb))
857
+ fix(oracle/pipeline): Rename ng module to spinnaker.oracle.* [#6219](https://github.com/spinnaker/deck/pull/6219) ([ca71ab6b](https://github.com/spinnaker/deck/commit/ca71ab6b5d4e86cb1b79472af21858d153dd4d57))
858
+ chore(*): Add core alias to module tsconfigs ([6b8188bb](https://github.com/spinnaker/deck/commit/6b8188bb54ea2e70987841079a8aff7debd8bd66))
859
+ fix(imports): Avoid "import { thing } from 'core'" ([af292f69](https://github.com/spinnaker/deck/commit/af292f69b82631e31ae77979336b2b7d7c930083))
860
+ fix(provider/oracle): fix update/edit LoadBalancer [#6043](https://github.com/spinnaker/deck/pull/6043) ([d1acd1b9](https://github.com/spinnaker/deck/commit/d1acd1b9330b8f8f0b062bdf9048cb81c4ed7721))
861
+ fix(provider/oracle): add ssh key [#5901](https://github.com/spinnaker/deck/pull/5901) ([72e1e8dc](https://github.com/spinnaker/deck/commit/72e1e8dc3e66a5289b7c99819a4c7e713277e03a))
862
+ feat(provider/oracle): create/delete LoadBalancer [#5868](https://github.com/spinnaker/deck/pull/5868) ([2f3ca8d9](https://github.com/spinnaker/deck/commit/2f3ca8d92c93cf983e5309248c7595455b861628))
863
+ fix(bake): Execution details Rebake was always false when force rebaking ([55987ec1](https://github.com/spinnaker/deck/commit/55987ec13568470d609901fcda4d8e44d0f33e8d))
864
+ fix(bakery/oracle): use read-only text field for bake region [#5843](https://github.com/spinnaker/deck/pull/5843) ([a74a7f38](https://github.com/spinnaker/deck/commit/a74a7f38895ec7310d5eaf7e44a73c88fb948220))
865
+ chore(package): prepare -> prepublishOnly for everything [#5806](https://github.com/spinnaker/deck/pull/5806) ([06f45b5c](https://github.com/spinnaker/deck/commit/06f45b5c0da71227e4f1d7bb9e7187e95231f4d2))
866
+ fix(bake/oracle): always show rebake option in bake configuration. [#5761](https://github.com/spinnaker/deck/pull/5761) ([f7e4900b](https://github.com/spinnaker/deck/commit/f7e4900b78901d6293103e64c7b11f33d4932bb2))
867
+ chore(prettier): Just Update Prettier™ [#5754](https://github.com/spinnaker/deck/pull/5754) ([709f30f6](https://github.com/spinnaker/deck/commit/709f30f6eff0c8862cb8736465e4fd152abd693c))
868
+ feat(bake/oracle): Added oracle OCI bakery. [#5697](https://github.com/spinnaker/deck/pull/5697) ([acb89a23](https://github.com/spinnaker/deck/commit/acb89a23d584c32b015069f03d2e83e988a5fc34))