@genesislcap/blank-app-seed 3.3.0 → 3.4.0
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
CHANGED
package/.genx/versions.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.4.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.3.1...v3.4.0) (2024-04-27)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* Add PrimaryIfSingleNode system definition setting to automatically set a cluster node as primary if no other hosts are defined (GSF-6789) (#196) 667bf30
|
|
9
|
+
|
|
10
|
+
## [3.3.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.3.0...v3.3.1) (2024-04-26)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* add webpack to plugin ui command. (GENC-372) (#195) 930bab3
|
|
16
|
+
|
|
3
17
|
## [3.3.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.2.0...v3.3.0) (2024-04-23)
|
|
4
18
|
|
|
5
19
|
|
package/client/package.json
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"clean": "genx clean dist node_modules",
|
|
29
29
|
"dev": "npm run dev:webpack",
|
|
30
30
|
"dev:docker": "npm run dev -- --host 0.0.0.0",
|
|
31
|
-
"dev:intellij": "genx dev -e ENABLE_SSO",
|
|
31
|
+
"dev:intellij": "genx dev -e ENABLE_SSO -b webpack",
|
|
32
32
|
"dev:no-open": "npm run dev -- --no-open",
|
|
33
33
|
"dev:https": "npm run dev -- --https",
|
|
34
34
|
"dev:vite": "genx dev -e API_HOST,ENABLE_SSO -b vite",
|
package/package.json
CHANGED
|
@@ -39,6 +39,7 @@ systemDefinition {
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
item(name = "DbNamespace", value = "{{appName}}")
|
|
42
|
+
item(name = "PrimaryIfSingleNode", value = "true")
|
|
42
43
|
item(name = "ClusterPort", value = "6000")
|
|
43
44
|
item(name = "location", value = "LO")
|
|
44
45
|
item(name = "LogFramework", value = "LOG4J2")
|