@spinnaker/tencentcloud 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 (92) hide show
  1. package/CHANGELOG.md +751 -0
  2. package/LICENSE.txt +203 -0
  3. package/dist/domain/IKeyPair.d.ts +8 -0
  4. package/dist/domain/IScalingPolicy.d.ts +44 -0
  5. package/dist/domain/IScalingProcess.d.ts +10 -0
  6. package/dist/domain/ITargetTrackingPolicy.d.ts +21 -0
  7. package/dist/domain/ITencentcloudCertificate.d.ts +5 -0
  8. package/dist/domain/ITencentcloudHealth.d.ts +18 -0
  9. package/dist/domain/ITencentcloudInstance.d.ts +4 -0
  10. package/dist/domain/ITencentcloudLoadBalancer.d.ts +278 -0
  11. package/dist/domain/ITencentcloudLoadBalancerSourceData.d.ts +171 -0
  12. package/dist/domain/ITencentcloudScalingPolicy.d.ts +19 -0
  13. package/dist/domain/ITencentcloudServerGroup.d.ts +43 -0
  14. package/dist/domain/index.d.ts +11 -0
  15. package/dist/help/tencentcloud.help.d.ts +1 -0
  16. package/dist/image/image.reader.d.ts +35 -0
  17. package/dist/image/index.d.ts +1 -0
  18. package/dist/index.d.ts +2 -0
  19. package/dist/index.js +553 -0
  20. package/dist/index.js.map +1 -0
  21. package/dist/keyPairs/KeyPairsReader.d.ts +4 -0
  22. package/dist/keyPairs/index.d.ts +1 -0
  23. package/dist/pipeline/stages/disableCluster/DisableClusterConfig.d.ts +3 -0
  24. package/dist/pipeline/stages/disableCluster/DisableClusterStageForm.d.ts +3 -0
  25. package/dist/pipeline/stages/disableCluster/disableClusterStage.d.ts +1 -0
  26. package/dist/pipeline/stages/disableCluster/disableClusterValidators.d.ts +2 -0
  27. package/dist/pipeline/stages/rollbackCluster/RollbackClusterConfig.d.ts +3 -0
  28. package/dist/pipeline/stages/rollbackCluster/RollbackClusterStageForm.d.ts +3 -0
  29. package/dist/pipeline/stages/rollbackCluster/rollbackClusterStage.d.ts +1 -0
  30. package/dist/pipeline/stages/rollbackCluster/rollbackClusterValidators.d.ts +2 -0
  31. package/dist/pipeline/stages/scaleDownCluster/ScaleDownClusterConfig.d.ts +3 -0
  32. package/dist/pipeline/stages/scaleDownCluster/ScaleDownClusterStageForm.d.ts +3 -0
  33. package/dist/pipeline/stages/scaleDownCluster/scaleDownClusterStage.d.ts +1 -0
  34. package/dist/pipeline/stages/scaleDownCluster/scaledownClusterValidators.d.ts +2 -0
  35. package/dist/pipeline/stages/shrinkCluster/ShrinkClusterConfig.d.ts +3 -0
  36. package/dist/pipeline/stages/shrinkCluster/ShrinkClusterStageForm.d.ts +3 -0
  37. package/dist/pipeline/stages/shrinkCluster/shrinkClusterStage.d.ts +1 -0
  38. package/dist/pipeline/stages/shrinkCluster/shrinkClusterValidators.d.ts +2 -0
  39. package/dist/reactShims/index.d.ts +2 -0
  40. package/dist/reactShims/tencentcloud.ngReact.d.ts +8 -0
  41. package/dist/reactShims/tencentcloud.react.injector.d.ts +7 -0
  42. package/dist/reactShims/tencentcloud.react.module.d.ts +1 -0
  43. package/dist/search/searchResultFormatter.d.ts +1 -0
  44. package/dist/tencentcloud.module.d.ts +7 -0
  45. package/dist/tencentcloud.settings.d.ts +26 -0
  46. package/dist/validation/ApplicationNameValidator.d.ts +1 -0
  47. package/package.json +37 -0
  48. package/src/domain/IKeyPair.ts +8 -0
  49. package/src/domain/IScalingPolicy.ts +84 -0
  50. package/src/domain/IScalingProcess.ts +11 -0
  51. package/src/domain/ITargetTrackingPolicy.ts +26 -0
  52. package/src/domain/ITencentcloudCertificate.ts +6 -0
  53. package/src/domain/ITencentcloudHealth.ts +21 -0
  54. package/src/domain/ITencentcloudInstance.ts +5 -0
  55. package/src/domain/ITencentcloudLoadBalancer.ts +326 -0
  56. package/src/domain/ITencentcloudLoadBalancerSourceData.ts +189 -0
  57. package/src/domain/ITencentcloudScalingPolicy.ts +23 -0
  58. package/src/domain/ITencentcloudServerGroup.ts +46 -0
  59. package/src/domain/index.ts +11 -0
  60. package/src/help/tencentcloud.help.ts +5 -0
  61. package/src/image/image.reader.ts +53 -0
  62. package/src/image/index.ts +1 -0
  63. package/src/index.ts +2 -0
  64. package/src/keyPairs/KeyPairsReader.ts +11 -0
  65. package/src/keyPairs/index.ts +1 -0
  66. package/src/logo/tencentcloud.icon.svg +24 -0
  67. package/src/logo/tencentcloud.logo.less +5 -0
  68. package/src/logo/tencentcloud.logo.svg +53 -0
  69. package/src/pipeline/stages/disableCluster/DisableClusterConfig.tsx +27 -0
  70. package/src/pipeline/stages/disableCluster/DisableClusterStageForm.tsx +87 -0
  71. package/src/pipeline/stages/disableCluster/disableClusterStage.ts +12 -0
  72. package/src/pipeline/stages/disableCluster/disableClusterValidators.ts +10 -0
  73. package/src/pipeline/stages/rollbackCluster/RollbackClusterConfig.tsx +27 -0
  74. package/src/pipeline/stages/rollbackCluster/RollbackClusterStageForm.tsx +74 -0
  75. package/src/pipeline/stages/rollbackCluster/rollbackClusterStage.ts +12 -0
  76. package/src/pipeline/stages/rollbackCluster/rollbackClusterValidators.ts +10 -0
  77. package/src/pipeline/stages/scaleDownCluster/ScaleDownClusterConfig.tsx +27 -0
  78. package/src/pipeline/stages/scaleDownCluster/ScaleDownClusterStageForm.tsx +102 -0
  79. package/src/pipeline/stages/scaleDownCluster/scaleDownClusterStage.ts +12 -0
  80. package/src/pipeline/stages/scaleDownCluster/scaledownClusterValidators.ts +10 -0
  81. package/src/pipeline/stages/shrinkCluster/ShrinkClusterConfig.tsx +27 -0
  82. package/src/pipeline/stages/shrinkCluster/ShrinkClusterStageForm.tsx +104 -0
  83. package/src/pipeline/stages/shrinkCluster/shrinkClusterStage.ts +12 -0
  84. package/src/pipeline/stages/shrinkCluster/shrinkClusterValidators.ts +10 -0
  85. package/src/reactShims/index.ts +2 -0
  86. package/src/reactShims/tencentcloud.ngReact.ts +21 -0
  87. package/src/reactShims/tencentcloud.react.injector.ts +14 -0
  88. package/src/reactShims/tencentcloud.react.module.ts +14 -0
  89. package/src/search/searchResultFormatter.js +10 -0
  90. package/src/tencentcloud.module.ts +32 -0
  91. package/src/tencentcloud.settings.ts +35 -0
  92. package/src/validation/ApplicationNameValidator.ts +71 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,751 @@
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.84](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.83...@spinnaker/tencentcloud@0.0.84) (2024-06-10)
7
+
8
+ **Note:** Version bump only for package @spinnaker/tencentcloud
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.0.83](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.82...@spinnaker/tencentcloud@0.0.83) (2024-05-10)
15
+
16
+ **Note:** Version bump only for package @spinnaker/tencentcloud
17
+
18
+
19
+
20
+
21
+
22
+ ## [0.0.82](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.81...@spinnaker/tencentcloud@0.0.82) (2023-12-07)
23
+
24
+ **Note:** Version bump only for package @spinnaker/tencentcloud
25
+
26
+
27
+
28
+
29
+
30
+ ## [0.0.81](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.80...@spinnaker/tencentcloud@0.0.81) (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.80](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.79...@spinnaker/tencentcloud@0.0.80) (2023-09-06)
42
+
43
+ **Note:** Version bump only for package @spinnaker/tencentcloud
44
+
45
+
46
+
47
+
48
+
49
+ ## [0.0.79](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.78...@spinnaker/tencentcloud@0.0.79) (2023-07-20)
50
+
51
+ **Note:** Version bump only for package @spinnaker/tencentcloud
52
+
53
+
54
+
55
+
56
+
57
+ ## [0.0.78](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.77...@spinnaker/tencentcloud@0.0.78) (2023-06-02)
58
+
59
+ **Note:** Version bump only for package @spinnaker/tencentcloud
60
+
61
+
62
+
63
+
64
+
65
+ ## [0.0.77](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.76...@spinnaker/tencentcloud@0.0.77) (2023-05-11)
66
+
67
+ **Note:** Version bump only for package @spinnaker/tencentcloud
68
+
69
+
70
+
71
+
72
+
73
+ ## [0.0.76](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.75...@spinnaker/tencentcloud@0.0.76) (2023-05-03)
74
+
75
+ **Note:** Version bump only for package @spinnaker/tencentcloud
76
+
77
+
78
+
79
+
80
+
81
+ ## [0.0.75](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.74...@spinnaker/tencentcloud@0.0.75) (2023-04-03)
82
+
83
+ **Note:** Version bump only for package @spinnaker/tencentcloud
84
+
85
+
86
+
87
+
88
+
89
+ ## [0.0.74](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.73...@spinnaker/tencentcloud@0.0.74) (2023-02-01)
90
+
91
+ **Note:** Version bump only for package @spinnaker/tencentcloud
92
+
93
+
94
+
95
+
96
+
97
+ ## [0.0.73](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.72...@spinnaker/tencentcloud@0.0.73) (2022-10-21)
98
+
99
+ **Note:** Version bump only for package @spinnaker/tencentcloud
100
+
101
+
102
+
103
+
104
+
105
+ ## [0.0.72](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.71...@spinnaker/tencentcloud@0.0.72) (2022-10-06)
106
+
107
+ **Note:** Version bump only for package @spinnaker/tencentcloud
108
+
109
+
110
+
111
+
112
+
113
+ ## [0.0.71](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.70...@spinnaker/tencentcloud@0.0.71) (2022-08-03)
114
+
115
+ **Note:** Version bump only for package @spinnaker/tencentcloud
116
+
117
+
118
+
119
+
120
+
121
+ ## [0.0.70](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.69...@spinnaker/tencentcloud@0.0.70) (2022-07-11)
122
+
123
+ **Note:** Version bump only for package @spinnaker/tencentcloud
124
+
125
+
126
+
127
+
128
+
129
+ ## [0.0.69](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.68...@spinnaker/tencentcloud@0.0.69) (2022-07-01)
130
+
131
+ **Note:** Version bump only for package @spinnaker/tencentcloud
132
+
133
+
134
+
135
+
136
+
137
+ ## [0.0.68](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.67...@spinnaker/tencentcloud@0.0.68) (2022-06-22)
138
+
139
+ **Note:** Version bump only for package @spinnaker/tencentcloud
140
+
141
+
142
+
143
+
144
+
145
+ ## [0.0.67](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.66...@spinnaker/tencentcloud@0.0.67) (2022-05-05)
146
+
147
+ **Note:** Version bump only for package @spinnaker/tencentcloud
148
+
149
+
150
+
151
+
152
+
153
+ ## [0.0.66](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.65...@spinnaker/tencentcloud@0.0.66) (2022-04-21)
154
+
155
+ **Note:** Version bump only for package @spinnaker/tencentcloud
156
+
157
+
158
+
159
+
160
+
161
+ ## [0.0.65](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.64...@spinnaker/tencentcloud@0.0.65) (2022-04-09)
162
+
163
+ **Note:** Version bump only for package @spinnaker/tencentcloud
164
+
165
+
166
+
167
+
168
+
169
+ ## [0.0.64](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.63...@spinnaker/tencentcloud@0.0.64) (2022-03-08)
170
+
171
+ **Note:** Version bump only for package @spinnaker/tencentcloud
172
+
173
+
174
+
175
+
176
+
177
+ ## [0.0.63](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.62...@spinnaker/tencentcloud@0.0.63) (2022-01-22)
178
+
179
+ **Note:** Version bump only for package @spinnaker/tencentcloud
180
+
181
+
182
+
183
+
184
+
185
+ ## [0.0.62](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.61...@spinnaker/tencentcloud@0.0.62) (2022-01-12)
186
+
187
+ **Note:** Version bump only for package @spinnaker/tencentcloud
188
+
189
+
190
+
191
+
192
+
193
+ ## [0.0.61](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.60...@spinnaker/tencentcloud@0.0.61) (2021-12-11)
194
+
195
+ **Note:** Version bump only for package @spinnaker/tencentcloud
196
+
197
+
198
+
199
+
200
+
201
+ ## [0.0.60](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.59...@spinnaker/tencentcloud@0.0.60) (2021-12-08)
202
+
203
+ **Note:** Version bump only for package @spinnaker/tencentcloud
204
+
205
+
206
+
207
+
208
+
209
+ ## [0.0.59](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.58...@spinnaker/tencentcloud@0.0.59) (2021-12-01)
210
+
211
+ **Note:** Version bump only for package @spinnaker/tencentcloud
212
+
213
+
214
+
215
+
216
+
217
+ ## [0.0.58](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.57...@spinnaker/tencentcloud@0.0.58) (2021-11-12)
218
+
219
+ **Note:** Version bump only for package @spinnaker/tencentcloud
220
+
221
+
222
+
223
+
224
+
225
+ ## [0.0.57](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.56...@spinnaker/tencentcloud@0.0.57) (2021-11-03)
226
+
227
+ **Note:** Version bump only for package @spinnaker/tencentcloud
228
+
229
+
230
+
231
+
232
+
233
+ ## [0.0.56](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.55...@spinnaker/tencentcloud@0.0.56) (2021-10-05)
234
+
235
+ **Note:** Version bump only for package @spinnaker/tencentcloud
236
+
237
+
238
+
239
+
240
+
241
+ ## [0.0.55](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.54...@spinnaker/tencentcloud@0.0.55) (2021-10-01)
242
+
243
+ **Note:** Version bump only for package @spinnaker/tencentcloud
244
+
245
+
246
+
247
+
248
+
249
+ ## [0.0.54](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.52...@spinnaker/tencentcloud@0.0.54) (2021-09-30)
250
+
251
+
252
+ ### Bug Fixes
253
+
254
+ * bump @types/react to 16.14.10 ([bb62b99](https://github.com/spinnaker/deck/commit/bb62b991514c2a81fbdf467c01f3ce7467f71718))
255
+
256
+
257
+
258
+
259
+
260
+ ## [0.0.53](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.52...@spinnaker/tencentcloud@0.0.53) (2021-09-30)
261
+
262
+
263
+ ### Bug Fixes
264
+
265
+ * bump @types/react to 16.14.10 ([bb62b99](https://github.com/spinnaker/deck/commit/bb62b991514c2a81fbdf467c01f3ce7467f71718))
266
+
267
+
268
+
269
+
270
+
271
+ ## [0.0.52](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.51...@spinnaker/tencentcloud@0.0.52) (2021-09-29)
272
+
273
+ **Note:** Version bump only for package @spinnaker/tencentcloud
274
+
275
+
276
+
277
+
278
+
279
+ ## [0.0.51](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.50...@spinnaker/tencentcloud@0.0.51) (2021-09-24)
280
+
281
+ **Note:** Version bump only for package @spinnaker/tencentcloud
282
+
283
+
284
+
285
+
286
+
287
+ ## [0.0.50](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.49...@spinnaker/tencentcloud@0.0.50) (2021-09-23)
288
+
289
+ **Note:** Version bump only for package @spinnaker/tencentcloud
290
+
291
+
292
+
293
+
294
+
295
+ ## [0.0.49](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.48...@spinnaker/tencentcloud@0.0.49) (2021-09-23)
296
+
297
+ **Note:** Version bump only for package @spinnaker/tencentcloud
298
+
299
+
300
+
301
+
302
+
303
+ ## [0.0.48](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.47...@spinnaker/tencentcloud@0.0.48) (2021-09-21)
304
+
305
+ **Note:** Version bump only for package @spinnaker/tencentcloud
306
+
307
+
308
+
309
+
310
+
311
+ ## [0.0.47](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.46...@spinnaker/tencentcloud@0.0.47) (2021-09-18)
312
+
313
+ **Note:** Version bump only for package @spinnaker/tencentcloud
314
+
315
+
316
+
317
+
318
+
319
+ ## [0.0.46](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.45...@spinnaker/tencentcloud@0.0.46) (2021-09-18)
320
+
321
+ **Note:** Version bump only for package @spinnaker/tencentcloud
322
+
323
+
324
+
325
+
326
+
327
+ ## [0.0.45](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.44...@spinnaker/tencentcloud@0.0.45) (2021-09-16)
328
+
329
+ **Note:** Version bump only for package @spinnaker/tencentcloud
330
+
331
+
332
+
333
+
334
+
335
+ ## [0.0.44](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.43...@spinnaker/tencentcloud@0.0.44) (2021-09-15)
336
+
337
+ **Note:** Version bump only for package @spinnaker/tencentcloud
338
+
339
+
340
+
341
+
342
+
343
+ ## [0.0.43](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.42...@spinnaker/tencentcloud@0.0.43) (2021-09-14)
344
+
345
+ **Note:** Version bump only for package @spinnaker/tencentcloud
346
+
347
+
348
+
349
+
350
+
351
+ ## [0.0.42](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.41...@spinnaker/tencentcloud@0.0.42) (2021-09-06)
352
+
353
+ **Note:** Version bump only for package @spinnaker/tencentcloud
354
+
355
+
356
+
357
+
358
+
359
+ ## [0.0.41](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.40...@spinnaker/tencentcloud@0.0.41) (2021-09-02)
360
+
361
+ **Note:** Version bump only for package @spinnaker/tencentcloud
362
+
363
+
364
+
365
+
366
+
367
+ ## [0.0.40](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.39...@spinnaker/tencentcloud@0.0.40) (2021-08-30)
368
+
369
+ **Note:** Version bump only for package @spinnaker/tencentcloud
370
+
371
+
372
+
373
+
374
+
375
+ ## [0.0.39](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.38...@spinnaker/tencentcloud@0.0.39) (2021-08-25)
376
+
377
+ **Note:** Version bump only for package @spinnaker/tencentcloud
378
+
379
+
380
+
381
+
382
+
383
+ ## [0.0.38](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.37...@spinnaker/tencentcloud@0.0.38) (2021-08-20)
384
+
385
+ **Note:** Version bump only for package @spinnaker/tencentcloud
386
+
387
+
388
+
389
+
390
+
391
+ ## [0.0.37](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.36...@spinnaker/tencentcloud@0.0.37) (2021-08-18)
392
+
393
+ **Note:** Version bump only for package @spinnaker/tencentcloud
394
+
395
+
396
+
397
+
398
+
399
+ ## [0.0.36](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.35...@spinnaker/tencentcloud@0.0.36) (2021-08-17)
400
+
401
+ **Note:** Version bump only for package @spinnaker/tencentcloud
402
+
403
+
404
+
405
+
406
+
407
+ ## [0.0.35](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.34...@spinnaker/tencentcloud@0.0.35) (2021-08-13)
408
+
409
+ **Note:** Version bump only for package @spinnaker/tencentcloud
410
+
411
+
412
+
413
+
414
+
415
+ ## [0.0.34](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.33...@spinnaker/tencentcloud@0.0.34) (2021-08-10)
416
+
417
+ **Note:** Version bump only for package @spinnaker/tencentcloud
418
+
419
+
420
+
421
+
422
+
423
+ ## [0.0.33](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.32...@spinnaker/tencentcloud@0.0.33) (2021-08-05)
424
+
425
+ **Note:** Version bump only for package @spinnaker/tencentcloud
426
+
427
+
428
+
429
+
430
+
431
+ ## [0.0.32](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.31...@spinnaker/tencentcloud@0.0.32) (2021-08-02)
432
+
433
+ **Note:** Version bump only for package @spinnaker/tencentcloud
434
+
435
+
436
+
437
+
438
+
439
+ ## [0.0.31](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.30...@spinnaker/tencentcloud@0.0.31) (2021-07-30)
440
+
441
+ **Note:** Version bump only for package @spinnaker/tencentcloud
442
+
443
+
444
+
445
+
446
+
447
+ ## [0.0.30](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.29...@spinnaker/tencentcloud@0.0.30) (2021-07-26)
448
+
449
+ **Note:** Version bump only for package @spinnaker/tencentcloud
450
+
451
+
452
+
453
+
454
+
455
+ ## [0.0.29](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.28...@spinnaker/tencentcloud@0.0.29) (2021-07-22)
456
+
457
+ **Note:** Version bump only for package @spinnaker/tencentcloud
458
+
459
+
460
+
461
+
462
+
463
+ ## [0.0.28](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.26...@spinnaker/tencentcloud@0.0.28) (2021-07-22)
464
+
465
+ **Note:** Version bump only for package @spinnaker/tencentcloud
466
+
467
+
468
+
469
+
470
+
471
+ ## [0.0.27](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.26...@spinnaker/tencentcloud@0.0.27) (2021-07-22)
472
+
473
+ **Note:** Version bump only for package @spinnaker/tencentcloud
474
+
475
+
476
+
477
+
478
+
479
+ ## [0.0.26](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.21...@spinnaker/tencentcloud@0.0.26) (2021-07-19)
480
+
481
+ **Note:** Version bump only for package @spinnaker/tencentcloud
482
+
483
+
484
+
485
+
486
+
487
+ ## [0.0.25](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.21...@spinnaker/tencentcloud@0.0.25) (2021-07-19)
488
+
489
+ **Note:** Version bump only for package @spinnaker/tencentcloud
490
+
491
+
492
+
493
+
494
+
495
+ ## [0.0.24](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.21...@spinnaker/tencentcloud@0.0.24) (2021-07-19)
496
+
497
+ **Note:** Version bump only for package @spinnaker/tencentcloud
498
+
499
+
500
+
501
+
502
+
503
+ ## [0.0.23](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.21...@spinnaker/tencentcloud@0.0.23) (2021-07-19)
504
+
505
+ **Note:** Version bump only for package @spinnaker/tencentcloud
506
+
507
+
508
+
509
+
510
+
511
+ ## [0.0.22](https://github.com/spinnaker/deck/compare/@spinnaker/tencentcloud@0.0.21...@spinnaker/tencentcloud@0.0.22) (2021-07-19)
512
+
513
+ **Note:** Version bump only for package @spinnaker/tencentcloud
514
+
515
+
516
+
517
+
518
+
519
+ ## 0.0.21 (2021-07-17)
520
+
521
+
522
+ ### Bug Fixes
523
+
524
+ * **publishing:** Auto approve instead of adding "ready to merge" label ([51f536c](https://github.com/spinnaker/deck/commit/51f536c275e77854d8f173aeec86412ffbd66b6d))
525
+
526
+
527
+
528
+
529
+
530
+
531
+ ## [0.0.19](https://www.github.com/spinnaker/deck/compare/d478c23ec6dcd2c56f0fc04283fe548ea5b836dc...e8923ca33c66c03138881c17d66f2955dccbb3f5) (2021-07-01)
532
+
533
+
534
+ ### Changes
535
+
536
+ chore(tencentcloud): publish tencentcloud@0.0.19 ([e8923ca3](https://github.com/spinnaker/deck/commit/e8923ca33c66c03138881c17d66f2955dccbb3f5))
537
+ chore(all): Remove ng template cache for webpack ([be6df680](https://github.com/spinnaker/deck/commit/be6df680689e0624b27635bc875d0b4390a3bc4a))
538
+ chore(build): Integrate with yarn workspaces ([e30e631b](https://github.com/spinnaker/deck/commit/e30e631b128bd1c8bfef3a48643ce0b4f9935f1d))
539
+
540
+
541
+
542
+ ## [0.0.18](https://www.github.com/spinnaker/deck/compare/281953957f3c8028d7674df557a9991e546ff81d...d478c23ec6dcd2c56f0fc04283fe548ea5b836dc) (2021-06-14)
543
+
544
+
545
+ ### Changes
546
+
547
+ chore(tencentcloud): publish tencentcloud@0.0.18 ([d478c23e](https://github.com/spinnaker/deck/commit/d478c23ec6dcd2c56f0fc04283fe548ea5b836dc))
548
+ fix(imports): Convert requires to imports ([5839a0f4](https://github.com/spinnaker/deck/commit/5839a0f42059247c08ac52322f2c7dfd260b3644))
549
+ refactor(packages): Migrate packages to make them independent ([38b5fa17](https://github.com/spinnaker/deck/commit/38b5fa17d82a1a032e84e6c3f51c806b5d6901b8))
550
+
551
+
552
+
553
+ ## [0.0.17](https://www.github.com/spinnaker/deck/compare/7232f7fbfcbc519eab672c6aec5abc9938ef3fe1...281953957f3c8028d7674df557a9991e546ff81d) (2021-06-10)
554
+
555
+
556
+ ### Changes
557
+
558
+ chore(tencentcloud): publish tencentcloud@0.0.17 ([28195395](https://github.com/spinnaker/deck/commit/281953957f3c8028d7674df557a9991e546ff81d))
559
+ fix(build): Fix distribution dir ([eb87451a](https://github.com/spinnaker/deck/commit/eb87451afb8a4696a4c6d76589cb95d8b4192398))
560
+
561
+
562
+
563
+ ## [0.0.16](https://www.github.com/spinnaker/deck/compare/b6e759e1992cd4b7ec63a2a824fe161fe97fb95d...7232f7fbfcbc519eab672c6aec5abc9938ef3fe1) (2021-04-21)
564
+
565
+
566
+ ### Changes
567
+
568
+ chore(tencentcloud): publish tencentcloud@0.0.16 ([7232f7fb](https://github.com/spinnaker/deck/commit/7232f7fbfcbc519eab672c6aec5abc9938ef3fe1))
569
+
570
+
571
+
572
+ ## [0.0.15](https://www.github.com/spinnaker/deck/compare/22341d8287a62423fcb979efb697b8f453c1ec7b...b6e759e1992cd4b7ec63a2a824fe161fe97fb95d) (2021-04-21)
573
+
574
+
575
+ ### Changes
576
+
577
+ chore(tencentcloud): publish tencentcloud@0.0.15 ([b6e759e1](https://github.com/spinnaker/deck/commit/b6e759e1992cd4b7ec63a2a824fe161fe97fb95d))
578
+ Remove webpack modules + webpack consolidation [#9097](https://github.com/spinnaker/deck/pull/9097) ([00145566](https://github.com/spinnaker/deck/commit/001455667f2afb5c728737863f7365fc4fcbb76b))
579
+
580
+
581
+
582
+ ## [0.0.14](https://www.github.com/spinnaker/deck/compare/3e7f89c75bb06eb3027eab86f3f2c43b162a1710...22341d8287a62423fcb979efb697b8f453c1ec7b) (2021-02-22)
583
+
584
+
585
+ ### Changes
586
+
587
+ chore(tencentcloud): publish tencentcloud@0.0.14 ([22341d82](https://github.com/spinnaker/deck/commit/22341d8287a62423fcb979efb697b8f453c1ec7b))
588
+ chore(lint): Update import statement ordering ([5a9768bc](https://github.com/spinnaker/deck/commit/5a9768bc6db2f527a73d6b1f5fb3120c101e094b))
589
+ chore(lint): Sort import statements ([cca56eaa](https://github.com/spinnaker/deck/commit/cca56eaaeeb412b7596c68a1260eefed7fbf6fed))
590
+
591
+
592
+
593
+ ## [0.0.13](https://www.github.com/spinnaker/deck/compare/a8f810ad827c41ca7580b8748b8ba72abfab17f0...3e7f89c75bb06eb3027eab86f3f2c43b162a1710) (2020-12-16)
594
+
595
+
596
+ ### Changes
597
+
598
+ chore(tencentcloud): publish tencentcloud@0.0.13 ([3e7f89c7](https://github.com/spinnaker/deck/commit/3e7f89c75bb06eb3027eab86f3f2c43b162a1710))
599
+ refactor(REST): Prefer REST('/foo/bar') over REST().path('foo', 'bar') ([1d4320a0](https://github.com/spinnaker/deck/commit/1d4320a08f73093483cbb93784e9115c236b1f8a))
600
+ refactor(api-deprecation): API is deprecated, switch to REST() ([97bfbf67](https://github.com/spinnaker/deck/commit/97bfbf67b5d359cc540918b62c99088ad82dfb1b))
601
+ refactor(api-deprecation): Prefer API.path('foo', 'bar') over API.path('foo').path('bar') ([39b08e72](https://github.com/spinnaker/deck/commit/39b08e72b4baef1063a3ab9b65584e6e4e73d3e2))
602
+ refactor(api-deprecation): Migrate from API.one/all/withParams/getList() to path/query/get() ([587db3ab](https://github.com/spinnaker/deck/commit/587db3ab20040fb5c72fe48feb36eccd7d1f297a))
603
+
604
+
605
+
606
+ ## [0.0.12](https://www.github.com/spinnaker/deck/compare/b234187a80ba73a07aa23314dcd2c75f87ed85c1...a8f810ad827c41ca7580b8748b8ba72abfab17f0) (2020-10-28)
607
+
608
+
609
+ ### Changes
610
+
611
+ chore(tencentcloud): publish tencentcloud@0.0.12 ([a8f810ad](https://github.com/spinnaker/deck/commit/a8f810ad827c41ca7580b8748b8ba72abfab17f0))
612
+ 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))
613
+
614
+
615
+
616
+ ## [0.0.11](https://www.github.com/spinnaker/deck/compare/47a8002877ce304ce51f928214e6b3b60820fc6c...b234187a80ba73a07aa23314dcd2c75f87ed85c1) (2020-10-28)
617
+
618
+
619
+ ### Changes
620
+
621
+ chore(tencentcloud): publish tencentcloud@0.0.11 ([b234187a](https://github.com/spinnaker/deck/commit/b234187a80ba73a07aa23314dcd2c75f87ed85c1))
622
+ 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))
623
+ 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))
624
+ chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
625
+ 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))
626
+
627
+
628
+
629
+ ## [0.0.10](https://www.github.com/spinnaker/deck/compare/a220af588e194762757be534cce2d7ae9dc508d5...47a8002877ce304ce51f928214e6b3b60820fc6c) (2020-10-26)
630
+
631
+
632
+ ### Changes
633
+
634
+ 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))
635
+ chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
636
+ 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))
637
+ chore(tencentcloud): publish tencentcloud@0.0.10 ([10b8d864](https://github.com/spinnaker/deck/commit/10b8d8644e2877cc069e8efcbce3fc4336c4ceb2))
638
+ 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))
639
+ 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))
640
+ 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))
641
+
642
+
643
+
644
+ ## [0.0.9](https://www.github.com/spinnaker/deck/compare/10b8d8644e2877cc069e8efcbce3fc4336c4ceb2...a220af588e194762757be534cce2d7ae9dc508d5) (2020-10-26)
645
+
646
+
647
+ ### Changes
648
+
649
+ 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))
650
+
651
+
652
+
653
+ ## [0.0.10](https://www.github.com/spinnaker/deck/compare/4b79b4d75628bc74b91b72980f0a5e8ba479335e...10b8d8644e2877cc069e8efcbce3fc4336c4ceb2) (2020-10-26)
654
+
655
+
656
+ ### Changes
657
+
658
+ 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))
659
+ chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
660
+ 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))
661
+ chore(tencentcloud): publish tencentcloud@0.0.10 ([10b8d864](https://github.com/spinnaker/deck/commit/10b8d8644e2877cc069e8efcbce3fc4336c4ceb2))
662
+ 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))
663
+ 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))
664
+ 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))
665
+
666
+
667
+
668
+ ## [0.0.9](https://www.github.com/spinnaker/deck/compare/f216cc6556bff90033b28bbe7e9f94517ddaa270...4b79b4d75628bc74b91b72980f0a5e8ba479335e) (2020-10-12)
669
+
670
+
671
+ ### Changes
672
+
673
+ 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))
674
+ chore(tencentcloud): publish tencentcloud@0.0.10 ([10b8d864](https://github.com/spinnaker/deck/commit/10b8d8644e2877cc069e8efcbce3fc4336c4ceb2))
675
+ 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))
676
+ 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))
677
+ 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))
678
+ 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))
679
+ chore(prettier): Just Update Prettier™ [#8644](https://github.com/spinnaker/deck/pull/8644) ([8532bdd4](https://github.com/spinnaker/deck/commit/8532bdd4c08d59c38a0adde70ccac4f163c9dd97))
680
+
681
+
682
+
683
+ ## [0.0.8](https://www.github.com/spinnaker/deck/compare/5cdc7fa4494ada88702155bb91f80a0a16f3782e...f216cc6556bff90033b28bbe7e9f94517ddaa270) (2020-10-09)
684
+
685
+
686
+ ### Changes
687
+
688
+ 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))
689
+ chore(eslint): eslint --fix api-no-slashes [#8631](https://github.com/spinnaker/deck/pull/8631) ([fab1a0ad](https://github.com/spinnaker/deck/commit/fab1a0ad75200cca60dfb74455d99f332e3e376f))
690
+
691
+
692
+
693
+ ## [0.0.7](https://www.github.com/spinnaker/deck/compare/8aa1e3e514703fcf0b4bf7b06dffafe01e9c27ed...5cdc7fa4494ada88702155bb91f80a0a16f3782e) (2020-10-06)
694
+
695
+
696
+ ### Changes
697
+
698
+ 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))
699
+ Revert "fix(appname): encodeURIComponent for app name (#8586)" [#8627](https://github.com/spinnaker/deck/pull/8627) ([885cd169](https://github.com/spinnaker/deck/commit/885cd169ad0dca8e7e6683bc96d2c131af6b3a1e))
700
+
701
+
702
+
703
+ ## [0.0.6](https://www.github.com/spinnaker/deck/compare/2273dee2b3668ba105a34a062da669cdf7c207c5...8aa1e3e514703fcf0b4bf7b06dffafe01e9c27ed) (2020-10-05)
704
+
705
+
706
+ ### Changes
707
+
708
+ 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))
709
+ fix(appname): encodeURIComponent for app name [#8586](https://github.com/spinnaker/deck/pull/8586) ([f1bb04e8](https://github.com/spinnaker/deck/commit/f1bb04e867e68e53f4e4edb22192afbcd9715d5d))
710
+
711
+
712
+
713
+ ## [0.0.5](https://www.github.com/spinnaker/deck/compare/ced77a7453a0ffab5a14c38943288138fdcb084b...2273dee2b3668ba105a34a062da669cdf7c207c5) (2020-09-23)
714
+
715
+
716
+ ### Changes
717
+
718
+ 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))
719
+ fix(tencent+pcf): fix imports 'core' -> '@spinnaker/core' [#8582](https://github.com/spinnaker/deck/pull/8582) ([81c29380](https://github.com/spinnaker/deck/commit/81c29380c3c8d8957e440e2b2b7e4f35a1f4a89a))
720
+
721
+
722
+
723
+ ## [0.0.4](https://www.github.com/spinnaker/deck/compare/638a6036d8a35c60121612c5c033e461626940a8...ced77a7453a0ffab5a14c38943288138fdcb084b) (2020-08-25)
724
+
725
+
726
+ ### Changes
727
+
728
+ 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))
729
+ feat(tencentcloud pipeline): add disableCluster, disableServerGroup, … [#8420](https://github.com/spinnaker/deck/pull/8420) ([5c85ee18](https://github.com/spinnaker/deck/commit/5c85ee185865e97a419db2a2ab800bfc3209687a))
730
+ chore(licenses): add license metadata to npm packages [#8512](https://github.com/spinnaker/deck/pull/8512) ([d4afa1bf](https://github.com/spinnaker/deck/commit/d4afa1bf2328cc91cf3195f810073b0b4726b3b5))
731
+
732
+
733
+
734
+ ## [0.0.3](https://www.github.com/spinnaker/deck/compare/94f977b83063edd6b0fa215cf3e3b1c9c899a1ce...638a6036d8a35c60121612c5c033e461626940a8) (2020-06-17)
735
+
736
+
737
+ ### Changes
738
+
739
+ chore(package): publish amazon 0.0.256 core 0.0.480 tencentcloud 0.0.3 titus 0.0.136 [#8355](https://github.com/spinnaker/deck/pull/8355) ([638a6036](https://github.com/spinnaker/deck/commit/638a6036d8a35c60121612c5c033e461626940a8))
740
+ fix(*): Use allowlist and denylist [#8351](https://github.com/spinnaker/deck/pull/8351) ([579560d5](https://github.com/spinnaker/deck/commit/579560d50fe6811c8525e5f287c79e12928d1b46))
741
+ fix(tencentcloud): rename tencentCloud to tencentcloud. [#8346](https://github.com/spinnaker/deck/pull/8346) ([a9d346c5](https://github.com/spinnaker/deck/commit/a9d346c57208985a277c2c0eb6d345c757b256e2))
742
+
743
+
744
+
745
+ ## [0.0.2](https://www.github.com/spinnaker/deck/compare/7bf423d04038515abe143b15bd89075c5fcb2cf2...94f977b83063edd6b0fa215cf3e3b1c9c899a1ce) (2020-05-26)
746
+
747
+
748
+ ### Changes
749
+
750
+ chore(package): publish core 0.0.478 tencentcloud 0.0.2 [#8308](https://github.com/spinnaker/deck/pull/8308) ([94f977b8](https://github.com/spinnaker/deck/commit/94f977b83063edd6b0fa215cf3e3b1c9c899a1ce))
751
+ feat(tencentcloud): add help, image, keyPairs, reactShims, search, validation folders and files for tencentcloud [#8296](https://github.com/spinnaker/deck/pull/8296) ([ec08cc50](https://github.com/spinnaker/deck/commit/ec08cc504fce0a7e1e5c58b181ce7076929a9553))