From 9d2934ef087714d82f9e9133bd9c446695f686b4 Mon Sep 17 00:00:00 2001 From: Julia Visser Date: Thu, 1 May 2025 11:51:57 +0200 Subject: [PATCH 1/2] Release notes v1.2.1 --- docs/release_notes.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/release_notes.md b/docs/release_notes.md index 7d484df..195be78 100644 --- a/docs/release_notes.md +++ b/docs/release_notes.md @@ -1,5 +1,20 @@ # Release Notes +## Version 1.2.1 + +## Improvements +### Core +- Improved the casting to kList plugs so that huge memory peaks are decreased (avoiding potential crashes) *Shift-1289* +- Improved the logic to create a connection from the Shift API. *Shift-1309* + +## BugFixes +### Core +- Fixed the truncation in the inspector plug widgets for lists, dictionaries, and iterable objects and instances. *Shift-1288* +- Fixed the deletion logic so that connections that are not connected to the selection to delete are also deleted. *Shift-1265* +- Fixed the inspector so that the tab that is selected remains so after the execution of a workflow. *Shift-1214* +- Fixed the trigger of the editingFinished for inspector plugs so it is only emitted when the value has changed. *Shift-1319* + + ## Version 1.1.1 ### Added From 0b1aed438137aaa5f4a42d6844a892dee42b7de4 Mon Sep 17 00:00:00 2001 From: Julia Visser Date: Wed, 14 May 2025 09:27:38 +0200 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: Alberto Chimenti --- docs/release_notes.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/release_notes.md b/docs/release_notes.md index 195be78..d71f6f4 100644 --- a/docs/release_notes.md +++ b/docs/release_notes.md @@ -5,14 +5,18 @@ ## Improvements ### Core - Improved the casting to kList plugs so that huge memory peaks are decreased (avoiding potential crashes) *Shift-1289* -- Improved the logic to create a connection from the Shift API. *Shift-1309* +- Added public method to create a connection using the Shift API. *Shift-1309* + ## BugFixes ### Core - Fixed the truncation in the inspector plug widgets for lists, dictionaries, and iterable objects and instances. *Shift-1288* -- Fixed the deletion logic so that connections that are not connected to the selection to delete are also deleted. *Shift-1265* -- Fixed the inspector so that the tab that is selected remains so after the execution of a workflow. *Shift-1214* -- Fixed the trigger of the editingFinished for inspector plugs so it is only emitted when the value has changed. *Shift-1319* +- Fixed the board items deletion logic so that all the selected connections are deleted. *Shift-1265* + +- Fixed the inspector so that the selected tab is retained after the execution of a workflow. *Shift-1214* + +- Fixed bug emitting plug edits two times instead of one when using the Inspector parameter widget due to Qt bug with the editingFinished signal. *Shift-1313* + ## Version 1.1.1