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

Prepare release: 8.3.6 #6464

Merged
merged 1 commit into from
Nov 7, 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
28 changes: 28 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,34 @@ $ towncrier create <PR-number>.<break|feat|fix>.md --content "Short description"

<!-- towncrier release notes start -->

## __cylc-8.3.6 (Released 2024-11-07)__

### 🔧 Fixes

[#4983](https://github.com/cylc/cylc-flow/pull/4983) - Ensure the runahead limit is recomputed when legacy "suicide-triggers" are used, to prevent erroneous stall in niche cases.

[#6263](https://github.com/cylc/cylc-flow/pull/6263) - Fix bug that prevented changes to user-defined xtriggers taking effect after a reload.

[#6326](https://github.com/cylc/cylc-flow/pull/6326) - Fix a rare issue where missing job records could cause tasks to become stuck in active states.

[#6364](https://github.com/cylc/cylc-flow/pull/6364) - Fixed bug where `cylc clean <workflow> --rm share` would not take care of removing the target of the `share/cycle` symlink directory.

[#6376](https://github.com/cylc/cylc-flow/pull/6376) - Fixes an issue that could cause Cylc to ignore the remaining hosts in a platform in response to an `ssh` error in some niche circumstances.

[#6388](https://github.com/cylc/cylc-flow/pull/6388) - Fix task state filtering in Tui.

[#6414](https://github.com/cylc/cylc-flow/pull/6414) - Broadcast will now reject truncated cycle points to aviod runtime errors.

[#6422](https://github.com/cylc/cylc-flow/pull/6422) - Enabled jumping to the top/bottom of log files in Tui using the "home" and "end" keys.

[#6431](https://github.com/cylc/cylc-flow/pull/6431) - The `cycle point format` was imposing an undesirable constraint on `wall_clock` offsets, this has been fixed.

[#6433](https://github.com/cylc/cylc-flow/pull/6433) - Ignore requests to trigger or set active tasks with --flow=none.

[#6445](https://github.com/cylc/cylc-flow/pull/6445) - Ensure `cylc trigger` does not fall back to `flow=none` when there are no active flows.

[#6448](https://github.com/cylc/cylc-flow/pull/6448) - Fix the non-spawning of parentless sequential xtriggered tasks when outputs are set.

## __cylc-8.3.5 (Released 2024-10-15)__

### 🔧 Fixes
Expand Down
1 change: 0 additions & 1 deletion changes.d/4983.fix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes.d/6263.fix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes.d/6326.fix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes.d/6364.fix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes.d/6376.fix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes.d/6388.fix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes.d/6414.fix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes.d/6422.fix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes.d/6431.fix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes.d/6433.fix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes.d/6445.fix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes.d/6448.fix.md

This file was deleted.

2 changes: 1 addition & 1 deletion cylc/flow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def environ_init():

environ_init()

__version__ = '8.3.6.dev'
__version__ = '8.3.6'


def iter_entry_points(entry_point_name):
Expand Down
Loading