Skip to content

Commit 60d464d

Browse files
committed
Release 7.3.2
Signed-off-by: Pierre Belloy <[email protected]>
1 parent 9fd3f4f commit 60d464d

15 files changed

+99
-70
lines changed

CHANGELOG.md

+99
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,102 @@
1+
## 7.3.2 (2025-03-12)
2+
3+
#### Feature
4+
5+
* Add support to find value enums
6+
7+
<details>
8+
9+
A new `JpaScanner#findEnums` method added to find all value enums in the classpath.
10+
11+
</details>
12+
13+
* Improve rendering phase
14+
15+
<details>
16+
17+
A change in an internal hook, by using `queueMicrotask` instead of `setTimeout` improve queue task execution. This
18+
avoids unnecessary re-rendering if the callback updates state (mostly if used when fetching data).
19+
20+
</details>
21+
22+
* Improve initial logo loading
23+
24+
<details>
25+
26+
Caught NPE when first loading logo seems to cause initial delay.
27+
28+
</details>
29+
30+
* Improve json field processing
31+
32+
<details>
33+
34+
Contextual fields are filtered out in advance so that json fields aren't processing every time at rendering.
35+
36+
</details>
37+
38+
#### Fix
39+
40+
* Prevent closing user home action tab
41+
* Fix time widget format
42+
43+
<details>
44+
45+
Display formatted value of time widget in readonly. This will
46+
take into account if the field should display the seconds.
47+
48+
</details>
49+
50+
* Fix data export directory not multi-tenancy compatible
51+
52+
<details>
53+
54+
The data export directory is not multi-tenancy compatible. It should follow the multi-tenancy data upload
55+
directory structure by including the tenantId as child path.
56+
57+
</details>
58+
59+
* Fix auto save data in expandable tree-grid
60+
* Fix add record in editable panel-dashlet grid
61+
62+
<details>
63+
64+
When we add new record in grid then if we try to add more subsequent record by clicking
65+
again on `+` button by expecting to commit current edited row and add new row. But it
66+
was adding/commiting duplicate records.
67+
68+
</details>
69+
70+
* Fix MetaPermissions.canWrite permission check
71+
72+
<details>
73+
74+
MetaPermissions.canWrite should check CAN_WRITE instead of CAN_EXPORT
75+
76+
</details>
77+
78+
* Revert back default step to 1 for decimal fields
79+
80+
<details>
81+
82+
On decimal fields, the default step was determined by the current scale of the field. If a field with scale set to 2,
83+
default step would be 0.01. As it haven't been adopted, it reverts back previous behavior, with a default step to 1
84+
for decimal fields. So it is no more allowed to have a step depending on the dynamic scale of the field.
85+
86+
</details>
87+
88+
* Fix pass context params in action context
89+
* Fix action on o2m/tree-grid setting dirty
90+
* Hide attachment icon for custom form editor popup and not saved record
91+
92+
<details>
93+
94+
On not saved records in form editor popup, it shouldn't show the attachment icon.
95+
Same for some custom form editor popups like user preferences.
96+
97+
</details>
98+
99+
1100
## 7.3.1 (2025-02-05)
2101

3102
#### Feature

changelogs/unreleased/decimal-default-step.yml

-7
This file was deleted.

changelogs/unreleased/find-value-enums.yml

-5
This file was deleted.

changelogs/unreleased/fix-action-o2m-tree-grid-dirty.yml

-3
This file was deleted.

changelogs/unreleased/fix-add-record-in-editable-panel-dashlet-grid.yml

-7
This file was deleted.

changelogs/unreleased/fix-auto-save-data-in-expandable-tree-grid.yml

-3
This file was deleted.

changelogs/unreleased/fix-closing-home-action.yml

-3
This file was deleted.

changelogs/unreleased/fix-data-export-directory.yml

-6
This file was deleted.

changelogs/unreleased/fix-hide-attachment-in-popup-form-editor.yml

-6
This file was deleted.

changelogs/unreleased/fix-meta-permissions-can-write.yml

-5
This file was deleted.

changelogs/unreleased/fix-pass-context-params-in-action-context.yml

-3
This file was deleted.

changelogs/unreleased/fix-time-format.yml

-6
This file was deleted.

changelogs/unreleased/improve-json-fields-processing.yml

-5
This file was deleted.

changelogs/unreleased/improve-logo-initial-loading.yml

-5
This file was deleted.

changelogs/unreleased/improve-rendering-phase.yml

-6
This file was deleted.

0 commit comments

Comments
 (0)