diff --git a/content/en/docs/releases/next-release-preview/index.md b/content/en/docs/releases/next-release-preview/index.md index 1a24913e..180d290e 100644 --- a/content/en/docs/releases/next-release-preview/index.md +++ b/content/en/docs/releases/next-release-preview/index.md @@ -39,6 +39,30 @@ controller: #### Orca Updates Orca's SavePipelineTask to support bulk saves using the updated functionality in the front50 bulk save endpoint. +Some of the keys from the stage context's outputs section can now be removed (there by reducing the context size significantly) using the below configuration: +```yaml +tasks: + clouddriver: + promoteManifestKatoOutputsTask: + excludeKeysFromOutputs: + - outputs.createdArtifacts + - outputs.manifests + - outputs.boundArtifacts + waitOnJobCompletionTask: + excludeKeysFromOutputs: + - jobStatus + - completionDetails + resolveDeploySourceManifestTask: + excludeKeysFromOutputs: + - manifests + - requiredArtifacts + - optionalArtifacts + core: + bindProducedArtifactsTask: + excludeKeysFromOutputs: + - artifacts +``` + #### Front50 Batch update operation in front50 is now atomic. Deserialization issues are addressed.