Skip to content

v1.143.0

Compare
Choose a tag to compare
@cloudposse-releaser cloudposse-releaser released this 09 Jan 21:23
· 29 commits to refs/heads/main since this release
b13a2fd
Support Relative Path Imports @milldr (#891)

what

  • Add support for relative paths in imports, when the path starts with ./ or ../
  • Support all path types:
import:
  - ./relative_path
  - ../relative_path

or

import:
  - path: ./relative_path
  - path: ../relative_path

why

  • Allow less path duplication and support simpler code
Test Cases as a Directory @milldr (#922)

what

  • Added support for test cases as a directory rather than a single file

why

  • We are adding many more tests and as such the single file is becoming unruly