@spinnaker/core 0.16.0 → 0.19.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 CHANGED
@@ -3,6 +3,55 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.19.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.18.0...@spinnaker/core@0.19.0) (2022-01-22)
7
+
8
+
9
+ ### Features
10
+
11
+ * **core:** HTML5 Routing ([#9802](https://github.com/spinnaker/deck/issues/9802)) ([d5a077a](https://github.com/spinnaker/deck/commit/d5a077a4b3765ba3e45ec53242bfac187cc96712))
12
+
13
+
14
+
15
+
16
+
17
+ # [0.18.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.17.0...@spinnaker/core@0.18.0) (2022-01-12)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **core:** ensure that users are not warned of their success ([#9794](https://github.com/spinnaker/deck/issues/9794)) ([333677b](https://github.com/spinnaker/deck/commit/333677b9c9508ae16e91a02e5b0416c7bf217431))
23
+
24
+
25
+ ### Features
26
+
27
+ * **core/pipeline:** Load quiet period configuration from Gate, not from SETTINGS ([#9788](https://github.com/spinnaker/deck/issues/9788)) ([75694bd](https://github.com/spinnaker/deck/commit/75694bdd55c9eaf3af8d9b531ee0ac4a471733c5))
28
+
29
+
30
+
31
+
32
+
33
+ # [0.17.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.16.1...@spinnaker/core@0.17.0) (2021-12-11)
34
+
35
+
36
+ ### Features
37
+
38
+ * **pipeline executions/deck:** Add support for max concurrent pipeli… ([#9777](https://github.com/spinnaker/deck/issues/9777)) ([525dc78](https://github.com/spinnaker/deck/commit/525dc788f8fb6508a404023d816df4d01e4de0c2))
39
+
40
+
41
+
42
+
43
+
44
+ ## [0.16.1](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.16.0...@spinnaker/core@0.16.1) (2021-12-08)
45
+
46
+
47
+ ### Bug Fixes
48
+
49
+ * **core:** conditionally hide expression evaluation warning messages ([#9771](https://github.com/spinnaker/deck/issues/9771)) ([7e3dd50](https://github.com/spinnaker/deck/commit/7e3dd5053ccdb06ce067303062f90ae82b56bfc8))
50
+
51
+
52
+
53
+
54
+
6
55
  # [0.16.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.15.1...@spinnaker/core@0.16.0) (2021-12-01)
7
56
 
8
57
 
@@ -153,7 +153,6 @@ export interface ISpinnakerSettings {
153
153
  [key: string]: IProviderSettings;
154
154
  };
155
155
  pubsubProviders: string[];
156
- quietPeriod: [string | number, string | number];
157
156
  resetProvider: (provider: string) => () => void;
158
157
  resetToOriginal: () => void;
159
158
  searchVersion: 1 | 2;
@@ -15,6 +15,7 @@ export interface IPipeline {
15
15
  locked?: IPipelineLock;
16
16
  limitConcurrent: boolean;
17
17
  manualStartAlert?: IPipelineManualStartAlert;
18
+ maxConcurrentExecutions?: number;
18
19
  migrationStatus?: string;
19
20
  name: string;
20
21
  notifications?: INotification[];