@genesislcap/blank-app-seed 2.5.2 → 2.5.4

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.
@@ -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.2",
4
+ "version": "2.5.4",
5
5
  "license": "Apache-2.0",
6
6
  "genxSeedConfig": {
7
7
  "exclude": [
@@ -1,5 +1,5 @@
1
1
  {
2
- "UI": "14.148.0",
3
- "GSF": "7.1.7",
2
+ "UI": "14.162.1",
3
+ "GSF": "7.1.9",
4
4
  "Auth": "7.1.3"
5
5
  }
@@ -54,7 +54,7 @@ jobs:
54
54
  mkdir /tmp/create-pr
55
55
  cd /tmp/create-pr
56
56
  npm init -y
57
- npm i @octokit/core -S
57
+ npm i @octokit/core@5 -S
58
58
 
59
59
  cat <<EOT >> /tmp/create-pr/index.js
60
60
  const { Octokit } = require('@octokit/core');
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.5.4](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.3...v2.5.4) (2024-03-22)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * note about loading as Gradle project GENC-122 (#158) 14593b7
9
+
10
+ ## [2.5.3](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.2...v2.5.3) (2024-03-19)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * add SqlEnableSequenceGeneration as true GENC-197 (#155) aeabbf2
16
+
3
17
  ## [2.5.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.1...v2.5.2) (2024-03-19)
4
18
 
5
19
 
package/README.md CHANGED
@@ -51,6 +51,8 @@ This project contains **server** and **client** directories which contain the se
51
51
  The server code for this project can be found [here](./server/README.md).
52
52
  It is built using a DSL-like definition based on the Kotlin language: GPAL.
53
53
 
54
+ When first opening the project, if you receive a notification from IntelliJ IDE detecting Gradle project select the option to 'Load as gradle project'.
55
+
54
56
  ### Web Client
55
57
 
56
58
  The Web client for this project can be found [here](./client/README.md). It is built using Genesis's next
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.2",
4
+ "version": "2.5.4",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"
@@ -1,6 +1,7 @@
1
1
  systemDefinition {
2
2
  global {
3
3
  item(name = "DbLayer", value = "SQL")
4
+ item(name = "SqlEnableSequenceGeneration", value = true)
4
5
  item(name = "DictionarySource", value = "DB")
5
6
  item(name = "DbHost", value = "jdbc:h2:file:~/{{appName}}/server/h2/test;DB_CLOSE_DELAY=-1;NON_KEYWORDS=VALUE,KEY;AUTO_SERVER=TRUE")
6
7
  item(name = "DbQuotedIdentifiers", value = true)