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

docs: add Archived Workflows merge to the Upgrading Notes #13371

Merged
merged 1 commit into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
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
11 changes: 10 additions & 1 deletion docs/upgrading.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,16 @@ Use `ARGO_ALLOWED_LINK_PROTOCOL` and `ARGO_BASE_HREF` instead.

## Upgrading to v3.5

There are no known breaking changes in this release. Please file an issue if you encounter any unexpected problems after upgrading.
There are no known breaking changes in this release.
Please file an issue if you encounter any unexpected problems after upgrading.

### Unified Workflows List API and UI

The Workflows List in the UI now shows Archived Workflows in the same page.
As such, the previously separate Archived Workflows page in the UI has been removed.

The List API `/api/v1/workflows` also returns both types of Workflows now.
This is not breaking as the Archived API still exists and was not removed, so this is an addition.

## Upgrading to v3.4

Expand Down
1 change: 1 addition & 0 deletions ui/src/app/modals/new-version-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export function NewVersionModal({version, dismiss}: {version: string; dismiss: (
</h4>
<h5>v3.5</h5>
<ul className='new-version-modal-bullets'>
<li>Removed Archived Workflows page; Workflows List page now shows both</li>
<li>Improvements to existing UI/UX and CLI</li>
<li>Additional fields and parameters in workflow/template spec</li>
<li>Controller performance optimizations</li>
Expand Down
Loading