@spinnaker/core 2025.3.3 → 2025.3.4

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.
@@ -10,7 +10,16 @@ export interface IPipelineTriggerTemplateState {
10
10
  export declare class PipelineTriggerTemplate extends React.Component<ITriggerTemplateComponentProps, IPipelineTriggerTemplateState> {
11
11
  static formatLabel(trigger: IPipelineTrigger): PromiseLike<string>;
12
12
  constructor(props: ITriggerTemplateComponentProps);
13
+ /**
14
+ * Fetches available executions for the source pipeline and sets up form state.
15
+ * @param command - Use when calling from componentWillReceiveProps to avoid stale props.
16
+ */
13
17
  private initialize;
18
+ /**
19
+ * Only re-initialize when trigger.pipeline changes (user selects different source pipeline).
20
+ * Formik creates new command object references on every keystroke; comparing object
21
+ * references would reset the dropdown on any form field change.
22
+ */
14
23
  componentWillReceiveProps(nextProps: ITriggerTemplateComponentProps): void;
15
24
  componentDidMount(): void;
16
25
  private executionLoadSuccess;
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "url": "https://github.com/spinnaker/spinnaker.git"
6
6
  },
7
7
  "license": "Apache-2.0",
8
- "version": "2025.3.3",
8
+ "version": "2025.3.4",
9
9
  "module": "dist/index.js",
10
10
  "typings": "dist/index.d.ts",
11
11
  "publishConfig": {
@@ -128,5 +128,5 @@
128
128
  "shx": "0.3.3",
129
129
  "typescript": "5.0.4"
130
130
  },
131
- "gitHead": "99a9c4931a1c874b893d3d4f4ec250b0a767240a"
131
+ "gitHead": "535648927634879285a8b5a57bc1a4894967e799"
132
132
  }