Skip to content

0.18.0

Compare
Choose a tag to compare
@github-actions github-actions released this 22 Dec 18:12
a4d39c2

Breaking changes (😱!!!):

  • Remove login command (#705)

    It was introduced in preparation for a publish command that would require a GitHub token to be provided, but it is obsolete now, as the new Registry workflow will not require it.
    While it's technically a breaking change, it should be of very low impact since no one should be using this anyways.

  • Upgrade to Dhall 20.0.0 and GHC 8.6.5 (#695, #685)

    The upgrade fixes several bugs related to the upstream dhall-haskell implementation, but introduces a breaking change in the parser, as reserved words are not accepted anymore in certain positions.
    While the upstream package sets have been patched to be compatible with the change, this is a breaking change for all the existing configurations that make use of Dhall reserved words (such as assert, let, etc).

New features:

  • Add exec-args as alias to node-args, to clarify that the args are forwarded to whichever backend is being targeted (go, js, etc), not exclusively NodeJS (#710, #709)

Bugfixes:

  • Don't create the global cache folder at all if the user specifies --global-cache=skip (#705, #704)
  • Don't require a spago.dhall anymore when the --no-build flag is passed (#705, #634)

Other improvements:

  • CI: switch from Travis to GitHub Actions (#695)