@genesislcap/blank-app-seed 5.22.1 → 5.22.2-prerelease.1

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": "5.22.1",
4
+ "version": "5.22.2-prerelease.1",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "lint": "eslint .",
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "UI": "15.7.2",
3
- "GSF": "8.15.14",
4
- "Auth": "8.15.3"
3
+ "GSF": "8.16.0-SNAPSHOT",
4
+ "Auth": "8.16.0-SNAPSHOT"
5
5
  }
@@ -0,0 +1,96 @@
1
+ name: Release
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches: [main, prerelease]
7
+
8
+ jobs:
9
+ release:
10
+ runs-on: ubuntu-latest
11
+ environment: deploy
12
+ concurrency:
13
+ group: publish-${{ github.ref }}
14
+ cancel-in-progress: false
15
+ permissions:
16
+ contents: read
17
+ id-token: write
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ with:
21
+ token: ${{secrets.GH_USER_TOKEN}}
22
+
23
+ - name: Set up Node
24
+ uses: actions/setup-node@v4
25
+ with:
26
+ node-version: 20
27
+ registry-url: https://registry.npmjs.org
28
+
29
+ - name: Upgrade npm for trusted publishing
30
+ run: npm install -g npm@^11.5.1
31
+
32
+ - name: Release
33
+ env:
34
+ GH_TOKEN: ${{secrets.GH_USER_TOKEN}}
35
+ run: |
36
+ touch /tmp/dist-tag # create a blank file, so it's always there even if we don't do a release
37
+ npm install
38
+ npm run release
39
+
40
+ - name: Set dist tag
41
+ id: dist-tag
42
+ run: |
43
+ NAME=$(node -p "require('./package.json').name")
44
+ VERSION=$(node -p "require('./package.json').version")
45
+
46
+ TAG=$(cat /tmp/dist-tag)
47
+ if [ -z "$TAG" ]; then
48
+ # No release happened this run. Derive the tag the current
49
+ # package.json version would have released under, so a
50
+ # previous run's failed publish can still be retried below.
51
+ #
52
+ # NOTE: this assumes the version's prerelease identifier and the
53
+ # semantic-release channel are the same string. That only holds
54
+ # because .releaserc's "prerelease" branch has no explicit
55
+ # "channel", so semantic-release defaults both the preid and the
56
+ # channel to the branch name. If that branch config ever sets an
57
+ # explicit "channel" or a differing "prerelease" identifier, this
58
+ # derivation will diverge from the real channel and this retry
59
+ # path will publish under the wrong dist-tag.
60
+ case "$VERSION" in
61
+ *-*) TAG="${VERSION#*-}"; TAG="${TAG%%.*}" ;;
62
+ *) TAG="latest" ;;
63
+ esac
64
+ fi
65
+
66
+ # Key the publish decision off the registry rather than off
67
+ # whether *this* run produced a release, so a flaky publish
68
+ # after semantic-release has already committed/tagged is
69
+ # retried on the next run instead of silently skipped.
70
+ # (stderr is captured separately so a stray npm notice on stderr
71
+ # can't masquerade as a real version and suppress the E404 check.)
72
+ if OUT=$(npm view "$NAME@$VERSION" version 2>/tmp/npm-view-err); then
73
+ [ -n "$OUT" ] && NEEDS_PUBLISH=false || NEEDS_PUBLISH=true
74
+ else
75
+ ERR=$(cat /tmp/npm-view-err)
76
+ case "$ERR" in
77
+ *E404*) NEEDS_PUBLISH=true ;;
78
+ *)
79
+ echo "::error::npm view failed unexpectedly: $ERR"
80
+ exit 1
81
+ ;;
82
+ esac
83
+ fi
84
+
85
+ echo "TAG=$TAG" >> "$GITHUB_OUTPUT"
86
+ echo "NEEDS_PUBLISH=$NEEDS_PUBLISH" >> "$GITHUB_OUTPUT"
87
+
88
+ - name: Generate .npmignore
89
+ run: cp .gitignore .npmignore && echo '!.gitignore' >> .npmignore && cat .npmignore
90
+
91
+ - name: NPM pack dry-run
92
+ run: npm pack --dry-run
93
+
94
+ - name: Publish
95
+ if: steps.dist-tag.outputs.NEEDS_PUBLISH == 'true'
96
+ run: npm publish --tag "${{ steps.dist-tag.outputs.TAG }}"
package/.releaserc CHANGED
@@ -59,7 +59,7 @@
59
59
  [
60
60
  "@semantic-release/exec",
61
61
  {
62
- "publishCmd": "echo \"${nextRelease.channel}\" > /tmp/dist-tag"
62
+ "publishCmd": "echo \"${nextRelease.channel || 'latest'}\" > /tmp/dist-tag"
63
63
  }
64
64
  ],
