Skip to content

Releases: Azure/draft

v0.0.37

Choose a tag to compare

@github-actions github-actions released this 14 Aug 01:11
925863c

Added

  • #346 Adding GetManifestFiles func and refactoring
  • #347 Migrate workflows to go templates
  • #348 Add exclusion for .git in artifact upload
  • #352 Adding CLI flags for user defined Helm release name and release namespace for rendering helm projects
  • #355 Replacing ManifestFile Path property with yaml content as []byte
  • #357 Cleanup for kustomize/helm feature
  • #364 Adding new safeguards

Fixed

  • #344 Remove name overrides from draft config
  • #356 Fixed workflow template for helm deployment
  • #362 Fix for private cluster support for kube and kustomize deployments
  • #365 Simplify namespace creation for helm deployment

v0.0.36

Choose a tag to compare

@github-actions github-actions released this 23 Jul 23:06
32bfad4

Added

  • #342 Added k8s/deploy Inputs for Private Cluster Support
  • #337 azure pipelines generation support
  • #334 template support for private clusters
  • #324 workflow template enhancements
  • #321 add helm rendering function
  • #315 adding logic for generating default app name

Fixed

  • #320 Workflows are now generated fully from a draftConfig

v0.0.35

Choose a tag to compare

@github-actions github-actions released this 21 May 16:39
b7f1ebf

Added

  • #285 Update README.md
  • #284 Update NOTICE file
  • #281 Add draft validate functionality to main

v0.0.34

Choose a tag to compare

@github-actions github-actions released this 16 May 15:38
755e4a5

Added

  • #277 Updates/Fixes for draft. Adds generator label to manifests
  • #275 Add NOTICE file
  • #274 gomodule multistage build
  • #273 finishing safeguard additions
  • #272 sdk calls for assignsprole
  • #271 update draft to go 1.22
  • #269 yaml file extension validation
  • #262 sdk calls for getTenantID
  • #242 changes in correlation with new GH action permission changes

v0.0.33

Choose a tag to compare

@github-actions github-actions released this 08 Aug 20:45
2142dbc

Added

  • #220 Update readme for supported flags
  • #219 Retry releases to get tag name
  • #218 Add gradle wrapper detection
  • #217 Add python entrypoint detection
  • #215 Add reporeader interface and an example extractor for python
  • #213 Integration test for multiple OS

Fixed

  • #225 Fix variable substitution in generate-workflow
  • #216 bump rust version to fix e2e

v0.0.32

Choose a tag to compare

@github-actions github-actions released this 04 May 17:46
580337c

Added

  • #197 Add dry run support to update command
  • #191 Add variable flag to create command

Fixed

  • #196 Update deprecated node12 actions
  • #207 Default deploy variable fixed

Changed

  • #194 Move generate workflow templates to embedded file system

v0.0.31

Choose a tag to compare

@github-actions github-actions released this 14 Mar 20:48
ed57224

Added

  • #189 Add example package to show consumption patterns

Fixed

  • #190 Add integration test and Dockerfile fix for go language without modules

v0.0.30

Choose a tag to compare

@github-actions github-actions released this 24 Feb 21:52
d3a7ef6

Changed

  • #187 OpenJDK Docker image has been deprecated and doesnt have JRE images for Java 11+. This change moves our Java images to Eclipse-Temurin.

v0.0.29

Choose a tag to compare

@github-actions github-actions released this 16 Feb 17:33
3ce9021

Fixed

  • Bug fix for helm deployments where namespace was created but not respected at the deployment level

v0.0.28

Choose a tag to compare

@github-actions github-actions released this 14 Feb 21:28
3a9a1b2

BREAKING changes to IMAGE variable

Added

  • New, optional disablePrompt property on Builder Variables in draft config (#180):
    • Default Value: false
    • Variables with disablePrompt: true will not be prompted for when running draft interactive commands
    • Variables with disablePrompt: true can still be supplied via flags (draft create --var TAG=latest) or draft config files
    • Example Usage:
        # draft.yaml
        variables:
        - name: "TAG"
          description: "the tag of the image to be built"
          disablePrompt: true #  New optional field that is used to disable the prompt for this variable
        ...
      
  • For all draft substitutions, draft will now error if unsubstituted variables are found in the final output (#175)

Changed

  • BREAKING the IMAGE variable no longer can include an image tag. The TAG variable should be used instead (#176)
  • BREAKING the imageKey variable on the helm deployment type has been renamed to image to be consistent with the supplied starter workflows (#176)
    • Re-running draft create will update existing files to follow the new convention