From 15ffd40b76e7f86574e764688a25709e86587f22 Mon Sep 17 00:00:00 2001 From: Kelly Sankey Date: Tue, 3 Feb 2026 15:16:18 -0700 Subject: [PATCH 1/3] Add initial release notes for version 21.1.318 --- content/21.1.318/index.md | 3 +++ content/21.1.318/items.csv | 6 ++++++ 2 files changed, 9 insertions(+) create mode 100644 content/21.1.318/index.md create mode 100644 content/21.1.318/items.csv diff --git a/content/21.1.318/index.md b/content/21.1.318/index.md new file mode 100644 index 0000000..aad9357 --- /dev/null +++ b/content/21.1.318/index.md @@ -0,0 +1,3 @@ +--- +date: 2026-02-03 +--- diff --git a/content/21.1.318/items.csv b/content/21.1.318/items.csv new file mode 100644 index 0000000..48f1c28 --- /dev/null +++ b/content/21.1.318/items.csv @@ -0,0 +1,6 @@ +type,tags,title,weight,detail,item# +bug,"ui,integration","Fixed an issue where data selectors would not load data to select.",,,357323 +bug,"ui,balloting","Fixed an issue where the Send to Partners modal had a very narrow column for the list of selectable forms.",,,357243 +bug,"api,system","Fixed date parsing error when setting the Out of Office period when the date format on the server is set to display days first.",,,355591 +enhancement,"ui,balloting","In the Quorum balloting server, once a partner submits an ""Approved"" response, they can no longer clear it. If the approval was submitted by mistake, the partner must contact the ballot operator to have the ballot resent and their response cleared.",,,356538 +bug,"workflow,ui","Fixed the searching and sorting in the tasks grid of a workflow definition.",,,357326 From 4768c133fbd229b11fbb50520a7307ccc7dc4ab8 Mon Sep 17 00:00:00 2001 From: Kelly Sankey Date: Tue, 3 Feb 2026 15:22:01 -0700 Subject: [PATCH 2/3] Revert data tables library change from version 21.1.317 --- content/21.1.318/items.csv | 1 + 1 file changed, 1 insertion(+) diff --git a/content/21.1.318/items.csv b/content/21.1.318/items.csv index 48f1c28..560c3c2 100644 --- a/content/21.1.318/items.csv +++ b/content/21.1.318/items.csv @@ -4,3 +4,4 @@ bug,"ui,balloting","Fixed an issue where the Send to Partners modal had a very n bug,"api,system","Fixed date parsing error when setting the Out of Office period when the date format on the server is set to display days first.",,,355591 enhancement,"ui,balloting","In the Quorum balloting server, once a partner submits an ""Approved"" response, they can no longer clear it. If the approval was submitted by mistake, the partner must contact the ballot operator to have the ballot resent and their response cleared.",,,356538 bug,"workflow,ui","Fixed the searching and sorting in the tasks grid of a workflow definition.",,,357326 +bug,"system,ui","Reverted the data tables library change from version 21.1.317.",,, \ No newline at end of file From 6b87dfe0737ba0715ecc23d0fabc618895681947 Mon Sep 17 00:00:00 2001 From: "kyle.m.johnson" <17412685+kyle1024@users.noreply.github.com> Date: Tue, 3 Feb 2026 15:34:48 -0700 Subject: [PATCH 3/3] omit broken versions from versions.csv --- layouts/_default/home.versions.csv | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/layouts/_default/home.versions.csv b/layouts/_default/home.versions.csv index bd74887..ab1aa42 100644 --- a/layouts/_default/home.versions.csv +++ b/layouts/_default/home.versions.csv @@ -1,6 +1,7 @@ {{- $all := (partial "get_all_versions" (dict "suppressHidden" false)) }} -{{- range $v := $all }} -{{- $dl := partial "download" (dict "detail" $v)}} +{{- range $v := $all }} +{{- if $v.Broken }}{{ continue }}{{ end }} +{{- $dl := partial "download" (dict "detail" $v)}} {{- $manual := cond $v.HasBreakingChanges "manual" "" -}} {{- printf "20%s,%s,%s\n" $v.Version $dl $manual }} {{- end }} \ No newline at end of file