@spinnaker/appengine 0.0.0-2025.1-0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +981 -0
- package/LICENSE.txt +203 -0
- package/dist/appengine.logoc2c312af6aa99037.png +0 -0
- package/dist/appengine.module.d.ts +5 -0
- package/dist/appengine.settings.d.ts +7 -0
- package/dist/common/FormikAccountRegionSelector.d.ts +26 -0
- package/dist/common/appengineHealth.d.ts +3 -0
- package/dist/common/componentUrlDetails.component.d.ts +1 -0
- package/dist/common/conditionalDescriptionListItem.component.d.ts +1 -0
- package/dist/common/loadBalancerMessage.component.d.ts +1 -0
- package/dist/domain/IAppengineAccount.d.ts +6 -0
- package/dist/domain/IAppengineInstance.d.ts +20 -0
- package/dist/domain/IAppengineLoadBalancer.d.ts +19 -0
- package/dist/domain/IAppengineServerGroup.d.ts +11 -0
- package/dist/domain/IAppengineStageScope.d.ts +18 -0
- package/dist/domain/IAppengineTriggers.d.ts +11 -0
- package/dist/domain/index.d.ts +6 -0
- package/dist/helpContents/appengineHelpContents.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4084 -0
- package/dist/index.js.map +1 -0
- package/dist/instance/details/details.controller.d.ts +1 -0
- package/dist/loadBalancer/configure/wizard/advancedSettings.component.d.ts +1 -0
- package/dist/loadBalancer/configure/wizard/allocationConfigurationRow.component.d.ts +1 -0
- package/dist/loadBalancer/configure/wizard/basicSettings.component.d.ts +1 -0
- package/dist/loadBalancer/configure/wizard/stageAllocationConfigurationRow.component.d.ts +1 -0
- package/dist/loadBalancer/configure/wizard/wizard.controller.d.ts +2 -0
- package/dist/loadBalancer/details/details.controller.d.ts +1 -0
- package/dist/loadBalancer/loadBalancer.module.d.ts +1 -0
- package/dist/loadBalancer/transformer.d.ts +40 -0
- package/dist/pipeline/pipeline.module.d.ts +1 -0
- package/dist/pipeline/stages/appengineStage.controller.d.ts +12 -0
- package/dist/pipeline/stages/deployAppengineConfig/DeployAppengineConfigForm.d.ts +16 -0
- package/dist/pipeline/stages/deployAppengineConfig/DeployAppengineConfigurationConfig.d.ts +5 -0
- package/dist/pipeline/stages/deployAppengineConfig/deployAppengineConfigStage.d.ts +1 -0
- package/dist/pipeline/stages/destroyAsg/appengineDestroyAsgStage.d.ts +1 -0
- package/dist/pipeline/stages/disableAsg/appengineDisableAsgStage.d.ts +1 -0
- package/dist/pipeline/stages/editLoadBalancer/appengineEditLoadBalancerStage.d.ts +1 -0
- package/dist/pipeline/stages/editLoadBalancer/loadBalancerChoice.modal.controller.d.ts +1 -0
- package/dist/pipeline/stages/enableAsg/appengineEnableAsgStage.d.ts +1 -0
- package/dist/pipeline/stages/shrinkCluster/appengineShrinkClusterStage.d.ts +1 -0
- package/dist/pipeline/stages/startServerGroup/appengineStartServerGroupStage.d.ts +1 -0
- package/dist/pipeline/stages/stopServerGroup/appengineStopServerGroupStage.d.ts +1 -0
- package/dist/serverGroup/configure/serverGroupCommandBuilder.service.d.ts +74 -0
- package/dist/serverGroup/configure/wizard/ConfigFileArtifactList.d.ts +10 -0
- package/dist/serverGroup/configure/wizard/basicSettings.controller.d.ts +1 -0
- package/dist/serverGroup/configure/wizard/cloneServerGroup.controller.d.ts +2 -0
- package/dist/serverGroup/configure/wizard/configFileArtifactList.module.d.ts +1 -0
- package/dist/serverGroup/configure/wizard/configFiles.component.d.ts +20 -0
- package/dist/serverGroup/configure/wizard/dynamicBranchLabel.component.d.ts +1 -0
- package/dist/serverGroup/details/details.controller.d.ts +1 -0
- package/dist/serverGroup/transformer.d.ts +45 -0
- package/dist/serverGroup/writer/serverGroup.write.service.d.ts +8 -0
- package/dist/validation/ApplicationNameValidator.d.ts +1 -0
- package/package.json +46 -0
- package/src/appengine.module.ts +70 -0
- package/src/appengine.settings.ts +14 -0
- package/src/common/FormikAccountRegionSelector.tsx +107 -0
- package/src/common/appengineHealth.ts +3 -0
- package/src/common/componentUrlDetails.component.ts +29 -0
- package/src/common/conditionalDescriptionListItem.component.ts +37 -0
- package/src/common/loadBalancerMessage.component.html +33 -0
- package/src/common/loadBalancerMessage.component.ts +13 -0
- package/src/domain/IAppengineAccount.ts +8 -0
- package/src/domain/IAppengineInstance.ts +21 -0
- package/src/domain/IAppengineLoadBalancer.ts +21 -0
- package/src/domain/IAppengineServerGroup.ts +13 -0
- package/src/domain/IAppengineStageScope.ts +22 -0
- package/src/domain/IAppengineTriggers.ts +12 -0
- package/src/domain/index.ts +6 -0
- package/src/helpContents/appengineHelpContents.ts +141 -0
- package/src/index.ts +1 -0
- package/src/instance/details/details.controller.ts +116 -0
- package/src/instance/details/details.html +99 -0
- package/src/loadBalancer/configure/wizard/advancedSettings.component.ts +56 -0
- package/src/loadBalancer/configure/wizard/allocationConfigurationRow.component.ts +70 -0
- package/src/loadBalancer/configure/wizard/basicSettings.component.html +65 -0
- package/src/loadBalancer/configure/wizard/basicSettings.component.ts +98 -0
- package/src/loadBalancer/configure/wizard/stageAllocationConfigurationRow.component.html +117 -0
- package/src/loadBalancer/configure/wizard/stageAllocationConfigurationRow.component.ts +108 -0
- package/src/loadBalancer/configure/wizard/wizard.controller.ts +163 -0
- package/src/loadBalancer/configure/wizard/wizard.html +44 -0
- package/src/loadBalancer/configure/wizard/wizard.less +17 -0
- package/src/loadBalancer/details/details.controller.ts +151 -0
- package/src/loadBalancer/details/details.html +102 -0
- package/src/loadBalancer/loadBalancer.module.ts +21 -0
- package/src/loadBalancer/transformer.ts +170 -0
- package/src/logo/appengine.icon.svg +37 -0
- package/src/logo/appengine.logo.less +6 -0
- package/src/logo/appengine.logo.png +0 -0
- package/src/pipeline/pipeline.module.ts +20 -0
- package/src/pipeline/stages/appengineStage.controller.ts +45 -0
- package/src/pipeline/stages/deployAppengineConfig/DeployAppengineConfigForm.tsx +203 -0
- package/src/pipeline/stages/deployAppengineConfig/DeployAppengineConfigurationConfig.tsx +34 -0
- package/src/pipeline/stages/deployAppengineConfig/deployAppengineConfigStage.ts +19 -0
- package/src/pipeline/stages/destroyAsg/appengineDestroyAsgStage.ts +45 -0
- package/src/pipeline/stages/destroyAsg/destroyAsgStage.html +16 -0
- package/src/pipeline/stages/destroyAsg/destroyAsgStepLabel.html +1 -0
- package/src/pipeline/stages/disableAsg/appengineDisableAsgStage.ts +54 -0
- package/src/pipeline/stages/disableAsg/disableAsgStage.html +18 -0
- package/src/pipeline/stages/disableAsg/disableAsgStepLabel.html +1 -0
- package/src/pipeline/stages/editLoadBalancer/appengineEditLoadBalancerStage.ts +74 -0
- package/src/pipeline/stages/editLoadBalancer/editLoadBalancerExecutionDetails.html +33 -0
- package/src/pipeline/stages/editLoadBalancer/editLoadBalancerStage.html +51 -0
- package/src/pipeline/stages/editLoadBalancer/loadBalancerChoice.modal.controller.ts +65 -0
- package/src/pipeline/stages/editLoadBalancer/loadBalancerChoice.modal.html +45 -0
- package/src/pipeline/stages/enableAsg/appengineEnableAsgStage.ts +49 -0
- package/src/pipeline/stages/enableAsg/enableAsgStage.html +18 -0
- package/src/pipeline/stages/enableAsg/enableAsgStepLabel.html +1 -0
- package/src/pipeline/stages/shrinkCluster/appengineShrinkClusterStage.ts +62 -0
- package/src/pipeline/stages/shrinkCluster/shrinkClusterStage.html +41 -0
- package/src/pipeline/stages/startServerGroup/appengineStartServerGroupStage.ts +54 -0
- package/src/pipeline/stages/startServerGroup/startServerGroupExecutionDetails.html +26 -0
- package/src/pipeline/stages/startServerGroup/startServerGroupStage.html +18 -0
- package/src/pipeline/stages/startServerGroup/startServerGroupStepLabel.html +1 -0
- package/src/pipeline/stages/stopServerGroup/appengineStopServerGroupStage.ts +54 -0
- package/src/pipeline/stages/stopServerGroup/stopServerGroupExecutionDetails.html +26 -0
- package/src/pipeline/stages/stopServerGroup/stopServerGroupStage.html +18 -0
- package/src/pipeline/stages/stopServerGroup/stopServerGroupStepLabel.html +1 -0
- package/src/serverGroup/configure/serverGroupCommandBuilder.service.ts +235 -0
- package/src/serverGroup/configure/wizard/ConfigFileArtifactList.tsx +81 -0
- package/src/serverGroup/configure/wizard/advancedSettings.html +33 -0
- package/src/serverGroup/configure/wizard/basicSettings.controller.ts +151 -0
- package/src/serverGroup/configure/wizard/basicSettings.html +287 -0
- package/src/serverGroup/configure/wizard/cloneServerGroup.controller.ts +103 -0
- package/src/serverGroup/configure/wizard/configFileArtifactList.module.ts +18 -0
- package/src/serverGroup/configure/wizard/configFileArtifactList.spec.tsx +78 -0
- package/src/serverGroup/configure/wizard/configFiles.component.html +81 -0
- package/src/serverGroup/configure/wizard/configFiles.component.ts +121 -0
- package/src/serverGroup/configure/wizard/dynamicBranchLabel.component.ts +19 -0
- package/src/serverGroup/configure/wizard/serverGroupWizard.html +39 -0
- package/src/serverGroup/configure/wizard/serverGroupWizard.less +28 -0
- package/src/serverGroup/details/details.controller.ts +463 -0
- package/src/serverGroup/details/details.html +229 -0
- package/src/serverGroup/transformer.ts +92 -0
- package/src/serverGroup/transformet.spec.ts +40 -0
- package/src/serverGroup/writer/serverGroup.write.service.ts +57 -0
- package/src/validation/ApplicationNameValidator.ts +40 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,981 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
## [0.1.13](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.1.12...@spinnaker/appengine@0.1.13) (2024-06-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.1.12](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.1.11...@spinnaker/appengine@0.1.12) (2024-05-10)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [0.1.11](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.1.10...@spinnaker/appengine@0.1.11) (2023-12-07)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## [0.1.10](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.1.9...@spinnaker/appengine@0.1.10) (2023-10-16)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
|
|
35
|
+
* **publish:** set access config in deck libraries ([#10049](https://github.com/spinnaker/deck/issues/10049)) ([2a5ebe2](https://github.com/spinnaker/deck/commit/2a5ebe25662eeb9d41b5071749266bf9d6d51104))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
## [0.1.9](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.1.8...@spinnaker/appengine@0.1.9) (2023-09-06)
|
|
42
|
+
|
|
43
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
## [0.1.8](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.1.7...@spinnaker/appengine@0.1.8) (2023-07-20)
|
|
50
|
+
|
|
51
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
## [0.1.7](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.1.6...@spinnaker/appengine@0.1.7) (2023-06-02)
|
|
58
|
+
|
|
59
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
## [0.1.6](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.1.5...@spinnaker/appengine@0.1.6) (2023-05-11)
|
|
66
|
+
|
|
67
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
## [0.1.5](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.1.4...@spinnaker/appengine@0.1.5) (2023-05-03)
|
|
74
|
+
|
|
75
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
## [0.1.4](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.1.3...@spinnaker/appengine@0.1.4) (2023-04-03)
|
|
82
|
+
|
|
83
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
## [0.1.3](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.1.2...@spinnaker/appengine@0.1.3) (2023-02-01)
|
|
90
|
+
|
|
91
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
## [0.1.2](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.1.1...@spinnaker/appengine@0.1.2) (2022-10-21)
|
|
98
|
+
|
|
99
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
## [0.1.1](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.1.0...@spinnaker/appengine@0.1.1) (2022-10-06)
|
|
106
|
+
|
|
107
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
# [0.1.0](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.87...@spinnaker/appengine@0.1.0) (2022-08-03)
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
### Features
|
|
117
|
+
|
|
118
|
+
* **dependencies:** Update vulnerable dependencies ([#9875](https://github.com/spinnaker/deck/issues/9875)) ([bf92932](https://github.com/spinnaker/deck/commit/bf92932c9396a88fb902050b52f504e4ac01aaa0))
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
## [0.0.87](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.86...@spinnaker/appengine@0.0.87) (2022-07-11)
|
|
125
|
+
|
|
126
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
## [0.0.86](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.85...@spinnaker/appengine@0.0.86) (2022-07-01)
|
|
133
|
+
|
|
134
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
## [0.0.85](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.84...@spinnaker/appengine@0.0.85) (2022-06-22)
|
|
141
|
+
|
|
142
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
## [0.0.84](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.83...@spinnaker/appengine@0.0.84) (2022-05-05)
|
|
149
|
+
|
|
150
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
## [0.0.83](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.82...@spinnaker/appengine@0.0.83) (2022-04-21)
|
|
157
|
+
|
|
158
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
## [0.0.82](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.81...@spinnaker/appengine@0.0.82) (2022-04-09)
|
|
165
|
+
|
|
166
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
## [0.0.81](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.80...@spinnaker/appengine@0.0.81) (2022-03-08)
|
|
173
|
+
|
|
174
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
## [0.0.80](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.79...@spinnaker/appengine@0.0.80) (2022-01-22)
|
|
181
|
+
|
|
182
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
## [0.0.79](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.78...@spinnaker/appengine@0.0.79) (2022-01-12)
|
|
189
|
+
|
|
190
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
## [0.0.78](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.77...@spinnaker/appengine@0.0.78) (2021-12-11)
|
|
197
|
+
|
|
198
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
## [0.0.77](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.76...@spinnaker/appengine@0.0.77) (2021-12-08)
|
|
205
|
+
|
|
206
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
## [0.0.76](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.75...@spinnaker/appengine@0.0.76) (2021-12-01)
|
|
213
|
+
|
|
214
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
## [0.0.75](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.74...@spinnaker/appengine@0.0.75) (2021-11-12)
|
|
221
|
+
|
|
222
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
## [0.0.74](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.73...@spinnaker/appengine@0.0.74) (2021-11-03)
|
|
229
|
+
|
|
230
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
## [0.0.73](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.72...@spinnaker/appengine@0.0.73) (2021-10-05)
|
|
237
|
+
|
|
238
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
## [0.0.72](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.71...@spinnaker/appengine@0.0.72) (2021-10-01)
|
|
245
|
+
|
|
246
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
## [0.0.71](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.69...@spinnaker/appengine@0.0.71) (2021-09-30)
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
### Bug Fixes
|
|
256
|
+
|
|
257
|
+
* bump @types/react to 16.14.10 ([bb62b99](https://github.com/spinnaker/deck/commit/bb62b991514c2a81fbdf467c01f3ce7467f71718))
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
## [0.0.70](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.69...@spinnaker/appengine@0.0.70) (2021-09-30)
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
### Bug Fixes
|
|
267
|
+
|
|
268
|
+
* bump @types/react to 16.14.10 ([bb62b99](https://github.com/spinnaker/deck/commit/bb62b991514c2a81fbdf467c01f3ce7467f71718))
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
## [0.0.69](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.68...@spinnaker/appengine@0.0.69) (2021-09-29)
|
|
275
|
+
|
|
276
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
## [0.0.68](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.67...@spinnaker/appengine@0.0.68) (2021-09-24)
|
|
283
|
+
|
|
284
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
## [0.0.67](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.66...@spinnaker/appengine@0.0.67) (2021-09-23)
|
|
291
|
+
|
|
292
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
## [0.0.66](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.65...@spinnaker/appengine@0.0.66) (2021-09-23)
|
|
299
|
+
|
|
300
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
## [0.0.65](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.64...@spinnaker/appengine@0.0.65) (2021-09-21)
|
|
307
|
+
|
|
308
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
## [0.0.64](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.63...@spinnaker/appengine@0.0.64) (2021-09-18)
|
|
315
|
+
|
|
316
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
## [0.0.63](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.62...@spinnaker/appengine@0.0.63) (2021-09-18)
|
|
323
|
+
|
|
324
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
## [0.0.62](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.61...@spinnaker/appengine@0.0.62) (2021-09-16)
|
|
331
|
+
|
|
332
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
## [0.0.61](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.60...@spinnaker/appengine@0.0.61) (2021-09-15)
|
|
339
|
+
|
|
340
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
## [0.0.60](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.59...@spinnaker/appengine@0.0.60) (2021-09-14)
|
|
347
|
+
|
|
348
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
## [0.0.59](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.58...@spinnaker/appengine@0.0.59) (2021-09-06)
|
|
355
|
+
|
|
356
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
## [0.0.58](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.57...@spinnaker/appengine@0.0.58) (2021-09-02)
|
|
363
|
+
|
|
364
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
## [0.0.57](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.56...@spinnaker/appengine@0.0.57) (2021-08-30)
|
|
371
|
+
|
|
372
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
## [0.0.56](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.55...@spinnaker/appengine@0.0.56) (2021-08-25)
|
|
379
|
+
|
|
380
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
## [0.0.55](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.54...@spinnaker/appengine@0.0.55) (2021-08-20)
|
|
387
|
+
|
|
388
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
## [0.0.54](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.53...@spinnaker/appengine@0.0.54) (2021-08-18)
|
|
395
|
+
|
|
396
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
## [0.0.53](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.52...@spinnaker/appengine@0.0.53) (2021-08-17)
|
|
403
|
+
|
|
404
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
## [0.0.52](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.51...@spinnaker/appengine@0.0.52) (2021-08-13)
|
|
411
|
+
|
|
412
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
## [0.0.51](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.50...@spinnaker/appengine@0.0.51) (2021-08-10)
|
|
419
|
+
|
|
420
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
## [0.0.50](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.49...@spinnaker/appengine@0.0.50) (2021-08-05)
|
|
427
|
+
|
|
428
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
## [0.0.49](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.48...@spinnaker/appengine@0.0.49) (2021-08-02)
|
|
435
|
+
|
|
436
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
## [0.0.48](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.47...@spinnaker/appengine@0.0.48) (2021-07-30)
|
|
443
|
+
|
|
444
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
## [0.0.47](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.46...@spinnaker/appengine@0.0.47) (2021-07-26)
|
|
451
|
+
|
|
452
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
## [0.0.46](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.45...@spinnaker/appengine@0.0.46) (2021-07-22)
|
|
459
|
+
|
|
460
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
## [0.0.45](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.43...@spinnaker/appengine@0.0.45) (2021-07-22)
|
|
467
|
+
|
|
468
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
## [0.0.44](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.43...@spinnaker/appengine@0.0.44) (2021-07-22)
|
|
475
|
+
|
|
476
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
## [0.0.43](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.38...@spinnaker/appengine@0.0.43) (2021-07-19)
|
|
483
|
+
|
|
484
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
## [0.0.42](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.38...@spinnaker/appengine@0.0.42) (2021-07-19)
|
|
491
|
+
|
|
492
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
## [0.0.41](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.38...@spinnaker/appengine@0.0.41) (2021-07-19)
|
|
499
|
+
|
|
500
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
## [0.0.40](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.38...@spinnaker/appengine@0.0.40) (2021-07-19)
|
|
507
|
+
|
|
508
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
## [0.0.39](https://github.com/spinnaker/deck/compare/@spinnaker/appengine@0.0.38...@spinnaker/appengine@0.0.39) (2021-07-19)
|
|
515
|
+
|
|
516
|
+
**Note:** Version bump only for package @spinnaker/appengine
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
## 0.0.38 (2021-07-17)
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
### Bug Fixes
|
|
526
|
+
|
|
527
|
+
* **publishing:** Auto approve instead of adding "ready to merge" label ([51f536c](https://github.com/spinnaker/deck/commit/51f536c275e77854d8f173aeec86412ffbd66b6d))
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
## [0.0.36](https://www.github.com/spinnaker/deck/compare/8a42c7fb4b744738f6f900519fc94774cc394a0d...0a0d3d078d113c5d55b3c681a7d3422e5c483db2) (2021-07-01)
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
### Changes
|
|
538
|
+
|
|
539
|
+
chore(appengine): publish appengine@0.0.36 ([0a0d3d07](https://github.com/spinnaker/deck/commit/0a0d3d078d113c5d55b3c681a7d3422e5c483db2))
|
|
540
|
+
chore(all): Remove ng template cache for webpack ([be6df680](https://github.com/spinnaker/deck/commit/be6df680689e0624b27635bc875d0b4390a3bc4a))
|
|
541
|
+
chore(build): Integrate with yarn workspaces ([e30e631b](https://github.com/spinnaker/deck/commit/e30e631b128bd1c8bfef3a48643ce0b4f9935f1d))
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
## [0.0.35](https://www.github.com/spinnaker/deck/compare/5e717751728dffd68c63fb199de9bb767a277ee2...8a42c7fb4b744738f6f900519fc94774cc394a0d) (2021-06-14)
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
### Changes
|
|
549
|
+
|
|
550
|
+
chore(appengine): publish appengine@0.0.35 ([8a42c7fb](https://github.com/spinnaker/deck/commit/8a42c7fb4b744738f6f900519fc94774cc394a0d))
|
|
551
|
+
refactor(packages): Migrate packages to make them independent ([38b5fa17](https://github.com/spinnaker/deck/commit/38b5fa17d82a1a032e84e6c3f51c806b5d6901b8))
|
|
552
|
+
|
|
553
|
+
|
|
554
|
+
|
|
555
|
+
## [0.0.34](https://www.github.com/spinnaker/deck/compare/11beb5e9d26dd3203cee7ebaa8f8788a5e03b5e6...5e717751728dffd68c63fb199de9bb767a277ee2) (2021-06-10)
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
### Changes
|
|
559
|
+
|
|
560
|
+
chore(appengine): publish appengine@0.0.34 ([5e717751](https://github.com/spinnaker/deck/commit/5e717751728dffd68c63fb199de9bb767a277ee2))
|
|
561
|
+
fix(build): Fix distribution dir ([eb87451a](https://github.com/spinnaker/deck/commit/eb87451afb8a4696a4c6d76589cb95d8b4192398))
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
## [0.0.33](https://www.github.com/spinnaker/deck/compare/b4faf24061fb17b4eeafe4c18a1d719f379d7c5d...11beb5e9d26dd3203cee7ebaa8f8788a5e03b5e6) (2021-05-13)
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
### Changes
|
|
569
|
+
|
|
570
|
+
chore(appengine): publish appengine@0.0.33 ([11beb5e9](https://github.com/spinnaker/deck/commit/11beb5e9d26dd3203cee7ebaa8f8788a5e03b5e6))
|
|
571
|
+
fix(appengine): Allows ng to be injected. [#9156](https://github.com/spinnaker/deck/pull/9156) ([936c3a11](https://github.com/spinnaker/deck/commit/936c3a1110ac946a3ad1a3b9efc6b675fdbd960c))
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
## [0.0.32](https://www.github.com/spinnaker/deck/compare/24e26eca5d90b6858c1b4a2a97620591706bf720...b4faf24061fb17b4eeafe4c18a1d719f379d7c5d) (2021-04-29)
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
### Changes
|
|
579
|
+
|
|
580
|
+
chore(appengine): publish appengine@0.0.32 ([b4faf240](https://github.com/spinnaker/deck/commit/b4faf24061fb17b4eeafe4c18a1d719f379d7c5d))
|
|
581
|
+
chore(rxjs): Remove now unused imports of Observable from 'rxjs' ([a4fc97f3](https://github.com/spinnaker/deck/commit/a4fc97f3abfa4395079e70c52e856dad4d0ecc68))
|
|
582
|
+
chore(rxjs): Run rxjs 5-to-6 migration tooling ([c11835cf](https://github.com/spinnaker/deck/commit/c11835cfef079d5d6af8dcfbafa4fe416a059a3e))
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
|
|
586
|
+
## [0.0.31](https://www.github.com/spinnaker/deck/compare/c72882cdd227277aeae6db320144bd8452d123cb...24e26eca5d90b6858c1b4a2a97620591706bf720) (2021-04-21)
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
### Changes
|
|
590
|
+
|
|
591
|
+
chore(appengine): publish appengine@0.0.31 ([24e26eca](https://github.com/spinnaker/deck/commit/24e26eca5d90b6858c1b4a2a97620591706bf720))
|
|
592
|
+
|
|
593
|
+
|
|
594
|
+
|
|
595
|
+
## [0.0.30](https://www.github.com/spinnaker/deck/compare/3eb7096638a4950bf1926021a77fcef662bbbef7...c72882cdd227277aeae6db320144bd8452d123cb) (2021-04-21)
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
### Changes
|
|
599
|
+
|
|
600
|
+
chore(appengine): publish appengine@0.0.30 ([c72882cd](https://github.com/spinnaker/deck/commit/c72882cdd227277aeae6db320144bd8452d123cb))
|
|
601
|
+
Remove webpack modules + webpack consolidation [#9097](https://github.com/spinnaker/deck/pull/9097) ([00145566](https://github.com/spinnaker/deck/commit/001455667f2afb5c728737863f7365fc4fcbb76b))
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
## [0.0.29](https://www.github.com/spinnaker/deck/compare/5bfab26f7b85360970af7dc4abb8596e58ce054c...3eb7096638a4950bf1926021a77fcef662bbbef7) (2021-03-23)
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
### Changes
|
|
609
|
+
|
|
610
|
+
chore(appengine): publish appengine@0.0.29 ([3eb70966](https://github.com/spinnaker/deck/commit/3eb7096638a4950bf1926021a77fcef662bbbef7))
|
|
611
|
+
chore: eslint --fix [#9026](https://github.com/spinnaker/deck/pull/9026) ([a23c3b01](https://github.com/spinnaker/deck/commit/a23c3b018f9ba01b51eab10d7a510f7b9e658536))
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
## [0.0.28](https://www.github.com/spinnaker/deck/compare/43c60b7569fd89cfb10f4575487644ad238e2997...5bfab26f7b85360970af7dc4abb8596e58ce054c) (2021-03-19)
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
### Changes
|
|
619
|
+
|
|
620
|
+
chore(appengine): publish appengine@0.0.28 ([5bfab26f](https://github.com/spinnaker/deck/commit/5bfab26f7b85360970af7dc4abb8596e58ce054c))
|
|
621
|
+
fix(appengine/docker): Allow save the Artifact in the Pipeline JSON f… [#8961](https://github.com/spinnaker/deck/pull/8961) ([9038090a](https://github.com/spinnaker/deck/commit/9038090a1e7a80341cf10a2dc71bea4c8e22c804))
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
## [0.0.27](https://www.github.com/spinnaker/deck/compare/17c417b3f406d6704c7666b204d76be3a005db06...43c60b7569fd89cfb10f4575487644ad238e2997) (2021-02-22)
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
### Changes
|
|
629
|
+
|
|
630
|
+
chore(appengine): publish appengine@0.0.27 ([43c60b75](https://github.com/spinnaker/deck/commit/43c60b7569fd89cfb10f4575487644ad238e2997))
|
|
631
|
+
chore(lint): Update import statement ordering ([5a9768bc](https://github.com/spinnaker/deck/commit/5a9768bc6db2f527a73d6b1f5fb3120c101e094b))
|
|
632
|
+
chore(lint): Sort import statements ([cca56eaa](https://github.com/spinnaker/deck/commit/cca56eaaeeb412b7596c68a1260eefed7fbf6fed))
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
## [0.0.26](https://www.github.com/spinnaker/deck/compare/a4683f8f25b9223f36f49941aad50b8523e1195d...17c417b3f406d6704c7666b204d76be3a005db06) (2021-01-19)
|
|
637
|
+
|
|
638
|
+
|
|
639
|
+
### Changes
|
|
640
|
+
|
|
641
|
+
chore(appengine): publish appengine@0.0.26 ([17c417b3](https://github.com/spinnaker/deck/commit/17c417b3f406d6704c7666b204d76be3a005db06))
|
|
642
|
+
Deangularize instance writer [#8834](https://github.com/spinnaker/deck/pull/8834) ([f16b0775](https://github.com/spinnaker/deck/commit/f16b0775917242a39ae70e86c5541020c898b872))
|
|
643
|
+
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
## [0.0.25](https://www.github.com/spinnaker/deck/compare/b2457d3a038105561a5c67a24ac9dfe0d2cdea4c...a4683f8f25b9223f36f49941aad50b8523e1195d) (2020-12-16)
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
### Changes
|
|
650
|
+
|
|
651
|
+
chore(appengine): publish appengine@0.0.25 ([a4683f8f](https://github.com/spinnaker/deck/commit/a4683f8f25b9223f36f49941aad50b8523e1195d))
|
|
652
|
+
test(mock-http-client): Remove unnecessary API.baseUrl prefix in expectGET/etc calls ([807de9ad](https://github.com/spinnaker/deck/commit/807de9ada97154e3e8b699dece0f8d5ec4493942))
|
|
653
|
+
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))
|
|
654
|
+
test(mock-http-client): Run eslint rule migrate-to-mock-http-client --fix ([ef5d8ea0](https://github.com/spinnaker/deck/commit/ef5d8ea0661d360661831b57d3ee8457aae0ecfd))
|
|
655
|
+
Avoid raw "$http" usage [#8790](https://github.com/spinnaker/deck/pull/8790) ([969f4fe0](https://github.com/spinnaker/deck/commit/969f4fe0e9ab75eef2ceb0a2287643425293e209))
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
|
|
659
|
+
## [0.0.24](https://www.github.com/spinnaker/deck/compare/4d3a339bfc438e69e83bbdbb555eb807d58e5556...b2457d3a038105561a5c67a24ac9dfe0d2cdea4c) (2020-11-07)
|
|
660
|
+
|
|
661
|
+
|
|
662
|
+
### Changes
|
|
663
|
+
|
|
664
|
+
chore(appengine): publish appengine@0.0.24 ([b2457d3a](https://github.com/spinnaker/deck/commit/b2457d3a038105561a5c67a24ac9dfe0d2cdea4c))
|
|
665
|
+
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))
|
|
666
|
+
|
|
667
|
+
|
|
668
|
+
|
|
669
|
+
## [0.0.23](https://www.github.com/spinnaker/deck/compare/990139d64540d3e2cfb4e53a11d8827177eb081b...4d3a339bfc438e69e83bbdbb555eb807d58e5556) (2020-10-28)
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
### Changes
|
|
673
|
+
|
|
674
|
+
chore(appengine): publish appengine@0.0.23 ([4d3a339b](https://github.com/spinnaker/deck/commit/4d3a339bfc438e69e83bbdbb555eb807d58e5556))
|
|
675
|
+
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))
|
|
676
|
+
chore(PromiseLike): Migrate remaining IPromise typings to PromiseLike ([2c0d0f68](https://github.com/spinnaker/deck/commit/2c0d0f6814689d93820eab4e97e5d89f98a61cc5))
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
## [0.0.22](https://www.github.com/spinnaker/deck/compare/47a8002877ce304ce51f928214e6b3b60820fc6c...990139d64540d3e2cfb4e53a11d8827177eb081b) (2020-10-28)
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
### Changes
|
|
684
|
+
|
|
685
|
+
chore(appengine): publish appengine@0.0.22 ([990139d6](https://github.com/spinnaker/deck/commit/990139d64540d3e2cfb4e53a11d8827177eb081b))
|
|
686
|
+
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))
|
|
687
|
+
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))
|
|
688
|
+
chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
|
|
689
|
+
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))
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
## [0.0.21](https://www.github.com/spinnaker/deck/compare/a220af588e194762757be534cce2d7ae9dc508d5...47a8002877ce304ce51f928214e6b3b60820fc6c) (2020-10-26)
|
|
694
|
+
|
|
695
|
+
|
|
696
|
+
### Changes
|
|
697
|
+
|
|
698
|
+
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))
|
|
699
|
+
chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
|
|
700
|
+
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))
|
|
701
|
+
chore(appengine): publish appengine@0.0.21 ([dad138da](https://github.com/spinnaker/deck/commit/dad138da83c4aa7881f5dfcd26be1ebc67e2b5a8))
|
|
702
|
+
chore(PromiseLike): Migrate code from IPromise types to PromiseLike ([d5ae512d](https://github.com/spinnaker/deck/commit/d5ae512d5025f16a99236307c2e8fb7c019c796d))
|
|
703
|
+
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))
|
|
704
|
+
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))
|
|
705
|
+
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))
|
|
706
|
+
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
## [0.0.20](https://www.github.com/spinnaker/deck/compare/dad138da83c4aa7881f5dfcd26be1ebc67e2b5a8...a220af588e194762757be534cce2d7ae9dc508d5) (2020-10-26)
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
### Changes
|
|
713
|
+
|
|
714
|
+
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))
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
|
|
718
|
+
## [0.0.21](https://www.github.com/spinnaker/deck/compare/4b79b4d75628bc74b91b72980f0a5e8ba479335e...dad138da83c4aa7881f5dfcd26be1ebc67e2b5a8) (2020-10-26)
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
### Changes
|
|
722
|
+
|
|
723
|
+
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))
|
|
724
|
+
chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
|
|
725
|
+
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))
|
|
726
|
+
chore(appengine): publish appengine@0.0.21 ([dad138da](https://github.com/spinnaker/deck/commit/dad138da83c4aa7881f5dfcd26be1ebc67e2b5a8))
|
|
727
|
+
chore(PromiseLike): Migrate code from IPromise types to PromiseLike ([d5ae512d](https://github.com/spinnaker/deck/commit/d5ae512d5025f16a99236307c2e8fb7c019c796d))
|
|
728
|
+
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))
|
|
729
|
+
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))
|
|
730
|
+
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))
|
|
731
|
+
|
|
732
|
+
|
|
733
|
+
|
|
734
|
+
## [0.0.20](https://www.github.com/spinnaker/deck/compare/cccfdb37d0765f25e53998b1def0fd65739e5b44...4b79b4d75628bc74b91b72980f0a5e8ba479335e) (2020-10-12)
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
### Changes
|
|
738
|
+
|
|
739
|
+
Revert "chore(package): amazon@0.0.274 appengine@0.0.21 azure@0.0.259 cloudfoundry@0.0.105 core@0.0.522 docker@0.0.64 ecs@0.0.267 google@0.0.25 huaweicloud@0.0.7 kubernetes@0.0.53 oracle@0.0.14 tencentcloud@0.0.10 titus@0.0.149" [#8678](https://github.com/spinnaker/deck/pull/8678) ([a220af58](https://github.com/spinnaker/deck/commit/a220af588e194762757be534cce2d7ae9dc508d5))
|
|
740
|
+
chore(appengine): publish appengine@0.0.21 ([dad138da](https://github.com/spinnaker/deck/commit/dad138da83c4aa7881f5dfcd26be1ebc67e2b5a8))
|
|
741
|
+
chore(PromiseLike): Migrate code from IPromise types to PromiseLike ([d5ae512d](https://github.com/spinnaker/deck/commit/d5ae512d5025f16a99236307c2e8fb7c019c796d))
|
|
742
|
+
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))
|
|
743
|
+
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))
|
|
744
|
+
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))
|
|
745
|
+
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))
|
|
746
|
+
chore(prettier): Just Update Prettier™ [#8644](https://github.com/spinnaker/deck/pull/8644) ([8532bdd4](https://github.com/spinnaker/deck/commit/8532bdd4c08d59c38a0adde70ccac4f163c9dd97))
|
|
747
|
+
chore(lint): eslint --fix react2angular-with-error-boundary ([defaf19b](https://github.com/spinnaker/deck/commit/defaf19b5f11f8cce70e14fa1cdd52e88e6de0fd))
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
## [0.0.19](https://www.github.com/spinnaker/deck/compare/2273dee2b3668ba105a34a062da669cdf7c207c5...cccfdb37d0765f25e53998b1def0fd65739e5b44) (2020-10-01)
|
|
752
|
+
|
|
753
|
+
|
|
754
|
+
### Changes
|
|
755
|
+
|
|
756
|
+
chore(package): appengine@0.0.19 core@0.0.514 ecs@0.0.265 titus@0.0.145 [#8612](https://github.com/spinnaker/deck/pull/8612) ([cccfdb37](https://github.com/spinnaker/deck/commit/cccfdb37d0765f25e53998b1def0fd65739e5b44))
|
|
757
|
+
feat(provider/appengine): add deploy global configuration stage [#8599](https://github.com/spinnaker/deck/pull/8599) ([d36922b4](https://github.com/spinnaker/deck/commit/d36922b4843945f694a659c156ce511935ae5ea3))
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
|
|
761
|
+
## [0.0.18](https://www.github.com/spinnaker/deck/compare/e2dad1f3cc64fd58283c1f8d27031be35610d663...2273dee2b3668ba105a34a062da669cdf7c207c5) (2020-09-23)
|
|
762
|
+
|
|
763
|
+
|
|
764
|
+
### Changes
|
|
765
|
+
|
|
766
|
+
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))
|
|
767
|
+
feat(core/*): Deck layout optimizations [#8556](https://github.com/spinnaker/deck/pull/8556) ([2588b7f3](https://github.com/spinnaker/deck/commit/2588b7f3e1ecbfd590e7cc87a225bbfd056449e3))
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
## [0.0.17](https://www.github.com/spinnaker/deck/compare/2f25b74759d27fe294eaf070059f1526a14494fd...e2dad1f3cc64fd58283c1f8d27031be35610d663) (2020-09-18)
|
|
772
|
+
|
|
773
|
+
|
|
774
|
+
### Changes
|
|
775
|
+
|
|
776
|
+
chore(package): appengine@0.0.17 core@0.0.508 ecs@0.0.263 kubernetes@0.0.49 titus@0.0.143 [#8577](https://github.com/spinnaker/deck/pull/8577) ([e2dad1f3](https://github.com/spinnaker/deck/commit/e2dad1f3cc64fd58283c1f8d27031be35610d663))
|
|
777
|
+
fix(appengine): remove extraneous "f" from assertion [#8571](https://github.com/spinnaker/deck/pull/8571) ([6d0bfc6a](https://github.com/spinnaker/deck/commit/6d0bfc6ad63e5fe548fab96a8e2593aedaaad8d3))
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
## [0.0.16](https://www.github.com/spinnaker/deck/compare/ced77a7453a0ffab5a14c38943288138fdcb084b...2f25b74759d27fe294eaf070059f1526a14494fd) (2020-09-14)
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
### Changes
|
|
785
|
+
|
|
786
|
+
chore(package): amazon@0.0.265 appengine@0.0.16 cloudfoundry@0.0.98 core@0.0.506 ecs@0.0.262 titus@0.0.142 [#8564](https://github.com/spinnaker/deck/pull/8564) ([2f25b747](https://github.com/spinnaker/deck/commit/2f25b74759d27fe294eaf070059f1526a14494fd))
|
|
787
|
+
fix(appengine): fix rendering of StageArtifactSelector when artifacts are created [#8516](https://github.com/spinnaker/deck/pull/8516) ([1a20a4a4](https://github.com/spinnaker/deck/commit/1a20a4a4ec7d9c6bf291366dbab59752f270a66f))
|
|
788
|
+
|
|
789
|
+
|
|
790
|
+
|
|
791
|
+
## [0.0.15](https://www.github.com/spinnaker/deck/compare/dcb8ceff74e7013d20a85bd8ac747b453d40bfe5...ced77a7453a0ffab5a14c38943288138fdcb084b) (2020-08-25)
|
|
792
|
+
|
|
793
|
+
|
|
794
|
+
### Changes
|
|
795
|
+
|
|
796
|
+
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))
|
|
797
|
+
chore(licenses): add license metadata to npm packages [#8512](https://github.com/spinnaker/deck/pull/8512) ([d4afa1bf](https://github.com/spinnaker/deck/commit/d4afa1bf2328cc91cf3195f810073b0b4726b3b5))
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
|
|
801
|
+
## [0.0.14](https://www.github.com/spinnaker/deck/compare/db2a3d25e126c6d318bedafbcef8ca058188ac98...dcb8ceff74e7013d20a85bd8ac747b453d40bfe5) (2020-07-31)
|
|
802
|
+
|
|
803
|
+
|
|
804
|
+
### Changes
|
|
805
|
+
|
|
806
|
+
chore(package): publish amazon 0.0.260 appengine 0.0.14 core 0.0.497 kubernetes 0.0.44 titus 0.0.139 [#8457](https://github.com/spinnaker/deck/pull/8457) ([dcb8ceff](https://github.com/spinnaker/deck/commit/dcb8ceff74e7013d20a85bd8ac747b453d40bfe5))
|
|
807
|
+
style(appengine): Fix typo in Server Group settings [#8449](https://github.com/spinnaker/deck/pull/8449) ([60212283](https://github.com/spinnaker/deck/commit/602122834365212d88ba6db6f07a96d021937a37))
|
|
808
|
+
|
|
809
|
+
|
|
810
|
+
|
|
811
|
+
## [0.0.13](https://www.github.com/spinnaker/deck/compare/c881a42c3516e4b69594f8055df2d3d7995292af...db2a3d25e126c6d318bedafbcef8ca058188ac98) (2020-06-22)
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
### Changes
|
|
815
|
+
|
|
816
|
+
chore(package): publish appengine 0.0.13 core 0.0.481 ecs 0.0.259 kubernetes 0.0.41 [#8364](https://github.com/spinnaker/deck/pull/8364) ([db2a3d25](https://github.com/spinnaker/deck/commit/db2a3d25e126c6d318bedafbcef8ca058188ac98))
|
|
817
|
+
refactor(halyard): clean up halconfig/settings and mark as deprecated [#8312](https://github.com/spinnaker/deck/pull/8312) ([2cc69009](https://github.com/spinnaker/deck/commit/2cc690091189d4e6ffdf8a214f537e69101c781a))
|
|
818
|
+
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
## [0.0.12](https://www.github.com/spinnaker/deck/compare/f227aa8ec00fffe63e39abc75b9c504180804623...c881a42c3516e4b69594f8055df2d3d7995292af) (2020-05-18)
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
### Changes
|
|
825
|
+
|
|
826
|
+
chore(package): publish amazon 0.0.254 appengine 0.0.12 core 0.0.477 ecs 0.0.258 google 0.0.14 kubernetes 0.0.40 [#8294](https://github.com/spinnaker/deck/pull/8294) ([c881a42c](https://github.com/spinnaker/deck/commit/c881a42c3516e4b69594f8055df2d3d7995292af))
|
|
827
|
+
refactor(core): legacy artifacts cleanup [#8273](https://github.com/spinnaker/deck/pull/8273) ([f4d41551](https://github.com/spinnaker/deck/commit/f4d415518dd553263ca63f4641ff19facef79464))
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
## [0.0.11](https://www.github.com/spinnaker/deck/compare/d956a2460bdfc301c0c9c9d93e5159ed8f00bfc8...f227aa8ec00fffe63e39abc75b9c504180804623) (2020-04-21)
|
|
832
|
+
|
|
833
|
+
|
|
834
|
+
### Changes
|
|
835
|
+
|
|
836
|
+
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))
|
|
837
|
+
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))
|
|
838
|
+
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
## [0.0.10](https://www.github.com/spinnaker/deck/compare/664d174a790d16c8df06d227d0b26dfbd9a759a4...d956a2460bdfc301c0c9c9d93e5159ed8f00bfc8) (2020-03-20)
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
### Changes
|
|
845
|
+
|
|
846
|
+
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))
|
|
847
|
+
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))
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
## [0.0.9](https://www.github.com/spinnaker/deck/compare/b40f99c9dda8a3b1bcd6abd7850f4843fd42e856...664d174a790d16c8df06d227d0b26dfbd9a759a4) (2020-03-12)
|
|
852
|
+
|
|
853
|
+
|
|
854
|
+
### Changes
|
|
855
|
+
|
|
856
|
+
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))
|
|
857
|
+
fix(packages): Preserve webpackIgnore comments when bundling for npm packages [#7850](https://github.com/spinnaker/deck/pull/7850) ([8b84eedb](https://github.com/spinnaker/deck/commit/8b84eedb2f2130fab2d261935de81a2157b2b00e))
|
|
858
|
+
fix(app engine logo): Use the new hexagon-free App Engine logo [#7841](https://github.com/spinnaker/deck/pull/7841) ([fe3bcd39](https://github.com/spinnaker/deck/commit/fe3bcd39b140ad144cdded6508c5dbd40310bc0e))
|
|
859
|
+
chore(lint): Run eslint on typescript files ([b51dce46](https://github.com/spinnaker/deck/commit/b51dce46be3df14070f06e06de874108dcf23569))
|
|
860
|
+
fix(core): do not render the server group warning message in <pre> [#7774](https://github.com/spinnaker/deck/pull/7774) ([73fa66ee](https://github.com/spinnaker/deck/commit/73fa66ee0d22b35997dc987135f2033825aef500))
|
|
861
|
+
refactor(*): de-angularize confirmationModalService [#7759](https://github.com/spinnaker/deck/pull/7759) ([e6c6c662](https://github.com/spinnaker/deck/commit/e6c6c662b5326fcb184772c99f2212ce4336a1cb))
|
|
862
|
+
refactor(*): use consistent styles on modal headers ([10b34915](https://github.com/spinnaker/deck/commit/10b34915860ed46f21d0179bf87c3b456de49c56))
|
|
863
|
+
refactor(*): favor optional chaining over lodash.get ([dc2b3d74](https://github.com/spinnaker/deck/commit/dc2b3d7419c79159a89ad346bd64e2f4cc9fde75))
|
|
864
|
+
refactor(core): convert confirmation modal to react ([a59b2c32](https://github.com/spinnaker/deck/commit/a59b2c3264500080fad7caeb05054eef6f51d52c))
|
|
865
|
+
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))
|
|
866
|
+
refactor(eslint): Fix all 'one-var' eslint rule violations ([d070bd45](https://github.com/spinnaker/deck/commit/d070bd45ff3e185999e863e3f48c01f63eb45733))
|
|
867
|
+
chore(eslint): remove tslint ([9400826b](https://github.com/spinnaker/deck/commit/9400826bcb119cf7681e1ce37092b9fdd8b76b1b))
|
|
868
|
+
chore(typescript): Migrate most wildcard imports to javascript style imports - Migrate from "import * as foo from 'foo'" to "import foo from 'foo'" ([b6aabe18](https://github.com/spinnaker/deck/commit/b6aabe18a2c71f194087c01fd15ec369460f5e70))
|
|
869
|
+
feat(typescript): enable allowJs and allowSyntheticDefaultImports ([7ef58b6c](https://github.com/spinnaker/deck/commit/7ef58b6c122f9ce91eab95d5f444622a710ff968))
|
|
870
|
+
refactor(*): Remove exports-loader from n3-chart import ([f0613c1b](https://github.com/spinnaker/deck/commit/f0613c1b1648f0c2ea54623cb535a6d54bea2355))
|
|
871
|
+
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))
|
|
872
|
+
feat(dataSources): widen + parameterize types, add default values ([4ed015a0](https://github.com/spinnaker/deck/commit/4ed015a07c028eb58807601a0b0fb9783b02b0d9))
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
|
|
876
|
+
## [0.0.8](https://www.github.com/spinnaker/deck/compare/acc4704660e96de78c4346d04680f9750d54f869...b40f99c9dda8a3b1bcd6abd7850f4843fd42e856) (2019-07-26)
|
|
877
|
+
|
|
878
|
+
|
|
879
|
+
### Changes
|
|
880
|
+
|
|
881
|
+
chore(appengine): Bump version to 0.0.8 ([b40f99c9](https://github.com/spinnaker/deck/commit/b40f99c9dda8a3b1bcd6abd7850f4843fd42e856))
|
|
882
|
+
fix(appengine): handle multiple cluster accounts in server group modal [#7265](https://github.com/spinnaker/deck/pull/7265) ([34401666](https://github.com/spinnaker/deck/commit/344016664341eab27ad9eb2197aa099d14252fc0))
|
|
883
|
+
|
|
884
|
+
|
|
885
|
+
|
|
886
|
+
## [0.0.7](https://www.github.com/spinnaker/deck/compare/b37fc818ade1d6fbd953ff115d74683a0c289876...acc4704660e96de78c4346d04680f9750d54f869) (2019-07-03)
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
### Changes
|
|
890
|
+
|
|
891
|
+
chore(appengine): Bump version to 0.0.7 ([acc47046](https://github.com/spinnaker/deck/commit/acc4704660e96de78c4346d04680f9750d54f869))
|
|
892
|
+
feat(appengine): Enable new artifacts for config artifacts in deploy SG [#7153](https://github.com/spinnaker/deck/pull/7153) ([d6ad8c25](https://github.com/spinnaker/deck/commit/d6ad8c252c596405cbd0344e82083b67579dec5d))
|
|
893
|
+
feat(appengine): Enable new artifacts workflow in deploy SG [#7147](https://github.com/spinnaker/deck/pull/7147) ([a9a927b7](https://github.com/spinnaker/deck/commit/a9a927b70917f4867a5d2882312671bc10d1d639))
|
|
894
|
+
chore(package): Just Update Prettier™ ([cdd6f237](https://github.com/spinnaker/deck/commit/cdd6f2379859d3c2b13bac59aa470c08b391a865))
|
|
895
|
+
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
## [0.0.6](https://www.github.com/spinnaker/deck/compare/ee89420398e2a7a42e199ba89c7ac730f494be95...b37fc818ade1d6fbd953ff115d74683a0c289876) (2019-06-05)
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
### Changes
|
|
902
|
+
|
|
903
|
+
chore(appengine): Bump version to 0.0.6 ([b37fc818](https://github.com/spinnaker/deck/commit/b37fc818ade1d6fbd953ff115d74683a0c289876))
|
|
904
|
+
refactor(*): remove unused local storage caches [#6665](https://github.com/spinnaker/deck/pull/6665) ([e2b4d8e9](https://github.com/spinnaker/deck/commit/e2b4d8e9371d5d2f1f9b60e2a592e10b47df73e2))
|
|
905
|
+
fix(appengine): allow sequence to be suppressed in servergroup names [#6667](https://github.com/spinnaker/deck/pull/6667) ([49affe7e](https://github.com/spinnaker/deck/commit/49affe7e21e0cccd73d269600fb0bf744a9dd4cb))
|
|
906
|
+
chore(prettier): Just Use Prettier™ [#6600](https://github.com/spinnaker/deck/pull/6600) ([7d5fc346](https://github.com/spinnaker/deck/commit/7d5fc346bca54c5d53f9eb46d823cd993c102058))
|
|
907
|
+
chore(prettier): Just Use Prettier™ ([5cf6c79d](https://github.com/spinnaker/deck/commit/5cf6c79da63404bb7238291d38bb7f5cfd10c26b))
|
|
908
|
+
chore(angularjs): Do not use .component('foo', new Foo()) ([3ffa4fb7](https://github.com/spinnaker/deck/commit/3ffa4fb7498df815014d61071e8588f0b34bf8b9))
|
|
909
|
+
chore(angularjs): Remove all 'ngInject'; in favor of explicit DI annotation ([cc52bee0](https://github.com/spinnaker/deck/commit/cc52bee0b9956693f948806322658f225efa5546))
|
|
910
|
+
chore(prettier): Just Use Prettier™ ([b6bab1e1](https://github.com/spinnaker/deck/commit/b6bab1e16bb46697fec347cd30934f00fb2e9807))
|
|
911
|
+
chore(angularjs): Explicitly annotate all AngularJS injection points ([f3fd790e](https://github.com/spinnaker/deck/commit/f3fd790e20a4c3056edcb2c41282517e1cf35004))
|
|
912
|
+
fix(eslint): Fix eslint warnings for @typescript-eslint/no-use-before-define ([e1b6663c](https://github.com/spinnaker/deck/commit/e1b6663c1960ebc7b2a9754713d6c0e502817cbc))
|
|
913
|
+
fix(eslint): Fix eslint warnings for no-useless-escape ([ddbe2082](https://github.com/spinnaker/deck/commit/ddbe208282f96c73239a32bddd4af6f9d098b088))
|
|
914
|
+
chore(webpack): Switch to TerserPlugin. Split bundles into ~5mb chunks ([a35088ab](https://github.com/spinnaker/deck/commit/a35088ab28cc3b25c9e6731f6fb70bf7d0e14ef0))
|
|
915
|
+
chore(typescript): Switch module from 'commonjs' to 'esnext' to emit raw dynamic 'import()' ([5c49dd2a](https://github.com/spinnaker/deck/commit/5c49dd2ab3c4226295a7e8041c25dabdbeee6a2c))
|
|
916
|
+
chore(package): Add .npmignore to all packages ([0451046c](https://github.com/spinnaker/deck/commit/0451046c241b450ae4b05df0b67b61758c16acce))
|
|
917
|
+
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))
|
|
918
|
+
fix(appengine/google/kubernetes): change logo background colors to official brand colors [#6347](https://github.com/spinnaker/deck/pull/6347) ([93f1209b](https://github.com/spinnaker/deck/commit/93f1209b105e46f423125e879784ab007e6cda25))
|
|
919
|
+
refactor(*): use mask-image CSS for cloud provider logos [#6280](https://github.com/spinnaker/deck/pull/6280) ([86baac96](https://github.com/spinnaker/deck/commit/86baac96af19a15b1339cd5f1856ee1e78d9d800))
|
|
920
|
+
fix(appengine): move artifact account dropdown below radio buttons [#6255](https://github.com/spinnaker/deck/pull/6255) ([8cef885d](https://github.com/spinnaker/deck/commit/8cef885dd57537f92c86988597165c9632e3c228))
|
|
921
|
+
chore(*): Add core alias to module tsconfigs ([6b8188bb](https://github.com/spinnaker/deck/commit/6b8188bb54ea2e70987841079a8aff7debd8bd66))
|
|
922
|
+
fix(appengine): the selectedProvider is received as null when Create Server Group btn clicked [#5908](https://github.com/spinnaker/deck/pull/5908) ([c190c414](https://github.com/spinnaker/deck/commit/c190c41450c91d101cd8a896449a30e126fa5620))
|
|
923
|
+
feat(appengine): unflag container image url deployments [#5894](https://github.com/spinnaker/deck/pull/5894) ([351d4fb2](https://github.com/spinnaker/deck/commit/351d4fb27360511eb2850e556ab702402b235a3d))
|
|
924
|
+
feat(provider/appengine): enable artifacts as config files [#5888](https://github.com/spinnaker/deck/pull/5888) ([0a6d3f92](https://github.com/spinnaker/deck/commit/0a6d3f92733736c6ee75d679971afc3eb62bb33f))
|
|
925
|
+
feat(appengine): move config template into html file [#5870](https://github.com/spinnaker/deck/pull/5870) ([bdca8aa3](https://github.com/spinnaker/deck/commit/bdca8aa3c573f4b80a6c6bc1afbfaa22c890c01a))
|
|
926
|
+
chore(package): prepare -> prepublishOnly for everything [#5806](https://github.com/spinnaker/deck/pull/5806) ([06f45b5c](https://github.com/spinnaker/deck/commit/06f45b5c0da71227e4f1d7bb9e7187e95231f4d2))
|
|
927
|
+
chore(prettier): Just Update Prettier™ [#5754](https://github.com/spinnaker/deck/pull/5754) ([709f30f6](https://github.com/spinnaker/deck/commit/709f30f6eff0c8862cb8736465e4fd152abd693c))
|
|
928
|
+
feat(artifacts): add inline artifact editor for appengine artifacts [#5735](https://github.com/spinnaker/deck/pull/5735) ([632f4a43](https://github.com/spinnaker/deck/commit/632f4a43603b3429bdf2feca15a0ebd9d27151a2))
|
|
929
|
+
feat(appengine): filter container image artifacts to just docker images [#5629](https://github.com/spinnaker/deck/pull/5629) ([7ff3c018](https://github.com/spinnaker/deck/commit/7ff3c0181d6a7fd027a094172b1750b0d199981c))
|
|
930
|
+
fix(appengine): add server group button broken [#5627](https://github.com/spinnaker/deck/pull/5627) ([cc743a4e](https://github.com/spinnaker/deck/commit/cc743a4eef08b71947df1757fd4f174fb20a7bc9))
|
|
931
|
+
fix(appengine): auto pick a source type [#5425](https://github.com/spinnaker/deck/pull/5425) ([80e40b1c](https://github.com/spinnaker/deck/commit/80e40b1c40ccb43f7b4e99bf17d85d05a7013500))
|
|
932
|
+
|
|
933
|
+
|
|
934
|
+
|
|
935
|
+
## [0.0.5](https://www.github.com/spinnaker/deck/compare/7b8085db6a1d0672cea566b6eed99c30b40829b2...ee89420398e2a7a42e199ba89c7ac730f494be95) (2018-05-30)
|
|
936
|
+
|
|
937
|
+
|
|
938
|
+
### Changes
|
|
939
|
+
|
|
940
|
+
chore(core/kubernetes/appengine): core@0.0.231, kubernetes@0.0.14, appengine@0.0.5 [#5405](https://github.com/spinnaker/deck/pull/5405) ([ee894203](https://github.com/spinnaker/deck/commit/ee89420398e2a7a42e199ba89c7ac730f494be95))
|
|
941
|
+
|
|
942
|
+
|
|
943
|
+
|
|
944
|
+
## [0.0.4](https://www.github.com/spinnaker/deck/compare/6e20b41114db7ebba7a7dabd55818349871c5595...7b8085db6a1d0672cea566b6eed99c30b40829b2) (2018-05-30)
|
|
945
|
+
|
|
946
|
+
|
|
947
|
+
### Changes
|
|
948
|
+
|
|
949
|
+
chore(kubernetes/appengine): bump package versions [#5396](https://github.com/spinnaker/deck/pull/5396) ([7b8085db](https://github.com/spinnaker/deck/commit/7b8085db6a1d0672cea566b6eed99c30b40829b2))
|
|
950
|
+
refactor(core) de-angularize more services [#5390](https://github.com/spinnaker/deck/pull/5390) ([ca5df990](https://github.com/spinnaker/deck/commit/ca5df990b30a9208a682831803d376781a4cba87))
|
|
951
|
+
refactor(core): de-angularize services [#5385](https://github.com/spinnaker/deck/pull/5385) ([37a96b16](https://github.com/spinnaker/deck/commit/37a96b168cae0cb5517c269e858bc16020f753c2))
|
|
952
|
+
refactor(core): de-angularize services [#5365](https://github.com/spinnaker/deck/pull/5365) ([5d159622](https://github.com/spinnaker/deck/commit/5d159622f43fb2aa859a46b47665c8c60165224e))
|
|
953
|
+
refactor(core): de-angularize services [#5354](https://github.com/spinnaker/deck/pull/5354) ([ab380a10](https://github.com/spinnaker/deck/commit/ab380a105abd46116de1ea0b70c560f066732644))
|
|
954
|
+
|
|
955
|
+
|
|
956
|
+
|
|
957
|
+
## [0.0.3](https://www.github.com/spinnaker/deck/compare/29d628a89273d72a70ec1c09dd9dadb3d72be9c0...6e20b41114db7ebba7a7dabd55818349871c5595) (2018-05-18)
|
|
958
|
+
|
|
959
|
+
|
|
960
|
+
### Changes
|
|
961
|
+
|
|
962
|
+
chore(*): bump packages for amazon/appengine/core/google/k8s/titus [#5353](https://github.com/spinnaker/deck/pull/5353) ([6e20b411](https://github.com/spinnaker/deck/commit/6e20b41114db7ebba7a7dabd55818349871c5595))
|
|
963
|
+
refactor(*): de-angular-ize task reader/writer/executor [#5352](https://github.com/spinnaker/deck/pull/5352) ([56ede9d2](https://github.com/spinnaker/deck/commit/56ede9d28f704926f4fadf60af42612138e5b4ce))
|
|
964
|
+
chore(provider/appengine): use expected-artifact-selector in place of copy-n-paste [#5350](https://github.com/spinnaker/deck/pull/5350) ([c85383d6](https://github.com/spinnaker/deck/commit/c85383d65a7bfa373d2c124e26b74a508b9e4fb4))
|
|
965
|
+
refactor(*): De-angular pipelineConfigProvider and rename to PipelineRegistry [#5340](https://github.com/spinnaker/deck/pull/5340) ([40d11f8c](https://github.com/spinnaker/deck/commit/40d11f8c5a48284bca56e639e46cf846311a5dd4))
|
|
966
|
+
perf(*): transpile to latest two modern browsers only [#5260](https://github.com/spinnaker/deck/pull/5260) ([caf1a8a8](https://github.com/spinnaker/deck/commit/caf1a8a84139fb4e5fe4c12959e02a9309d4a7db))
|
|
967
|
+
|
|
968
|
+
|
|
969
|
+
|
|
970
|
+
## [0.0.2](https://www.github.com/spinnaker/deck/compare/28b568ec799de73a8d90a965a322e05405f333d9...29d628a89273d72a70ec1c09dd9dadb3d72be9c0) (2018-04-26)
|
|
971
|
+
|
|
972
|
+
|
|
973
|
+
### Changes
|
|
974
|
+
|
|
975
|
+
chore(appengine): bump package version to 0.0.2 [#5237](https://github.com/spinnaker/deck/pull/5237) ([29d628a8](https://github.com/spinnaker/deck/commit/29d628a89273d72a70ec1c09dd9dadb3d72be9c0))
|
|
976
|
+
refactor(*): De-angularize account service ([cc6d3332](https://github.com/spinnaker/deck/commit/cc6d333254159ab713a83bc89f13938d4c98e256))
|
|
977
|
+
refactor(*): De-angularize cloud provider registry ([5aaf40d8](https://github.com/spinnaker/deck/commit/5aaf40d8599e372b3f49ba2db3dffbd711bf437e))
|
|
978
|
+
refactor(*): de-angularize help contents/registry [#5199](https://github.com/spinnaker/deck/pull/5199) ([d6bfa5c2](https://github.com/spinnaker/deck/commit/d6bfa5c22c2196942230721ecc38ddb68e56874f))
|
|
979
|
+
refactor(core/naming): Convert angular naming.service to plain NameUtils ([d9f313bd](https://github.com/spinnaker/deck/commit/d9f313bd36508961f2a6be8d32c5155e0b5b893d))
|
|
980
|
+
chore(tslint): ❯ npx tslint --fix -p tsconfig.json ([b1ddb67c](https://github.com/spinnaker/deck/commit/b1ddb67c2c7a74f451baac070a65c985c2b6fb8e))
|
|
981
|
+
Just Use Prettier™ ([532ab778](https://github.com/spinnaker/deck/commit/532ab7784ca93569308c8f2ab80a18d313b910f9))
|