@genesislcap/blank-app-seed 5.22.1 → 5.22.2-prerelease.2
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/versions.json +2 -2
- package/.github/workflows/release.yaml +96 -0
- package/.releaserc +1 -1
- package/CHANGELOG.md +23 -65
- package/bdd-tests/gradle/wrapper/gradle-wrapper.properties +1 -1
- package/bdd-tests/gradle.properties +1 -0
- package/gradle/wrapper/gradle-wrapper.properties +1 -1
- package/package.json +1 -1
- package/server/gradle/wrapper/gradle-wrapper.properties +1 -1
- package/server/gradle.properties +2 -0
- package/.github/workflows/release.yml +0 -50
package/.genx/package.json
CHANGED
package/.genx/versions.json
CHANGED
|
@@ -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
package/CHANGELOG.md
CHANGED
|
@@ -1,94 +1,52 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [5.22.
|
|
3
|
+
## [5.22.2-prerelease.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.22.2-prerelease.1...v5.22.2-prerelease.2) (2026-08-21)
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
### Bug Fixes
|
|
7
7
|
|
|
8
|
-
*
|
|
9
|
-
* update FUI version for modal/dialog fixes [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#613) 94ac8e2
|
|
8
|
+
* updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) b1155f0
|
|
10
9
|
|
|
11
|
-
## [5.22.
|
|
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)
|
|
10
|
+
## [5.22.2-prerelease.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.22.1...v5.22.2-prerelease.1) (2026-08-14)
|
|
19
11
|
|
|
20
12
|
|
|
21
13
|
### Bug Fixes
|
|
22
14
|
|
|
23
|
-
*
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
15
|
+
* address release workflow review comments 67ce8c3
|
|
16
|
+
* address second round of release workflow review comments 4a1c5f5
|
|
17
|
+
* backport main to prerelease [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#599) 841793f
|
|
18
|
+
* backport main to prerelease [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#616) 545eb21
|
|
19
|
+
* Bump BDD framework (bddVersion) from 3.5.30 to 3.5.73 GENC-0 (#609) 4b8bb58
|
|
20
|
+
* default dist-tag to latest when semantic-release channel is null ce5a216
|
|
21
|
+
* merge main into prerelease GENC-1362 (#589) c7eed71
|
|
22
|
+
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 0ea031d
|
|
23
|
+
* updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 2b31d47
|
|
29
24
|
|
|
30
|
-
|
|
31
|
-
* **react:** migrate template routing to foundation-react-utils/router primitives [PTC-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#607) 1d8f13e
|
|
25
|
+
## [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)
|
|
32
26
|
|
|
33
27
|
|
|
34
28
|
### Bug Fixes
|
|
35
29
|
|
|
36
|
-
*
|
|
37
|
-
*
|
|
30
|
+
* address release workflow review comments 67ce8c3
|
|
31
|
+
* address second round of release workflow review comments 4a1c5f5
|
|
32
|
+
* default dist-tag to latest when semantic-release channel is null ce5a216
|
|
38
33
|
|
|
39
|
-
## [5.
|
|
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)
|
|
34
|
+
## [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)
|
|
48
35
|
|
|
49
36
|
|
|
50
37
|
### Bug Fixes
|
|
51
38
|
|
|
52
|
-
*
|
|
53
|
-
* replace foundation-login with foundation-auth dependency GENC-0 (#604) 4964197
|
|
54
|
-
|
|
55
|
-
## [5.19.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.19.0...v5.19.1) (2026-07-21)
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
### Bug Fixes
|
|
59
|
-
|
|
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
|
|
39
|
+
* Bump BDD framework (bddVersion) from 3.5.30 to 3.5.73 GENC-0 (#609) 4b8bb58
|
|
84
40
|
|
|
85
|
-
## [5.17.3](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.17.2...v5.17.3) (2026-07-07)
|
|
41
|
+
## [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
42
|
|
|
87
43
|
|
|
88
44
|
### Bug Fixes
|
|
89
45
|
|
|
90
|
-
*
|
|
91
|
-
*
|
|
46
|
+
* backport main to prerelease [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#599) 841793f
|
|
47
|
+
* merge main into prerelease GENC-1362 (#589) c7eed71
|
|
48
|
+
* updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 0ea031d
|
|
49
|
+
* updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 2b31d47
|
|
92
50
|
|
|
93
51
|
## [5.17.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.17.1...v5.17.2) (2026-07-03)
|
|
94
52
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
distributionBase=GRADLE_USER_HOME
|
|
2
2
|
distributionPath=wrapper/dists
|
|
3
|
-
distributionUrl=https\://services.gradle.org/distributions/gradle-
|
|
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
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
distributionBase=GRADLE_USER_HOME
|
|
2
2
|
distributionPath=wrapper/dists
|
|
3
|
-
distributionUrl=https\://services.gradle.org/distributions/gradle-
|
|
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,6 +1,6 @@
|
|
|
1
1
|
distributionBase=GRADLE_USER_HOME
|
|
2
2
|
distributionPath=wrapper/dists
|
|
3
|
-
distributionUrl=https\://services.gradle.org/distributions/gradle-
|
|
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/server/gradle.properties
CHANGED
|
@@ -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
|
-
|