Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 0.0.28 notes #182

Merged
merged 1 commit into from
Feb 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Change Log

## [0.0.28] - 2023-02-13

**BREAKING** changes to `IMAGE` variable
sabbour marked this conversation as resolved.
Show resolved Hide resolved

### 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

## [0.0.27] - 2022-12-9

### Added
Expand Down