@genesislcap/blank-app-seed 5.4.0-prerelease.2 → 5.4.0-prerelease.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.genx/package.json +1 -1
- package/.genx/templates/csv.hbs +2 -2
- package/.genx/templates/react/component/component.hbs +7 -0
- package/.genx/templates/web-components/entityManager.hbs +1 -0
- package/.genx/versions.json +3 -3
- package/.github/workflows/build.yml +3 -0
- package/CHANGELOG.md +108 -91
- package/bdd-tests/build.gradle.kts +6 -1
- package/bdd-tests/gradle.properties +1 -1
- package/bdd-tests/src/test/resources/4-config/config.properties +3 -2
- package/client-tmp/angular/package.json +1 -0
- package/client-tmp/react/package.json +3 -0
- package/client-tmp/web-components/package.json +4 -3
- package/client-tmp/web-components/src/main/main.styles.ts +4 -0
- package/client-tmp/web-components/test/e2e/flows/001-protected.e2e.ts +1 -1
- package/package.json +1 -1
- package/server/gradle.properties +1 -1
- package/server/{{appName}}-app/src/main/genesis/cfg/genesis-system-definition.kts +28 -8
- package/client-tmp/web-components/src/index.federated.ts +0 -1
package/.genx/package.json
CHANGED
package/.genx/templates/csv.hbs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{{#each entity.fields}}{{this.name}}{{#unless this.isLast }},{{/unless}}{{/each}}
|
|
1
|
+
{{#each entity.fields}}{{{this.name}}}{{#unless this.isLast }},{{/unless}}{{/each}}
|
|
2
2
|
{{#if entity.data}}
|
|
3
3
|
{{#each entity.data}}
|
|
4
|
-
{{#each this.rows}}{{this.name}}{{#unless this.isLast }},{{/unless}}{{/each}}
|
|
4
|
+
{{#each this.rows}}{{{this.name}}}{{#unless this.isLast }},{{/unless}}{{/each}}
|
|
5
5
|
{{/each}}
|
|
6
6
|
{{/if}}
|
|
@@ -144,6 +144,12 @@ export const {{pascalCase tile.componentName}}: React.FC = () => {
|
|
|
144
144
|
const [uiSchema, setUiSchema] = useState<UiSchema | null>(null);
|
|
145
145
|
const [isModalVisible, setIsModalVisible] = useState<boolean>(false);
|
|
146
146
|
|
|
147
|
+
function confirmationMessage() {
|
|
148
|
+
if (!activeCustomEvent) return null;
|
|
149
|
+
const event = customEvents.find(e => e.name === activeCustomEvent.name);
|
|
150
|
+
return event?.confirmSubmit?.state === 'enabled' ? event.confirmSubmit.message : null;
|
|
151
|
+
}
|
|
152
|
+
|
|
147
153
|
useEffect(() => {
|
|
148
154
|
if (activeCustomEvent) {
|
|
149
155
|
setIsModalVisible(true);
|
|
@@ -162,6 +168,7 @@ export const {{pascalCase tile.componentName}}: React.FC = () => {
|
|
|
162
168
|
formResourceName={resourceName}
|
|
163
169
|
formUiSchema={uiSchema}
|
|
164
170
|
editedEntity={customEventFormData}
|
|
171
|
+
confirmationMessage={confirmationMessage()}
|
|
165
172
|
></smart-form-modal>,
|
|
166
173
|
document.querySelector('rapid-design-system-provider')!
|
|
167
174
|
);
|
|
@@ -59,6 +59,7 @@ ${whenElse(
|
|
|
59
59
|
:formResourceName=${(x) => x.getCustomEventResourceName()}
|
|
60
60
|
:formUiSchema=${(x) => x.getCustomEventUiSchema()}
|
|
61
61
|
:editedEntity=${(x) => x.customEventFormData}
|
|
62
|
+
confirmation-message="${(x) => x.getActiveCustomEvent()?.confirmSubmit?.state === 'enabled' ? x.getActiveCustomEvent().confirmSubmit.message : null}"
|
|
62
63
|
></smart-form-modal>
|
|
63
64
|
{{/if}}
|
|
64
65
|
`,
|
package/.genx/versions.json
CHANGED
|
@@ -53,6 +53,9 @@ jobs:
|
|
|
53
53
|
working-directory: /tmp/testapp/client
|
|
54
54
|
run: npm run lint
|
|
55
55
|
|
|
56
|
+
- name: Install Chromium
|
|
57
|
+
run: npx playwright install chromium --with-deps
|
|
58
|
+
|
|
56
59
|
- name: Test (unit & integration UI)
|
|
57
60
|
working-directory: /tmp/testapp/client
|
|
58
61
|
run: npm run test && npm run test:e2e
|
package/CHANGELOG.md
CHANGED
|
@@ -1,181 +1,198 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [5.4.0-prerelease.
|
|
3
|
+
## [5.4.0-prerelease.20](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.4.0-prerelease.19...v5.4.0-prerelease.20) (2025-09-26)
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
### Bug Fixes
|
|
7
7
|
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* fix compatibility with configuration cache 5cf2fd5
|
|
11
|
-
* fix description in build.gradle.kts 53fece9
|
|
12
|
-
* mark test task as not compatible with configuration cache to avoid build issues 81ae5e3
|
|
13
|
-
* rever workspace.xml changes c77586c
|
|
14
|
-
* revert workspace.xml changes and disable configuration cache for bdd tests 84bebda
|
|
15
|
-
* revert workspace.xml changes and disable configuration cache for bdd tests b5d2897
|
|
16
|
-
* revert workspace.xml changes and disable configuration cache for bdd tests 08a260e
|
|
17
|
-
* revert workspace.xml changes and disable configuration cache for bdd tests 4a3927e
|
|
18
|
-
* separate bdd tests folder (#494) c12df43
|
|
19
|
-
* use separate bdd tests folder to avoid groovy dependency clashes b1e6bfe
|
|
8
|
+
* remove index-federated.ts file 769b154
|
|
9
|
+
* remove index-federated.ts file (#515) 7f4b431
|
|
20
10
|
|
|
21
|
-
## [5.4.0-prerelease.
|
|
11
|
+
## [5.4.0-prerelease.19](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.4.0-prerelease.18...v5.4.0-prerelease.19) (2025-09-22)
|
|
22
12
|
|
|
23
13
|
|
|
24
|
-
###
|
|
14
|
+
### Bug Fixes
|
|
25
15
|
|
|
26
|
-
*
|
|
27
|
-
*
|
|
28
|
-
* advanced custom events (react/web-components) GENC-1002 (#477) c9710fe
|
|
29
|
-
* backport main 8.13 (#492) 76884d4
|
|
30
|
-
* smart-form-modal react GENC-1162 d82bf2b
|
|
31
|
-
* use smart-form-modal GENC-1162 (#485) 744ad5b
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
### Bug Fixes
|
|
35
|
-
|
|
36
|
-
* automated dependency version update [skip-ci] [PSD-9](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/9) af97313
|
|
37
|
-
* automated dependency version update [skip-ci] [PSD-9](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/9) (#482) 301b309
|
|
38
|
-
* check if custom events exist GENC-1002 aad5e1e
|
|
39
|
-
* check if custom events exist GENC-1002 (#478) b1420c2
|
|
40
|
-
* correct config for reqReps in grid GENC-1168 8e3927c
|
|
41
|
-
* correct config for reqReps in grid GENC-1168 (#487) f9170d4
|
|
42
|
-
* remove field name for custom events PA-1716 7ed8191
|
|
43
|
-
* remove field name for custom events PA-1716 (#484) eb2ce71
|
|
44
|
-
* set requestAutoSetup: false as default for ReqRep GENC-1168 ed6c00a
|
|
45
|
-
* set requestAutoSetup: false as default for ReqRep GENC-1168 (#486) e2a4679
|
|
46
|
-
* show server errors in form GENC-1116 (#479) 3cc189f
|
|
47
|
-
* show title in custom events modal GENC-0 6998f64
|
|
48
|
-
* show title in custom events modal GENC-0 d31f9f3
|
|
49
|
-
* show title in custom events modal GENC-0 (#480) f05aa72
|
|
50
|
-
* Update gradle.properties to disable log4j2 shutdown hook in order to avoid classloader leakage f0deb5c
|
|
51
|
-
* Update gradle.properties to disable log4j2 shutdown hook in order to avoid classloader leakage (#481) 875cbc8
|
|
52
|
-
* update type for customEventFormSchemas GENC-1162 9985837
|
|
53
|
-
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 921b9f9
|
|
54
|
-
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) aac125a
|
|
55
|
-
* updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) ca8beec
|
|
56
|
-
* updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 60b47dc
|
|
57
|
-
* use smart-form-modal GENC-1162 d4d112f
|
|
58
|
-
|
|
59
|
-
## [5.2.0-prerelease.19](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.2.0-prerelease.18...v5.2.0-prerelease.19) (2025-07-18)
|
|
16
|
+
* update genesisStart version GENC-0 f483e15
|
|
17
|
+
* update genesisStart version GENC-0 (#517) cb37824
|
|
60
18
|
|
|
19
|
+
## [5.4.0-prerelease.18](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.4.0-prerelease.17...v5.4.0-prerelease.18) (2025-09-19)
|
|
61
20
|
|
|
62
|
-
### Features
|
|
63
21
|
|
|
64
|
-
|
|
22
|
+
### Bug Fixes
|
|
65
23
|
|
|
66
|
-
|
|
24
|
+
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) ae21109
|
|
25
|
+
|
|
26
|
+
## [5.4.0-prerelease.17](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.4.0-prerelease.16...v5.4.0-prerelease.17) (2025-09-19)
|
|
67
27
|
|
|
68
28
|
|
|
69
29
|
### Bug Fixes
|
|
70
30
|
|
|
71
|
-
*
|
|
72
|
-
* correct config for reqReps in grid GENC-1168 (#487) f9170d4
|
|
31
|
+
* updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 0d5e2bc
|
|
73
32
|
|
|
74
|
-
## [5.
|
|
33
|
+
## [5.4.0-prerelease.16](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.4.0-prerelease.15...v5.4.0-prerelease.16) (2025-09-17)
|
|
75
34
|
|
|
76
35
|
|
|
77
36
|
### Bug Fixes
|
|
78
37
|
|
|
79
|
-
*
|
|
80
|
-
* set requestAutoSetup: false as default for ReqRep GENC-1168 (#486) e2a4679
|
|
38
|
+
* update auth version [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#513) 1d4027a
|
|
81
39
|
|
|
82
|
-
## [5.
|
|
40
|
+
## [5.4.0-prerelease.15](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.4.0-prerelease.14...v5.4.0-prerelease.15) (2025-09-17)
|
|
83
41
|
|
|
84
42
|
|
|
85
43
|
### Features
|
|
86
44
|
|
|
87
|
-
*
|
|
88
|
-
*
|
|
45
|
+
* support cucumber tags in bdd tests cc918ff
|
|
46
|
+
* support cucumber tags in bdd tests (#512) 652dcf1
|
|
47
|
+
|
|
48
|
+
## [5.4.0-prerelease.14](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.4.0-prerelease.13...v5.4.0-prerelease.14) (2025-09-11)
|
|
89
49
|
|
|
90
50
|
|
|
91
51
|
### Bug Fixes
|
|
92
52
|
|
|
93
|
-
*
|
|
94
|
-
* use smart-form-modal GENC-1162 d4d112f
|
|
53
|
+
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 82124e1
|
|
95
54
|
|
|
96
|
-
## [5.
|
|
55
|
+
## [5.4.0-prerelease.13](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.4.0-prerelease.12...v5.4.0-prerelease.13) (2025-09-11)
|
|
97
56
|
|
|
98
57
|
|
|
99
58
|
### Bug Fixes
|
|
100
59
|
|
|
101
|
-
*
|
|
102
|
-
*
|
|
60
|
+
* bump fui version with vite fixes GENC-1187 817d471
|
|
61
|
+
* bump fui version with vite fixes GENC-1187 (#511) bc6983c
|
|
103
62
|
|
|
104
|
-
## [5.
|
|
63
|
+
## [5.4.0-prerelease.12](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.4.0-prerelease.11...v5.4.0-prerelease.12) (2025-09-02)
|
|
105
64
|
|
|
106
65
|
|
|
107
66
|
### Bug Fixes
|
|
108
67
|
|
|
109
|
-
*
|
|
68
|
+
* bdd tests config to run against the server rather than via the UI GENC-1012 36566f2
|
|
69
|
+
* bdd tests config to run against the server rather than via the UI GENC-1012 (#509) a11bc20
|
|
110
70
|
|
|
111
|
-
## [5.
|
|
71
|
+
## [5.4.0-prerelease.11](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.4.0-prerelease.10...v5.4.0-prerelease.11) (2025-08-29)
|
|
112
72
|
|
|
113
73
|
|
|
114
74
|
### Bug Fixes
|
|
115
75
|
|
|
116
|
-
*
|
|
76
|
+
* update BDD framework version GENC-0 (#507) 233103d
|
|
77
|
+
|
|
78
|
+
## [5.4.0-prerelease.10](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.4.0-prerelease.9...v5.4.0-prerelease.10) (2025-08-20)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
### Bug Fixes
|
|
82
|
+
|
|
83
|
+
* bump fui version with stacking notification fix PA-1745 ce6ad4d
|
|
84
|
+
* bump fui version with stacking notification fix PA-1745 (#505) 0002d5d
|
|
85
|
+
|
|
86
|
+
## [5.4.0-prerelease.9](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.4.0-prerelease.8...v5.4.0-prerelease.9) (2025-08-19)
|
|
87
|
+
|
|
117
88
|
|
|
118
|
-
|
|
89
|
+
### Features
|
|
90
|
+
|
|
91
|
+
* support confirmation message for event on entity manager GENC-1185 ea27d49
|
|
92
|
+
* support confirmation message for event on entity manager GENC-1185 (#503) d2b4448
|
|
119
93
|
|
|
120
94
|
|
|
121
95
|
### Bug Fixes
|
|
122
96
|
|
|
123
|
-
*
|
|
124
|
-
*
|
|
97
|
+
* e2e test for wc GENC-1185 9b4dc53
|
|
98
|
+
* react event setup GENC-1185 80e20fd
|
|
99
|
+
* syntax error setting confirmation message GENC-1185 10b2835
|
|
100
|
+
* tweak react syntax GENC-1185 07cf6dd
|
|
101
|
+
* use smart-form-modal for message display GENC-1185 22f7968
|
|
125
102
|
|
|
126
|
-
## [5.
|
|
103
|
+
## [5.4.0-prerelease.8](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.4.0-prerelease.7...v5.4.0-prerelease.8) (2025-08-13)
|
|
127
104
|
|
|
128
105
|
|
|
129
106
|
### Bug Fixes
|
|
130
107
|
|
|
131
|
-
*
|
|
132
|
-
* automated dependency version update [skip-ci] [PSD-9](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/9) (#482) 301b309
|
|
108
|
+
* added logout endpoint in confog.properties GENC-0 (#502) aa02828
|
|
133
109
|
|
|
134
|
-
## [5.
|
|
110
|
+
## [5.4.0-prerelease.7](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.4.0-prerelease.6...v5.4.0-prerelease.7) (2025-08-12)
|
|
135
111
|
|
|
136
112
|
|
|
137
113
|
### Bug Fixes
|
|
138
114
|
|
|
139
|
-
*
|
|
115
|
+
* escape commas in CSV files GENC-1188 c25aab1
|
|
116
|
+
* escape commas in CSV files GENC-1188 (#501) 7c32c98
|
|
140
117
|
|
|
141
|
-
## [5.
|
|
118
|
+
## [5.4.0-prerelease.6](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.4.0-prerelease.5...v5.4.0-prerelease.6) (2025-08-11)
|
|
142
119
|
|
|
143
120
|
|
|
144
121
|
### Bug Fixes
|
|
145
122
|
|
|
146
|
-
*
|
|
123
|
+
* Add foundation-auth:defined selector for Chrome 139 compatibility ed79e1f
|
|
124
|
+
* Add foundation-auth:defined selector for Chrome 139 compatibility (#499) 9260d22
|
|
125
|
+
* backport main to prerelease [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#500) 4b8dd8d
|
|
147
126
|
|
|
148
|
-
## [5.2
|
|
127
|
+
## [5.3.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.3.1...v5.3.2) (2025-08-11)
|
|
149
128
|
|
|
150
129
|
|
|
151
130
|
### Bug Fixes
|
|
152
131
|
|
|
153
|
-
*
|
|
132
|
+
* Add foundation-auth:defined selector for Chrome 139 compatibility ed79e1f
|
|
133
|
+
* Add foundation-auth:defined selector for Chrome 139 compatibility (#499) 9260d22
|
|
154
134
|
|
|
155
|
-
## [5.
|
|
135
|
+
## [5.3.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.3.0...v5.3.1) (2025-08-07)
|
|
156
136
|
|
|
157
137
|
|
|
158
138
|
### Bug Fixes
|
|
159
139
|
|
|
160
|
-
*
|
|
161
|
-
*
|
|
162
|
-
* show title in custom events modal GENC-0 (#480) f05aa72
|
|
140
|
+
* override analytics [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) c568129
|
|
141
|
+
* override analytics [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#497) f1adb41
|
|
163
142
|
|
|
164
|
-
## [5.
|
|
143
|
+
## [5.3.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.2.0...v5.3.0) (2025-07-07)
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
### Features
|
|
147
|
+
|
|
148
|
+
* advanced custom events (react/web-components) GENC-1002 (#477) baccafb
|
|
149
|
+
* advanced events [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#483) ba96e02
|
|
165
150
|
|
|
166
151
|
|
|
167
152
|
### Bug Fixes
|
|
168
153
|
|
|
169
|
-
* check if custom events exist GENC-1002
|
|
170
|
-
*
|
|
154
|
+
* check if custom events exist GENC-1002 (#478) 89d293c
|
|
155
|
+
* show server errors in form GENC-1116 (#479) d6a1291
|
|
156
|
+
* show title in custom events modal GENC-0 (#480) 554f141
|
|
171
157
|
|
|
172
|
-
## [5.2.0
|
|
158
|
+
## [5.2.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.1.2...v5.2.0) (2025-06-24)
|
|
173
159
|
|
|
174
160
|
|
|
175
161
|
### Features
|
|
176
162
|
|
|
177
|
-
* advanced custom events
|
|
178
|
-
* advanced custom events (react/web-components) GENC-1002 (#
|
|
163
|
+
* advanced custom events - react GENC-1002 13c6bda
|
|
164
|
+
* advanced custom events (react/web-components) GENC-1002 (#472) 2117a89
|
|
165
|
+
* advanced custom events GENC-1002 e31a875
|
|
166
|
+
* bump GSF to 8.12 [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) abfa76c
|
|
167
|
+
* bump GSF to 8.12 [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#474) 33f5d7c
|
|
168
|
+
* bump GSF to 8.12 [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#476) 1f4849d
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
### Bug Fixes
|
|
172
|
+
|
|
173
|
+
* addressed PR feedback GENC-1002 fca014a
|
|
174
|
+
* automated dependency version update [skip-ci] [PSD-9](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/9) 7b0804f
|
|
175
|
+
* automated dependency version update [skip-ci] [PSD-9](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/9) (#470) 4ab2bd3
|
|
176
|
+
* lint errors GENC-1002 08e5d58
|
|
177
|
+
* react bug fixes fd97f2b
|
|
178
|
+
* react bug fixes (#471) b3bafdb
|
|
179
|
+
* react router fixes b6d4754
|
|
180
|
+
* react router fixes (#469) 12e9d1e
|
|
181
|
+
* removed deprecated package inbox 118fb20
|
|
182
|
+
* removed deprecated package inbox (#468) a6f2e42
|
|
183
|
+
* removed deprecated package login 04aa0bc
|
|
184
|
+
* removed deprecated package login 5870b1a
|
|
185
|
+
* revert advanced custom events [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#473) 892042b
|
|
186
|
+
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 278a23a
|
|
187
|
+
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 231a029
|
|
188
|
+
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 6c2de4b
|
|
189
|
+
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 24ff468
|
|
190
|
+
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 19f16a4
|
|
191
|
+
* updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 5dc228c
|
|
192
|
+
* updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 0f969da
|
|
193
|
+
* updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 9c6249c
|
|
194
|
+
* updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 8f014d9
|
|
195
|
+
* updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) c46e67f
|
|
179
196
|
|
|
180
197
|
## [5.2.0-prerelease.4](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.2.0-prerelease.3...v5.2.0-prerelease.4) (2025-06-24)
|
|
181
198
|
|
|
@@ -41,6 +41,11 @@ tasks {
|
|
|
41
41
|
test {
|
|
42
42
|
useJUnitPlatform()
|
|
43
43
|
notCompatibleWithConfigurationCache("Allure test plugin does not support Configuration Cache.")
|
|
44
|
+
|
|
45
|
+
// Support for Cucumber tag filtering via system properties
|
|
46
|
+
if (System.getProperty("cucumber.filter.tags") != null) {
|
|
47
|
+
systemProperty("cucumber.filter.tags", System.getProperty("cucumber.filter.tags"))
|
|
48
|
+
}
|
|
44
49
|
}
|
|
45
50
|
named("allureReport") {
|
|
46
51
|
notCompatibleWithConfigurationCache("Allure test plugin does not support Configuration Cache.")
|
|
@@ -48,4 +53,4 @@ tasks {
|
|
|
48
53
|
named("allureGenesisReport") {
|
|
49
54
|
notCompatibleWithConfigurationCache("Allure test plugin does not support Configuration Cache.")
|
|
50
55
|
}
|
|
51
|
-
}
|
|
56
|
+
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
#BROWSER
|
|
2
2
|
browser=chrome
|
|
3
3
|
#ENVIRONMENT
|
|
4
|
-
defaultHost=http://localhost:
|
|
4
|
+
defaultHost=http://localhost:9064/
|
|
5
5
|
baseURI=
|
|
6
|
+
getEventAfterLogout=REQ_USER_DETAILS
|
|
6
7
|
#PATH FOR RESOURCES
|
|
7
8
|
resourcesPath=src/test/resources
|
|
8
9
|
#PATH FOR PAYLOADS
|
|
@@ -20,4 +21,4 @@ inputPath=src/test/resources/5-input
|
|
|
20
21
|
#API MAXIMUM RESPONSE TIME
|
|
21
22
|
apiMaxResponseTime=7000
|
|
22
23
|
#HEALTH CHECK TASK MAXIMUM TIME TO EXECUTE
|
|
23
|
-
healthCheckMaxWait=10
|
|
24
|
+
healthCheckMaxWait=10
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"build:stats": "genx analyze",
|
|
30
30
|
"clean": "genx clean dist node_modules",
|
|
31
31
|
"dev": "npm run dev:webpack",
|
|
32
|
-
"dev:docker": "npm run dev -- --host 0.0.0.0",
|
|
32
|
+
"dev:docker": "npm run dev -- -- --host 0.0.0.0",
|
|
33
33
|
"dev:intellij": "genx dev -e ENABLE_SSO -b webpack",
|
|
34
|
-
"dev:no-open": "npm run dev -- --no-open",
|
|
35
|
-
"dev:https": "npm run dev -- --https",
|
|
34
|
+
"dev:no-open": "npm run dev -- -- --no-open",
|
|
35
|
+
"dev:https": "npm run dev -- -- --https",
|
|
36
36
|
"dev:vite": "genx dev -e API_HOST,ENABLE_SSO -b vite",
|
|
37
37
|
"dev:webpack": "genx dev -e API_HOST,ENABLE_SSO -b webpack",
|
|
38
38
|
"dsconfig": "dsconfig --path src/styles/design-tokens.json",
|
|
@@ -119,6 +119,7 @@
|
|
|
119
119
|
"tslib": "^2.3.1"
|
|
120
120
|
},
|
|
121
121
|
"overrides": {
|
|
122
|
+
"@analytics/core": "0.12.17",
|
|
122
123
|
"@genesislcap/foundation-auth": "{{versions.UI}}",
|
|
123
124
|
"@genesislcap/foundation-comms": "{{versions.UI}}",
|
|
124
125
|
"@genesislcap/foundation-entity-management": "{{versions.UI}}",
|
|
@@ -2,5 +2,5 @@ import { expect } from '@genesislcap/foundation-testing/e2e';
|
|
|
2
2
|
import { test } from '../fixture';
|
|
3
3
|
|
|
4
4
|
test('expected page title', async ({ protectedPage, page }) => {
|
|
5
|
-
await expect(page).toHaveTitle(/
|
|
5
|
+
await expect(page).toHaveTitle(/{{capitalCase appName}}/);
|
|
6
6
|
});
|
package/package.json
CHANGED
package/server/gradle.properties
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
systemDefinition {
|
|
2
2
|
global {
|
|
3
|
+
item(name = "DbNamespace", value = "{{localGenId}}")
|
|
4
|
+
item(name = "PrimaryIfSingleNode", value = "true")
|
|
5
|
+
item(name = "ClusterPort", value = "6000")
|
|
6
|
+
item(name = "Location", value = "LO")
|
|
7
|
+
item(name = "LogFramework", value = "LOG4J2")
|
|
8
|
+
item(name = "LogFrameworkConfig", value = "log4j2-default.xml")
|
|
3
9
|
item(name = "DbLayer", value = "SQL")
|
|
4
10
|
item(name = "SqlEnableSequenceGeneration", value = true)
|
|
5
11
|
item(name = "DictionarySource", value = "DB")
|
|
@@ -15,7 +21,6 @@ systemDefinition {
|
|
|
15
21
|
item(name = "DbUsername", value = "Enter DB Username")
|
|
16
22
|
item(name = "DbPassword", value = "Enter DB Password")
|
|
17
23
|
item(name = "DbSqlConnectionPoolSize", value = "3")
|
|
18
|
-
item(name = "DbMode", value = "VANILLA")
|
|
19
24
|
item(name = "GenesisNetProtocol", value = "V2")
|
|
20
25
|
item(name = "ResourcePollerTimeout", value = "5")
|
|
21
26
|
item(name = "ReqRepTimeout", value = "60")
|
|
@@ -32,19 +37,34 @@ systemDefinition {
|
|
|
32
37
|
|
|
33
38
|
systems {
|
|
34
39
|
|
|
40
|
+
//Template setup for a cluster of hosts to help when setting up the application for a HA Prod environment
|
|
41
|
+
//If you are looking to use containers, the system definition block is not needed and can be removed
|
|
42
|
+
// Please see the following docs for container setup guidance : https://docs.genesis.global/docs/build-deploy-operate/deploy/hosting-infrastructure/containers/
|
|
43
|
+
system(name = "PROD") {
|
|
44
|
+
|
|
45
|
+
hosts {
|
|
46
|
+
//Change these to list each of the servers in your production cluster when known, more than one host being defined means they will try to operate as a cluster
|
|
47
|
+
//Ensure that firewall is configured for the hosts to be able to communicate per https://docs.genesis.global/docs/build-deploy-operate/deploy/supporting-infrastructure/#firewall
|
|
48
|
+
host("app-prod-host1")
|
|
49
|
+
host("app-prod-host2")
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
//ZeroMQ settings required for cluster operation : Read more at https://docs.genesis.global/docs/build-deploy-operate/operate/update-queue#zeromq-configuration-options
|
|
53
|
+
item(name = "ZeroMQProxyModeEnabled", value = "true")
|
|
54
|
+
item(name = "ZeroMQProxyUnicastRelayEnabled", value = "true")
|
|
55
|
+
|
|
56
|
+
}
|
|
57
|
+
|
|
35
58
|
system(name = "DEV") {
|
|
36
59
|
|
|
37
60
|
hosts {
|
|
61
|
+
//This block is used to run the application locally and will take your local machine host name
|
|
38
62
|
host(LOCAL_HOST)
|
|
39
63
|
}
|
|
40
|
-
|
|
64
|
+
|
|
65
|
+
//ZeroMQ settings required for running the app locally : Read more at https://docs.genesis.global/docs/build-deploy-operate/operate/update-queue#zeromq-configuration-options
|
|
41
66
|
item(name = "ZeroMQConnectToLocalhostViaLoopback", value = "true")
|
|
42
|
-
|
|
43
|
-
item(name = "PrimaryIfSingleNode", value = "true")
|
|
44
|
-
item(name = "ClusterPort", value = "6000")
|
|
45
|
-
item(name = "location", value = "LO")
|
|
46
|
-
item(name = "LogFramework", value = "LOG4J2")
|
|
47
|
-
item(name = "LogFrameworkConfig", value = "log4j2-default.xml")
|
|
67
|
+
|
|
48
68
|
}
|
|
49
69
|
|
|
50
70
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import('./index');
|