Skip to content

Commit

Permalink
Update CHANGELOG for v2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jessesuen committed May 29, 2018
1 parent 468e076 commit ac241c9
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## 2.1.1 (2018-05-29)

### Changelog since v2.1.0
- Switch to an UnstructuredInformer to guard controller against malformed workflow manifests (issue #632)
- Fix issue where suspend templates were not properly being connected to their children (issue #869)
- Fix issue where a failed step in a template with parallelism would not complete (issue #868)
- Fix issue where `argo list` age column maxed out at 1d (issue #857)
- Fix issue where volumes were not supported in script templates (issue #852)
- Fix implementation of DAG task targets (issue #865)
- Retrying failed steps templates could potentially result in disconnected children
- [UI] Fix crash while rendering failed workflow with exit handler (issue #815)
- [UI] Fix locating outbound nodes for skipped node
- [UI] Fix JS crash caused by inconsistent workflow state
- [UI] Fix blank help page when using browser navigation
- [UI] API server can filter workflows managed by specific workflow controller (@kzadorozhny)
- [UI] Restore support for accessing the UI using `kubectl proxy` (@mthx)
- [UI] Pass the namespace when querying the logs (issue #777) (@mthx)
- [UI] Improve workflow sorting (issue #866)
+ Add windows support for Argo CLI (@cuericlee)
* Documentation fixes (@mthx, @bodepd)

## 2.1.0 (2018-05-01)

### Changelog since v2.0
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ cli-darwin: builder
.PHONY: cli-windows
cli-windows: builder
${BUILDER_CMD} make cli \
GOARCH=amd64 \
GOARCH=amd64 \
GOOS=windows \
IMAGE_TAG=$(IMAGE_TAG) \
IMAGE_NAMESPACE=$(IMAGE_NAMESPACE) \
Expand Down Expand Up @@ -151,4 +151,4 @@ release-precheck:
@if [ -z "$(GIT_TAG)" ]; then echo 'commit must be tagged to perform release' ; exit 1; fi

.PHONY: release
release: release-precheck controller-image cli-darwin cli-linux executor-image cli-image
release: release-precheck controller-image cli-darwin cli-linux cli-windows executor-image cli-image

0 comments on commit ac241c9

Please sign in to comment.