Skip to content

Releases: spinnaker/orca

orca 3.5.5

24 Aug 22:46
Compare
Choose a tag to compare
  • fix(core): Fixing NPE when sorting by non-existent startTime (#1575)

Orca 3.5.4

24 Aug 20:28
Compare
Choose a tag to compare

fix(pipeline_templates): prevent expression evaluation during template update operation (#1573)

Orca 3.5.3

24 Aug 16:40
Compare
Choose a tag to compare
feat(pipeline_templates): Support jinja expressions in template varia…

…bles (#1571)

Imagine the following managed pipeline that is triggered with:
```
shouldWait: true
   regions: us-west-2,us-east-1
```
```
---
schema: "1"
id: waitChain
variables:
- name: shouldWait
  defaultValue: "{{ trigger.parameters.shouldWait == true }}"
- name: regions
  defaultValue: "{{ trigger.parameters.regions | split(',') }}"
stages:
- id: wait1
  type: wait
  config:
    waitTime: 1
  when:
  - "{{ shouldWait == true }}"
- id: bake
  type: bake
  dependsOn: [wait1]
  config:
    ...
    regions: |
      {% for region in regions %}
      - "{{ region }}"
      {% endfor %}
  when:
  - "{{ regions | length > 0 }}"
```

Orca 3.5.2

23 Aug 21:47
Compare
Choose a tag to compare

Simpler Atlas tag & more logging for global context access

Orca 3.5.1

23 Aug 17:57
Compare
Choose a tag to compare
v3.5.1

fix(orca): fix NPE caused by late assignment of pipeline id

Orca 3.5.0

23 Aug 16:31
Compare
Choose a tag to compare

Adds stage outputs and alerts on access to global context

Orca 3.4.25

23 Aug 20:05
Compare
Choose a tag to compare

fix inability to overwrite stage context

orca 3.4.24

23 Aug 00:13
Compare
Choose a tag to compare
fix(clouddriver): support retries from multiple MonitorKatoTasks in a…

… stage.

Outputs a sentinel value after successfully retrieving the task info from clouddriver so that a subsequent instance
of MonitorKatoTask in the same stage doesn't inherit the state tracking from the original MonitorKatoTask.

Sentinal value because you can't delete things from the stage context via task results due to use of ImmutableMap.

orca 3.4.23

22 Aug 22:57
Compare
Choose a tag to compare
  • fix(webhook): Allow content-type text/plain in webhook stage (#1565)

Orca 3.4.22

22 Aug 20:02
Compare
Choose a tag to compare

feat(pipelineexpressions): Adding a v2 expressions evaluator