diff --git a/CHANGELOG.md b/CHANGELOG.md index c058317630..7b6d244849 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,95 @@ +## 7.2.5 (2025-01-08) + +#### Feature + +* Allow TenantAware to not start transaction by default + +
+ + Allow TenantAware to not start transaction by default. + + This is required when the thread task need to manage + multiple transactions on it's own. + +
+ +#### Fix + +* Fix downloading of DMS file with content instead of meta file + +
+ + This fixes downloading of DMS file with string content, that are not associated with a meta file. + +
+ +* Fix default min/max size of json fields + +
+ + Doesn't provide default min/max size to 0 for json fields. It is up to the user + to define the values. + +
+ +* Add support for Mayotte in phone widget +* Fix persist query string params in tab url + +
+ + When app is opened through url let say search-view url like this {demoURL}/#/ds/sale.search/search?customer=Miss then + query parameters should be persist with url and also when switching between tabs it should also + restored query string url for that associated tab. + +
+ +* Fix use context for toolbar button for panel-dashlet + +
+ + It should use context of dashlet action view to evaluate expression like showIf/hideIf/readonlyIf defined on toolbar button instead of tab action view context. + +
+ +* Fix X-Forwarded-Host that may contain port + +
+ + X-Forwarded-Host may contain port number, so server name should strip out the port from X-Forwarded-Host. + It also means that port can either come from X-Forwarded-Host or X-Forwarded-Port. + If both X-Forwarded-Host and X-Forwarded-Port are present, port from X-Forwarded-Port will take precedence. + +
+ +* Fix search view error when using search-form +* Fix pass _ids in relational field grid +* Fix hidden/readonly attr on view toolbar button + +
+ + When hidden="true" is set on menubar item or toolbar button it should hide the item or + when readonly="true" is set on item, it should make item readonly. + Currently hidden/readonly is only working when any of showIf/hideIf/readonlyIf is also defined on item. + +
+ +* Fix logout with form submission cases + +
+ + When extending, some logout (ex, SAML central logout) is typically + not a redirection but returns a form that the front-end needs to submit. + + Fixed by using full page request for logout instead of AJAX. + +
+ +* Pass context to editable grid onNew action +* Fix skip passing fields in form record save +* Fix set action attrs on reference field +* Fix placeholder support in html widget +* Fix html widget sanitize issue + ## 7.2.4 (2024-11-29) #### Fix diff --git a/changelogs/unreleased/add-action-view-context-for-editable-grid-onNew.yml b/changelogs/unreleased/add-action-view-context-for-editable-grid-onNew.yml deleted file mode 100644 index 41fb3fbc78..0000000000 --- a/changelogs/unreleased/add-action-view-context-for-editable-grid-onNew.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -title: Pass context to editable grid onNew action -type: fix \ No newline at end of file diff --git a/changelogs/unreleased/add-mayotte-phone.yml b/changelogs/unreleased/add-mayotte-phone.yml deleted file mode 100644 index 08eb823b40..0000000000 --- a/changelogs/unreleased/add-mayotte-phone.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -title: Add support for Mayotte in phone widget -type: fix \ No newline at end of file diff --git a/changelogs/unreleased/fix-dms-file-download-content.yml b/changelogs/unreleased/fix-dms-file-download-content.yml deleted file mode 100644 index 5d0f6a8b9c..0000000000 --- a/changelogs/unreleased/fix-dms-file-download-content.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: Fix downloading of DMS file with content instead of meta file -type: fix -description: | - This fixes downloading of DMS file with string content, that are not associated with a meta file. diff --git a/changelogs/unreleased/fix-hidden-attr-on-view-toolbar-button.yml b/changelogs/unreleased/fix-hidden-attr-on-view-toolbar-button.yml deleted file mode 100644 index d6be029249..0000000000 --- a/changelogs/unreleased/fix-hidden-attr-on-view-toolbar-button.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: Fix hidden/readonly attr on view toolbar button -type: fix -description: | - When hidden="true" is set on menubar item or toolbar button it should hide the item or - when readonly="true" is set on item, it should make item readonly. - Currently hidden/readonly is only working when any of showIf/hideIf/readonlyIf is also defined on item. diff --git a/changelogs/unreleased/fix-html-widget-placeholder.yml b/changelogs/unreleased/fix-html-widget-placeholder.yml deleted file mode 100644 index 21669dc124..0000000000 --- a/changelogs/unreleased/fix-html-widget-placeholder.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -title: Fix placeholder support in html widget -type: fix diff --git a/changelogs/unreleased/fix-html-widget-sanitize-issue.yml b/changelogs/unreleased/fix-html-widget-sanitize-issue.yml deleted file mode 100644 index 9ae86339d5..0000000000 --- a/changelogs/unreleased/fix-html-widget-sanitize-issue.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -title: Fix html widget sanitize issue -type: fix diff --git a/changelogs/unreleased/fix-json-fields-min-max-size.yml b/changelogs/unreleased/fix-json-fields-min-max-size.yml deleted file mode 100644 index a42a9b06e8..0000000000 --- a/changelogs/unreleased/fix-json-fields-min-max-size.yml +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Fix default min/max size of json fields -type: fix -description: | - Doesn't provide default min/max size to 0 for json fields. It is up to the user - to define the values. diff --git a/changelogs/unreleased/fix-logout-call.yml b/changelogs/unreleased/fix-logout-call.yml deleted file mode 100644 index 3ba2160de2..0000000000 --- a/changelogs/unreleased/fix-logout-call.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -title: Fix logout with form submission cases -type: fix -description: | - When extending, some logout (ex, SAML central logout) is typically - not a redirection but returns a form that the front-end needs to submit. - - Fixed by using full page request for logout instead of AJAX. diff --git a/changelogs/unreleased/fix-pass-ids-in-relation-field-grid.yml b/changelogs/unreleased/fix-pass-ids-in-relation-field-grid.yml deleted file mode 100644 index e4bcba8bcd..0000000000 --- a/changelogs/unreleased/fix-pass-ids-in-relation-field-grid.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -title: Fix pass _ids in relational field grid -type: fix \ No newline at end of file diff --git a/changelogs/unreleased/fix-passing-fields-in-form-save.yml b/changelogs/unreleased/fix-passing-fields-in-form-save.yml deleted file mode 100644 index b38633d988..0000000000 --- a/changelogs/unreleased/fix-passing-fields-in-form-save.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -title: Fix skip passing fields in form record save -type: fix diff --git a/changelogs/unreleased/fix-persist-query-string-params-in-tab-url.yml b/changelogs/unreleased/fix-persist-query-string-params-in-tab-url.yml deleted file mode 100644 index cecd917e40..0000000000 --- a/changelogs/unreleased/fix-persist-query-string-params-in-tab-url.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -title: Fix persist query string params in tab url -type: fix -description: | - When app is opened through url let say search-view url like this {demoURL}/#/ds/sale.search/search?customer=Miss then - query parameters should be persist with url and also when switching between tabs it should also - restored query string url for that associated tab. - diff --git a/changelogs/unreleased/fix-search-view.yml b/changelogs/unreleased/fix-search-view.yml deleted file mode 100644 index 1370774e5a..0000000000 --- a/changelogs/unreleased/fix-search-view.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -title: Fix search view error when using search-form -type: fix diff --git a/changelogs/unreleased/fix-set-action-attrs-on-reference-field.yml b/changelogs/unreleased/fix-set-action-attrs-on-reference-field.yml deleted file mode 100644 index 7b25acddbb..0000000000 --- a/changelogs/unreleased/fix-set-action-attrs-on-reference-field.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -title: Fix set action attrs on reference field -type: fix \ No newline at end of file diff --git a/changelogs/unreleased/fix-use-context-for-panel-dashlet-toolbar-actions.yml b/changelogs/unreleased/fix-use-context-for-panel-dashlet-toolbar-actions.yml deleted file mode 100644 index 58b4e3ff93..0000000000 --- a/changelogs/unreleased/fix-use-context-for-panel-dashlet-toolbar-actions.yml +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Fix use context for toolbar button for panel-dashlet -type: fix -description: - It should use context of dashlet action view to evaluate expression like showIf/hideIf/readonlyIf - defined on toolbar button instead of tab action view context. \ No newline at end of file diff --git a/changelogs/unreleased/fix-x-forwarded-host.yml b/changelogs/unreleased/fix-x-forwarded-host.yml deleted file mode 100644 index d3993fc1c1..0000000000 --- a/changelogs/unreleased/fix-x-forwarded-host.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: Fix X-Forwarded-Host that may contain port -type: fix -description: | - X-Forwarded-Host may contain port number, so server name should strip out the port from X-Forwarded-Host. - It also means that port can either come from X-Forwarded-Host or X-Forwarded-Port. - If both X-Forwarded-Host and X-Forwarded-Port are present, port from X-Forwarded-Port will take precedence. diff --git a/changelogs/unreleased/improve-tenant-aware.yml b/changelogs/unreleased/improve-tenant-aware.yml deleted file mode 100644 index 98e479dc29..0000000000 --- a/changelogs/unreleased/improve-tenant-aware.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -title: Allow TenantAware to not start transaction by default -type: feature -description: | - Allow TenantAware to not start transaction by default. - - This is required when the thread task need to manage - multiple transactions on it's own. \ No newline at end of file