@genesislcap/blank-app-seed 5.4.0-prerelease.2 → 5.4.0-prerelease.21
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 +115 -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,205 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [5.4.0-prerelease.
|
|
3
|
+
## [5.4.0-prerelease.21](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.4.0-prerelease.20...v5.4.0-prerelease.21) (2025-09-30)
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
### Bug Fixes
|
|
7
7
|
|
|
8
|
-
*
|
|
9
|
-
* exclude bdd-tests from root build.gradle.kts e9fe879
|
|
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
|
+
* updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 7b6670e
|
|
20
9
|
|
|
21
|
-
## [5.4.0-prerelease.
|
|
10
|
+
## [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)
|
|
22
11
|
|
|
23
12
|
|
|
24
|
-
###
|
|
13
|
+
### Bug Fixes
|
|
25
14
|
|
|
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)
|
|
15
|
+
* remove index-federated.ts file 769b154
|
|
16
|
+
* remove index-federated.ts file (#515) 7f4b431
|
|
60
17
|
|
|
18
|
+
## [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)
|
|
61
19
|
|
|
62
|
-
### Features
|
|
63
20
|
|
|
64
|
-
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* update genesisStart version GENC-0 f483e15
|
|
24
|
+
* update genesisStart version GENC-0 (#517) cb37824
|
|
25
|
+
|
|
26
|
+
## [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)
|
|
27
|
+
|
|
65
28
|
|
|
66
|
-
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
|
|
31
|
+
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) ae21109
|
|
32
|
+
|
|
33
|
+
## [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
34
|
|
|
68
35
|
|
|
69
36
|
### Bug Fixes
|
|
70
37
|
|
|
71
|
-
*
|
|
72
|
-
* correct config for reqReps in grid GENC-1168 (#487) f9170d4
|
|
38
|
+
* updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 0d5e2bc
|
|
73
39
|
|
|
74
|
-
## [5.
|
|
40
|
+
## [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
41
|
|
|
76
42
|
|
|
77
43
|
### Bug Fixes
|
|
78
44
|
|
|
79
|
-
*
|
|
80
|
-
* set requestAutoSetup: false as default for ReqRep GENC-1168 (#486) e2a4679
|
|
45
|
+
* update auth version [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#513) 1d4027a
|
|
81
46
|
|
|
82
|
-
## [5.
|
|
47
|
+
## [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
48
|
|
|
84
49
|
|
|
85
50
|
### Features
|
|
86
51
|
|
|
87
|
-
*
|
|
88
|
-
*
|
|
52
|
+
* support cucumber tags in bdd tests cc918ff
|
|
53
|
+
* support cucumber tags in bdd tests (#512) 652dcf1
|
|
54
|
+
|
|
55
|
+
## [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)
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
### Bug Fixes
|
|
59
|
+
|
|
60
|
+
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 82124e1
|
|
61
|
+
|
|
62
|
+
## [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)
|
|
89
63
|
|
|
90
64
|
|
|
91
65
|
### Bug Fixes
|
|
92
66
|
|
|
93
|
-
*
|
|
94
|
-
*
|
|
67
|
+
* bump fui version with vite fixes GENC-1187 817d471
|
|
68
|
+
* bump fui version with vite fixes GENC-1187 (#511) bc6983c
|
|
95
69
|
|
|
96
|
-
## [5.
|
|
70
|
+
## [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)
|
|
97
71
|
|
|
98
72
|
|
|
99
73
|
### Bug Fixes
|
|
100
74
|
|
|
101
|
-
*
|
|
102
|
-
*
|
|
75
|
+
* bdd tests config to run against the server rather than via the UI GENC-1012 36566f2
|
|
76
|
+
* bdd tests config to run against the server rather than via the UI GENC-1012 (#509) a11bc20
|
|
103
77
|
|
|
104
|
-
## [5.
|
|
78
|
+
## [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)
|
|
105
79
|
|
|
106
80
|
|
|
107
81
|
### Bug Fixes
|
|
108
82
|
|
|
109
|
-
*
|
|
83
|
+
* update BDD framework version GENC-0 (#507) 233103d
|
|
110
84
|
|
|
111
|
-
## [5.
|
|
85
|
+
## [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)
|
|
112
86
|
|
|
113
87
|
|
|
114
88
|
### Bug Fixes
|
|
115
89
|
|
|
116
|
-
*
|
|
90
|
+
* bump fui version with stacking notification fix PA-1745 ce6ad4d
|
|
91
|
+
* bump fui version with stacking notification fix PA-1745 (#505) 0002d5d
|
|
117
92
|
|
|
118
|
-
## [5.
|
|
93
|
+
## [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)
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
### Features
|
|
97
|
+
|
|
98
|
+
* support confirmation message for event on entity manager GENC-1185 ea27d49
|
|
99
|
+
* support confirmation message for event on entity manager GENC-1185 (#503) d2b4448
|
|
119
100
|
|
|
120
101
|
|
|
121
102
|
### Bug Fixes
|
|
122
103
|
|
|
123
|
-
*
|
|
124
|
-
*
|
|
104
|
+
* e2e test for wc GENC-1185 9b4dc53
|
|
105
|
+
* react event setup GENC-1185 80e20fd
|
|
106
|
+
* syntax error setting confirmation message GENC-1185 10b2835
|
|
107
|
+
* tweak react syntax GENC-1185 07cf6dd
|
|
108
|
+
* use smart-form-modal for message display GENC-1185 22f7968
|
|
125
109
|
|
|
126
|
-
## [5.
|
|
110
|
+
## [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
111
|
|
|
128
112
|
|
|
129
113
|
### Bug Fixes
|
|
130
114
|
|
|
131
|
-
*
|
|
132
|
-
* automated dependency version update [skip-ci] [PSD-9](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/9) (#482) 301b309
|
|
115
|
+
* added logout endpoint in confog.properties GENC-0 (#502) aa02828
|
|
133
116
|
|
|
134
|
-
## [5.
|
|
117
|
+
## [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
118
|
|
|
136
119
|
|
|
137
120
|
### Bug Fixes
|
|
138
121
|
|
|
139
|
-
*
|
|
122
|
+
* escape commas in CSV files GENC-1188 c25aab1
|
|
123
|
+
* escape commas in CSV files GENC-1188 (#501) 7c32c98
|
|
140
124
|
|
|
141
|
-
## [5.
|
|
125
|
+
## [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
126
|
|
|
143
127
|
|
|
144
128
|
### Bug Fixes
|
|
145
129
|
|
|
146
|
-
*
|
|
130
|
+
* Add foundation-auth:defined selector for Chrome 139 compatibility ed79e1f
|
|
131
|
+
* Add foundation-auth:defined selector for Chrome 139 compatibility (#499) 9260d22
|
|
132
|
+
* backport main to prerelease [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#500) 4b8dd8d
|
|
147
133
|
|
|
148
|
-
## [5.2
|
|
134
|
+
## [5.3.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.3.1...v5.3.2) (2025-08-11)
|
|
149
135
|
|
|
150
136
|
|
|
151
137
|
### Bug Fixes
|
|
152
138
|
|
|
153
|
-
*
|
|
139
|
+
* Add foundation-auth:defined selector for Chrome 139 compatibility ed79e1f
|
|
140
|
+
* Add foundation-auth:defined selector for Chrome 139 compatibility (#499) 9260d22
|
|
154
141
|
|
|
155
|
-
## [5.
|
|
142
|
+
## [5.3.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.3.0...v5.3.1) (2025-08-07)
|
|
156
143
|
|
|
157
144
|
|
|
158
145
|
### Bug Fixes
|
|
159
146
|
|
|
160
|
-
*
|
|
161
|
-
*
|
|
162
|
-
|
|
147
|
+
* override analytics [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) c568129
|
|
148
|
+
* override analytics [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#497) f1adb41
|
|
149
|
+
|
|
150
|
+
## [5.3.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.2.0...v5.3.0) (2025-07-07)
|
|
163
151
|
|
|
164
|
-
|
|
152
|
+
|
|
153
|
+
### Features
|
|
154
|
+
|
|
155
|
+
* advanced custom events (react/web-components) GENC-1002 (#477) baccafb
|
|
156
|
+
* advanced events [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#483) ba96e02
|
|
165
157
|
|
|
166
158
|
|
|
167
159
|
### Bug Fixes
|
|
168
160
|
|
|
169
|
-
* check if custom events exist GENC-1002
|
|
170
|
-
*
|
|
161
|
+
* check if custom events exist GENC-1002 (#478) 89d293c
|
|
162
|
+
* show server errors in form GENC-1116 (#479) d6a1291
|
|
163
|
+
* show title in custom events modal GENC-0 (#480) 554f141
|
|
171
164
|
|
|
172
|
-
## [5.2.0
|
|
165
|
+
## [5.2.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.1.2...v5.2.0) (2025-06-24)
|
|
173
166
|
|
|
174
167
|
|
|
175
168
|
### Features
|
|
176
169
|
|
|
177
|
-
* advanced custom events
|
|
178
|
-
* advanced custom events (react/web-components) GENC-1002 (#
|
|
170
|
+
* advanced custom events - react GENC-1002 13c6bda
|
|
171
|
+
* advanced custom events (react/web-components) GENC-1002 (#472) 2117a89
|
|
172
|
+
* advanced custom events GENC-1002 e31a875
|
|
173
|
+
* bump GSF to 8.12 [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) abfa76c
|
|
174
|
+
* bump GSF to 8.12 [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#474) 33f5d7c
|
|
175
|
+
* bump GSF to 8.12 [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#476) 1f4849d
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
### Bug Fixes
|
|
179
|
+
|
|
180
|
+
* addressed PR feedback GENC-1002 fca014a
|
|
181
|
+
* automated dependency version update [skip-ci] [PSD-9](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/9) 7b0804f
|
|
182
|
+
* automated dependency version update [skip-ci] [PSD-9](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/9) (#470) 4ab2bd3
|
|
183
|
+
* lint errors GENC-1002 08e5d58
|
|
184
|
+
* react bug fixes fd97f2b
|
|
185
|
+
* react bug fixes (#471) b3bafdb
|
|
186
|
+
* react router fixes b6d4754
|
|
187
|
+
* react router fixes (#469) 12e9d1e
|
|
188
|
+
* removed deprecated package inbox 118fb20
|
|
189
|
+
* removed deprecated package inbox (#468) a6f2e42
|
|
190
|
+
* removed deprecated package login 04aa0bc
|
|
191
|
+
* removed deprecated package login 5870b1a
|
|
192
|
+
* revert advanced custom events [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#473) 892042b
|
|
193
|
+
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 278a23a
|
|
194
|
+
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 231a029
|
|
195
|
+
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 6c2de4b
|
|
196
|
+
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 24ff468
|
|
197
|
+
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 19f16a4
|
|
198
|
+
* updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 5dc228c
|
|
199
|
+
* updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 0f969da
|
|
200
|
+
* updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 9c6249c
|
|
201
|
+
* updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 8f014d9
|
|
202
|
+
* updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) c46e67f
|
|
179
203
|
|
|
180
204
|
## [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
205
|
|
|
@@ -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');
|