Skip to content

v0.10.0

Compare
Choose a tag to compare
@djspiewak djspiewak released this 17 Jan 18:08
· 175 commits to main since this release
v0.10.0

This release makes a number of changes which may have a breaking impact on your workflows, even taking into account the scala-steward automatic regeneration. Please check the release notes carefully and update your builds as necessary.

  • Renamed default branch from master to main. The main impact this has is on the githubWorkflowPublishTargetBranches key, which now defaults to releasing from main rather than releasing from master.
  • Added support for job containers via the container field of WorkflowJob. This functionality is not yet exposed directly in sbt settings.
  • Added githubWorkflowBuildMatrixFailFast, which makes it possible to configure the fail-fast property the build job. The default behavior is to accept the GitHub Actions default, which is to fail fast (i.e. if any branch of the matrix fails, the remainder are canceled). (@amesgen)
  • Generalized WorkflowStep.Use to allow for local and docker references. Any existing Use call-sites will need to have their ref parameters wrapped in UseRef.Public