@spinnaker/core 0.29.0 → 2025.0.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 +11 -0
- package/dist/config/settings.d.ts +2 -0
- package/dist/deploymentStrategy/strategies/redblack/AdditionalFields.d.ts +9 -2
- package/dist/domain/ICloudMetric.d.ts +5 -1
- package/dist/forms/mapObjectEditor/mapObjectEditor.component.d.ts +2 -0
- package/dist/index.js +71738 -328
- package/dist/index.js.map +1 -1
- package/dist/managed/constraints/registry.d.ts +1 -1
- package/dist/managed/resources/resourceRegistry.d.ts +1 -1
- package/package.json +4 -3
- package/src/config/settings.ts +3 -0
- package/src/deploymentStrategy/strategies/redblack/AdditionalFields.tsx +97 -68
- package/src/domain/ICloudMetric.ts +5 -1
- package/src/forms/forms.module.js +2 -0
- package/src/forms/mapObjectEditor/mapObjectEditor.component.html +56 -0
- package/src/forms/mapObjectEditor/mapObjectEditor.component.js +113 -0
- package/src/forms/mapObjectEditor/mapObjectEditor.component.less +9 -0
- package/src/forms/mapObjectEditor/mapObjectEditor.component.spec.js +85 -0
- package/src/pipeline/config/stages/evaluateVariables/ExecutionAndStagePicker.tsx +5 -1
- package/src/pipeline/config/stages/pipeline/pipelineStage.html +11 -0
- package/src/pipeline/config/stages/pipeline/pipelineStage.js +12 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.29.1](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.29.0...@spinnaker/core@0.29.1) (2024-06-10)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **redblack:** fixing redblack onchange values ([#10107](https://github.com/spinnaker/deck/issues/10107)) ([443408e](https://github.com/spinnaker/deck/commit/443408e7f6404b10d195b146f2f68fe926c2413a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [0.29.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.28.0...@spinnaker/core@0.29.0) (2024-05-10)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -67,6 +67,7 @@ export interface IFeatures {
|
|
|
67
67
|
functions?: boolean;
|
|
68
68
|
kubernetesRawResources?: boolean;
|
|
69
69
|
renderPipelineStageThreshold?: number;
|
|
70
|
+
deployManifestStageAdvancedConfiguration?: boolean;
|
|
70
71
|
}
|
|
71
72
|
export interface IDockerInsightSettings {
|
|
72
73
|
enabled: boolean;
|
|
@@ -139,6 +140,7 @@ export interface ISpinnakerSettings {
|
|
|
139
140
|
manifestBasePath: string;
|
|
140
141
|
urls?: Partial<IManagedDeliveryURLs>;
|
|
141
142
|
};
|
|
143
|
+
maxFetchHistoryOnEvaluateVariables?: number;
|
|
142
144
|
maxPipelineAgeDays: number;
|
|
143
145
|
newApplicationDefaults: INewApplicationDefaults;
|
|
144
146
|
notifications: INotificationSettings;
|
|
@@ -1,7 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import type { IDeploymentStrategyAdditionalFieldsProps } from '../../deploymentStrategy.registry';
|
|
3
3
|
import type { IRedBlackCommand } from './redblack.strategy';
|
|
4
4
|
export interface IRedBlackStrategyAdditionalFieldsProps extends IDeploymentStrategyAdditionalFieldsProps {
|
|
5
5
|
command: IRedBlackCommand;
|
|
6
6
|
}
|
|
7
|
-
export declare
|
|
7
|
+
export declare class AdditionalFields extends React.Component<IRedBlackStrategyAdditionalFieldsProps> {
|
|
8
|
+
private rollbackOnFailureChange;
|
|
9
|
+
private scaleDownChange;
|
|
10
|
+
private maxRemainingAsgsChange;
|
|
11
|
+
private delayBeforeDisableSecChange;
|
|
12
|
+
private delayBeforeScaleDownSecChange;
|
|
13
|
+
render(): JSX.Element;
|
|
14
|
+
}
|
|
@@ -9,7 +9,11 @@ export interface IMetricAlarmDimension {
|
|
|
9
9
|
}
|
|
10
10
|
interface IDataPoint {
|
|
11
11
|
timestamp: number;
|
|
12
|
-
average
|
|
12
|
+
average?: number;
|
|
13
|
+
sum?: number;
|
|
14
|
+
minimum?: number;
|
|
15
|
+
maximum?: number;
|
|
16
|
+
sampleCount?: number;
|
|
13
17
|
}
|
|
14
18
|
export interface ICloudMetricStatistics {
|
|
15
19
|
unit: string;
|