Skip to content

v0.5.0

Choose a tag to compare

@github-actions github-actions released this 07 Nov 01:18
· 19 commits to main since this release
v0.5.0
e6e9224

Bug Fixes

  • Unpin Ruff (2dcf7ba by Leon Wright).

Code Refactoring

  • Config Interface + Environments (25e9262 by Leon Wright).
    BREAKING CHANGES:
    • Config types now live under 'config_types'
      from cally.cli.config.types -> from cally.cli.config.config_types
    • 'as_dataclass' no longer needs to be called, config property will
      automatically have the correct type.
      CallyStackService().as_dataclass('CallyStackService') ->
      CallyStackService().config
    • Test harness has a 'get_cally_stack_method', should be used instead of
      'get_cally_config' for terraform stack tests.
      self.get_cally_stack_config(stack_type='ExampleStack')
    • It's no longer required to provid a 'CallyConfig' to CliRunner based
      tests.
  • Use recently updated release action (565ec81 by Leon Wright).

Tests

  • Update + Fix Tests (d8404b1 by Leon Wright).