@spinnaker/ecs 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.
- package/CHANGELOG.md +1186 -0
- package/LICENSE.txt +203 -0
- package/dist/common/common.module.d.ts +1 -0
- package/dist/common/footer.component.d.ts +1 -0
- package/dist/domain/IEcsLoadBalancer.d.ts +119 -0
- package/dist/ecs.help.d.ts +1 -0
- package/dist/ecs.module.d.ts +4 -0
- package/dist/ecs.settings.d.ts +9 -0
- package/dist/ecsCluster/IEcsCapacityProviderDetails.d.ts +10 -0
- package/dist/ecsCluster/IEcsCluster.d.ts +5 -0
- package/dist/ecsCluster/ecsCluster.read.service.d.ts +7 -0
- package/dist/iamRoles/IRole.d.ts +6 -0
- package/dist/iamRoles/iamRole.read.service.d.ts +5 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +6010 -0
- package/dist/index.js.map +1 -0
- package/dist/instance/details/instance.details.controller.d.ts +2 -0
- package/dist/loadBalancer/EcsLoadBalancerClusterContainer.d.ts +6 -0
- package/dist/loadBalancer/TargetGroup.d.ts +11 -0
- package/dist/loadBalancer/details/loadBalancerDetails.d.ts +27 -0
- package/dist/loadBalancer/details/targetGroupDetails.d.ts +30 -0
- package/dist/loadBalancer/listener.d.ts +10 -0
- package/dist/loadBalancer/loadBalancer.transformer.d.ts +8 -0
- package/dist/loadBalancer/targetGroup.states.d.ts +1 -0
- package/dist/metricAlarm/MetricAlarm.d.ts +6 -0
- package/dist/metricAlarm/metricAlarm.read.service.d.ts +5 -0
- package/dist/pipeline/stages/destroyAsg/ecsDestroyAsgStage.d.ts +2 -0
- package/dist/pipeline/stages/disableAsg/ecsDisableAsgStage.d.ts +2 -0
- package/dist/pipeline/stages/disableCluster/ecsDisableClusterStage.d.ts +2 -0
- package/dist/pipeline/stages/enableAsg/ecsEnableAsgStage.d.ts +2 -0
- package/dist/pipeline/stages/findImageFromTags/ecsFindImageFromTagStage.d.ts +2 -0
- package/dist/pipeline/stages/resizeAsg/ecsResizeAsgStage.d.ts +2 -0
- package/dist/pipeline/stages/scaleDownCluster/ecsScaleDownClusterStage.d.ts +2 -0
- package/dist/pipeline/stages/shrinkCluster/ecsShrinkClusterStage.d.ts +2 -0
- package/dist/placementStrategy/IPlacementStrategy.d.ts +4 -0
- package/dist/placementStrategy/placementStrategy.service.d.ts +11 -0
- package/dist/secrets/ISecret.d.ts +5 -0
- package/dist/secrets/secret.read.service.d.ts +5 -0
- package/dist/securityGroup/details/securityGroupDetail.controller.d.ts +2 -0
- package/dist/securityGroup/securityGroup.module.d.ts +1 -0
- package/dist/securityGroup/securityGroup.reader.d.ts +5 -0
- package/dist/securityGroup/securityGroup.transformer.d.ts +2 -0
- package/dist/serverGroup/configure/serverGroupCommandBuilder.service.d.ts +2 -0
- package/dist/serverGroup/configure/serverGroupConfiguration.service.d.ts +165 -0
- package/dist/serverGroup/configure/wizard/CloneServerGroup.ecs.controller.d.ts +2 -0
- package/dist/serverGroup/configure/wizard/advancedSettings/advancedSettings.component.d.ts +2 -0
- package/dist/serverGroup/configure/wizard/capacityProvider/CapacityProvider.d.ts +7 -0
- package/dist/serverGroup/configure/wizard/container/Container.d.ts +32 -0
- package/dist/serverGroup/configure/wizard/horizontalScaling/horizontalScaling.component.d.ts +2 -0
- package/dist/serverGroup/configure/wizard/location/ServerGroupBasicSettings.controller.d.ts +2 -0
- package/dist/serverGroup/configure/wizard/logging/logging.component.d.ts +1 -0
- package/dist/serverGroup/configure/wizard/networking/Networking.d.ts +28 -0
- package/dist/serverGroup/configure/wizard/serviceDiscovery/ServiceDiscovery.d.ts +34 -0
- package/dist/serverGroup/configure/wizard/taskDefinition/TaskDefinition.d.ts +39 -0
- package/dist/serverGroup/details/resize/resizeCapacity.component.d.ts +1 -0
- package/dist/serverGroup/details/resize/resizeServerGroup.controller.d.ts +2 -0
- package/dist/serverGroup/details/rollback/rollbackServerGroup.controller.d.ts +2 -0
- package/dist/serverGroup/details/serverGroupDetails.ecs.controller.d.ts +2 -0
- package/dist/serverGroup/details/serverGroupDetails.module.d.ts +1 -0
- package/dist/serverGroup/events/EventsLink.d.ts +4 -0
- package/dist/serverGroup/events/events.component.d.ts +3 -0
- package/dist/serverGroup/events/events.controller.d.ts +19 -0
- package/dist/serverGroup/events/serverGroupEventsReader.service.d.ts +10 -0
- package/dist/serverGroup/serverGroup.module.d.ts +1 -0
- package/dist/serverGroup/serverGroup.transformer.d.ts +11 -0
- package/dist/serviceDiscovery/IServiceDiscovery.d.ts +12 -0
- package/dist/serviceDiscovery/serviceDiscovery.read.service.d.ts +4 -0
- package/package.json +47 -0
- package/src/common/common.module.ts +6 -0
- package/src/common/footer.component.ts +29 -0
- package/src/domain/IEcsLoadBalancer.ts +129 -0
- package/src/ecs.help.ts +91 -0
- package/src/ecs.module.ts +116 -0
- package/src/ecs.settings.ts +17 -0
- package/src/ecsCluster/IEcsCapacityProviderDetails.ts +11 -0
- package/src/ecsCluster/IEcsCluster.ts +5 -0
- package/src/ecsCluster/ecsCluster.read.service.ts +23 -0
- package/src/iamRoles/IRole.ts +6 -0
- package/src/iamRoles/iamRole.read.service.ts +14 -0
- package/src/index.ts +1 -0
- package/src/instance/details/instance.details.controller.js +356 -0
- package/src/instance/details/instanceDetails.html +204 -0
- package/src/loadBalancer/EcsLoadBalancerClusterContainer.tsx +48 -0
- package/src/loadBalancer/TargetGroup.tsx +74 -0
- package/src/loadBalancer/details/loadBalancerDetails.tsx +235 -0
- package/src/loadBalancer/details/targetGroupDetails.tsx +251 -0
- package/src/loadBalancer/listener.tsx +65 -0
- package/src/loadBalancer/loadBalancer.transformer.ts +21 -0
- package/src/loadBalancer/targetGroup.states.ts +59 -0
- package/src/logo/ecs.icon.svg +27 -0
- package/src/logo/ecs.logo.less +5 -0
- package/src/logo/ecs.logo.svg +27 -0
- package/src/metricAlarm/MetricAlarm.ts +6 -0
- package/src/metricAlarm/metricAlarm.read.service.ts +14 -0
- package/src/pipeline/stages/cloneServerGroup/cloneServerGroupStage.html +101 -0
- package/src/pipeline/stages/cloneServerGroup/cloneServerGroupStepLabel.html +1 -0
- package/src/pipeline/stages/cloneServerGroup/ecsCloneServerGroupStage.js +94 -0
- package/src/pipeline/stages/destroyAsg/destroyAsgStage.html +9 -0
- package/src/pipeline/stages/destroyAsg/destroyAsgStepLabel.html +1 -0
- package/src/pipeline/stages/destroyAsg/ecsDestroyAsgStage.js +65 -0
- package/src/pipeline/stages/disableAsg/disableAsgStage.html +11 -0
- package/src/pipeline/stages/disableAsg/disableAsgStepLabel.html +1 -0
- package/src/pipeline/stages/disableAsg/ecsDisableAsgStage.js +70 -0
- package/src/pipeline/stages/disableCluster/disableClusterStage.html +26 -0
- package/src/pipeline/stages/disableCluster/ecsDisableClusterStage.js +84 -0
- package/src/pipeline/stages/enableAsg/ecsEnableAsgStage.js +73 -0
- package/src/pipeline/stages/enableAsg/enableAsgStage.html +11 -0
- package/src/pipeline/stages/enableAsg/enableAsgStepLabel.html +1 -0
- package/src/pipeline/stages/findImageFromTags/ecsFindImageFromTagStage.js +26 -0
- package/src/pipeline/stages/findImageFromTags/findImageFromTagsExecutionDetails.html +36 -0
- package/src/pipeline/stages/findImageFromTags/findImageFromTagsStage.html +9 -0
- package/src/pipeline/stages/resizeAsg/ecsResizeAsgStage.js +128 -0
- package/src/pipeline/stages/resizeAsg/resizeAsgStage.html +87 -0
- package/src/pipeline/stages/resizeAsg/resizeAsgStepLabel.html +1 -0
- package/src/pipeline/stages/scaleDownCluster/ecsScaleDownClusterStage.js +78 -0
- package/src/pipeline/stages/scaleDownCluster/scaleDownClusterStage.html +35 -0
- package/src/pipeline/stages/shrinkCluster/ecsShrinkClusterStage.js +73 -0
- package/src/pipeline/stages/shrinkCluster/shrinkClusterStage.html +34 -0
- package/src/placementStrategy/IPlacementStrategy.ts +4 -0
- package/src/placementStrategy/placementStrategy.service.ts +63 -0
- package/src/secrets/ISecret.ts +5 -0
- package/src/secrets/secret.read.service.ts +14 -0
- package/src/securityGroup/details/securityGroupDetail.controller.js +147 -0
- package/src/securityGroup/details/securityGroupDetail.html +104 -0
- package/src/securityGroup/securityGroup.module.ts +12 -0
- package/src/securityGroup/securityGroup.reader.ts +16 -0
- package/src/securityGroup/securityGroup.transformer.js +13 -0
- package/src/serverGroup/configure/serverGroupCommandBuilder.service.js +281 -0
- package/src/serverGroup/configure/serverGroupConfiguration.service.ts +747 -0
- package/src/serverGroup/configure/wizard/CloneServerGroup.ecs.controller.js +259 -0
- package/src/serverGroup/configure/wizard/advancedSettings/advancedSettings.component.html +194 -0
- package/src/serverGroup/configure/wizard/advancedSettings/advancedSettings.component.js +17 -0
- package/src/serverGroup/configure/wizard/advancedSettings/advancedSettings.html +10 -0
- package/src/serverGroup/configure/wizard/capacityProvider/CapacityProvider.tsx +381 -0
- package/src/serverGroup/configure/wizard/capacityProvider/capacityProvider.html +11 -0
- package/src/serverGroup/configure/wizard/container/Container.tsx +347 -0
- package/src/serverGroup/configure/wizard/container/container.html +9 -0
- package/src/serverGroup/configure/wizard/horizontalScaling/horizontalScaling.component.html +118 -0
- package/src/serverGroup/configure/wizard/horizontalScaling/horizontalScaling.component.js +20 -0
- package/src/serverGroup/configure/wizard/horizontalScaling/horizontalScaling.html +13 -0
- package/src/serverGroup/configure/wizard/location/ServerGroupBasicSettings.controller.js +41 -0
- package/src/serverGroup/configure/wizard/location/basicSettings.html +137 -0
- package/src/serverGroup/configure/wizard/logging/logging.component.html +29 -0
- package/src/serverGroup/configure/wizard/logging/logging.component.ts +12 -0
- package/src/serverGroup/configure/wizard/logging/logging.html +7 -0
- package/src/serverGroup/configure/wizard/networking/Networking.tsx +261 -0
- package/src/serverGroup/configure/wizard/networking/networking.html +9 -0
- package/src/serverGroup/configure/wizard/serverGroupWizard.html +55 -0
- package/src/serverGroup/configure/wizard/serviceDiscovery/ServiceDiscovery.tsx +250 -0
- package/src/serverGroup/configure/wizard/serviceDiscovery/serviceDiscovery.html +11 -0
- package/src/serverGroup/configure/wizard/taskDefinition/TaskDefinition.tsx +460 -0
- package/src/serverGroup/configure/wizard/taskDefinition/taskDefinition.html +51 -0
- package/src/serverGroup/configure/wizard/templateSelection/templateSelection.html +9 -0
- package/src/serverGroup/configure/wizard/verticalScaling/verticalScaling.html +10 -0
- package/src/serverGroup/details/resize/resizeCapacity.component.html +94 -0
- package/src/serverGroup/details/resize/resizeCapacity.component.ts +14 -0
- package/src/serverGroup/details/resize/resizeServerGroup.controller.js +85 -0
- package/src/serverGroup/details/resize/resizeServerGroup.html +28 -0
- package/src/serverGroup/details/rollback/rollbackServerGroup.controller.js +97 -0
- package/src/serverGroup/details/rollback/rollbackServerGroup.html +67 -0
- package/src/serverGroup/details/serverGroupDetails.ecs.controller.js +366 -0
- package/src/serverGroup/details/serverGroupDetails.html +216 -0
- package/src/serverGroup/details/serverGroupDetails.module.ts +5 -0
- package/src/serverGroup/events/EventsLink.tsx +5 -0
- package/src/serverGroup/events/events.component.ts +35 -0
- package/src/serverGroup/events/events.controller.ts +45 -0
- package/src/serverGroup/events/events.html +36 -0
- package/src/serverGroup/events/serverGroupEventsReader.service.ts +27 -0
- package/src/serverGroup/serverGroup.module.ts +6 -0
- package/src/serverGroup/serverGroup.transformer.spec.ts +184 -0
- package/src/serverGroup/serverGroup.transformer.ts +117 -0
- package/src/serviceDiscovery/IServiceDiscovery.ts +13 -0
- package/src/serviceDiscovery/serviceDiscovery.read.service.ts +8 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,1186 @@
|
|
|
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.1](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.1.0...@spinnaker/ecs@0.1.1) (2024-06-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [0.1.0](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.364...@spinnaker/ecs@0.1.0) (2024-05-10)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **ecs:** Add support for ECS deployment circuit breaker ([#10076](https://github.com/spinnaker/deck/issues/10076)) ([32dfea8](https://github.com/spinnaker/deck/commit/32dfea87b69790d1093dac495f98a33fe73c5067))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [0.0.364](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.363...@spinnaker/ecs@0.0.364) (2023-12-07)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## [0.0.363](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.362...@spinnaker/ecs@0.0.363) (2023-10-16)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Bug Fixes
|
|
37
|
+
|
|
38
|
+
* **publish:** set access config in deck libraries ([#10049](https://github.com/spinnaker/deck/issues/10049)) ([2a5ebe2](https://github.com/spinnaker/deck/commit/2a5ebe25662eeb9d41b5071749266bf9d6d51104))
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
## [0.0.362](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.361...@spinnaker/ecs@0.0.362) (2023-09-06)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
### Bug Fixes
|
|
48
|
+
|
|
49
|
+
* Scaling bounds should parse float not int ([#10026](https://github.com/spinnaker/deck/issues/10026)) ([b763cae](https://github.com/spinnaker/deck/commit/b763cae826039df46b8dbe019689316ff5034e33))
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
## [0.0.361](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.360...@spinnaker/ecs@0.0.361) (2023-07-20)
|
|
56
|
+
|
|
57
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
## [0.0.360](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.359...@spinnaker/ecs@0.0.360) (2023-06-02)
|
|
64
|
+
|
|
65
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
## [0.0.359](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.358...@spinnaker/ecs@0.0.359) (2023-05-11)
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Bug Fixes
|
|
75
|
+
|
|
76
|
+
* **ecs:** VPC Subnet dropdown fix in ecs server group creation. ([10abc99](https://github.com/spinnaker/deck/commit/10abc99641a35803cc3c729d3ccc037ea19a9ed2))
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
## [0.0.358](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.357...@spinnaker/ecs@0.0.358) (2023-05-03)
|
|
83
|
+
|
|
84
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
## [0.0.357](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.356...@spinnaker/ecs@0.0.357) (2023-04-03)
|
|
91
|
+
|
|
92
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
## [0.0.356](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.355...@spinnaker/ecs@0.0.356) (2023-02-07)
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
### Bug Fixes
|
|
102
|
+
|
|
103
|
+
* **ecs:** skip checking for upstream stages for ECS deploy ([#9945](https://github.com/spinnaker/deck/issues/9945)) ([898a595](https://github.com/spinnaker/deck/commit/898a59504ea58a456baf19e0a21a4cace683feb7))
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
## [0.0.355](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.354...@spinnaker/ecs@0.0.355) (2023-02-02)
|
|
110
|
+
|
|
111
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
## [0.0.354](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.353...@spinnaker/ecs@0.0.354) (2023-02-01)
|
|
118
|
+
|
|
119
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
## [0.0.353](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.352...@spinnaker/ecs@0.0.353) (2022-10-21)
|
|
126
|
+
|
|
127
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
## [0.0.352](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.351...@spinnaker/ecs@0.0.352) (2022-10-06)
|
|
134
|
+
|
|
135
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
## [0.0.351](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.350...@spinnaker/ecs@0.0.351) (2022-08-25)
|
|
142
|
+
|
|
143
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
## [0.0.350](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.349...@spinnaker/ecs@0.0.350) (2022-08-03)
|
|
150
|
+
|
|
151
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
## [0.0.349](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.348...@spinnaker/ecs@0.0.349) (2022-07-11)
|
|
158
|
+
|
|
159
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
## [0.0.348](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.347...@spinnaker/ecs@0.0.348) (2022-07-01)
|
|
166
|
+
|
|
167
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
## [0.0.347](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.346...@spinnaker/ecs@0.0.347) (2022-06-22)
|
|
174
|
+
|
|
175
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
## [0.0.346](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.345...@spinnaker/ecs@0.0.346) (2022-05-05)
|
|
182
|
+
|
|
183
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
## [0.0.345](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.344...@spinnaker/ecs@0.0.345) (2022-04-21)
|
|
190
|
+
|
|
191
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
## [0.0.344](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.343...@spinnaker/ecs@0.0.344) (2022-04-09)
|
|
198
|
+
|
|
199
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
## [0.0.343](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.342...@spinnaker/ecs@0.0.343) (2022-03-08)
|
|
206
|
+
|
|
207
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
## [0.0.342](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.341...@spinnaker/ecs@0.0.342) (2022-01-22)
|
|
214
|
+
|
|
215
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
## [0.0.341](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.340...@spinnaker/ecs@0.0.341) (2022-01-12)
|
|
222
|
+
|
|
223
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
## [0.0.340](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.339...@spinnaker/ecs@0.0.340) (2021-12-11)
|
|
230
|
+
|
|
231
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
## [0.0.339](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.338...@spinnaker/ecs@0.0.339) (2021-12-08)
|
|
238
|
+
|
|
239
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
## [0.0.338](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.337...@spinnaker/ecs@0.0.338) (2021-12-01)
|
|
246
|
+
|
|
247
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
## [0.0.337](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.336...@spinnaker/ecs@0.0.337) (2021-11-12)
|
|
254
|
+
|
|
255
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
## [0.0.336](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.335...@spinnaker/ecs@0.0.336) (2021-11-03)
|
|
262
|
+
|
|
263
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
## [0.0.335](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.334...@spinnaker/ecs@0.0.335) (2021-10-05)
|
|
270
|
+
|
|
271
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
## [0.0.334](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.333...@spinnaker/ecs@0.0.334) (2021-10-01)
|
|
278
|
+
|
|
279
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
## [0.0.333](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.331...@spinnaker/ecs@0.0.333) (2021-09-30)
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
### Bug Fixes
|
|
289
|
+
|
|
290
|
+
* bump @types/react to 16.14.10 ([bb62b99](https://github.com/spinnaker/deck/commit/bb62b991514c2a81fbdf467c01f3ce7467f71718))
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
## [0.0.332](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.331...@spinnaker/ecs@0.0.332) (2021-09-30)
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
### Bug Fixes
|
|
300
|
+
|
|
301
|
+
* bump @types/react to 16.14.10 ([bb62b99](https://github.com/spinnaker/deck/commit/bb62b991514c2a81fbdf467c01f3ce7467f71718))
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
## [0.0.331](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.330...@spinnaker/ecs@0.0.331) (2021-09-29)
|
|
308
|
+
|
|
309
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
## [0.0.330](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.329...@spinnaker/ecs@0.0.330) (2021-09-24)
|
|
316
|
+
|
|
317
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
## [0.0.329](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.328...@spinnaker/ecs@0.0.329) (2021-09-24)
|
|
324
|
+
|
|
325
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
## [0.0.328](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.327...@spinnaker/ecs@0.0.328) (2021-09-23)
|
|
332
|
+
|
|
333
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
## [0.0.327](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.326...@spinnaker/ecs@0.0.327) (2021-09-23)
|
|
340
|
+
|
|
341
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
## [0.0.326](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.325...@spinnaker/ecs@0.0.326) (2021-09-21)
|
|
348
|
+
|
|
349
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
## [0.0.325](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.324...@spinnaker/ecs@0.0.325) (2021-09-18)
|
|
356
|
+
|
|
357
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
## [0.0.324](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.323...@spinnaker/ecs@0.0.324) (2021-09-18)
|
|
364
|
+
|
|
365
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
## [0.0.323](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.322...@spinnaker/ecs@0.0.323) (2021-09-16)
|
|
372
|
+
|
|
373
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
## [0.0.322](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.321...@spinnaker/ecs@0.0.322) (2021-09-15)
|
|
380
|
+
|
|
381
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
## [0.0.321](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.320...@spinnaker/ecs@0.0.321) (2021-09-14)
|
|
388
|
+
|
|
389
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
## [0.0.320](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.319...@spinnaker/ecs@0.0.320) (2021-09-07)
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
### Bug Fixes
|
|
399
|
+
|
|
400
|
+
* **help:** change entering to entered ([#9616](https://github.com/spinnaker/deck/issues/9616)) ([1020f7a](https://github.com/spinnaker/deck/commit/1020f7a114d07c0e5a85faa95eba53c171392cc1))
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
## [0.0.319](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.318...@spinnaker/ecs@0.0.319) (2021-09-06)
|
|
407
|
+
|
|
408
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
## [0.0.318](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.317...@spinnaker/ecs@0.0.318) (2021-09-02)
|
|
415
|
+
|
|
416
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
## [0.0.317](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.316...@spinnaker/ecs@0.0.317) (2021-08-30)
|
|
423
|
+
|
|
424
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
## [0.0.316](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.315...@spinnaker/ecs@0.0.316) (2021-08-30)
|
|
431
|
+
|
|
432
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
## [0.0.315](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.314...@spinnaker/ecs@0.0.315) (2021-08-25)
|
|
439
|
+
|
|
440
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
## [0.0.314](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.313...@spinnaker/ecs@0.0.314) (2021-08-20)
|
|
447
|
+
|
|
448
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
## [0.0.313](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.312...@spinnaker/ecs@0.0.313) (2021-08-20)
|
|
455
|
+
|
|
456
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
## [0.0.312](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.311...@spinnaker/ecs@0.0.312) (2021-08-18)
|
|
463
|
+
|
|
464
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
## [0.0.311](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.310...@spinnaker/ecs@0.0.311) (2021-08-17)
|
|
471
|
+
|
|
472
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
## [0.0.310](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.309...@spinnaker/ecs@0.0.310) (2021-08-13)
|
|
479
|
+
|
|
480
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
## [0.0.309](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.308...@spinnaker/ecs@0.0.309) (2021-08-10)
|
|
487
|
+
|
|
488
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
## [0.0.308](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.307...@spinnaker/ecs@0.0.308) (2021-08-05)
|
|
495
|
+
|
|
496
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
## [0.0.307](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.306...@spinnaker/ecs@0.0.307) (2021-08-02)
|
|
503
|
+
|
|
504
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
## [0.0.306](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.305...@spinnaker/ecs@0.0.306) (2021-07-30)
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
### Bug Fixes
|
|
514
|
+
|
|
515
|
+
* **build:** Upgrade uirouter/react version ([cc5004b](https://github.com/spinnaker/deck/commit/cc5004bfded32642553077346c19e34820d24ae7))
|
|
516
|
+
* **ecs/securityGroups:** Rename the securityGroups attribute due Clouddriver is expecting securityGroupNames instead. ([#9524](https://github.com/spinnaker/deck/issues/9524)) ([9cc7807](https://github.com/spinnaker/deck/commit/9cc7807baf049823e2120bf1ff05938a8389f508))
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
## [0.0.305](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.304...@spinnaker/ecs@0.0.305) (2021-07-26)
|
|
523
|
+
|
|
524
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
## [0.0.304](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.303...@spinnaker/ecs@0.0.304) (2021-07-22)
|
|
531
|
+
|
|
532
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
533
|
+
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
## [0.0.303](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.302...@spinnaker/ecs@0.0.303) (2021-07-22)
|
|
539
|
+
|
|
540
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
## [0.0.302](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.300...@spinnaker/ecs@0.0.302) (2021-07-22)
|
|
547
|
+
|
|
548
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
|
|
554
|
+
## [0.0.301](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.300...@spinnaker/ecs@0.0.301) (2021-07-22)
|
|
555
|
+
|
|
556
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
## [0.0.300](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.299...@spinnaker/ecs@0.0.300) (2021-07-21)
|
|
563
|
+
|
|
564
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
|
|
570
|
+
## [0.0.299](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.298...@spinnaker/ecs@0.0.299) (2021-07-20)
|
|
571
|
+
|
|
572
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
## [0.0.298](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.293...@spinnaker/ecs@0.0.298) (2021-07-19)
|
|
579
|
+
|
|
580
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
|
|
586
|
+
## [0.0.297](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.293...@spinnaker/ecs@0.0.297) (2021-07-19)
|
|
587
|
+
|
|
588
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
|
|
594
|
+
## [0.0.296](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.293...@spinnaker/ecs@0.0.296) (2021-07-19)
|
|
595
|
+
|
|
596
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
## [0.0.295](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.293...@spinnaker/ecs@0.0.295) (2021-07-19)
|
|
603
|
+
|
|
604
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
## [0.0.294](https://github.com/spinnaker/deck/compare/@spinnaker/ecs@0.0.293...@spinnaker/ecs@0.0.294) (2021-07-19)
|
|
611
|
+
|
|
612
|
+
**Note:** Version bump only for package @spinnaker/ecs
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
## 0.0.293 (2021-07-17)
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
### Bug Fixes
|
|
622
|
+
|
|
623
|
+
* **publishing:** Auto approve instead of adding "ready to merge" label ([51f536c](https://github.com/spinnaker/deck/commit/51f536c275e77854d8f173aeec86412ffbd66b6d))
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
## [0.0.291](https://www.github.com/spinnaker/deck/compare/99b53f37fa6b2a887686057c3883cf13e0dfb373...27d8d8aa2f348615e8dde7439bc3cd69e6324d59) (2021-07-01)
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
### Changes
|
|
634
|
+
|
|
635
|
+
chore(ecs): publish ecs@0.0.291 ([27d8d8aa](https://github.com/spinnaker/deck/commit/27d8d8aa2f348615e8dde7439bc3cd69e6324d59))
|
|
636
|
+
chore(all): Remove ng template cache for webpack ([be6df680](https://github.com/spinnaker/deck/commit/be6df680689e0624b27635bc875d0b4390a3bc4a))
|
|
637
|
+
chore(build): Integrate with yarn workspaces ([e30e631b](https://github.com/spinnaker/deck/commit/e30e631b128bd1c8bfef3a48643ce0b4f9935f1d))
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
## [0.0.290](https://www.github.com/spinnaker/deck/compare/e661543cecfc35edcedfd5ede871c8420664f669...99b53f37fa6b2a887686057c3883cf13e0dfb373) (2021-06-14)
|
|
642
|
+
|
|
643
|
+
|
|
644
|
+
### Changes
|
|
645
|
+
|
|
646
|
+
chore(ecs): publish ecs@0.0.290 ([99b53f37](https://github.com/spinnaker/deck/commit/99b53f37fa6b2a887686057c3883cf13e0dfb373))
|
|
647
|
+
refactor(packages): Migrate packages to make them independent ([38b5fa17](https://github.com/spinnaker/deck/commit/38b5fa17d82a1a032e84e6c3f51c806b5d6901b8))
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
|
|
651
|
+
## [0.0.289](https://www.github.com/spinnaker/deck/compare/7323cdd22dabcb8facc889333fcc905ba1862366...e661543cecfc35edcedfd5ede871c8420664f669) (2021-06-10)
|
|
652
|
+
|
|
653
|
+
|
|
654
|
+
### Changes
|
|
655
|
+
|
|
656
|
+
chore(ecs): publish ecs@0.0.289 ([e661543c](https://github.com/spinnaker/deck/commit/e661543cecfc35edcedfd5ede871c8420664f669))
|
|
657
|
+
fix(build): Fix distribution dir ([eb87451a](https://github.com/spinnaker/deck/commit/eb87451afb8a4696a4c6d76589cb95d8b4192398))
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
|
|
661
|
+
## [0.0.288](https://www.github.com/spinnaker/deck/compare/9d3013a18d37847f8ae84525a7c82a4aa0e0735a...7323cdd22dabcb8facc889333fcc905ba1862366) (2021-06-07)
|
|
662
|
+
|
|
663
|
+
|
|
664
|
+
### Changes
|
|
665
|
+
|
|
666
|
+
chore(ecs): publish ecs@0.0.288 ([7323cdd2](https://github.com/spinnaker/deck/commit/7323cdd22dabcb8facc889333fcc905ba1862366))
|
|
667
|
+
fix(ecs): Switch to securityGroupNames and update on subnet change in server group wizard [#9032](https://github.com/spinnaker/deck/pull/9032) ([6f6add0e](https://github.com/spinnaker/deck/commit/6f6add0e68fc3b7c415978dfe4613af68ba8811c))
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
## [0.0.287](https://www.github.com/spinnaker/deck/compare/2a49a3e5c3fd2ddb00cbeffacaf0d111cad057d0...9d3013a18d37847f8ae84525a7c82a4aa0e0735a) (2021-06-01)
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
### Changes
|
|
675
|
+
|
|
676
|
+
chore(ecs): publish ecs@0.0.287 ([9d3013a1](https://github.com/spinnaker/deck/commit/9d3013a18d37847f8ae84525a7c82a4aa0e0735a))
|
|
677
|
+
fix(ecs): Cannot see instance details for ecs cluster [#9157](https://github.com/spinnaker/deck/pull/9157) ([c20da7a6](https://github.com/spinnaker/deck/commit/c20da7a67c9dcf178d05c6a886bcd4d026b55fb7))
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
## [0.0.286](https://www.github.com/spinnaker/deck/compare/49fc07d711e0d1ac37a050fb4e79fea81bce51e8...2a49a3e5c3fd2ddb00cbeffacaf0d111cad057d0) (2021-05-25)
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
### Changes
|
|
685
|
+
|
|
686
|
+
chore(ecs): publish ecs@0.0.286 ([2a49a3e5](https://github.com/spinnaker/deck/commit/2a49a3e5c3fd2ddb00cbeffacaf0d111cad057d0))
|
|
687
|
+
fix(build): Revert independent package changes ([c067090d](https://github.com/spinnaker/deck/commit/c067090dcee79a52ac7788cfb2d939b80f52423b))
|
|
688
|
+
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
## [0.0.285](https://www.github.com/spinnaker/deck/compare/d93fd8224df8809079a2190889539c1931039a07...49fc07d711e0d1ac37a050fb4e79fea81bce51e8) (2021-05-21)
|
|
692
|
+
|
|
693
|
+
|
|
694
|
+
### Changes
|
|
695
|
+
|
|
696
|
+
chore(ecs): publish ecs@0.0.285 ([49fc07d7](https://github.com/spinnaker/deck/commit/49fc07d711e0d1ac37a050fb4e79fea81bce51e8))
|
|
697
|
+
refactor(docker): Make docker package independent ([5a4247fb](https://github.com/spinnaker/deck/commit/5a4247fb146a96820fbcd5346b8c80ecbfe30bb2))
|
|
698
|
+
refactor(amazon): Make amazon package independent ([6c3838ec](https://github.com/spinnaker/deck/commit/6c3838eca864a816d16e435b0856ef9b13e9a443))
|
|
699
|
+
fix(lint): Fix lint errors ([5561db04](https://github.com/spinnaker/deck/commit/5561db048f69d671225521a00fd2aeb5442fc6b6))
|
|
700
|
+
|
|
701
|
+
|
|
702
|
+
|
|
703
|
+
## [0.0.284](https://www.github.com/spinnaker/deck/compare/f5f9848caa17780fd92b12d8e46f08b752c8d674...d93fd8224df8809079a2190889539c1931039a07) (2021-05-20)
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
### Changes
|
|
707
|
+
|
|
708
|
+
chore(ecs): publish ecs@0.0.284 ([d93fd822](https://github.com/spinnaker/deck/commit/d93fd8224df8809079a2190889539c1931039a07))
|
|
709
|
+
feat(ecs): Override Task Def Artifacts ([d65fab8d](https://github.com/spinnaker/deck/commit/d65fab8dd202a29ddf19baa6264e54f8397b55f8))
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
## [0.0.283](https://www.github.com/spinnaker/deck/compare/d20786db33388e7374cdf69fc4b7b6b4a4a09d91...f5f9848caa17780fd92b12d8e46f08b752c8d674) (2021-05-12)
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
### Changes
|
|
717
|
+
|
|
718
|
+
chore(ecs): publish ecs@0.0.283 ([f5f9848c](https://github.com/spinnaker/deck/commit/f5f9848caa17780fd92b12d8e46f08b752c8d674))
|
|
719
|
+
refactor(core): Convert AddEntityTagLinks to React [#9147](https://github.com/spinnaker/deck/pull/9147) ([39fa7730](https://github.com/spinnaker/deck/commit/39fa77303b75ca6e5b0af96d1e011bcff452cede))
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
## [0.0.282](https://www.github.com/spinnaker/deck/compare/24e1dd59218adb8285d15e27de756ed464559874...d20786db33388e7374cdf69fc4b7b6b4a4a09d91) (2021-04-21)
|
|
724
|
+
|
|
725
|
+
|
|
726
|
+
### Changes
|
|
727
|
+
|
|
728
|
+
chore(ecs): publish ecs@0.0.282 ([d20786db](https://github.com/spinnaker/deck/commit/d20786db33388e7374cdf69fc4b7b6b4a4a09d91))
|
|
729
|
+
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
## [0.0.281](https://www.github.com/spinnaker/deck/compare/69a8d620162dae2d724fa7346e7438032314fdf6...24e1dd59218adb8285d15e27de756ed464559874) (2021-04-21)
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
### Changes
|
|
736
|
+
|
|
737
|
+
chore(ecs): publish ecs@0.0.281 ([24e1dd59](https://github.com/spinnaker/deck/commit/24e1dd59218adb8285d15e27de756ed464559874))
|
|
738
|
+
Remove webpack modules + webpack consolidation [#9097](https://github.com/spinnaker/deck/pull/9097) ([00145566](https://github.com/spinnaker/deck/commit/001455667f2afb5c728737863f7365fc4fcbb76b))
|
|
739
|
+
|
|
740
|
+
|
|
741
|
+
|
|
742
|
+
## [0.0.280](https://www.github.com/spinnaker/deck/compare/4e0c5c3c0afb7f2fb4edc5a8012319347fbce063...69a8d620162dae2d724fa7346e7438032314fdf6) (2021-04-06)
|
|
743
|
+
|
|
744
|
+
|
|
745
|
+
### Changes
|
|
746
|
+
|
|
747
|
+
chore(ecs): publish ecs@0.0.280 ([69a8d620](https://github.com/spinnaker/deck/commit/69a8d620162dae2d724fa7346e7438032314fdf6))
|
|
748
|
+
feat(infrastructure/buttons): Add a new property configurable on sett… [#7822](https://github.com/spinnaker/deck/pull/7822) ([0bb92635](https://github.com/spinnaker/deck/commit/0bb9263502188fcbadd4b1d1218f345229e0d184))
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
|
|
752
|
+
## [0.0.279](https://www.github.com/spinnaker/deck/compare/aa2693b756853f1f50c5001e89afda514074cf2c...4e0c5c3c0afb7f2fb4edc5a8012319347fbce063) (2021-03-30)
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
### Changes
|
|
756
|
+
|
|
757
|
+
chore(ecs): publish ecs@0.0.279 ([4e0c5c3c](https://github.com/spinnaker/deck/commit/4e0c5c3c0afb7f2fb4edc5a8012319347fbce063))
|
|
758
|
+
test: fix typing errors introduced by stricter types in updated @types/jasmine package ([0ff5c18c](https://github.com/spinnaker/deck/commit/0ff5c18c3fb947800460d32241e8b31d6720c760))
|
|
759
|
+
|
|
760
|
+
|
|
761
|
+
|
|
762
|
+
## [0.0.278](https://www.github.com/spinnaker/deck/compare/96a3547be9d0e4dda0b25f791e6fd69f6c9762b5...aa2693b756853f1f50c5001e89afda514074cf2c) (2021-02-22)
|
|
763
|
+
|
|
764
|
+
|
|
765
|
+
### Changes
|
|
766
|
+
|
|
767
|
+
chore(ecs): publish ecs@0.0.278 ([aa2693b7](https://github.com/spinnaker/deck/commit/aa2693b756853f1f50c5001e89afda514074cf2c))
|
|
768
|
+
chore(lint): Sort import statements ([cca56eaa](https://github.com/spinnaker/deck/commit/cca56eaaeeb412b7596c68a1260eefed7fbf6fed))
|
|
769
|
+
chore(prettier): Format code using prettier ([b6364c82](https://github.com/spinnaker/deck/commit/b6364c820c106ee54e5bd5770e44c81fa3af06e9))
|
|
770
|
+
|
|
771
|
+
|
|
772
|
+
|
|
773
|
+
## [0.0.277](https://www.github.com/spinnaker/deck/compare/434ec3fcacfbaaddffa963084d1687424e2709f5...96a3547be9d0e4dda0b25f791e6fd69f6c9762b5) (2021-02-17)
|
|
774
|
+
|
|
775
|
+
|
|
776
|
+
### Changes
|
|
777
|
+
|
|
778
|
+
chore(ecs): publish ecs@0.0.277 ([96a3547b](https://github.com/spinnaker/deck/commit/96a3547be9d0e4dda0b25f791e6fd69f6c9762b5))
|
|
779
|
+
feat(ecs): Determine invalid default capacity provider strategy ([6cca84fc](https://github.com/spinnaker/deck/commit/6cca84fc1885db19f901cf682da90a577900c4aa))
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
## [0.0.276](https://www.github.com/spinnaker/deck/compare/281d0645b639054e8fba582066499bbb07a23ee5...434ec3fcacfbaaddffa963084d1687424e2709f5) (2021-02-03)
|
|
784
|
+
|
|
785
|
+
|
|
786
|
+
### Changes
|
|
787
|
+
|
|
788
|
+
chore(ecs): publish ecs@0.0.276 ([434ec3fc](https://github.com/spinnaker/deck/commit/434ec3fcacfbaaddffa963084d1687424e2709f5))
|
|
789
|
+
feat(ecs): Determine invalid capacity providers for the ECS provider [#8878](https://github.com/spinnaker/deck/pull/8878) ([760c20f6](https://github.com/spinnaker/deck/commit/760c20f6937ec17f70d2f784087b0adb21effe39))
|
|
790
|
+
feat(ecs): Add support for Capacity providers - enhanced Deck UI [#8875](https://github.com/spinnaker/deck/pull/8875) ([53a01021](https://github.com/spinnaker/deck/commit/53a0102118fc08a7d0845034e195cf6e8e8485dc))
|
|
791
|
+
fix(ecs): determine dirty target groups for the ECS provider [#8863](https://github.com/spinnaker/deck/pull/8863) ([2d913a37](https://github.com/spinnaker/deck/commit/2d913a376ec54bbec493b0f3c24fe93dfa437fd2))
|
|
792
|
+
|
|
793
|
+
|
|
794
|
+
|
|
795
|
+
## [0.0.275](https://www.github.com/spinnaker/deck/compare/180090ed44c10f9d1d3a62ee6139a7df5031d5fd...281d0645b639054e8fba582066499bbb07a23ee5) (2021-01-13)
|
|
796
|
+
|
|
797
|
+
|
|
798
|
+
### Changes
|
|
799
|
+
|
|
800
|
+
chore(ecs): publish ecs@0.0.275 ([281d0645](https://github.com/spinnaker/deck/commit/281d0645b639054e8fba582066499bbb07a23ee5))
|
|
801
|
+
feat(ecs): migrate capacity provider wizard to react [#8824](https://github.com/spinnaker/deck/pull/8824) ([a14ae088](https://github.com/spinnaker/deck/commit/a14ae08831c9a7b0fdc6a5253c6adc4be240f685))
|
|
802
|
+
|
|
803
|
+
|
|
804
|
+
|
|
805
|
+
## [0.0.274](https://www.github.com/spinnaker/deck/compare/42b10991ba42c6df917916a99cd336eaf3469de4...180090ed44c10f9d1d3a62ee6139a7df5031d5fd) (2020-12-16)
|
|
806
|
+
|
|
807
|
+
|
|
808
|
+
### Changes
|
|
809
|
+
|
|
810
|
+
chore(ecs): publish ecs@0.0.274 ([180090ed](https://github.com/spinnaker/deck/commit/180090ed44c10f9d1d3a62ee6139a7df5031d5fd))
|
|
811
|
+
refactor(REST): Prefer REST('/foo/bar') over REST().path('foo', 'bar') ([1d4320a0](https://github.com/spinnaker/deck/commit/1d4320a08f73093483cbb93784e9115c236b1f8a))
|
|
812
|
+
refactor(api-deprecation): API is deprecated, switch to REST() ([97bfbf67](https://github.com/spinnaker/deck/commit/97bfbf67b5d359cc540918b62c99088ad82dfb1b))
|
|
813
|
+
refactor(api-deprecation): Prefer API.path('foo', 'bar') over API.path('foo').path('bar') ([39b08e72](https://github.com/spinnaker/deck/commit/39b08e72b4baef1063a3ab9b65584e6e4e73d3e2))
|
|
814
|
+
refactor(api-deprecation): Migrate from API.one/all/withParams/getList() to path/query/get() ([587db3ab](https://github.com/spinnaker/deck/commit/587db3ab20040fb5c72fe48feb36eccd7d1f297a))
|
|
815
|
+
feat(ecs): support multiple subnet types [#8724](https://github.com/spinnaker/deck/pull/8724) ([8e2bed68](https://github.com/spinnaker/deck/commit/8e2bed6814d88c0d3b8cf58fc48b66d3414367e1))
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
|
|
819
|
+
## [0.0.273](https://www.github.com/spinnaker/deck/compare/5b41d4a1662672cbd2684f571f05e962ae76b333...42b10991ba42c6df917916a99cd336eaf3469de4) (2020-12-11)
|
|
820
|
+
|
|
821
|
+
|
|
822
|
+
### Changes
|
|
823
|
+
|
|
824
|
+
chore(ecs): publish ecs@0.0.273 ([42b10991](https://github.com/spinnaker/deck/commit/42b10991ba42c6df917916a99cd336eaf3469de4))
|
|
825
|
+
fix(ecs): rename capacityProviderStrategies to capacityProviderStrategy ([43e2f120](https://github.com/spinnaker/deck/commit/43e2f120b67a1446249a5b22faaf49c0afbb3658))
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
|
|
829
|
+
## [0.0.272](https://www.github.com/spinnaker/deck/compare/8d1602551651dfeb82617c83065975a98247b0a7...5b41d4a1662672cbd2684f571f05e962ae76b333) (2020-12-09)
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
### Changes
|
|
833
|
+
|
|
834
|
+
chore(ecs): publish ecs@0.0.272 ([5b41d4a1](https://github.com/spinnaker/deck/commit/5b41d4a1662672cbd2684f571f05e962ae76b333))
|
|
835
|
+
feat(ecs): Add basic capacity provider UI [#8767](https://github.com/spinnaker/deck/pull/8767) ([1e49b1c5](https://github.com/spinnaker/deck/commit/1e49b1c5171284ddd88b5d0cade785c22c5ea869))
|
|
836
|
+
|
|
837
|
+
|
|
838
|
+
|
|
839
|
+
## [0.0.271](https://www.github.com/spinnaker/deck/compare/7d53216ad5c93e7d7956a6e8abeeea644af81721...8d1602551651dfeb82617c83065975a98247b0a7) (2020-11-07)
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
### Changes
|
|
843
|
+
|
|
844
|
+
chore(ecs): publish ecs@0.0.271 ([8d160255](https://github.com/spinnaker/deck/commit/8d1602551651dfeb82617c83065975a98247b0a7))
|
|
845
|
+
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))
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
|
|
849
|
+
## [0.0.270](https://www.github.com/spinnaker/deck/compare/d84cd61bc2724a08e108d4b88db7bd8c26b238d8...7d53216ad5c93e7d7956a6e8abeeea644af81721) (2020-11-03)
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
### Changes
|
|
853
|
+
|
|
854
|
+
chore(ecs): publish ecs@0.0.270 ([7d53216a](https://github.com/spinnaker/deck/commit/7d53216ad5c93e7d7956a6e8abeeea644af81721))
|
|
855
|
+
Rename networking module to ECS Networking React ([10b17b96](https://github.com/spinnaker/deck/commit/10b17b965cd2611b98c0bd069eed8218128bc867))
|
|
856
|
+
feat(ecs): migrate networking server group wizard to react ([5283f9f9](https://github.com/spinnaker/deck/commit/5283f9f926af94d4cc88d7f2be09e674a45f10e1))
|
|
857
|
+
|
|
858
|
+
|
|
859
|
+
|
|
860
|
+
## [0.0.269](https://www.github.com/spinnaker/deck/compare/1ba1dd182332f9853df29927b426cd91898dd822...d84cd61bc2724a08e108d4b88db7bd8c26b238d8) (2020-10-28)
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
### Changes
|
|
864
|
+
|
|
865
|
+
chore(ecs): publish ecs@0.0.269 ([d84cd61b](https://github.com/spinnaker/deck/commit/d84cd61bc2724a08e108d4b88db7bd8c26b238d8))
|
|
866
|
+
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))
|
|
867
|
+
chore(PromiseLike): Migrate remaining IPromise typings to PromiseLike ([2c0d0f68](https://github.com/spinnaker/deck/commit/2c0d0f6814689d93820eab4e97e5d89f98a61cc5))
|
|
868
|
+
|
|
869
|
+
|
|
870
|
+
|
|
871
|
+
## [0.0.268](https://www.github.com/spinnaker/deck/compare/47a8002877ce304ce51f928214e6b3b60820fc6c...1ba1dd182332f9853df29927b426cd91898dd822) (2020-10-28)
|
|
872
|
+
|
|
873
|
+
|
|
874
|
+
### Changes
|
|
875
|
+
|
|
876
|
+
chore(ecs): publish ecs@0.0.268 ([1ba1dd18](https://github.com/spinnaker/deck/commit/1ba1dd182332f9853df29927b426cd91898dd822))
|
|
877
|
+
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))
|
|
878
|
+
chore(ecs/serverGroup): Migrate from $q.all({}) to $q.all([]) ([27583e5d](https://github.com/spinnaker/deck/commit/27583e5d3d66277eaeb98d4fa85103a140985c08))
|
|
879
|
+
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))
|
|
880
|
+
chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
|
|
881
|
+
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))
|
|
882
|
+
|
|
883
|
+
|
|
884
|
+
|
|
885
|
+
## [0.0.267](https://www.github.com/spinnaker/deck/compare/a220af588e194762757be534cce2d7ae9dc508d5...47a8002877ce304ce51f928214e6b3b60820fc6c) (2020-10-26)
|
|
886
|
+
|
|
887
|
+
|
|
888
|
+
### Changes
|
|
889
|
+
|
|
890
|
+
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))
|
|
891
|
+
chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
|
|
892
|
+
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))
|
|
893
|
+
chore(ecs): publish ecs@0.0.267 ([a7dc7e5d](https://github.com/spinnaker/deck/commit/a7dc7e5d574559a5b6aea7631fe3245d14f1cbac))
|
|
894
|
+
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))
|
|
895
|
+
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))
|
|
896
|
+
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))
|
|
897
|
+
|
|
898
|
+
|
|
899
|
+
|
|
900
|
+
## [0.0.266](https://www.github.com/spinnaker/deck/compare/a7dc7e5d574559a5b6aea7631fe3245d14f1cbac...a220af588e194762757be534cce2d7ae9dc508d5) (2020-10-26)
|
|
901
|
+
|
|
902
|
+
|
|
903
|
+
### Changes
|
|
904
|
+
|
|
905
|
+
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))
|
|
906
|
+
|
|
907
|
+
|
|
908
|
+
|
|
909
|
+
## [0.0.267](https://www.github.com/spinnaker/deck/compare/4b79b4d75628bc74b91b72980f0a5e8ba479335e...a7dc7e5d574559a5b6aea7631fe3245d14f1cbac) (2020-10-26)
|
|
910
|
+
|
|
911
|
+
|
|
912
|
+
### Changes
|
|
913
|
+
|
|
914
|
+
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))
|
|
915
|
+
chore(modules): Reformat package.json with prettier [#8679](https://github.com/spinnaker/deck/pull/8679) ([0b1e2977](https://github.com/spinnaker/deck/commit/0b1e29778521da03673dc2aff083e490164ce616))
|
|
916
|
+
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))
|
|
917
|
+
chore(ecs): publish ecs@0.0.267 ([a7dc7e5d](https://github.com/spinnaker/deck/commit/a7dc7e5d574559a5b6aea7631fe3245d14f1cbac))
|
|
918
|
+
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))
|
|
919
|
+
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))
|
|
920
|
+
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))
|
|
921
|
+
|
|
922
|
+
|
|
923
|
+
|
|
924
|
+
## [0.0.266](https://www.github.com/spinnaker/deck/compare/cccfdb37d0765f25e53998b1def0fd65739e5b44...4b79b4d75628bc74b91b72980f0a5e8ba479335e) (2020-10-12)
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
### Changes
|
|
928
|
+
|
|
929
|
+
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))
|
|
930
|
+
chore(ecs): publish ecs@0.0.267 ([a7dc7e5d](https://github.com/spinnaker/deck/commit/a7dc7e5d574559a5b6aea7631fe3245d14f1cbac))
|
|
931
|
+
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))
|
|
932
|
+
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))
|
|
933
|
+
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))
|
|
934
|
+
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))
|
|
935
|
+
chore(prettier): Just Update Prettier™ [#8644](https://github.com/spinnaker/deck/pull/8644) ([8532bdd4](https://github.com/spinnaker/deck/commit/8532bdd4c08d59c38a0adde70ccac4f163c9dd97))
|
|
936
|
+
chore(lint): eslint --fix react2angular-with-error-boundary ([defaf19b](https://github.com/spinnaker/deck/commit/defaf19b5f11f8cce70e14fa1cdd52e88e6de0fd))
|
|
937
|
+
feat(ecs): add cypress tests for the ecs provider [#8632](https://github.com/spinnaker/deck/pull/8632) ([382591bb](https://github.com/spinnaker/deck/commit/382591bb3768eb7fb598e6eb598e0baf5c26b150))
|
|
938
|
+
|
|
939
|
+
|
|
940
|
+
|
|
941
|
+
## [0.0.265](https://www.github.com/spinnaker/deck/compare/2273dee2b3668ba105a34a062da669cdf7c207c5...cccfdb37d0765f25e53998b1def0fd65739e5b44) (2020-10-01)
|
|
942
|
+
|
|
943
|
+
|
|
944
|
+
### Changes
|
|
945
|
+
|
|
946
|
+
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))
|
|
947
|
+
feat(ecs): Enable embedded artifacts for Deploy stage [#8603](https://github.com/spinnaker/deck/pull/8603) ([748da079](https://github.com/spinnaker/deck/commit/748da07923941dc1ccdcbbcfcab840ddea805b0c))
|
|
948
|
+
feat(ecs): add Amazon ECS Cypress tests ([61cf058f](https://github.com/spinnaker/deck/commit/61cf058f04ce81b33037eff89cb417669dd531fc))
|
|
949
|
+
|
|
950
|
+
|
|
951
|
+
|
|
952
|
+
## [0.0.264](https://www.github.com/spinnaker/deck/compare/e2dad1f3cc64fd58283c1f8d27031be35610d663...2273dee2b3668ba105a34a062da669cdf7c207c5) (2020-09-23)
|
|
953
|
+
|
|
954
|
+
|
|
955
|
+
### Changes
|
|
956
|
+
|
|
957
|
+
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))
|
|
958
|
+
feat(core/*): Deck layout optimizations [#8556](https://github.com/spinnaker/deck/pull/8556) ([2588b7f3](https://github.com/spinnaker/deck/commit/2588b7f3e1ecbfd590e7cc87a225bbfd056449e3))
|
|
959
|
+
|
|
960
|
+
|
|
961
|
+
|
|
962
|
+
## [0.0.263](https://www.github.com/spinnaker/deck/compare/2f25b74759d27fe294eaf070059f1526a14494fd...e2dad1f3cc64fd58283c1f8d27031be35610d663) (2020-09-18)
|
|
963
|
+
|
|
964
|
+
|
|
965
|
+
### Changes
|
|
966
|
+
|
|
967
|
+
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))
|
|
968
|
+
fix(ecs): set container name to empty when using container inputs #8527 [#8527](https://github.com/spinnaker/deck/pull/8527) ([249aa8e0](https://github.com/spinnaker/deck/commit/249aa8e0a16ae3fad7421dec654901f278c4cd4e))
|
|
969
|
+
|
|
970
|
+
|
|
971
|
+
|
|
972
|
+
## [0.0.262](https://www.github.com/spinnaker/deck/compare/ced77a7453a0ffab5a14c38943288138fdcb084b...2f25b74759d27fe294eaf070059f1526a14494fd) (2020-09-14)
|
|
973
|
+
|
|
974
|
+
|
|
975
|
+
### Changes
|
|
976
|
+
|
|
977
|
+
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))
|
|
978
|
+
chore(typescript): Upgrade typescript to v4 ([c32bb975](https://github.com/spinnaker/deck/commit/c32bb9750fc6a22f5fa5055a104d5b65d56d9c3d))
|
|
979
|
+
fix(ecs): add container name for service discovery in server group [#8518](https://github.com/spinnaker/deck/pull/8518) ([7c064c74](https://github.com/spinnaker/deck/commit/7c064c740d242c5411ec1ac4607d77984530561f))
|
|
980
|
+
|
|
981
|
+
|
|
982
|
+
|
|
983
|
+
## [0.0.261](https://www.github.com/spinnaker/deck/compare/51eb36e35e0e1da2d0a76be9f9aef60525cb554c...ced77a7453a0ffab5a14c38943288138fdcb084b) (2020-08-25)
|
|
984
|
+
|
|
985
|
+
|
|
986
|
+
### Changes
|
|
987
|
+
|
|
988
|
+
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))
|
|
989
|
+
chore(licenses): add license metadata to npm packages [#8512](https://github.com/spinnaker/deck/pull/8512) ([d4afa1bf](https://github.com/spinnaker/deck/commit/d4afa1bf2328cc91cf3195f810073b0b4726b3b5))
|
|
990
|
+
|
|
991
|
+
|
|
992
|
+
|
|
993
|
+
## [0.0.260](https://www.github.com/spinnaker/deck/compare/db2a3d25e126c6d318bedafbcef8ca058188ac98...51eb36e35e0e1da2d0a76be9f9aef60525cb554c) (2020-08-20)
|
|
994
|
+
|
|
995
|
+
|
|
996
|
+
### Changes
|
|
997
|
+
|
|
998
|
+
chore(package): publish core 0.0.502 ecs 0.0.260 google 0.0.18 kubernetes 0.0.47 [#8510](https://github.com/spinnaker/deck/pull/8510) ([51eb36e3](https://github.com/spinnaker/deck/commit/51eb36e35e0e1da2d0a76be9f9aef60525cb554c))
|
|
999
|
+
fix(ecs): update z-index for uibModal [#8502](https://github.com/spinnaker/deck/pull/8502) ([9aeb2fb6](https://github.com/spinnaker/deck/commit/9aeb2fb6b037094e69fb698a3c26d3860152dcad))
|
|
1000
|
+
|
|
1001
|
+
|
|
1002
|
+
|
|
1003
|
+
## [0.0.259](https://www.github.com/spinnaker/deck/compare/c881a42c3516e4b69594f8055df2d3d7995292af...db2a3d25e126c6d318bedafbcef8ca058188ac98) (2020-06-22)
|
|
1004
|
+
|
|
1005
|
+
|
|
1006
|
+
### Changes
|
|
1007
|
+
|
|
1008
|
+
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))
|
|
1009
|
+
fix(ecs): disable terminate instance [#8324](https://github.com/spinnaker/deck/pull/8324) ([ecf7928d](https://github.com/spinnaker/deck/commit/ecf7928d4b5f247eb58dee559869333791786a82))
|
|
1010
|
+
fix(ecs): return promise from normalizeLoadBalancer [#8323](https://github.com/spinnaker/deck/pull/8323) ([bcd7072b](https://github.com/spinnaker/deck/commit/bcd7072b9c17b5e8670ff9449277d151bf6cc8ce))
|
|
1011
|
+
|
|
1012
|
+
|
|
1013
|
+
|
|
1014
|
+
## [0.0.258](https://www.github.com/spinnaker/deck/compare/55855252f72d540ddef6ca6c7e2f2222a89ef376...c881a42c3516e4b69594f8055df2d3d7995292af) (2020-05-18)
|
|
1015
|
+
|
|
1016
|
+
|
|
1017
|
+
### Changes
|
|
1018
|
+
|
|
1019
|
+
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))
|
|
1020
|
+
refactor(core): legacy artifacts cleanup [#8273](https://github.com/spinnaker/deck/pull/8273) ([f4d41551](https://github.com/spinnaker/deck/commit/f4d415518dd553263ca63f4641ff19facef79464))
|
|
1021
|
+
|
|
1022
|
+
|
|
1023
|
+
|
|
1024
|
+
## [0.0.257](https://www.github.com/spinnaker/deck/compare/f227aa8ec00fffe63e39abc75b9c504180804623...55855252f72d540ddef6ca6c7e2f2222a89ef376) (2020-05-04)
|
|
1025
|
+
|
|
1026
|
+
|
|
1027
|
+
### Changes
|
|
1028
|
+
|
|
1029
|
+
chore(package): publish amazon 0.0.252 core 0.0.473 ecs 0.0.257 kubernetes 0.0.38 [#8247](https://github.com/spinnaker/deck/pull/8247) ([55855252](https://github.com/spinnaker/deck/commit/55855252f72d540ddef6ca6c7e2f2222a89ef376))
|
|
1030
|
+
fix(ecs): set loadBalancedContainer to empty when creating new targetGroupMappings [#8224](https://github.com/spinnaker/deck/pull/8224) ([d4e5b2f8](https://github.com/spinnaker/deck/commit/d4e5b2f819f77ccb6454a9c078be000067d16931))
|
|
1031
|
+
fix(ecs): move service discovery configuration to react [#8188](https://github.com/spinnaker/deck/pull/8188) ([4d15ea15](https://github.com/spinnaker/deck/commit/4d15ea15216555bc7e7555a5d4a09e15508d0ee7))
|
|
1032
|
+
feat(ecs): Implement load balancer views [#8186](https://github.com/spinnaker/deck/pull/8186) ([9dbf6bc1](https://github.com/spinnaker/deck/commit/9dbf6bc1902d39fabfd3f1a6b911ab002e5eed64))
|
|
1033
|
+
|
|
1034
|
+
|
|
1035
|
+
|
|
1036
|
+
## [0.0.256](https://www.github.com/spinnaker/deck/compare/68dad3a0f7a71de153e0ad180356808d90c6409f...f227aa8ec00fffe63e39abc75b9c504180804623) (2020-04-21)
|
|
1037
|
+
|
|
1038
|
+
|
|
1039
|
+
### Changes
|
|
1040
|
+
|
|
1041
|
+
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))
|
|
1042
|
+
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))
|
|
1043
|
+
|
|
1044
|
+
|
|
1045
|
+
|
|
1046
|
+
## [0.0.255](https://www.github.com/spinnaker/deck/compare/93c2f284dd421b0e8b8a686fa7e61631b5139b60...68dad3a0f7a71de153e0ad180356808d90c6409f) (2020-04-14)
|
|
1047
|
+
|
|
1048
|
+
|
|
1049
|
+
### Changes
|
|
1050
|
+
|
|
1051
|
+
chore(package): publish core 0.0.471 docker 0.0.55 ecs 0.0.255 [#8168](https://github.com/spinnaker/deck/pull/8168) ([68dad3a0](https://github.com/spinnaker/deck/commit/68dad3a0f7a71de153e0ad180356808d90c6409f))
|
|
1052
|
+
fix(ecs): Remove dummy metrics values from cluster detail pane [#8137](https://github.com/spinnaker/deck/pull/8137) ([509c036e](https://github.com/spinnaker/deck/commit/509c036edb408704f09b77f48b956c75a9125e15))
|
|
1053
|
+
|
|
1054
|
+
|
|
1055
|
+
|
|
1056
|
+
## [0.0.254](https://www.github.com/spinnaker/deck/compare/d956a2460bdfc301c0c9c9d93e5159ed8f00bfc8...93c2f284dd421b0e8b8a686fa7e61631b5139b60) (2020-03-31)
|
|
1057
|
+
|
|
1058
|
+
|
|
1059
|
+
### Changes
|
|
1060
|
+
|
|
1061
|
+
chore(package): publish amazon 0.0.249 core 0.0.468 ecs 0.0.254 google 0.0.12 kubernetes 0.0.36 [#8113](https://github.com/spinnaker/deck/pull/8113) ([93c2f284](https://github.com/spinnaker/deck/commit/93c2f284dd421b0e8b8a686fa7e61631b5139b60))
|
|
1062
|
+
fix(amazon,ecs,titus): Match targetGroup by name and account [#8098](https://github.com/spinnaker/deck/pull/8098) ([43c8075e](https://github.com/spinnaker/deck/commit/43c8075e07564f747fe75f0d72dd440e8c766112))
|
|
1063
|
+
|
|
1064
|
+
|
|
1065
|
+
|
|
1066
|
+
## [0.0.253](https://www.github.com/spinnaker/deck/compare/664d174a790d16c8df06d227d0b26dfbd9a759a4...d956a2460bdfc301c0c9c9d93e5159ed8f00bfc8) (2020-03-20)
|
|
1067
|
+
|
|
1068
|
+
|
|
1069
|
+
### Changes
|
|
1070
|
+
|
|
1071
|
+
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))
|
|
1072
|
+
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))
|
|
1073
|
+
fix(ecs): Update tooltip for using previous server group capacity [#8049](https://github.com/spinnaker/deck/pull/8049) ([17267c36](https://github.com/spinnaker/deck/commit/17267c3688d0469fcdb5e9e680a10f6912df95a7))
|
|
1074
|
+
|
|
1075
|
+
|
|
1076
|
+
|
|
1077
|
+
## [0.0.252](https://www.github.com/spinnaker/deck/compare/b4c5a0181a0ed29d51edd26cc172e60f53931f35...664d174a790d16c8df06d227d0b26dfbd9a759a4) (2020-03-12)
|
|
1078
|
+
|
|
1079
|
+
|
|
1080
|
+
### Changes
|
|
1081
|
+
|
|
1082
|
+
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))
|
|
1083
|
+
fix(ecs): use preferSourceCapacity instead of useSourceCapacity [#7949](https://github.com/spinnaker/deck/pull/7949) ([7316f7f5](https://github.com/spinnaker/deck/commit/7316f7f53f2e326375d1a24d2213861bf621b798))
|
|
1084
|
+
fix(ecs): add memory and cpu to container inputs [#7869](https://github.com/spinnaker/deck/pull/7869) ([94895941](https://github.com/spinnaker/deck/commit/9489594149735fc44883e1cee47ba291c5691cdd))
|
|
1085
|
+
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))
|
|
1086
|
+
fix(ecs): enable filtering on container image and target group [#7837](https://github.com/spinnaker/deck/pull/7837) ([907c9924](https://github.com/spinnaker/deck/commit/907c99240cfdacc28781b6c01c3c3e2a08615414))
|
|
1087
|
+
refactor(*): de-angularize confirmationModalService [#7759](https://github.com/spinnaker/deck/pull/7759) ([e6c6c662](https://github.com/spinnaker/deck/commit/e6c6c662b5326fcb184772c99f2212ce4336a1cb))
|
|
1088
|
+
refactor(*): use consistent styles on modal headers ([10b34915](https://github.com/spinnaker/deck/commit/10b34915860ed46f21d0179bf87c3b456de49c56))
|
|
1089
|
+
refactor(core): convert confirmation modal to react ([a59b2c32](https://github.com/spinnaker/deck/commit/a59b2c3264500080fad7caeb05054eef6f51d52c))
|
|
1090
|
+
feat(provider/ecs): add support for services with multiple target groups [#7692](https://github.com/spinnaker/deck/pull/7692) ([5c9ba2c3](https://github.com/spinnaker/deck/commit/5c9ba2c34bd53f2855dab6b4e5c6d0d1a6666a77))
|
|
1091
|
+
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))
|
|
1092
|
+
chore(core): upgrade to latest prettier [#7713](https://github.com/spinnaker/deck/pull/7713) ([6291f858](https://github.com/spinnaker/deck/commit/6291f858cb111d9c65affeb82ddd840f05c57b65))
|
|
1093
|
+
refactor(eslint): Fix all 'prefer-const' eslint rule violations ([90aa4775](https://github.com/spinnaker/deck/commit/90aa47754bc8815eb1bdfcceb4d05c9e1cdf325f))
|
|
1094
|
+
refactor(eslint): Fix all 'one-var' eslint rule violations ([d070bd45](https://github.com/spinnaker/deck/commit/d070bd45ff3e185999e863e3f48c01f63eb45733))
|
|
1095
|
+
refactor(eslint): Fix all 'no-var' eslint rule violations ([17487016](https://github.com/spinnaker/deck/commit/174870161a5a09ab7f15c74cb84d0f3e196cd7cb))
|
|
1096
|
+
chore(eslint): remove tslint ([9400826b](https://github.com/spinnaker/deck/commit/9400826bcb119cf7681e1ce37092b9fdd8b76b1b))
|
|
1097
|
+
refactor(angularjs): use ES6 to import angular - migrate from `const angular = require('angular')` to `import * as angular from 'angular'` - Where possible, migrate from `import angular from 'angular'; angular.module('asdf')` to `import { module } from 'angular'; module('asdf')` ([88b8f4ae](https://github.com/spinnaker/deck/commit/88b8f4ae0b9e96ac8d8dbdeff592f3787f0617cb))
|
|
1098
|
+
refactor(angularjs): use ES6 imports for angularjs module deps - migrate from `require('@uirouter/angularjs').default` to import UIROUTER_ANGULARJS from '@uirouter/angularjs' - migrate from `require('angular-ui-bootstrap')` to import ANGULAR_UI_BOOTSTRAP from 'angular-ui-bootstrap' ([a076dc12](https://github.com/spinnaker/deck/commit/a076dc1280b56affcd30cdbea68a84fb7d5ba3f1))
|
|
1099
|
+
refactor(angularjs): Import angularjs module dependencies by name - Migrate angularjs module dependencies to import the exported string identifier, not via require('module').name ([ac1c86eb](https://github.com/spinnaker/deck/commit/ac1c86ebbc72e6d2d83eb57d6710c6ae2651ecc0))
|
|
1100
|
+
refactor(angularjs): Always export the ng module name, not the module itself ([784d64b6](https://github.com/spinnaker/deck/commit/784d64b66a6410e622803b4b0519f7050e9c5f82))
|
|
1101
|
+
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))
|
|
1102
|
+
feat(typescript): enable allowJs and allowSyntheticDefaultImports ([7ef58b6c](https://github.com/spinnaker/deck/commit/7ef58b6c122f9ce91eab95d5f444622a710ff968))
|
|
1103
|
+
refactor(*): Remove exports-loader from n3-chart import ([f0613c1b](https://github.com/spinnaker/deck/commit/f0613c1b1648f0c2ea54623cb535a6d54bea2355))
|
|
1104
|
+
fix(angularJS): Fix all remaining non-strict angularJS DI code via @spinnaker/strictdi linter rule ([c233af0e](https://github.com/spinnaker/deck/commit/c233af0e4ab2268ab1835177ecf85122aa47e7e6))
|
|
1105
|
+
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))
|
|
1106
|
+
feat(managed): Update resource indicators to use new data source ([34a3b00b](https://github.com/spinnaker/deck/commit/34a3b00beea0287a68a05014862351c0f5904afa))
|
|
1107
|
+
feat(ui): Show health check url beside target group [#7520](https://github.com/spinnaker/deck/pull/7520) ([ed7c4458](https://github.com/spinnaker/deck/commit/ed7c44589cfbf482047a0f47d30df97165053aa4))
|
|
1108
|
+
feat(ecs): Add security group view for ECS [#7363](https://github.com/spinnaker/deck/pull/7363) ([fc3a6472](https://github.com/spinnaker/deck/commit/fc3a64728286d3f859d952143e0a3fb4546d7d51))
|
|
1109
|
+
fix(ecs): Fix creation of new ECS server group from existing [#7338](https://github.com/spinnaker/deck/pull/7338) ([3ecf1df7](https://github.com/spinnaker/deck/commit/3ecf1df70f15921fb625097e0f9304950a431a21))
|
|
1110
|
+
|
|
1111
|
+
|
|
1112
|
+
|
|
1113
|
+
## [0.0.251](https://www.github.com/spinnaker/deck/compare/3c62118981623696e99535db79b581b5fbb6b26e...b4c5a0181a0ed29d51edd26cc172e60f53931f35) (2019-08-07)
|
|
1114
|
+
|
|
1115
|
+
|
|
1116
|
+
### Changes
|
|
1117
|
+
|
|
1118
|
+
chore(ecs): Bump version to 0.0.251 ([b4c5a018](https://github.com/spinnaker/deck/commit/b4c5a0181a0ed29d51edd26cc172e60f53931f35))
|
|
1119
|
+
feat(ecs): Add CPU-binpack placement strategies [#7288](https://github.com/spinnaker/deck/pull/7288) ([fba28fbe](https://github.com/spinnaker/deck/commit/fba28fbe61b342a02447a7292c79eff65bfcf55a))
|
|
1120
|
+
|
|
1121
|
+
|
|
1122
|
+
|
|
1123
|
+
## [0.0.250](https://www.github.com/spinnaker/deck/compare/3eafc27ab325d57b5943eb32dafad5fb76913c59...3c62118981623696e99535db79b581b5fbb6b26e) (2019-07-03)
|
|
1124
|
+
|
|
1125
|
+
|
|
1126
|
+
### Changes
|
|
1127
|
+
|
|
1128
|
+
chore(ecs): Bump version to 0.0.250 ([3c621189](https://github.com/spinnaker/deck/commit/3c62118981623696e99535db79b581b5fbb6b26e))
|
|
1129
|
+
fix(ecs): Disable artifact selection outside of pipelines [#7170](https://github.com/spinnaker/deck/pull/7170) ([ea730f47](https://github.com/spinnaker/deck/commit/ea730f47052fa597cfe381b713f636e3775234fd))
|
|
1130
|
+
fix(ecs): Set viewState.mode when creating server group for pipeline [#7169](https://github.com/spinnaker/deck/pull/7169) ([58b98674](https://github.com/spinnaker/deck/commit/58b986741bd9928ac117d5965b29d9a52c1eed22))
|
|
1131
|
+
feat(esc): Add support for task definition artifacts [#7162](https://github.com/spinnaker/deck/pull/7162) ([5401a87f](https://github.com/spinnaker/deck/commit/5401a87f9abcb750b19ba8c7bf3ccc56093a9e20))
|
|
1132
|
+
fix(ecs): add missing context images when building new server group for pipeline [#7123](https://github.com/spinnaker/deck/pull/7123) ([1532db48](https://github.com/spinnaker/deck/commit/1532db48f8a12dc937f5f22ee43f197168745970))
|
|
1133
|
+
chore(package): Just Update Prettier™ ([cdd6f237](https://github.com/spinnaker/deck/commit/cdd6f2379859d3c2b13bac59aa470c08b391a865))
|
|
1134
|
+
|
|
1135
|
+
|
|
1136
|
+
|
|
1137
|
+
## [0.0.249](https://www.github.com/spinnaker/deck/compare/e96f2de67ebe012a84afad610768c50f05e15c7a...3eafc27ab325d57b5943eb32dafad5fb76913c59) (2019-06-05)
|
|
1138
|
+
|
|
1139
|
+
|
|
1140
|
+
### Changes
|
|
1141
|
+
|
|
1142
|
+
chore(ecs): Bump version to 0.0.249 ([3eafc27a](https://github.com/spinnaker/deck/commit/3eafc27ab325d57b5943eb32dafad5fb76913c59))
|
|
1143
|
+
refactor(*): make accountExtractor return an array of strings [#7068](https://github.com/spinnaker/deck/pull/7068) ([8398d770](https://github.com/spinnaker/deck/commit/8398d7706951ce567c352e5f96351366103ef2e3))
|
|
1144
|
+
feat(ecs): service discovery configuration [#6899](https://github.com/spinnaker/deck/pull/6899) ([1c61cb2e](https://github.com/spinnaker/deck/commit/1c61cb2ecab6b7c8be182fcd111c8e867665ce8f))
|
|
1145
|
+
feat(ecs): Configuration for platform version & placement constraints [#6906](https://github.com/spinnaker/deck/pull/6906) ([654fd3a7](https://github.com/spinnaker/deck/commit/654fd3a7c2b8a01008b40101bed3c16fe8c4c7ce))
|
|
1146
|
+
feat(ecs): Configure tags [#6905](https://github.com/spinnaker/deck/pull/6905) ([c550d825](https://github.com/spinnaker/deck/commit/c550d8257e2bac9d9ef2169c9f0f9fc1e70133db))
|
|
1147
|
+
fix(ecs): populate load balancers when configuring cmd [#6778](https://github.com/spinnaker/deck/pull/6778) ([269d0053](https://github.com/spinnaker/deck/commit/269d00531c1a62ee36a5ac1c4260f7968cd4611f))
|
|
1148
|
+
fix(ecs): Fix name of health check grace period attribute [#6746](https://github.com/spinnaker/deck/pull/6746) ([6a76b5f1](https://github.com/spinnaker/deck/commit/6a76b5f16205cbf74cfa778557360ab9b99bddf8))
|
|
1149
|
+
feat(ecs): docker image selection [#6687](https://github.com/spinnaker/deck/pull/6687) ([1c9e0754](https://github.com/spinnaker/deck/commit/1c9e07543aaefd36d8e1a5ea9d51321c350b57a8))
|
|
1150
|
+
fix(ecs): Remove unused cacheInitializer injection [#6681](https://github.com/spinnaker/deck/pull/6681) ([d63dc6d1](https://github.com/spinnaker/deck/commit/d63dc6d1a75c99830cb53f817716fc0ddf38a160))
|
|
1151
|
+
refactor(*): remove unused local storage caches [#6665](https://github.com/spinnaker/deck/pull/6665) ([e2b4d8e9](https://github.com/spinnaker/deck/commit/e2b4d8e9371d5d2f1f9b60e2a592e10b47df73e2))
|
|
1152
|
+
fix(ecs/instance): restore accidentally deleted section in instance details ([2e3fad27](https://github.com/spinnaker/deck/commit/2e3fad27862dc3321db95e53201d9a928d3dd419))
|
|
1153
|
+
chore(prettier): Just Use Prettier™ [#6600](https://github.com/spinnaker/deck/pull/6600) ([7d5fc346](https://github.com/spinnaker/deck/commit/7d5fc346bca54c5d53f9eb46d823cd993c102058))
|
|
1154
|
+
fix(html): Fix various invalid HTML [#6599](https://github.com/spinnaker/deck/pull/6599) ([04bb4a01](https://github.com/spinnaker/deck/commit/04bb4a01c2d988aab5b5b8ae6e3aadbc59214898))
|
|
1155
|
+
chore(prettier): Just Use Prettier™ ([5cf6c79d](https://github.com/spinnaker/deck/commit/5cf6c79da63404bb7238291d38bb7f5cfd10c26b))
|
|
1156
|
+
chore(angularjs): Do not use .component('foo', new Foo()) ([3ffa4fb7](https://github.com/spinnaker/deck/commit/3ffa4fb7498df815014d61071e8588f0b34bf8b9))
|
|
1157
|
+
chore(angularjs): Remove all 'ngInject'; in favor of explicit DI annotation ([cc52bee0](https://github.com/spinnaker/deck/commit/cc52bee0b9956693f948806322658f225efa5546))
|
|
1158
|
+
chore(prettier): Just Use Prettier™ ([b6bab1e1](https://github.com/spinnaker/deck/commit/b6bab1e16bb46697fec347cd30934f00fb2e9807))
|
|
1159
|
+
chore(angularjs): Explicitly annotate all AngularJS injection points ([f3fd790e](https://github.com/spinnaker/deck/commit/f3fd790e20a4c3056edcb2c41282517e1cf35004))
|
|
1160
|
+
chore(webpack): Switch to TerserPlugin. Split bundles into ~5mb chunks ([a35088ab](https://github.com/spinnaker/deck/commit/a35088ab28cc3b25c9e6731f6fb70bf7d0e14ef0))
|
|
1161
|
+
chore(typescript): Switch module from 'commonjs' to 'esnext' to emit raw dynamic 'import()' ([5c49dd2a](https://github.com/spinnaker/deck/commit/5c49dd2ab3c4226295a7e8041c25dabdbeee6a2c))
|
|
1162
|
+
chore(package): Add .npmignore to all packages ([0451046c](https://github.com/spinnaker/deck/commit/0451046c241b450ae4b05df0b67b61758c16acce))
|
|
1163
|
+
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))
|
|
1164
|
+
refactor(*): Don't use js or ts file extension in require() ([35be1f08](https://github.com/spinnaker/deck/commit/35be1f0872f5958514c920ee97510d36484e33eb))
|
|
1165
|
+
feat(ecs): Add option to copy scaling policies from previous server group [#6251](https://github.com/spinnaker/deck/pull/6251) ([56ce3218](https://github.com/spinnaker/deck/commit/56ce3218087384aa8cf157a546daecb11bab0b8b))
|
|
1166
|
+
fix(*): allow modal to stay open on auto-close [#6329](https://github.com/spinnaker/deck/pull/6329) ([e802c451](https://github.com/spinnaker/deck/commit/e802c4515726e74f0f2157bde292fc43a6b46271))
|
|
1167
|
+
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))
|
|
1168
|
+
fix(provider/ecs): Add memory limit to server group details [#6135](https://github.com/spinnaker/deck/pull/6135) ([5d0d72a7](https://github.com/spinnaker/deck/commit/5d0d72a73f8b95eec5e324271f5d044f215aa5f4))
|
|
1169
|
+
chore(*): Add core alias to module tsconfigs ([6b8188bb](https://github.com/spinnaker/deck/commit/6b8188bb54ea2e70987841079a8aff7debd8bd66))
|
|
1170
|
+
feat(ecs): support private registry credentials [#5799](https://github.com/spinnaker/deck/pull/5799) ([190064ff](https://github.com/spinnaker/deck/commit/190064ff934b90fbc456612997c8d81c57855dc6))
|
|
1171
|
+
chore(package): prepare -> prepublishOnly for everything [#5806](https://github.com/spinnaker/deck/pull/5806) ([06f45b5c](https://github.com/spinnaker/deck/commit/06f45b5c0da71227e4f1d7bb9e7187e95231f4d2))
|
|
1172
|
+
chore(prettier): Just Update Prettier™ [#5754](https://github.com/spinnaker/deck/pull/5754) ([709f30f6](https://github.com/spinnaker/deck/commit/709f30f6eff0c8862cb8736465e4fd152abd693c))
|
|
1173
|
+
fix(ecs): angular is declared as global, so let's not redefine it [#5743](https://github.com/spinnaker/deck/pull/5743) ([5207bdc7](https://github.com/spinnaker/deck/commit/5207bdc7c952a173c90b872076754d3ac413f9b5))
|
|
1174
|
+
feat(provider/ecs): Added support for environment variables [#5739](https://github.com/spinnaker/deck/pull/5739) ([0a5ebadf](https://github.com/spinnaker/deck/commit/0a5ebadf212ab982802db24efe41836db209afd2))
|
|
1175
|
+
feat(provider/ecs): Added support for logDriver, logOptions, dockerLabels [#5668](https://github.com/spinnaker/deck/pull/5668) ([4ed49d29](https://github.com/spinnaker/deck/commit/4ed49d29d5bd7cdd86e5454fb357ed67e1f53dca))
|
|
1176
|
+
chore(ecs): fixed typing [#5724](https://github.com/spinnaker/deck/pull/5724) ([82769032](https://github.com/spinnaker/deck/commit/827690324c3ef16946b67ce8ed3972d8a011041b))
|
|
1177
|
+
fix(ecs): fixed ecs module lib path [#5712](https://github.com/spinnaker/deck/pull/5712) ([61473733](https://github.com/spinnaker/deck/commit/6147373310d5460e57332d382f38868c741f0cbc))
|
|
1178
|
+
feat(provider/ecs): Add launch type option to support Fargate [#5667](https://github.com/spinnaker/deck/pull/5667) ([d2583e36](https://github.com/spinnaker/deck/commit/d2583e364278f831a55685dc9453119a20334eb8))
|
|
1179
|
+
fix(provider/ecs): Now satisfying the expectation of a securityGroup.transformer for ECS [#5669](https://github.com/spinnaker/deck/pull/5669) ([ee583eea](https://github.com/spinnaker/deck/commit/ee583eeae4b39507e49b808bf076a726f5fcb3f5))
|
|
1180
|
+
feat(provider/ecs): Add option to associate public IP address [#5666](https://github.com/spinnaker/deck/pull/5666) ([f459eff4](https://github.com/spinnaker/deck/commit/f459eff4e22cf1e315ff6795199b3162d8883479))
|
|
1181
|
+
fix(ecs): Fix core import ([024740e3](https://github.com/spinnaker/deck/commit/024740e36f1462358dc221c1be8dc402becfe6f8))
|
|
1182
|
+
feat(provider/ecs): Added server group events [#5566](https://github.com/spinnaker/deck/pull/5566) ([3adc25b0](https://github.com/spinnaker/deck/commit/3adc25b095fa11f7410bbe7158087b98f9f67bc8))
|
|
1183
|
+
fix(ecs/deploy): Clarified binpack strategy as being memory binpack [#5539](https://github.com/spinnaker/deck/pull/5539) ([1a990b56](https://github.com/spinnaker/deck/commit/1a990b5612d8197eaf46af2c15aaf87584d72c8e))
|
|
1184
|
+
feat(provider/ecs): Added support for ENIs in the instance details view [#5626](https://github.com/spinnaker/deck/pull/5626) ([d53073a9](https://github.com/spinnaker/deck/commit/d53073a96e728e6e23e83e059a06afbc1d78c958))
|
|
1185
|
+
feat(provider/ecs): Added support for network mode and health grace period [#5575](https://github.com/spinnaker/deck/pull/5575) ([e0a878f1](https://github.com/spinnaker/deck/commit/e0a878f1f676a9c6e83553583d754ba4589c8ca7))
|
|
1186
|
+
refactor(core): Remove unused addWatches from clone server group ([17af347d](https://github.com/spinnaker/deck/commit/17af347dd5ede045f8ac407540888d57dc774032))
|