Skip to content

Releases: spinnaker/orca

Orca 3.7.1

28 Aug 21:19
Compare
Choose a tag to compare
  • fix(expressions): allow unevaluated values in V2 evaluator

orca 3.7.0

28 Aug 19:57
Compare
Choose a tag to compare
v3.7.0

chore(springBoot): Upgrade to Spring Boot 1.5.4 (#1486)

Orca 3.6.2

25 Aug 17:41
Compare
Choose a tag to compare

fix(pipeline_templates): notification inheritance (#1576)

Orca 3.6.1

25 Aug 15:14
Compare
Choose a tag to compare

fix(pipeline_templates): notification inheritance (#1576)

Orca 3.6.0

25 Aug 03:07
Compare
Choose a tag to compare
  • feat(amazon): allow preferSourceCapacity as fallback on deploy when useSourceCapacity does not find a source server group

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