@spinnaker/core 0.27.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.
Files changed (33) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/dist/config/settings.d.ts +9 -0
  3. package/dist/domain/IOrchestratedItem.d.ts +1 -0
  4. package/dist/index.js +36 -36
  5. package/dist/index.js.map +1 -1
  6. package/dist/notification/selector/types/cdevents/CDEventsNotificationType.d.ts +5 -0
  7. package/dist/notification/selector/types/cdevents/cdevents.notification.d.ts +2 -0
  8. package/dist/notification/selector/types/index.d.ts +1 -0
  9. package/dist/orchestratedItem/orchestratedItem.transformer.d.ts +5 -4
  10. package/dist/pipeline/config/stages/overrideTimeout/OverrideTimeout.d.ts +1 -1
  11. package/dist/presentation/forms/validation/validators.d.ts +2 -0
  12. package/dist/task/task.read.service.d.ts +1 -1
  13. package/package.json +3 -3
  14. package/src/config/settings.ts +7 -0
  15. package/src/domain/IOrchestratedItem.ts +1 -0
  16. package/src/manifest/stage/JobStageExecutionLogs.tsx +2 -2
  17. package/src/notification/modal/NotificationDetails.tsx +4 -1
  18. package/src/notification/notification.types.ts +2 -0
  19. package/src/notification/selector/types/cdevents/CDEventsNotificationType.tsx +36 -0
  20. package/src/notification/selector/types/cdevents/cdevents.notification.ts +8 -0
  21. package/src/notification/selector/types/index.ts +1 -0
  22. package/src/orchestratedItem/orchestratedItem.transformer.ts +21 -13
  23. package/src/pipeline/config/services/PipelineConfigService.ts +3 -0
  24. package/src/pipeline/config/stages/overrideTimeout/OverrideTimeout.tsx +24 -4
  25. package/src/pipeline/config/stages/wait/waitStage.ts +1 -0
  26. package/src/pipeline/config/validation/PipelineConfigValidator.ts +5 -1
  27. package/src/plugins/sharedLibraries.ts +5 -1
  28. package/src/presentation/CollapsibleElement.tsx +5 -3
  29. package/src/presentation/forms/validation/validators.ts +24 -1
  30. package/src/task/task.dataSource.js +18 -2
  31. package/src/task/task.read.service.ts +11 -2
  32. package/dist/presentation/forms/inputs/NumberConcurrencyInput.d.ts +0 -7
  33. package/src/presentation/forms/inputs/NumberConcurrencyInput.tsx +0 -29
package/CHANGELOG.md CHANGED
@@ -3,6 +3,40 @@
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
+
27
+ # [0.28.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.27.0...@spinnaker/core@0.28.0) (2023-12-07)
28
+
29
+
30
+ ### Features
31
+
32
+ * Add feature flag for multi block failure messages. ([#10061](https://github.com/spinnaker/deck/issues/10061)) ([374f724](https://github.com/spinnaker/deck/commit/374f724de221d68030a86e1f6452e3303390339a))
33
+ * Expose spinnaker/kayenta to the plugin framework to allow us to create kayenta plugins in Deck ([#10072](https://github.com/spinnaker/deck/issues/10072)) ([dbf0574](https://github.com/spinnaker/deck/commit/dbf0574176cbbca781d970c64dfe49f6911ef8b8))
34
+ * Split deployment failure messages. ([#10060](https://github.com/spinnaker/deck/issues/10060)) ([73dda48](https://github.com/spinnaker/deck/commit/73dda48caccd969ef562af3f86bc1f17efbdad7f))
35
+
36
+
37
+
38
+
39
+
6
40
  # [0.27.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.26.0...@spinnaker/core@0.27.0) (2023-10-16)
7
41
 
8
42
 
@@ -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;
@@ -51,6 +54,7 @@ export interface IFeatures {
51
54
  mdGitIntegration?: boolean;
52
55
  managedServiceAccounts?: boolean;
53
56
  managedResources?: boolean;
57
+ multiBlockFailureMessages?: boolean;
54
58
  notifications?: boolean;
55
59
  pagerDuty?: boolean;
56
60
  pipelines?: boolean;
@@ -150,6 +154,7 @@ export interface ISpinnakerSettings {
150
154
  };
151
155
  stashTriggerInfo?: string;
152
156
  pollSchedule: number;
157
+ tasksViewLimitPerPage: number;
153
158
  providers?: {
154
159
  [key: string]: IProviderSettings;
155
160
  };
@@ -161,5 +166,9 @@ export interface ISpinnakerSettings {
161
166
  useClassicFirewallLabels: boolean;
162
167
  kubernetesAdHocInfraWritesEnabled: boolean;
163
168
  changelogUrl: string;
169
+ cdevents?: {
170
+ validUrlPattern: string;
171
+ validCDEvent: string;
172
+ };
164
173
  }
165
174
  export declare const SETTINGS: ISpinnakerSettings;
@@ -14,6 +14,7 @@ export interface IOrchestratedItem extends ITimedItem {
14
14
  getValueFor: (k: string) => any;
15
15
  originalStatus: string;
16
16
  status: string;
17
+ failureMessages: string[];
17
18
  failureMessage: string;
18
19
  isBuffered: boolean;
19
20
  isCompleted: boolean;