@genesislcap/blank-app-seed 2.5.6 → 2.5.8

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.
@@ -14,8 +14,10 @@ module.exports = async (data, utils) => {
14
14
 
15
15
  registerPartials(utils);
16
16
 
17
- data.routes.forEach(route => {
18
- generateRoute(route, utils);
19
- });
17
+ data.routes
18
+ .map((route) => ({ ...route, layoutKey: `${route.name}_${Date.now()}` }))
19
+ .forEach((route) => {
20
+ generateRoute(route, utils);
21
+ });
20
22
 
21
23
  };
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed-config",
3
3
  "description": "Genesis Blank App Seed Configuration",
4
- "version": "2.5.6",
4
+ "version": "2.5.8",
5
5
  "license": "Apache-2.0",
6
6
  "genxSeedConfig": {
7
7
  "exclude": [
@@ -1,9 +1,9 @@
1
1
  import { html } from '@microsoft/fast-element';
2
- import type { {{pascalCase route.name}} } from './{{route.name}}';
2
+ import type { {{pascalCase route.name}} } from './{{kebabCase route.name}}';
3
3
 
4
4
  export const {{pascalCase route.name}}Template = html<{{pascalCase route.name}}>`
5
5
  {{#if route.tiles}}
6
- <zero-layout auto-save-key="{{route.name}}">
6
+ <zero-layout auto-save-key="{{route.layoutKey}}">
7
7
  <zero-layout-region>
8
8
  {{#each route.tiles}}
9
9
  <zero-layout-item title="{{this.title}}">
@@ -1,5 +1,5 @@
1
1
  {
2
- "UI": "14.162.4",
2
+ "UI": "14.164.0",
3
3
  "GSF": "7.1.13",
4
4
  "Auth": "7.1.4"
5
5
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.5.8](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.7...v2.5.8) (2024-04-04)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * create unique layout autosave key attribute GENC-266 (#171) 8fd91ec
9
+
10
+ ## [2.5.7](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.6...v2.5.7) (2024-04-03)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * support lowercase characters and spaces in route generation GENC-259 (#170) fd34c05
16
+
3
17
  ## [2.5.6](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.5...v2.5.6) (2024-03-27)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed",
3
3
  "description": "Genesis Blank App Seed",
4
- "version": "2.5.6",
4
+ "version": "2.5.8",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"
@@ -6,15 +6,15 @@ systemDefinition {
6
6
  item(name = "DbHost", value = "jdbc:h2:file:~/{{appName}}/server/h2/test;DB_CLOSE_DELAY=-1;NON_KEYWORDS=VALUE,KEY;AUTO_SERVER=TRUE")
7
7
  item(name = "DbQuotedIdentifiers", value = true)
8
8
  item(name = "DEPLOYED_PRODUCT", value = "{{appName}}")
9
- item(name = "MqLayer", value = env["MQ_LAYER", "ZeroMQ"])
9
+ item(name = "MqLayer", value = "ZeroMQ")
10
10
  item(name = "AliasSource", value = "DB")
11
11
  item(name = "HookStateStore", value = "DB")
12
12
  item(name = "MetricsEnabled", value = "false")
13
13
  item(name = "ZeroMQProxyInboundPort", value = "5001")
14
14
  item(name = "ZeroMQProxyOutboundPort", value = "5000")
15
- env["DB_USERNAME"].takeIf { it.isNotBlank() }?.let { item(name = "DbUsername", value = it) }
16
- env["DB_PASSWORD"].takeIf { it.isNotBlank() }?.let { item(name = "DbPassword", value = it) }
17
- env["DB_SQL_CONNECTION_POOL_SIZE"].takeIf { it.isNotBlank() }?.let { item(name = "DbSqlConnectionPoolSize", value = it) }
15
+ item(name = "DbUsername", value = "Enter DB Username")
16
+ item(name = "DbPassword", value = "Enter DB Password")
17
+ item(name = "DbSqlConnectionPoolSize", value = "3")
18
18
  item(name = "DbMode", value = "VANILLA")
19
19
  item(name = "GenesisNetProtocol", value = "V2")
20
20
  item(name = "ResourcePollerTimeout", value = "5")
@@ -11,8 +11,8 @@
11
11
  !
12
12
  -->
13
13
  <processes>
14
- <!-- <process name="{{upperCase appName}}_DATASERVER">-->
15
- <!-- <groupId>{{upperCase appName}}</groupId>-->
14
+ <!-- <process name="{{constantCase appName}}_DATASERVER">-->
15
+ <!-- <groupId>{{constantCase appName}}</groupId>-->
16
16
  <!-- <start>true</start>-->
17
17
  <!-- <options>-Xmx1024m -DXSD_VALIDATE=false</options>-->
18
18
  <!-- <module>genesis-pal-dataserver</module>-->
@@ -21,8 +21,8 @@
21
21
  <!-- <description>Displays real-time details</description>-->
22
22
  <!-- <language>pal</language>-->
23
23
  <!-- </process>-->
24
- <!-- <process name="{{upperCase appName}}_REQUEST_SERVER">-->
25
- <!-- <groupId>{{upperCase appName}}</groupId>-->
24
+ <!-- <process name="{{constantCase appName}}_REQUEST_SERVER">-->
25
+ <!-- <groupId>{{constantCase appName}}</groupId>-->
26
26
  <!-- <start>true</start>-->
27
27
  <!-- <options>-Xmx256m -DXSD_VALIDATE=false</options>-->
28
28
  <!-- <module>genesis-pal-requestserver</module>-->
@@ -31,8 +31,8 @@
31
31
  <!-- <description>Server one-shot requests for details</description>-->
32
32
  <!-- <language>pal</language>-->
33
33
  <!-- </process>-->
34
- <!-- <process name="{{upperCase appName}}_EVENT_HANDLER">-->
35
- <!-- <groupId>{{upperCase appName}}</groupId>-->
34
+ <!-- <process name="{{constantCase appName}}_EVENT_HANDLER">-->
35
+ <!-- <groupId>{{constantCase appName}}</groupId>-->
36
36
  <!-- <start>true</start>-->
37
37
  <!-- <options>-Xmx512m -DRedirectStreamsToLog=true -DXSD_VALIDATE=false</options>-->
38
38
  <!-- <module>genesis-pal-eventhandler</module>-->
@@ -42,8 +42,8 @@
42
42
  <!-- <classpath>{{appName}}-app*</classpath>-->
43
43
  <!-- <language>pal</language>-->
44
44
  <!-- </process>-->
45
- <!-- <process name="{{upperCase appName}}_CONSOLIDATOR">-->
46
- <!-- <groupId>{{upperCase appName}}</groupId>-->
45
+ <!-- <process name="{{constantCase appName}}_CONSOLIDATOR">-->
46
+ <!-- <groupId>{{constantCase appName}}</groupId>-->
47
47
  <!-- <start>true</start>-->
48
48
  <!-- <options>-Xmx256m -DRedirectStreamsToLog=true -DXSD_VALIDATE=false</options>-->
49
49
  <!-- <module>genesis-pal-consolidator</module>-->
@@ -52,8 +52,8 @@
52
52
  <!-- <loggingLevel>INFO,DATADUMP_OFF</loggingLevel>-->
53
53
  <!-- <language>pal</language>-->
54
54
  <!-- </process>-->
55
- <!-- <process name="{{upperCase appName}}_STREAMER">-->
56
- <!-- <groupId>{{upperCase appName}}</groupId>-->
55
+ <!-- <process name="{{constantCase appName}}_STREAMER">-->
56
+ <!-- <groupId>{{constantCase appName}}</groupId>-->
57
57
  <!-- <start>true</start>-->
58
58
  <!-- <options>-Xmx128m -DXSD_VALIDATE=false</options>-->
59
59
  <!-- <module>genesis-pal-streamer</module>-->
@@ -62,8 +62,8 @@
62
62
  <!-- <loggingLevel>INFO,DATADUMP_OFF</loggingLevel>-->
63
63
  <!-- <language>pal</language>-->
64
64
  <!-- </process>-->
65
- <!-- <process name="{{upperCase appName}}_STREAMER_CLIENT">-->
66
- <!-- <groupId>{{upperCase appName}}</groupId>-->
65
+ <!-- <process name="{{constantCase appName}}_STREAMER_CLIENT">-->
66
+ <!-- <groupId>{{constantCase appName}}</groupId>-->
67
67
  <!-- <start>true</start>-->
68
68
  <!-- <options>-Xmx128m -DXSD_VALIDATE=false</options>-->
69
69
  <!-- <module>genesis-pal-streamerclient</module>-->
@@ -80,8 +80,8 @@
80
80
  <!-- <primaryOnly>true</primaryOnly>-->
81
81
  <!-- <package>global.genesis.eventhandler,global.genesis.evaluator</package>-->
82
82
  <!-- </process>-->
83
- <!-- <process name="{{upperCase appName}}_DATAPIPELINE">-->
84
- <!-- <groupId>{{upperCase appName}}</groupId>-->
83
+ <!-- <process name="{{constantCase appName}}_DATAPIPELINE">-->
84
+ <!-- <groupId>{{constantCase appName}}</groupId>-->
85
85
  <!-- <start>true</start>-->
86
86
  <!-- <options>-Xmx256m -DRedirectStreamsToLog=true -DXSD_VALIDATE=false</options>-->
87
87
  <!-- <module>genesis-pal-datapipeline</module>-->
@@ -11,13 +11,13 @@
11
11
  !
12
12
  -->
13
13
  <configuration>
14
- <!-- <service host="localhost" name="{{upperCase appName}}_DATASERVER" port="11000"/>-->
15
- <!-- <service host="localhost" name="{{upperCase appName}}_REQUEST_SERVER" port="11001"/>-->
16
- <!-- <service host="localhost" name="{{upperCase appName}}_EVENT_HANDLER" port="11002"/>-->
17
- <!-- <service host="localhost" name="{{upperCase appName}}_CONSOLIDATOR" port="11003"/>-->
18
- <!-- <service host="localhost" name="{{upperCase appName}}_FGW" port ="11004"/>-->
19
- <!-- <service host="localhost" name="{{upperCase appName}}_FGW_STREAMER" port ="11005"/>-->
20
- <!-- <service host="localhost" name="{{upperCase appName}}_FGW_STREAMER_CLIENT" port ="11006"/>-->
14
+ <!-- <service host="localhost" name="{{constantCase appName}}_DATASERVER" port="11000"/>-->
15
+ <!-- <service host="localhost" name="{{constantCase appName}}_REQUEST_SERVER" port="11001"/>-->
16
+ <!-- <service host="localhost" name="{{constantCase appName}}_EVENT_HANDLER" port="11002"/>-->
17
+ <!-- <service host="localhost" name="{{constantCase appName}}_CONSOLIDATOR" port="11003"/>-->
18
+ <!-- <service host="localhost" name="{{constantCase appName}}_FGW" port ="11004"/>-->
19
+ <!-- <service host="localhost" name="{{constantCase appName}}_FGW_STREAMER" port ="11005"/>-->
20
+ <!-- <service host="localhost" name="{{constantCase appName}}_FGW_STREAMER_CLIENT" port ="11006"/>-->
21
21
  <!-- <service host="localhost" name="GENESIS_EVALUATOR" port="11007"/>-->
22
- <!-- <service host="localhost" name="{{upperCase appName}}_DATAPIPELINE" port="11008"/>-->
22
+ <!-- <service host="localhost" name="{{constantCase appName}}_DATAPIPELINE" port="11008"/>-->
23
23
  </configuration>