@spinnaker/core 0.29.0 → 0.29.1
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
|
|
|
@@ -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
|
+
}
|