@spinnaker/core 0.22.1 → 0.23.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 +31 -0
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/pipeline/config/stages/bake/bakeStageChooseManagedImage.component.d.ts +16 -0
- package/package.json +2 -2
- package/src/config/settings.ts +1 -2
- package/src/help/HelpMenu.tsx +1 -2
- package/src/help/help.contents.ts +6 -2
- package/src/pipeline/config/stages/bake/bakeStage.module.js +2 -0
- package/src/pipeline/config/stages/bake/bakeStageChooseManagedImage.component.html +12 -0
- package/src/pipeline/config/stages/bake/bakeStageChooseManagedImage.component.ts +49 -0
- package/src/pipeline/config/stages/bake/bakeStageChooseOs.component.html +0 -1
- package/src/pipeline/config/stages/bakeManifest/helm/BakeHelmConfigForm.spec.tsx +44 -0
- package/src/pipeline/config/stages/bakeManifest/helm/BakeHelmConfigForm.tsx +14 -0
- package/src/pipeline/config/stages/pipeline/pipelineStage.html +3 -0
- package/src/pipeline/executions/execution/ExecutionMarker.tsx +17 -11
- package/src/widgets/accountNamespaceClusterSelector.component.js +59 -57
- package/src/widgets/accountRegionClusterSelector.component.js +96 -93
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,37 @@
|
|
|
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.23.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.22.2...@spinnaker/core@0.23.0) (2023-02-01)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **core:** Missing config elements after Angular 1.8 update ([#9936](https://github.com/spinnaker/deck/issues/9936)) ([884665a](https://github.com/spinnaker/deck/commit/884665a78cb91bb01e533fdd8be65a3a5de19019))
|
|
12
|
+
* **helm:** update tooltip to not include Chart.yaml ([#9934](https://github.com/spinnaker/deck/issues/9934)) ([a55f6f3](https://github.com/spinnaker/deck/commit/a55f6f335b51f76f3a8a79ac698884253d7b1076))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **Azure:** Update UI to handle custom and managed images. ([#9910](https://github.com/spinnaker/deck/issues/9910)) ([a9057b4](https://github.com/spinnaker/deck/commit/a9057b44f035fc76a7eb461cd2c28c420791457c))
|
|
18
|
+
* **core/bake:** support include crds flag in Helm3 ([#9903](https://github.com/spinnaker/deck/issues/9903)) ([a10f11d](https://github.com/spinnaker/deck/commit/a10f11d33f3135963786083003e33db40f3e0b18))
|
|
19
|
+
* **core/pipeline:** Add missing flag `skipDownstreamOutput` in pipeline stage ([#9930](https://github.com/spinnaker/deck/issues/9930)) ([deba01e](https://github.com/spinnaker/deck/commit/deba01ed7ba275194f51bcc0cbf414bbf3266562))
|
|
20
|
+
* **pipeline:** added feature flag for pipeline when mj stage child ([#9914](https://github.com/spinnaker/deck/issues/9914)) ([4b6fd53](https://github.com/spinnaker/deck/commit/4b6fd53c4674b37c1c9742b9a9fdedb8e1fda5ca))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## [0.22.2](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.22.1...@spinnaker/core@0.22.2) (2022-10-21)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
|
|
31
|
+
* **links:** update link to spinnaker release changelog ([#9897](https://github.com/spinnaker/deck/issues/9897)) ([1591513](https://github.com/spinnaker/deck/commit/159151368e99da0e990d607039268e20b8b1a8b2))
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
6
37
|
## [0.22.1](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.22.0...@spinnaker/core@0.22.1) (2022-10-06)
|
|
7
38
|
|
|
8
39
|
|