0.39.18

(fix): Produce IR v53.8.0 with raw datetime examples.

What’s been fixed

  • Produce IR v53.8.0 with raw datetime examples. The raw datetime examples help when generating test fixtures to assert conditions about the original datetime.

0.39.17

(fix): object declarations with extends and no properties now has examples propagating in the Docs and SDKs

What’s been fixed

  • Previously, object declarations with extends and no properties did not have examples propagating in the Docs and SDKs. The core issue was in IR generation which has now been resolved.

The following will now work as expected:

1types:
2
3 ObjectWithNoProperties:
4 extends:
5 - ParentA
6 - ParentB
7 examples:
8 - name: Default
9 value:
10 propertyFromParentA: foo
11 propertyFromParentB: bar