@spinnaker/core 0.15.0 → 0.17.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 +44 -0
- package/dist/domain/IPipeline.d.ts +1 -0
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- 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/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/stages/bakeManifest/helm/BakeHelmConfigForm.spec.tsx +46 -1
- package/src/pipeline/config/stages/bakeManifest/helm/BakeHelmConfigForm.tsx +36 -6
- 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/search/infrastructure/infrastructure.controller.js +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,50 @@
|
|
|
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.17.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.16.1...@spinnaker/core@0.17.0) (2021-12-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **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))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.16.1](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.16.0...@spinnaker/core@0.16.1) (2021-12-08)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **core:** conditionally hide expression evaluation warning messages ([#9771](https://github.com/spinnaker/deck/issues/9771)) ([7e3dd50](https://github.com/spinnaker/deck/commit/7e3dd5053ccdb06ce067303062f90ae82b56bfc8))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# [0.16.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.15.1...@spinnaker/core@0.16.0) (2021-12-01)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* **core:** Prepopulate name for app creation ([#9718](https://github.com/spinnaker/deck/issues/9718)) ([7460fe6](https://github.com/spinnaker/deck/commit/7460fe67c3a5caa755f19d0c674efdf0bcd28141))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
## [0.15.1](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.15.0...@spinnaker/core@0.15.1) (2021-11-12)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
### Bug Fixes
|
|
43
|
+
|
|
44
|
+
* **bake:** make helm chart path visible for git/repo artifact ([#9768](https://github.com/spinnaker/deck/issues/9768)) ([9c4e438](https://github.com/spinnaker/deck/commit/9c4e438d4f8fd6c9b72f6648347bb68b93dd8139))
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
6
50
|
# [0.15.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.14.2...@spinnaker/core@0.15.0) (2021-11-03)
|
|
7
51
|
|
|
8
52
|
|