@spinnaker/core 0.25.0 → 0.27.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 +41 -0
- package/dist/application/config/defaultTagFilter/DefaultTagFilterConfig.d.ts +27 -0
- package/dist/application/config/defaultTagFilter/defaultTagFilterConfig.component.d.ts +1 -0
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/pipeline/executions/Executions.d.ts +1 -0
- package/package.json +8 -5
- package/src/application/config/applicationConfig.controller.js +26 -0
- package/src/application/config/applicationConfig.view.html +9 -0
- package/src/application/config/defaultTagFilter/DefaultTagFilterConfig.spec.tsx +75 -0
- package/src/application/config/defaultTagFilter/DefaultTagFilterConfig.tsx +161 -0
- package/src/application/config/defaultTagFilter/defaultTagFilterConfig.component.ts +15 -0
- package/src/application/config/defaultTagFilter/defaultTagFilterConfig.less +8 -0
- package/src/pipeline/config/stages/bakeManifest/helm/BakeHelmConfigForm.tsx +22 -0
- package/src/pipeline/details/StageFailureMessage.tsx +10 -24
- package/src/pipeline/executions/Executions.tsx +13 -0
- package/src/pipeline/status/ExecutionCancellationReason.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,47 @@
|
|
|
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.27.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.26.0...@spinnaker/core@0.27.0) (2023-10-16)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **publish:** set access config in deck libraries ([#10049](https://github.com/spinnaker/deck/issues/10049)) ([2a5ebe2](https://github.com/spinnaker/deck/commit/2a5ebe25662eeb9d41b5071749266bf9d6d51104))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* **helm/bake:** Add additional input fields where we can fill in details of the APIs versions ([#10036](https://github.com/spinnaker/deck/issues/10036)) ([d968183](https://github.com/spinnaker/deck/commit/d9681830244ecd1c70cc02459f148d0822b7187e))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [0.26.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.25.0...@spinnaker/core@0.26.0) (2023-09-06)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **core:** Add ability to set Default Tag filters for an application in application config ([#10020](https://github.com/spinnaker/deck/issues/10020)) ([c768e88](https://github.com/spinnaker/deck/commit/c768e88fbc893d0bd5dc86959320a7b7d67443e5))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Reverts
|
|
31
|
+
|
|
32
|
+
* Revert "fix(core): conditionally hide expression evaluation warning messages (#9771)" (#10021) ([62033d0](https://github.com/spinnaker/deck/commit/62033d0fc6f0a953bd3f01e4452664b92fd02dfb)), closes [#9771](https://github.com/spinnaker/deck/issues/9771) [#10021](https://github.com/spinnaker/deck/issues/10021)
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
# 3.15.0 (2023-07-27)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Features
|
|
40
|
+
|
|
41
|
+
* **core:** set Cancellation Reason to be expanded by default ([#10018](https://github.com/spinnaker/deck/issues/10018)) ([db06e88](https://github.com/spinnaker/deck/commit/db06e88bada70fa4065f56fc33af7207943415c5))
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
6
47
|
# [0.25.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.24.1...@spinnaker/core@0.25.0) (2023-07-20)
|
|
7
48
|
|
|
8
49
|
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import './defaultTagFilterConfig.less';
|
|
3
|
+
export interface IDefaultTagFilterConfig {
|
|
4
|
+
tagName: string;
|
|
5
|
+
tagValue: string;
|
|
6
|
+
}
|
|
7
|
+
export interface IDefaultTagFilterProps {
|
|
8
|
+
defaultTagFilterConfigs: IDefaultTagFilterConfig[];
|
|
9
|
+
isSaving: boolean;
|
|
10
|
+
saveError: boolean;
|
|
11
|
+
updateDefaultTagFilterConfigs: (defaultTagFilterConfigs: IDefaultTagFilterConfig[]) => void;
|
|
12
|
+
}
|
|
13
|
+
export interface IDefaultTagFilterState {
|
|
14
|
+
defaultTagFilterConfigsEditing: IDefaultTagFilterConfig[];
|
|
15
|
+
}
|
|
16
|
+
export declare class DefaultTagFilterConfig extends React.Component<IDefaultTagFilterProps, IDefaultTagFilterState> {
|
|
17
|
+
static defaultProps: Partial<IDefaultTagFilterProps>;
|
|
18
|
+
constructor(props: IDefaultTagFilterProps);
|
|
19
|
+
private onTagNameChange;
|
|
20
|
+
private onTagValueChange;
|
|
21
|
+
private addFilterTag;
|
|
22
|
+
private removeFilterTag;
|
|
23
|
+
private isDirty;
|
|
24
|
+
private onRevertClicked;
|
|
25
|
+
private onSaveClicked;
|
|
26
|
+
render(): JSX.Element;
|
|
27
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const DEFAULT_TAG_FILTER_CONFIG = "spinnaker.micros.application.defaultTagFilterConfig.component";
|