@spinnaker/core 0.15.1 → 0.18.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 +49 -0
- package/dist/config/settings.d.ts +0 -1
- package/dist/domain/IPipeline.d.ts +1 -0
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/pipeline/triggers/QuietPeriodBadge.d.ts +2 -8
- package/dist/pipeline/triggers/TriggersTag.d.ts +2 -11
- package/dist/pipeline/triggers/useQuietPeriod.hook.d.ts +7 -0
- package/package.json +3 -3
- package/src/application/applications.state.provider.ts +1 -1
- package/src/application/modal/createApplication.modal.controller.js +7 -6
- package/src/application/modal/createApplication.modal.controller.spec.js +1 -0
- package/src/application/search/Applications.tsx +48 -0
- package/src/config/settings.ts +0 -1
- package/src/domain/IPipeline.ts +1 -0
- package/src/help/help.contents.ts +2 -0
- package/src/help/helpContents.registry.spec.ts +8 -0
- package/src/insight/InsightMenu.tsx +3 -0
- package/src/pipeline/config/triggers/ExecutionOptionsPageContent.spec.tsx +90 -0
- package/src/pipeline/config/triggers/ExecutionOptionsPageContent.tsx +27 -2
- package/src/pipeline/details/StageFailureMessage.tsx +25 -10
- package/src/pipeline/triggers/QuietPeriodBadge.tsx +23 -34
- package/src/pipeline/triggers/TriggersTag.tsx +34 -64
- package/src/pipeline/triggers/useQuietPeriod.hook.ts +43 -0
- package/src/search/infrastructure/infrastructure.controller.js +3 -0
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.18.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.17.0...@spinnaker/core@0.18.0) (2022-01-12)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **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))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* **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))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [0.17.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.16.1...@spinnaker/core@0.17.0) (2021-12-11)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **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))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## [0.16.1](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.16.0...@spinnaker/core@0.16.1) (2021-12-08)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Bug Fixes
|
|
37
|
+
|
|
38
|
+
* **core:** conditionally hide expression evaluation warning messages ([#9771](https://github.com/spinnaker/deck/issues/9771)) ([7e3dd50](https://github.com/spinnaker/deck/commit/7e3dd5053ccdb06ce067303062f90ae82b56bfc8))
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
# [0.16.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.15.1...@spinnaker/core@0.16.0) (2021-12-01)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
### Features
|
|
48
|
+
|
|
49
|
+
* **core:** Prepopulate name for app creation ([#9718](https://github.com/spinnaker/deck/issues/9718)) ([7460fe6](https://github.com/spinnaker/deck/commit/7460fe67c3a5caa755f19d0c674efdf0bcd28141))
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
6
55
|
## [0.15.1](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.15.0...@spinnaker/core@0.15.1) (2021-11-12)
|
|
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;
|