65
65
  [
package/CHANGELOG.md CHANGED
@@ -1,94 +1,45 @@
1
1
  # Changelog
2
2
 
3
- ## [5.22.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.22.0...v5.22.1) (2026-08-06)
3
+ ## [5.22.2-prerelease.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.22.1...v5.22.2-prerelease.1) (2026-08-14)
4
4
 
5
5
 
6
6
  ### Bug Fixes
7
7
 
8
- * update FUI version for modal/dialog fixes [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) f02e9d3
9
- * update FUI version for modal/dialog fixes [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#613) 94ac8e2
8
+ * address release workflow review comments 67ce8c3
9
+ * address second round of release workflow review comments 4a1c5f5
10
+ * backport main to prerelease [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#599) 841793f
11
+ * backport main to prerelease [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#616) 545eb21
12
+ * Bump BDD framework (bddVersion) from 3.5.30 to 3.5.73 GENC-0 (#609) 4b8bb58
13
+ * default dist-tag to latest when semantic-release channel is null ce5a216
14
+ * merge main into prerelease GENC-1362 (#589) c7eed71
15
+ * updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 0ea031d
16
+ * updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 2b31d47
10
17
 
11
- ## [5.22.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.21.1...v5.22.0) (2026-08-04)
12
-
13
-
14
- ### Features
15
-
16
- * bump versions.UI to 15.4.1 for the Button appearance type fix GENC-1473 (#611) 001f51d
17
-
18
- ## [5.21.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.21.0...v5.21.1) (2026-07-27)
19
-
20
-
21
- ### Bug Fixes
22
-
23
- * Bump BDD framework (bddVersion) from 3.5.30 to 3.5.73 GENC-0 (#610) 46bf5e4
24
-
25
- ## [5.21.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.20.0...v5.21.0) (2026-07-27)
26
-
27
-
28
- ### Features
29
-
30
- * **react:** migrate template routing to foundation-react-utils/router primitives [PTC-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 28bb768
31
- * **react:** migrate template routing to foundation-react-utils/router primitives [PTC-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#607) 1d8f13e
32
-
33
-
34
- ### Bug Fixes
35
-
36
- * **react:** add foundation-react-utils dep + avoid inline style double-brace [PTC-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 7e5d676
37
- * **react:** theme single-component via FUI modal-theme (active-theme) not legacy design-tokens [PTC-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 020d99e
38
-
39
- ## [5.20.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.19.2...v5.20.0) (2026-07-23)
40
-
41
-
42
- ### Features
43
-
44
- * generate typed event DETAILS via event-type-codegen GENC-0 236a8f0
45
- * generate typed event DETAILS via event-type-codegen GENC-0 (#606) 3a36492
46
-
47
- ## [5.19.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.19.1...v5.19.2) (2026-07-21)
18
+ ## [5.17.3-prerelease.3](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.17.3-prerelease.2...v5.17.3-prerelease.3) (2026-08-12)
48
19
 
49
20
 
50
21
  ### Bug Fixes
51
22
 
52
- * replace foundation-login with foundation-auth dependency GENC-0 fd4d102
53
- * replace foundation-login with foundation-auth dependency GENC-0 (#604) 4964197
23
+ * address release workflow review comments 67ce8c3
24
+ * address second round of release workflow review comments 4a1c5f5
25
+ * default dist-tag to latest when semantic-release channel is null ce5a216
54
26
 
55
- ## [5.19.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.19.0...v5.19.1) (2026-07-21)
27
+ ## [5.17.3-prerelease.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.17.3-prerelease.1...v5.17.3-prerelease.2) (2026-07-27)
56
28
 
57
29
 
58
30
  ### Bug Fixes
59
31
 
60
- * update FUI version GENC-0 62a99e6
61
- * update FUI version GENC-0 (#603) ccc1cb0
62
-
63
- ## [5.19.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.18.0...v5.19.0) (2026-07-10)
64
-
65
-
66
- ### Features
67
-
68
- * adopt FUI modal theme API for theme selection GENC-0 (#602) 8ee122a
69
- * apply UX default theme to the seed default GENC-0 e6e68de
70
- * migrate theming to the FUI modal theme API ([FUI-2575](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/2575)) GENC-0 60fd54a
71
-
72
-
73
- ### Bug Fixes
74
-
75
- * align modal theming with FUI review-fixes PR 2384 GENC-0 f326bca
76
-
77
- ## [5.18.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.17.3...v5.18.0) (2026-07-08)
78
-
79
-
80
- ### Features
81
-
82
- * update FUI version GENC-0 6a22eb7
83
- * update FUI version GENC-0 (#601) bf73353
32
+ * Bump BDD framework (bddVersion) from 3.5.30 to 3.5.73 GENC-0 (#609) 4b8bb58
84
33
 
85
- ## [5.17.3](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.17.2...v5.17.3) (2026-07-07)
34
+ ## [5.17.3-prerelease.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.17.2...v5.17.3-prerelease.1) (2026-07-07)
86
35
 
87
36
 
88
37
  ### Bug Fixes
89
38
 
90
- * update FUI version GENC-0 80c1350
91
- * update FUI version GENC-0 (#600) 746b025
39
+ * backport main to prerelease [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#599) 841793f
40
+ * merge main into prerelease GENC-1362 (#589) c7eed71
41
+ * updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 0ea031d
42
+ * updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 2b31d47
92
43
 
93
44
  ## [5.17.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.17.1...v5.17.2) (2026-07-03)
94
45
 
@@ -1,6 +1,6 @@
1
1
  distributionBase=GRADLE_USER_HOME
2
2
  distributionPath=wrapper/dists
3
- distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
3
+ distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
4
4
  networkTimeout=10000
5
5
  validateDistributionUrl=true
6
6
  zipStoreBase=GRADLE_USER_HOME
@@ -4,4 +4,5 @@ org.gradle.configuration-cache=false
4
4
  org.gradle.parallel=true
5
5
  org.gradle.caching=true
6
6
  bddVersion=3.5.73
7
+ useDevRepo=true
7
8
 
@@ -1,6 +1,6 @@
1
1
  distributionBase=GRADLE_USER_HOME
2
2
  distributionPath=wrapper/dists
3
- distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
3
+ distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
4
4
  networkTimeout=10000
5
5
  validateDistributionUrl=true
6
6
  zipStoreBase=GRADLE_USER_HOME
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": "5.22.1",
4
+ "version": "5.22.2-prerelease.1",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"
@@ -1,6 +1,6 @@
1
1
  distributionBase=GRADLE_USER_HOME
2
2
  distributionPath=wrapper/dists
3
- distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
3
+ distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
4
4
  networkTimeout=10000
5
5
  validateDistributionUrl=true
6
6
  zipStoreBase=GRADLE_USER_HOME
@@ -19,3 +19,5 @@ ssh-port=1337
19
19
  enableDockerContainerTasks=true
20
20
 
21
21
  compactProcessesStrategy=DEV
22
+
23
+ useDevRepo=true
@@ -1,50 +0,0 @@
1
- name: Release
2
-
3
- on:
4
- workflow_dispatch:
5
- push:
6
- branches: [main, prerelease]
7
-
8
- jobs:
9
- release:
10
- runs-on: ubuntu-latest
11
- environment: deploy
12
- steps:
13
- - uses: actions/checkout@v4
14
- with:
15
- token: ${{secrets.GH_USER_TOKEN}}
16
-
17
- - name: Set up Node
18
- uses: actions/setup-node@v4
19
- with:
20
- node-version: 22
21
-
22
- - name: Release
23
- env:
24
- GH_TOKEN: ${{secrets.GH_USER_TOKEN}}
25
- run: |
26
- touch /tmp/dist-tag # create a blank file, so it's always there even if we don't do a release
27
- npm install
28
- npm run release
29
-
30
- - name: Set dist tag
31
- id: dist-tag
32
- run: |
33
- {
34
- echo 'DIST_TAG<<EOF'
35
- cat /tmp/dist-tag
36
- echo EOF
37
- } >> "$GITHUB_OUTPUT"
38
-
39
- - name: Generate .npmignore
40
- run: cp .gitignore .npmignore && echo '!.gitignore' >> .npmignore && cat .npmignore
41
-
42
- - name: NPM pack dry-run
43
- run: npm pack -dry
44
-
45
- - name: Publish
46
- uses: JS-DevTools/npm-publish@v3
47
- with:
48
- token: ${{secrets.NPM_TOKEN}}
49
- tag: ${{ steps.dist-tag.outputs.DIST_TAG }}
50
-