@spinnaker/core 0.28.0 → 0.29.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 +21 -0
- package/dist/config/settings.d.ts +8 -0
- package/dist/index.js +36 -36
- package/dist/index.js.map +1 -1
- package/dist/notification/selector/types/cdevents/CDEventsNotificationType.d.ts +5 -0
- package/dist/notification/selector/types/cdevents/cdevents.notification.d.ts +2 -0
- package/dist/notification/selector/types/index.d.ts +1 -0
- package/dist/pipeline/config/stages/overrideTimeout/OverrideTimeout.d.ts +1 -1
- package/dist/presentation/forms/validation/validators.d.ts +2 -0
- package/dist/task/task.read.service.d.ts +1 -1
- package/package.json +2 -2
- package/src/config/settings.ts +6 -0
- package/src/manifest/stage/JobStageExecutionLogs.tsx +2 -2
- package/src/notification/modal/NotificationDetails.tsx +4 -1
- package/src/notification/notification.types.ts +2 -0
- package/src/notification/selector/types/cdevents/CDEventsNotificationType.tsx +36 -0
- package/src/notification/selector/types/cdevents/cdevents.notification.ts +8 -0
- package/src/notification/selector/types/index.ts +1 -0
- package/src/pipeline/config/services/PipelineConfigService.ts +3 -0
- package/src/pipeline/config/stages/overrideTimeout/OverrideTimeout.tsx +24 -4
- package/src/pipeline/config/stages/wait/waitStage.ts +1 -0
- package/src/pipeline/config/validation/PipelineConfigValidator.ts +5 -1
- package/src/presentation/forms/validation/validators.ts +24 -1
- package/src/task/task.dataSource.js +18 -2
- package/src/task/task.read.service.ts +11 -2
- package/dist/presentation/forms/inputs/NumberConcurrencyInput.d.ts +0 -7
- package/src/presentation/forms/inputs/NumberConcurrencyInput.tsx +0 -29
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,27 @@
|
|
|
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.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.28.0...@spinnaker/core@0.29.0) (2024-05-10)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **lambdaStages:** Exporting Lambda stages based on the feature flag settings ([#10085](https://github.com/spinnaker/deck/issues/10085)) ([93bab65](https://github.com/spinnaker/deck/commit/93bab656555fabd539e186587a40dd8a0358dbd9))
|
|
12
|
+
* **pipelineGraph:** Handling exception when requisiteStageRefIds is not defined ([#10086](https://github.com/spinnaker/deck/issues/10086)) ([4e1635d](https://github.com/spinnaker/deck/commit/4e1635d6026c6fbcb5912de1859c45038fd1258a))
|
|
13
|
+
* **pipeline:** Handle render/validation when stageTimeoutMs is a Spel expression ([#10103](https://github.com/spinnaker/deck/issues/10103)) ([9237f78](https://github.com/spinnaker/deck/commit/9237f7890e5f02f5369bc91984de98b18591ef9e))
|
|
14
|
+
* **runJobs:** Persist External Log links after the deletion of the pods ([#10081](https://github.com/spinnaker/deck/issues/10081)) ([fd55cf1](https://github.com/spinnaker/deck/commit/fd55cf1fb3bca08b931a10bb4c10d65393a20c73))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **cdevents-notification:** CDEvents notification to produce CDEvents ([#9997](https://github.com/spinnaker/deck/issues/9997)) ([fc96adb](https://github.com/spinnaker/deck/commit/fc96adb17b5051f655e1d651b28c8eb0efd7e11e))
|
|
20
|
+
* **taskView:** Implement opt-in paginated request for TaskView ([#10093](https://github.com/spinnaker/deck/issues/10093)) ([5fa1e96](https://github.com/spinnaker/deck/commit/5fa1e96b90c7398338d67ef7a7337ee3628591bd))
|
|
21
|
+
* **wait-stage:** Make Wait Stage restartable. ([#10073](https://github.com/spinnaker/deck/issues/10073)) ([f3df056](https://github.com/spinnaker/deck/commit/f3df0561d891e928a14c32a3544fc331ebf1d981))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
6
27
|
# [0.28.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.27.0...@spinnaker/core@0.28.0) (2023-12-07)
|
|
7
28
|
|
|
8
29
|
|
|
@@ -34,6 +34,9 @@ export interface INotificationSettings {
|
|
|
34
34
|
sms: {
|
|
35
35
|
enabled: boolean;
|
|
36
36
|
};
|
|
37
|
+
cdevents: {
|
|
38
|
+
enabled: boolean;
|
|
39
|
+
};
|
|
37
40
|
}
|
|
38
41
|
export interface IFeatures {
|
|
39
42
|
[key: string]: any;
|
|
@@ -151,6 +154,7 @@ export interface ISpinnakerSettings {
|
|
|
151
154
|
};
|
|
152
155
|
stashTriggerInfo?: string;
|
|
153
156
|
pollSchedule: number;
|
|
157
|
+
tasksViewLimitPerPage: number;
|
|
154
158
|
providers?: {
|
|
155
159
|
[key: string]: IProviderSettings;
|
|
156
160
|
};
|
|
@@ -162,5 +166,9 @@ export interface ISpinnakerSettings {
|
|
|
162
166
|
useClassicFirewallLabels: boolean;
|
|
163
167
|
kubernetesAdHocInfraWritesEnabled: boolean;
|
|
164
168
|
changelogUrl: string;
|
|
169
|
+
cdevents?: {
|
|
170
|
+
validUrlPattern: string;
|
|
171
|
+
validCDEvent: string;
|
|
172
|
+
};
|
|
165
173
|
}
|
|
166
174
|
export declare const SETTINGS: ISpinnakerSettings;
|