@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 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
- /// <reference types="react" />
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 const AdditionalFields: ({ command, onChange }: IRedBlackStrategyAdditionalFieldsProps) => JSX.Element;
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: number;
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;
@@ -0,0 +1,2 @@
1
+ export const CORE_FORMS_MAPOBJECTEDITOR_MAPOBJECTEDITOR_COMPONENT: "spinnaker.core.forms.mapObjectEditor.component";
2
+ export const name: "spinnaker.core.forms.mapObjectEditor.component";