underpost 2.8.884 → 2.8.886
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/.env.production +3 -0
- package/.github/workflows/ghpkg.ci.yml +1 -1
- package/.github/workflows/npmpkg.ci.yml +1 -1
- package/.github/workflows/publish.ci.yml +5 -5
- package/.github/workflows/pwa-microservices-template-page.cd.yml +1 -1
- package/.github/workflows/pwa-microservices-template-test.ci.yml +1 -1
- package/CHANGELOG.md +145 -1
- package/Dockerfile +1 -1
- package/README.md +5 -121
- package/bin/build.js +18 -9
- package/bin/deploy.js +102 -197
- package/bin/file.js +4 -6
- package/cli.md +16 -12
- package/manifests/deployment/dd-default-development/deployment.yaml +2 -2
- package/manifests/deployment/dd-test-development/deployment.yaml +54 -54
- package/manifests/deployment/dd-test-development/proxy.yaml +4 -4
- package/manifests/lxd/underpost-setup.sh +5 -5
- package/package.json +3 -3
- package/scripts/ssl.sh +164 -0
- package/src/cli/baremetal.js +7 -7
- package/src/cli/cloud-init.js +1 -1
- package/src/cli/cluster.js +31 -3
- package/src/cli/cron.js +9 -1
- package/src/cli/db.js +64 -2
- package/src/cli/deploy.js +189 -4
- package/src/cli/env.js +43 -0
- package/src/cli/fs.js +96 -2
- package/src/cli/image.js +15 -0
- package/src/cli/index.js +17 -4
- package/src/cli/monitor.js +33 -2
- package/src/cli/repository.js +95 -2
- package/src/cli/run.js +315 -51
- package/src/cli/script.js +32 -0
- package/src/cli/secrets.js +34 -0
- package/src/cli/test.js +42 -1
- package/src/client/components/core/Css.js +16 -8
- package/src/client/components/core/Docs.js +5 -13
- package/src/client/components/core/Modal.js +48 -29
- package/src/client/components/core/Router.js +6 -3
- package/src/client/components/core/Worker.js +205 -118
- package/src/client/components/core/windowGetDimensions.js +229 -162
- package/src/client/components/default/MenuDefault.js +1 -0
- package/src/client.dev.js +6 -3
- package/src/db/DataBaseProvider.js +65 -12
- package/src/db/mariadb/MariaDB.js +39 -6
- package/src/db/mongo/MongooseDB.js +51 -133
- package/src/index.js +2 -2
- package/src/mailer/EmailRender.js +58 -9
- package/src/mailer/MailerProvider.js +99 -25
- package/src/runtime/express/Express.js +32 -38
- package/src/runtime/lampp/Dockerfile +1 -1
- package/src/server/auth.js +9 -28
- package/src/server/backup.js +20 -0
- package/src/server/client-build-live.js +23 -12
- package/src/server/client-build.js +136 -91
- package/src/server/client-dev-server.js +35 -8
- package/src/server/client-icons.js +19 -0
- package/src/server/conf.js +543 -80
- package/src/server/dns.js +184 -42
- package/src/server/downloader.js +65 -24
- package/src/server/object-layer.js +260 -162
- package/src/server/peer.js +3 -9
- package/src/server/proxy.js +93 -76
- package/src/server/runtime.js +15 -21
- package/src/server/ssr.js +4 -4
- package/src/server/start.js +39 -0
- package/src/server/tls.js +251 -0
- package/src/server/valkey.js +11 -10
- package/src/ws/IoInterface.js +133 -39
- package/src/ws/IoServer.js +80 -31
- package/src/ws/core/core.ws.connection.js +50 -16
- package/src/ws/core/core.ws.emit.js +47 -8
- package/src/ws/core/core.ws.server.js +62 -10
- package/manifests/maas/lxd-preseed.yaml +0 -32
- package/src/server/ssl.js +0 -108
- /package/{manifests/maas → scripts}/device-scan.sh +0 -0
- /package/{manifests/maas → scripts}/gpu-diag.sh +0 -0
- /package/{manifests/maas → scripts}/maas-setup.sh +0 -0
- /package/{manifests/maas → scripts}/nat-iptables.sh +0 -0
- /package/{manifests/maas → scripts}/nvim.sh +0 -0
- /package/{manifests/maas → scripts}/snap-clean.sh +0 -0
- /package/{manifests/maas → scripts}/ssh-cluster-info.sh +0 -0
package/.env.production
CHANGED
|
@@ -45,6 +45,9 @@ DEFAULT_ADMIN_PASSWORD=changethis
|
|
|
45
45
|
DEFAULT_SSH_USER=changethis
|
|
46
46
|
DEFAULT_SSH_HOST=changethis
|
|
47
47
|
DEFAULT_SSH_KEY_PATH=changethis
|
|
48
|
+
NPM_TOKEN=changethis
|
|
49
|
+
NPM_USER=changethis
|
|
50
|
+
NPM_PASSWORD=changethis
|
|
48
51
|
BASE_API=api
|
|
49
52
|
CERTBOT_LIVE_PATH=changethis
|
|
50
53
|
CERTBOT_LIVE_PATH_WINDOWS=changethis
|
|
@@ -14,7 +14,7 @@ jobs:
|
|
|
14
14
|
- uses: actions/checkout@v4
|
|
15
15
|
- uses: actions/setup-node@v4
|
|
16
16
|
with:
|
|
17
|
-
node-version: '
|
|
17
|
+
node-version: '24.x'
|
|
18
18
|
registry-url: 'https://registry.npmjs.org'
|
|
19
19
|
|
|
20
20
|
- name: Install Dependencies
|
|
@@ -25,7 +25,7 @@ jobs:
|
|
|
25
25
|
# Publish to npm
|
|
26
26
|
- uses: actions/setup-node@v4
|
|
27
27
|
with:
|
|
28
|
-
node-version: '
|
|
28
|
+
node-version: '24.x'
|
|
29
29
|
registry-url: 'https://registry.npmjs.org'
|
|
30
30
|
# Defaults to the user or organization that owns the workflow file
|
|
31
31
|
# scope: '@underpostnet'
|
|
@@ -45,7 +45,7 @@ jobs:
|
|
|
45
45
|
- uses: actions/checkout@v4
|
|
46
46
|
- uses: actions/setup-node@v4
|
|
47
47
|
with:
|
|
48
|
-
node-version: '
|
|
48
|
+
node-version: '24.x'
|
|
49
49
|
registry-url: 'https://registry.npmjs.org'
|
|
50
50
|
|
|
51
51
|
- name: Install Dependencies
|
|
@@ -56,7 +56,7 @@ jobs:
|
|
|
56
56
|
# Publish to npm git hub package
|
|
57
57
|
- uses: actions/setup-node@v4
|
|
58
58
|
with:
|
|
59
|
-
node-version: '
|
|
59
|
+
node-version: '24.x'
|
|
60
60
|
registry-url: 'https://registry.npmjs.org'
|
|
61
61
|
# Defaults to the user or organization that owns the workflow file
|
|
62
62
|
scope: '@underpostnet'
|
|
@@ -70,7 +70,7 @@ jobs:
|
|
|
70
70
|
- name: Setup node to publish to GitHub Packages
|
|
71
71
|
uses: actions/setup-node@v4
|
|
72
72
|
with:
|
|
73
|
-
node-version:
|
|
73
|
+
node-version: 24.x
|
|
74
74
|
registry-url: 'https://npm.pkg.github.com'
|
|
75
75
|
# Defaults to the user or organization that owns the workflow file
|
|
76
76
|
scope: '@underpostnet'
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,126 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### [v2.8.885](https://github.com/underpostnet/engine/compare/v2.8.883...v2.8.885)
|
|
8
|
+
|
|
9
|
+
> 13 October 2025
|
|
10
|
+
|
|
11
|
+
- cd(ssh-engine-cyberia): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`db3ba50`](https://github.com/underpostnet/engine/commit/db3ba504236a49acd8a6f6873ea039fd0f615224)
|
|
12
|
+
- cd(ssh-engine-lampp): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`ffa8f17`](https://github.com/underpostnet/engine/commit/ffa8f17e795d8cff886e84948dfadfc55b546df3)
|
|
13
|
+
- cd(ssh-engine-core): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`3c26a8f`](https://github.com/underpostnet/engine/commit/3c26a8ff88d199066f1447d91126b206ffbd8fe9)
|
|
14
|
+
|
|
15
|
+
#### [v2.8.883](https://github.com/underpostnet/engine/compare/v2.8.881...v2.8.883)
|
|
16
|
+
|
|
17
|
+
> 10 October 2025
|
|
18
|
+
|
|
19
|
+
- cd(ssh-engine-cyberia): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`a7a6211`](https://github.com/underpostnet/engine/commit/a7a6211216378d4359f17fac9fa89a19b522c331)
|
|
20
|
+
- cd(ssh-engine-core): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`7c57945`](https://github.com/underpostnet/engine/commit/7c5794585698836bfa638a229ce6c36ffcaf69e2)
|
|
21
|
+
- cd(ssh-engine-test): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`08ee147`](https://github.com/underpostnet/engine/commit/08ee1476e76f6b7d996cf824edfd3a00f94e0b82)
|
|
22
|
+
|
|
23
|
+
#### [v2.8.881](https://github.com/underpostnet/engine/compare/v2.8.878...v2.8.881)
|
|
24
|
+
|
|
25
|
+
> 3 October 2025
|
|
26
|
+
|
|
27
|
+
- cd(ssh-engine-core): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`8c9a193`](https://github.com/underpostnet/engine/commit/8c9a19381f373fbcbcc98065fff805ea14ab9fd8)
|
|
28
|
+
- cd(ssh-engine-test): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`fd6d81b`](https://github.com/underpostnet/engine/commit/fd6d81b8f2a21a81a675f85ae134b95873edf6ce)
|
|
29
|
+
- ci(docker-image-engine): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`ef3e8d9`](https://github.com/underpostnet/engine/commit/ef3e8d945704c6c64c07c4ad886c2a12e24e1a27)
|
|
30
|
+
|
|
31
|
+
#### [v2.8.878](https://github.com/underpostnet/engine/compare/v2.8.871...v2.8.878)
|
|
32
|
+
|
|
33
|
+
> 29 September 2025
|
|
34
|
+
|
|
35
|
+
- cd(ssh-engine-cyberia): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`3d46c7b`](https://github.com/underpostnet/engine/commit/3d46c7b68b5b8af269d738a35cc92b69d74f5c41)
|
|
36
|
+
- cd(ssh-engine-core): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`82c8960`](https://github.com/underpostnet/engine/commit/82c8960b8e898891d3b496ff6797638d97be8cc2)
|
|
37
|
+
- cd(ssh-engine-test): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`054fda8`](https://github.com/underpostnet/engine/commit/054fda835fffcaaaf84f1b56eab93a82ba077f2d)
|
|
38
|
+
|
|
39
|
+
#### [v2.8.871](https://github.com/underpostnet/engine/compare/v2.8.866...v2.8.871)
|
|
40
|
+
|
|
41
|
+
> 22 September 2025
|
|
42
|
+
|
|
43
|
+
- Clean dependencies and refactor getDefaultProfileImageId [`450a9ef`](https://github.com/underpostnet/engine/commit/450a9effc2f30a342bdc9a3d02ec148c02c182e8)
|
|
44
|
+
- ci(package-pwa-microservices-template): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`ff6d44b`](https://github.com/underpostnet/engine/commit/ff6d44b805afe7d03c1a49cab85353b18d01fee2)
|
|
45
|
+
- ci(package-pwa-microservices-template): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`4e7ad66`](https://github.com/underpostnet/engine/commit/4e7ad6610b4c6b7c62aab5ec1ed5f46c7193fe10)
|
|
46
|
+
|
|
47
|
+
#### [v2.8.866](https://github.com/underpostnet/engine/compare/v2.8.853...v2.8.866)
|
|
48
|
+
|
|
49
|
+
> 12 September 2025
|
|
50
|
+
|
|
51
|
+
- ci(package-pwa-microservices-template): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`0a4e1f8`](https://github.com/underpostnet/engine/commit/0a4e1f83d93a3014e0871ad3f703811125bd04cc)
|
|
52
|
+
- ci(package-pwa-microservices-template): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`31279b0`](https://github.com/underpostnet/engine/commit/31279b09af9ae3c9fda2d410b701ff69c3435dbe)
|
|
53
|
+
- ci(package-pwa-microservices-template): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`c66fb17`](https://github.com/underpostnet/engine/commit/c66fb17b3a2e8a0dad5dc0c1649ac68dcbd78c81)
|
|
54
|
+
|
|
55
|
+
#### [v2.8.853](https://github.com/underpostnet/engine/compare/v2.8.852...v2.8.853)
|
|
56
|
+
|
|
57
|
+
> 4 September 2025
|
|
58
|
+
|
|
59
|
+
- cd(ssh-engine-cyberia): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`333345b`](https://github.com/underpostnet/engine/commit/333345ba751939c790c8280fa90aea6b2faafd74)
|
|
60
|
+
- cd(ssh-engine-core): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`7e98622`](https://github.com/underpostnet/engine/commit/7e98622c5d2706e686384456a0c77005842704f5)
|
|
61
|
+
- ci(package-pwa-microservices-template): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`60b7e97`](https://github.com/underpostnet/engine/commit/60b7e9711244192dc978442e99db1eb99d7f4fd1)
|
|
62
|
+
|
|
63
|
+
#### [v2.8.852](https://github.com/underpostnet/engine/compare/v2.8.845...v2.8.852)
|
|
64
|
+
|
|
65
|
+
> 3 September 2025
|
|
66
|
+
|
|
67
|
+
- cd(ssh-engine-cyberia): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`19db862`](https://github.com/underpostnet/engine/commit/19db862aeb61a0f551f8b4d0a0f42a82dc3b9d97)
|
|
68
|
+
- cd(ssh-engine-core): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`ad2a17a`](https://github.com/underpostnet/engine/commit/ad2a17a053dd09d204e589dab4c3d32b7036522e)
|
|
69
|
+
- ci(package-pwa-microservices-template): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`765057f`](https://github.com/underpostnet/engine/commit/765057f4112cd2f662836d0b69475212c778b516)
|
|
70
|
+
|
|
71
|
+
#### [v2.8.845](https://github.com/underpostnet/engine/compare/v2.8.844...v2.8.845)
|
|
72
|
+
|
|
73
|
+
> 30 August 2025
|
|
74
|
+
|
|
75
|
+
- cd(ssh-engine-core): 🚀 Changes to our Continuous Delivery configuration files and scripts (example scopes: Jenkins, Spinnaker, ArgoCD) [`1a9262a`](https://github.com/underpostnet/engine/commit/1a9262ac5604b3b63e50b169bf40730a767914a0)
|
|
76
|
+
- Add src/server/client-build-docs.js module [`0abd837`](https://github.com/underpostnet/engine/commit/0abd837fa33ab59e91945d6738463bf5cd613502)
|
|
77
|
+
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`09f0681`](https://github.com/underpostnet/engine/commit/09f0681b10236d471ab6d9e5fbe0bf98ec0b1cb0)
|
|
78
|
+
|
|
79
|
+
#### [v2.8.844](https://github.com/underpostnet/engine/compare/v2.8.843...v2.8.844)
|
|
80
|
+
|
|
81
|
+
> 29 August 2025
|
|
82
|
+
|
|
83
|
+
- cd(ssh-engine-core): 🚀 Changes to our Continuous Delivery configuration files and scripts (example scopes: Jenkins, Spinnaker, ArgoCD) [`fe2f1fd`](https://github.com/underpostnet/engine/commit/fe2f1fdf2dc3a10f62b69363c2fb3a15c53d641a)
|
|
84
|
+
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`e793cbe`](https://github.com/underpostnet/engine/commit/e793cbed1af8a8bbecd5bf971ae1bb74c32347ae)
|
|
85
|
+
- Remove plantuml logic [`f037ac7`](https://github.com/underpostnet/engine/commit/f037ac75fc37c5791fa1c7bbe7c0b506dd3b2e3d)
|
|
86
|
+
|
|
87
|
+
#### [v2.8.843](https://github.com/underpostnet/engine/compare/v2.8.837...v2.8.843)
|
|
88
|
+
|
|
89
|
+
> 24 August 2025
|
|
90
|
+
|
|
91
|
+
- Add oi to image logic cyberia cli [`e56d9e0`](https://github.com/underpostnet/engine/commit/e56d9e030de0c5071e9a86474dbf9ea6d53b71e6)
|
|
92
|
+
- Add src main monitor entry point [`1e95554`](https://github.com/underpostnet/engine/commit/1e95554a8a694ef00d1963cc42c1631713222082)
|
|
93
|
+
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`fd89c81`](https://github.com/underpostnet/engine/commit/fd89c81e2a68f21ab355b10a86f36e2ae01a2a3f)
|
|
94
|
+
|
|
95
|
+
#### [v2.8.837](https://github.com/underpostnet/engine/compare/v2.8.836...v2.8.837)
|
|
96
|
+
|
|
97
|
+
> 2 August 2025
|
|
98
|
+
|
|
99
|
+
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`b2447be`](https://github.com/underpostnet/engine/commit/b2447bec90756aa41caf40eac02a7fd5bf195165)
|
|
100
|
+
- Refactor run job runner [`102692d`](https://github.com/underpostnet/engine/commit/102692db1944a6f1538b833b9616ce75105c0786)
|
|
101
|
+
- Add tf-vae-test job run cli [`6c0514e`](https://github.com/underpostnet/engine/commit/6c0514e844bedc7bba0a2bdafcf30a1aa144f63c)
|
|
102
|
+
|
|
103
|
+
#### [v2.8.836](https://github.com/underpostnet/engine/compare/v2.8.832...v2.8.836)
|
|
104
|
+
|
|
105
|
+
> 2 August 2025
|
|
106
|
+
|
|
107
|
+
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`ee9bb27`](https://github.com/underpostnet/engine/commit/ee9bb272c14be41e74111fa3557e30c9ff68efa6)
|
|
108
|
+
- Refactor underpost runner cli [`5d8fee5`](https://github.com/underpostnet/engine/commit/5d8fee50756890cb3a3e3533dfe8e60f5d6ac09a)
|
|
109
|
+
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`a8ee2ad`](https://github.com/underpostnet/engine/commit/a8ee2ad94deb26eb3b22e0d2f0207d0046638581)
|
|
110
|
+
|
|
111
|
+
#### [v2.8.832](https://github.com/underpostnet/engine/compare/v2.8.821...v2.8.832)
|
|
112
|
+
|
|
113
|
+
> 1 August 2025
|
|
114
|
+
|
|
115
|
+
- Reset cluster refactor [`9ce891f`](https://github.com/underpostnet/engine/commit/9ce891f299be17bd28166e84a7676a7794385d37)
|
|
116
|
+
- Refactor reset [`a19d123`](https://github.com/underpostnet/engine/commit/a19d1231814bb8689450cf8ae914eb8ef4509379)
|
|
117
|
+
- Add gpu tf test script [`1d45b7f`](https://github.com/underpostnet/engine/commit/1d45b7febd05c66d14d4d2afd75692244db8a8c6)
|
|
118
|
+
|
|
119
|
+
#### [v2.8.821](https://github.com/underpostnet/engine/compare/v2.8.646...v2.8.821)
|
|
120
|
+
|
|
121
|
+
> 27 July 2025
|
|
122
|
+
|
|
123
|
+
- Add commissionMonitor refactor logic [`0160207`](https://github.com/underpostnet/engine/commit/016020783a5e87cef0e9252b1807c94b4e14b70c)
|
|
124
|
+
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`cd5aaeb`](https://github.com/underpostnet/engine/commit/cd5aaeb3f22f04d4fe03fb3f4687a9e8adf08834)
|
|
125
|
+
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`9369ecf`](https://github.com/underpostnet/engine/commit/9369ecf85933f52837402104215d453a3f7108fb)
|
|
126
|
+
|
|
7
127
|
#### [v2.8.646](https://github.com/underpostnet/engine/compare/v2.8.532...v2.8.646)
|
|
8
128
|
|
|
9
129
|
> 28 March 2025
|
|
@@ -20,10 +140,34 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
20
140
|
- refactor(cli): 📦 it script methods [`8a16e17`](https://github.com/underpostnet/engine/commit/8a16e17db6d3b70198a6d435624572d8807feb46)
|
|
21
141
|
- feat(mongo): ✨ advance support mongo 4.4 [`2bb5bf9`](https://github.com/underpostnet/engine/commit/2bb5bf9f32162207f01a6a57effb514ae36e9ebc)
|
|
22
142
|
|
|
23
|
-
#### [v2.8.521](https://github.com/underpostnet/engine/compare/v2.8.
|
|
143
|
+
#### [v2.8.521](https://github.com/underpostnet/engine/compare/v2.8.87...v2.8.521)
|
|
24
144
|
|
|
25
145
|
> 4 March 2025
|
|
26
146
|
|
|
147
|
+
#### [v2.8.87](https://github.com/underpostnet/engine/compare/v2.8.85...v2.8.87)
|
|
148
|
+
|
|
149
|
+
> 21 September 2025
|
|
150
|
+
|
|
151
|
+
- ci(package-pwa-microservices-template): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`f8f0c33`](https://github.com/underpostnet/engine/commit/f8f0c33b1ff607aaa16914176d4b6b6a7a176273)
|
|
152
|
+
- Clean dependencies and refactor getDefaultProfileImageId [`450a9ef`](https://github.com/underpostnet/engine/commit/450a9effc2f30a342bdc9a3d02ec148c02c182e8)
|
|
153
|
+
- ci(package-pwa-microservices-template): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`4e7ad66`](https://github.com/underpostnet/engine/commit/4e7ad6610b4c6b7c62aab5ec1ed5f46c7193fe10)
|
|
154
|
+
|
|
155
|
+
#### [v2.8.85](https://github.com/underpostnet/engine/compare/v2.8.82...v2.8.85)
|
|
156
|
+
|
|
157
|
+
> 2 September 2025
|
|
158
|
+
|
|
159
|
+
- cd(ssh-engine-core): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`7560d10`](https://github.com/underpostnet/engine/commit/7560d10cf41d8478539852f32308722c5d9a5ad6)
|
|
160
|
+
- Update nexodev lading page [`8cbe924`](https://github.com/underpostnet/engine/commit/8cbe924784ebd44640a9c95588188fb59796cc8d)
|
|
161
|
+
- Clean nexodev landing styles colors [`3e58d70`](https://github.com/underpostnet/engine/commit/3e58d701d380ebc339524a3796d5613847ef3fb4)
|
|
162
|
+
|
|
163
|
+
#### [v2.8.82](https://github.com/underpostnet/engine/compare/v2.8.56...v2.8.82)
|
|
164
|
+
|
|
165
|
+
> 26 July 2025
|
|
166
|
+
|
|
167
|
+
- Add commissionMonitor refactor logic [`0160207`](https://github.com/underpostnet/engine/commit/016020783a5e87cef0e9252b1807c94b4e14b70c)
|
|
168
|
+
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`cd5aaeb`](https://github.com/underpostnet/engine/commit/cd5aaeb3f22f04d4fe03fb3f4687a9e8adf08834)
|
|
169
|
+
- Refactor cluster and lxd vm setup [`1e5af95`](https://github.com/underpostnet/engine/commit/1e5af95bbd65bb3ac7612496f919894da07e9bd8)
|
|
170
|
+
|
|
27
171
|
#### [v2.8.56](https://github.com/underpostnet/engine/compare/v2.8.51...v2.8.56)
|
|
28
172
|
|
|
29
173
|
> 11 March 2025
|
package/Dockerfile
CHANGED
package/README.md
CHANGED
|
@@ -10,134 +10,18 @@
|
|
|
10
10
|
|
|
11
11
|
<div align="center">
|
|
12
12
|
|
|
13
|
-
<a target="_top" href='https://rockylinux.org/download'><img alt='rockylinux' src='https://img.shields.io/badge/Rocky Linux v9.6-100000?style=flat&logo=rockylinux&logoColor=white&labelColor=10b981&color=727273'/></a> <a target="_top"
|
|
13
|
+
<a target="_top" href='https://rockylinux.org/download'><img alt='rockylinux' src='https://img.shields.io/badge/Rocky Linux v9.6-100000?style=flat&logo=rockylinux&logoColor=white&labelColor=10b981&color=727273'/></a> <a target="_top" href='https://www.npmjs.com/package/npm/v/11.6.2'><img alt='npm' src='https://img.shields.io/badge/npm v11.6.2-100000?style=flat&logo=npm&logoColor=white&labelColor=CB3837&color=727273'/></a> <a target="_top" href='https://nodejs.org/download/release/v22.9.0/'><img alt='nodedotjs' src='https://img.shields.io/badge/node v24.10.0-100000?style=flat&logo=nodedotjs&logoColor=white&labelColor=5FA04E&color=727273'/></a> <a target="_top" href='https://pgp.mongodb.com/'><img alt='mongodb' src='https://img.shields.io/badge/mongodb_server v7.0-100000?style=flat&logo=mongodb&logoColor=white&labelColor=47A248&color=727273'/></a>
|
|
14
14
|
|
|
15
15
|
</div>
|
|
16
16
|
|
|
17
17
|
<div align="center">
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
19
|
<!-- badges -->
|
|
77
20
|
|
|
78
|
-
|
|
79
|
-
[](https://github.com/underpostnet/engine/actions/workflows/docker-image.yml) [](https://github.com/underpostnet/engine/actions/workflows/coverall.yml) [](https://www.npmjs.com/package/underpost) [](https://socket.dev/npm/package/underpost/overview/2.8.884) [](https://coveralls.io/github/underpostnet/engine?branch=master) [](https://www.npmjs.org/package/underpost) [](https://www.npmjs.com/package/underpost)
|
|
80
|
-
|
|
21
|
+
[](https://github.com/underpostnet/engine/actions/workflows/docker-image.yml) [](https://github.com/underpostnet/engine/actions/workflows/coverall.yml) [](https://www.npmjs.com/package/underpost) [](https://socket.dev/npm/package/underpost/overview/2.8.886) [](https://coveralls.io/github/underpostnet/engine?branch=master) [](https://www.npmjs.org/package/underpost) [](https://www.npmjs.com/package/underpost)
|
|
81
22
|
|
|
82
23
|
<!-- end-badges -->
|
|
83
24
|
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
25
|
</div>
|
|
142
26
|
|
|
143
27
|
<div align="center">
|
|
@@ -182,7 +66,7 @@ Run dev client server
|
|
|
182
66
|
npm run dev
|
|
183
67
|
```
|
|
184
68
|
<!-- -->
|
|
185
|
-
## underpost ci/cd cli v2.8.
|
|
69
|
+
## underpost ci/cd cli v2.8.886
|
|
186
70
|
|
|
187
71
|
### Usage: `underpost [options] [command]`
|
|
188
72
|
```
|
|
@@ -191,13 +75,13 @@ npm run dev
|
|
|
191
75
|
-h, --help display help for command
|
|
192
76
|
|
|
193
77
|
Commands:
|
|
194
|
-
new [options] <app-name> Initializes a new Underpost project
|
|
78
|
+
new [options] <app-name> Initializes a new Underpost project, service, or configuration.
|
|
195
79
|
start [options] <deploy-id> [env] Initiates application servers, build pipelines, or other defined services based on the deployment ID.
|
|
196
80
|
clone [options] <uri> Clones a specified GitHub repository into the current directory.
|
|
197
81
|
pull [options] <path> <uri> Pulls the latest changes from a specified GitHub repository.
|
|
198
82
|
cmt [options] <path> <commit-type> [module-tag] [message] Manages commits to a GitHub repository, supporting various commit types and options.
|
|
199
83
|
push [options] <path> <uri> Pushes committed changes from a local repository to a remote GitHub repository.
|
|
200
|
-
env
|
|
84
|
+
env [deploy-id] [env] [subConf] Sets environment variables and configurations related to a specific deployment ID.
|
|
201
85
|
config [options] <operator> [key] [value] Manages Underpost configurations using various operators.
|
|
202
86
|
root Displays the root path of the npm installation.
|
|
203
87
|
cluster [options] [pod-name] Manages Kubernetes clusters, defaulting to Kind cluster initialization.
|
package/bin/build.js
CHANGED
|
@@ -153,18 +153,32 @@ const { DefaultConf } = await import(`../conf.${confName}.js`);
|
|
|
153
153
|
|
|
154
154
|
fs.copyFileSync(`./conf.${confName}.js`, `${basePath}/conf.js`);
|
|
155
155
|
|
|
156
|
+
if (!fs.existsSync(`${basePath}/.github/workflows`))
|
|
157
|
+
fs.mkdirSync(`${basePath}/.github/workflows`, {
|
|
158
|
+
recursive: true,
|
|
159
|
+
});
|
|
160
|
+
|
|
161
|
+
const packageJson = JSON.parse(fs.readFileSync(`${basePath}/package.json`, 'utf8'));
|
|
162
|
+
packageJson.name = repoName.replace('engine-', '');
|
|
163
|
+
|
|
156
164
|
switch (confName) {
|
|
157
165
|
case 'dd-cyberia':
|
|
158
166
|
fs.copyFileSync(`./bin/cyberia.js`, `${basePath}/bin/cyberia.js`);
|
|
159
|
-
fs.copyFileSync(
|
|
160
|
-
|
|
167
|
+
fs.copyFileSync(
|
|
168
|
+
`./.github/workflows/publish.cyberia.ci.yml`,
|
|
169
|
+
`${basePath}/.github/workflows/publish.cyberia.ci.yml`,
|
|
170
|
+
);
|
|
171
|
+
delete packageJson.bin.underpost;
|
|
172
|
+
packageJson.bin.cyberia = 'bin/index.js';
|
|
173
|
+
packageJson.keywords = ['cyberia', 'object-layer', 'game-engine', 'assets-management'];
|
|
174
|
+
|
|
175
|
+
fs.writeFileSync(`${basePath}/bin/index.js`, fs.readFileSync(`./bin/cyberia.js`, 'utf8'), 'utf8');
|
|
176
|
+
fs.copyFileSync(`./src/api/object-layer/README.md`, `${basePath}/README.md`);
|
|
161
177
|
|
|
162
178
|
default:
|
|
163
179
|
break;
|
|
164
180
|
}
|
|
165
181
|
|
|
166
|
-
const packageJson = JSON.parse(fs.readFileSync(`${basePath}/package.json`, 'utf8'));
|
|
167
|
-
packageJson.name = repoName;
|
|
168
182
|
fs.writeFileSync(
|
|
169
183
|
`${basePath}/package.json`,
|
|
170
184
|
JSON.stringify(packageJson, null, 4).replaceAll('pwa-microservices-template', repoName),
|
|
@@ -183,11 +197,6 @@ const { DefaultConf } = await import(`../conf.${confName}.js`);
|
|
|
183
197
|
}
|
|
184
198
|
}
|
|
185
199
|
|
|
186
|
-
if (!fs.existsSync(`${basePath}/.github/workflows`))
|
|
187
|
-
fs.mkdirSync(`${basePath}/.github/workflows`, {
|
|
188
|
-
recursive: true,
|
|
189
|
-
});
|
|
190
|
-
|
|
191
200
|
fs.copyFileSync(`./.github/workflows/${repoName}.ci.yml`, `${basePath}/.github/workflows/${repoName}.ci.yml`);
|
|
192
201
|
fs.copyFileSync(`./.github/workflows/${repoName}.cd.yml`, `${basePath}/.github/workflows/${repoName}.cd.yml`);
|
|
193
202
|
|