underpost 3.0.3 → 3.1.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.
- package/{.env.production → .env.example} +20 -2
- package/.github/workflows/ghpkg.ci.yml +1 -1
- package/.github/workflows/gitlab.ci.yml +1 -1
- package/.github/workflows/npmpkg.ci.yml +22 -7
- package/.github/workflows/publish.ci.yml +5 -5
- package/.github/workflows/pwa-microservices-template-page.cd.yml +3 -3
- package/.github/workflows/pwa-microservices-template-test.ci.yml +1 -1
- package/.github/workflows/release.cd.yml +3 -2
- package/.vscode/extensions.json +9 -8
- package/.vscode/settings.json +3 -2
- package/CHANGELOG.md +160 -1
- package/CLI-HELP.md +71 -52
- package/README.md +2 -2
- package/bin/build.js +4 -1
- package/bin/deploy.js +150 -208
- package/bin/file.js +2 -1
- package/bin/vs.js +3 -3
- package/conf.js +30 -13
- package/manifests/cronjobs/dd-cron/dd-cron-backup.yaml +1 -1
- package/manifests/cronjobs/dd-cron/dd-cron-dns.yaml +1 -1
- package/manifests/deployment/dd-default-development/deployment.yaml +2 -2
- package/manifests/deployment/dd-test-development/deployment.yaml +52 -52
- package/manifests/deployment/dd-test-development/proxy.yaml +4 -4
- package/manifests/pv-pvc-dd.yaml +1 -1
- package/package.json +48 -43
- package/scripts/k3s-node-setup.sh +1 -1
- package/src/api/document/document.service.js +1 -1
- package/src/api/file/file.controller.js +3 -1
- package/src/api/file/file.service.js +28 -5
- package/src/api/user/user.router.js +10 -5
- package/src/api/user/user.service.js +7 -7
- package/src/cli/baremetal.js +6 -10
- package/src/cli/cloud-init.js +0 -3
- package/src/cli/db.js +54 -71
- package/src/cli/deploy.js +64 -12
- package/src/cli/env.js +5 -5
- package/src/cli/fs.js +0 -2
- package/src/cli/image.js +0 -3
- package/src/cli/index.js +27 -13
- package/src/cli/monitor.js +5 -6
- package/src/cli/repository.js +329 -35
- package/src/cli/run.js +118 -69
- package/src/cli/secrets.js +1 -3
- package/src/cli/ssh.js +1 -1
- package/src/client/components/core/AgGrid.js +20 -5
- package/src/client/components/core/Content.js +22 -3
- package/src/client/components/core/Docs.js +21 -4
- package/src/client/components/core/FileExplorer.js +71 -4
- package/src/client/components/core/Input.js +1 -1
- package/src/client/components/core/Modal.js +20 -6
- package/src/client/public/default/sitemap +3 -3
- package/src/client/public/test/sitemap +3 -3
- package/src/client.build.js +0 -3
- package/src/client.dev.js +0 -3
- package/src/db/DataBaseProvider.js +17 -2
- package/src/db/mariadb/MariaDB.js +14 -9
- package/src/db/mongo/MongooseDB.js +17 -1
- package/src/index.js +1 -1
- package/src/proxy.js +0 -3
- package/src/runtime/express/Express.js +7 -1
- package/src/runtime/lampp/Lampp.js +6 -13
- package/src/server/auth.js +6 -9
- package/src/server/backup.js +2 -3
- package/src/server/client-build-docs.js +178 -3
- package/src/server/client-build-live.js +9 -18
- package/src/server/client-build.js +175 -38
- package/src/server/client-dev-server.js +14 -13
- package/src/server/conf.js +357 -149
- package/src/server/cron.js +2 -1
- package/src/server/dns.js +28 -12
- package/src/server/downloader.js +0 -2
- package/src/server/logger.js +27 -9
- package/src/server/peer.js +0 -2
- package/src/server/process.js +1 -50
- package/src/server/proxy.js +4 -8
- package/src/server/runtime.js +5 -8
- package/src/server/ssr.js +0 -3
- package/src/server/start.js +5 -5
- package/src/server/tls.js +0 -2
- package/src/server.js +0 -4
- package/.env.development +0 -43
- package/.env.test +0 -43
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
DEPLOY_ID=dd-default
|
|
2
2
|
NODE_ENV=production
|
|
3
3
|
PORT=3000
|
|
4
|
-
JWT_SECRET=
|
|
4
|
+
JWT_SECRET=changethis
|
|
5
5
|
REFRESH_EXPIRE_MINUTES=5
|
|
6
6
|
ACCESS_EXPIRE_MINUTES=1440
|
|
7
7
|
NODE_OPTIONS=--max-old-space-size=8192
|
|
@@ -15,8 +15,25 @@ DEFAULT_DEPLOY_ID=dd-default
|
|
|
15
15
|
DEFAULT_DEPLOY_HOST=default.net
|
|
16
16
|
DEFAULT_DEPLOY_PATH=/
|
|
17
17
|
MARIADB_HOST=changethis
|
|
18
|
+
MARIADB_PORT=3306
|
|
18
19
|
MARIADB_USER=changethis
|
|
19
20
|
MARIADB_PASSWORD=changethis
|
|
21
|
+
DB_PROVIDER=mongoose
|
|
22
|
+
DB_HOST=mongodb://127.0.0.1:27017
|
|
23
|
+
DB_NAME=default
|
|
24
|
+
SMTP_HOST=changethis
|
|
25
|
+
SMTP_PORT=465
|
|
26
|
+
SMTP_SECURE=true
|
|
27
|
+
SMTP_AUTH_USER=changethis
|
|
28
|
+
SMTP_AUTH_PASS=changethis
|
|
29
|
+
MAILER_SENDER_EMAIL=noreply@default.net
|
|
30
|
+
MAILER_SENDER_NAME=Default
|
|
31
|
+
DDNS_HOST=changethis
|
|
32
|
+
DDNS_PROVIDER=dondominio
|
|
33
|
+
DDNS_API_KEY=changethis
|
|
34
|
+
DDNS_USER=changethis
|
|
35
|
+
VALKEY_HOST=127.0.0.1
|
|
36
|
+
VALKEY_PORT=6379
|
|
20
37
|
WIFI_PASSWORD=changethis
|
|
21
38
|
CLOUDINARY_CLOUD_NAME=changethis
|
|
22
39
|
CLOUDINARY_API_KEY=changethis
|
|
@@ -53,4 +70,5 @@ ENABLE_FILE_LOGS=false
|
|
|
53
70
|
BASE_API=api
|
|
54
71
|
CERTBOT_LIVE_PATH=changethis
|
|
55
72
|
CERTBOT_LIVE_PATH_WINDOWS=changethis
|
|
56
|
-
DEV_PROXY_PORT_OFFSET=200
|
|
73
|
+
DEV_PROXY_PORT_OFFSET=200
|
|
74
|
+
DOTENV_CONFIG_QUIET=true
|
|
@@ -4,6 +4,12 @@ on:
|
|
|
4
4
|
branches: ['master']
|
|
5
5
|
pull_request:
|
|
6
6
|
branches: ['master']
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
inputs:
|
|
9
|
+
message:
|
|
10
|
+
description: 'Changelog message for the build'
|
|
11
|
+
required: false
|
|
12
|
+
default: ''
|
|
7
13
|
permissions:
|
|
8
14
|
contents: write
|
|
9
15
|
packages: write
|
|
@@ -12,7 +18,10 @@ jobs:
|
|
|
12
18
|
pwa-microservices-template:
|
|
13
19
|
if: |
|
|
14
20
|
github.repository == 'underpostnet/engine'
|
|
15
|
-
&&
|
|
21
|
+
&& (
|
|
22
|
+
startsWith(github.event.head_commit.message, 'ci(package-pwa-microservices-template')
|
|
23
|
+
|| github.event_name == 'workflow_dispatch'
|
|
24
|
+
)
|
|
16
25
|
name: Update npm repo package Jobs
|
|
17
26
|
runs-on: ubuntu-latest
|
|
18
27
|
container:
|
|
@@ -22,7 +31,7 @@ jobs:
|
|
|
22
31
|
packages: write
|
|
23
32
|
id-token: write
|
|
24
33
|
steps:
|
|
25
|
-
- uses: actions/checkout@
|
|
34
|
+
- uses: actions/checkout@v6
|
|
26
35
|
|
|
27
36
|
- name: Install required packages
|
|
28
37
|
run: |
|
|
@@ -36,13 +45,19 @@ jobs:
|
|
|
36
45
|
|
|
37
46
|
- name: Capture commit message
|
|
38
47
|
run: |
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
48
|
+
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
|
|
49
|
+
LAST_COMMIT_MESSAGE="${{ github.event.inputs.message }}"
|
|
50
|
+
if [ -z "$LAST_COMMIT_MESSAGE" ]; then
|
|
51
|
+
LAST_COMMIT_MESSAGE="Update repository"
|
|
52
|
+
fi
|
|
53
|
+
else
|
|
54
|
+
FULL_MSG="${{ github.event.head_commit.message }}"
|
|
55
|
+
REST="$(echo "$FULL_MSG" | tail -n +2 | awk 'NR==1{first=$0; has_first=1; next} NR==2{print first " " $0; has_first=0; next} {print} END{if(has_first) print first}')"
|
|
56
|
+
LAST_COMMIT_MESSAGE="${REST:-$FULL_MSG}"
|
|
57
|
+
fi
|
|
42
58
|
echo "LAST_COMMIT_MESSAGE<<EOF" >> $GITHUB_ENV
|
|
43
59
|
echo "$LAST_COMMIT_MESSAGE" >> $GITHUB_ENV
|
|
44
60
|
echo "EOF" >> $GITHUB_ENV
|
|
45
|
-
echo "[INFO] Full commit message: $FULL_MSG"
|
|
46
61
|
echo "[INFO] Extracted payload: $LAST_COMMIT_MESSAGE"
|
|
47
62
|
|
|
48
63
|
- name: Install dependencies
|
|
@@ -62,7 +77,7 @@ jobs:
|
|
|
62
77
|
run: |
|
|
63
78
|
cd .. && underpost clone underpostnet/pwa-microservices-template
|
|
64
79
|
cd engine
|
|
65
|
-
npm run update
|
|
80
|
+
npm run update:template
|
|
66
81
|
cd ../pwa-microservices-template
|
|
67
82
|
git remote set-url origin git@github.com:underpostnet/pwa-microservices-template.git
|
|
68
83
|
git add .
|
|
@@ -12,9 +12,9 @@ jobs:
|
|
|
12
12
|
contents: read
|
|
13
13
|
id-token: write
|
|
14
14
|
steps:
|
|
15
|
-
- uses: actions/checkout@
|
|
15
|
+
- uses: actions/checkout@v6
|
|
16
16
|
|
|
17
|
-
- uses: actions/setup-node@
|
|
17
|
+
- uses: actions/setup-node@v6
|
|
18
18
|
with:
|
|
19
19
|
node-version: '24.x'
|
|
20
20
|
registry-url: 'https://registry.npmjs.org'
|
|
@@ -35,9 +35,9 @@ jobs:
|
|
|
35
35
|
contents: read
|
|
36
36
|
id-token: write
|
|
37
37
|
steps:
|
|
38
|
-
- uses: actions/checkout@
|
|
38
|
+
- uses: actions/checkout@v6
|
|
39
39
|
|
|
40
|
-
- uses: actions/setup-node@
|
|
40
|
+
- uses: actions/setup-node@v6
|
|
41
41
|
with:
|
|
42
42
|
node-version: '24.x'
|
|
43
43
|
registry-url: 'https://registry.npmjs.org'
|
|
@@ -52,7 +52,7 @@ jobs:
|
|
|
52
52
|
run: npm publish --provenance --access public
|
|
53
53
|
|
|
54
54
|
- name: Setup node to publish to GitHub Packages
|
|
55
|
-
uses: actions/setup-node@
|
|
55
|
+
uses: actions/setup-node@v6
|
|
56
56
|
with:
|
|
57
57
|
node-version: '24.x'
|
|
58
58
|
registry-url: 'https://npm.pkg.github.com'
|
|
@@ -33,7 +33,7 @@ jobs:
|
|
|
33
33
|
image: quay.io/rockylinux/rockylinux:9
|
|
34
34
|
steps:
|
|
35
35
|
- name: Checkout
|
|
36
|
-
uses: actions/checkout@
|
|
36
|
+
uses: actions/checkout@v6
|
|
37
37
|
# with:
|
|
38
38
|
# lfs: true
|
|
39
39
|
# - name: Checkout LFS objects
|
|
@@ -56,7 +56,7 @@ jobs:
|
|
|
56
56
|
node bin new --default-conf --conf-workflow-id dd-github-pages
|
|
57
57
|
node bin new --deploy-id dd-github-pages
|
|
58
58
|
underpost env dd-github-pages production
|
|
59
|
-
|
|
59
|
+
NODE_ENV=production node bin client dd-github-pages '' underpostnet.github.io /pwa-microservices-template-ghpkg
|
|
60
60
|
# git lfs install
|
|
61
61
|
# git lfs track
|
|
62
62
|
# git lfs ls-files
|
|
@@ -64,7 +64,7 @@ jobs:
|
|
|
64
64
|
- name: Setup Pages
|
|
65
65
|
uses: actions/configure-pages@v5
|
|
66
66
|
- name: Upload artifact
|
|
67
|
-
uses: actions/upload-pages-artifact@
|
|
67
|
+
uses: actions/upload-pages-artifact@v4
|
|
68
68
|
with:
|
|
69
69
|
# Upload entire repository
|
|
70
70
|
path: './public/underpostnet.github.io/pwa-microservices-template-ghpkg/'
|
|
@@ -12,7 +12,7 @@ jobs:
|
|
|
12
12
|
runs-on: ubuntu-latest
|
|
13
13
|
steps:
|
|
14
14
|
- name: Run remote deploy via SSH
|
|
15
|
-
uses: appleboy/ssh-action@v1.2.
|
|
15
|
+
uses: appleboy/ssh-action@v1.2.5
|
|
16
16
|
with:
|
|
17
17
|
# Remote host (secret)
|
|
18
18
|
host: ${{ secrets.SSH_HOST }}
|
|
@@ -31,7 +31,8 @@ jobs:
|
|
|
31
31
|
set -e
|
|
32
32
|
echo "Starting remote release deploy"
|
|
33
33
|
cd /home/dd/engine
|
|
34
|
-
sudo -n -- /bin/bash -lc "
|
|
34
|
+
sudo -n -- /bin/bash -lc "underpost run pull"
|
|
35
|
+
sudo -n -- /bin/bash -lc "npm install"
|
|
35
36
|
sudo -n -- /bin/bash -lc "underpost run secret"
|
|
36
37
|
sudo -n -- /bin/bash -lc "npm install -g underpost"
|
|
37
38
|
sudo -n -- /bin/bash -lc "underpost run secret"
|
package/.vscode/extensions.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
2
|
+
"recommendations": [
|
|
3
|
+
"anseki.vscode-color",
|
|
4
|
+
"bashmish.es6-string-css",
|
|
5
|
+
"eamodio.gitlens",
|
|
6
|
+
"esbenp.prettier-vscode",
|
|
7
|
+
"github.copilot-chat",
|
|
8
|
+
"tobermory.es6-string-html"
|
|
9
|
+
]
|
|
10
|
+
}
|
package/.vscode/settings.json
CHANGED
|
@@ -2,8 +2,9 @@
|
|
|
2
2
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
3
3
|
"editor.formatOnSave": true,
|
|
4
4
|
"explorer.compactFolders": false,
|
|
5
|
-
"
|
|
5
|
+
"js/ts.preferences.importModuleSpecifierEnding": "js",
|
|
6
6
|
"[javascript]": {
|
|
7
|
-
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
7
|
+
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
8
8
|
},
|
|
9
|
+
"editor.inlineSuggest.enabled": true
|
|
9
10
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,165 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 2026-03-
|
|
3
|
+
## 2026-03-15
|
|
4
|
+
|
|
5
|
+
### cli-index
|
|
6
|
+
|
|
7
|
+
- fix: add quiet option to dotenv config for improved error handling ([975448eb4](https://github.com/underpostnet/engine/commit/975448eb4d710cc8248a783240ce818b5fb9b891))
|
|
8
|
+
|
|
9
|
+
### cli-secrets
|
|
10
|
+
|
|
11
|
+
- fix: add missing dotenv import in secrets module ([7f83e26c4](https://github.com/underpostnet/engine/commit/7f83e26c44dfe176b6cc524e7b117f322a62bf32))
|
|
12
|
+
|
|
13
|
+
### cli-repository
|
|
14
|
+
|
|
15
|
+
- fix: enhance environment variable checks for GITHUB_TOKEN retrieval ([d097c6c1f](https://github.com/underpostnet/engine/commit/d097c6c1f02edcab1e76dca226f129e334dbd453))
|
|
16
|
+
|
|
17
|
+
## New release v:3.1.0 (2026-03-14)
|
|
18
|
+
|
|
19
|
+
### docs
|
|
20
|
+
|
|
21
|
+
- Add documentation for Baremetal and LXD management, including command references and quick start guides ([3569b5150](https://github.com/underpostnet/engine/commit/3569b5150f375467bf5cdb03247897e2849e45ce))
|
|
22
|
+
- feat: update documentation with new command options for database and deployment management ([707ef0e4d](https://github.com/underpostnet/engine/commit/707ef0e4d522392b9d658402bbcd04f8c47dc7ec))
|
|
23
|
+
|
|
24
|
+
### github-actions
|
|
25
|
+
|
|
26
|
+
- feat: add optional commit message input for workflow_dispatch in CI configurations ([2314de8c6](https://github.com/underpostnet/engine/commit/2314de8c61bb309a1fe0aa42863243744aec54bc))
|
|
27
|
+
- Fix cloud explorer underpost session and underpost install in deployments workflows ([746547206](https://github.com/underpostnet/engine/commit/74654720635a04df3dda7785157332b401b3ebd3))
|
|
28
|
+
- Add npm install for update packages in deployments engine workflows ([5549a3f5d](https://github.com/underpostnet/engine/commit/5549a3f5d71f8476f0ee8b57e8c9e5c1bc316a10))
|
|
29
|
+
- Remove temporal --underpost-quickly-install in deployments workflows ([777b39a2e](https://github.com/underpostnet/engine/commit/777b39a2e07aaab0ac16ddaa01f5df2b4d50f175))
|
|
30
|
+
|
|
31
|
+
### cli-repository
|
|
32
|
+
|
|
33
|
+
- feat: enhance CI/CD workflows with workflow_dispatch support and input options ([b311866fa](https://github.com/underpostnet/engine/commit/b311866faab0872ca9e2f6f3041f1a97784cf362))
|
|
34
|
+
|
|
35
|
+
### package
|
|
36
|
+
|
|
37
|
+
- fix: add production image script to package.json ([fe0ca63df](https://github.com/underpostnet/engine/commit/fe0ca63df51df703cc2323ad2b697df1adb3d795))
|
|
38
|
+
- Add deploy js dependabot branch merge deploy script ([cdc7e90c3](https://github.com/underpostnet/engine/commit/cdc7e90c340e7fb8a35c906719a0e0e8fb728625))
|
|
39
|
+
- Fix packages vulnerabilities ([492a3963a](https://github.com/underpostnet/engine/commit/492a3963a54c3ed882fbe0078a6ab353cb2d636b))
|
|
40
|
+
|
|
41
|
+
### run-deploy
|
|
42
|
+
|
|
43
|
+
- feat dd security check for secrets before template deployment ([50b6b9ba6](https://github.com/underpostnet/engine/commit/50b6b9ba6d2f49eec1343c70ce7740f87f5cbbc1))
|
|
44
|
+
|
|
45
|
+
### bin-deploy
|
|
46
|
+
|
|
47
|
+
- feat(deploy): add 'conf' case to load configuration based on arguments ([28d3e8bf5](https://github.com/underpostnet/engine/commit/28d3e8bf590c35f5c77129400a77b5687bcb05db))
|
|
48
|
+
- Add temporal fallback underpost legacy version handling ([ad74d2ef6](https://github.com/underpostnet/engine/commit/ad74d2ef689a95edab80401514f192bb13226e94))
|
|
49
|
+
- separate cyberia-hardhat case deploy script ([3cd032785](https://github.com/underpostnet/engine/commit/3cd03278549a89dfffd04298bc7a53880099a51e))
|
|
50
|
+
|
|
51
|
+
### server-logger
|
|
52
|
+
|
|
53
|
+
- fix(logger): update json-colorizer import and color definitions ([2b89456df](https://github.com/underpostnet/engine/commit/2b89456df3d78e49bed257068f93639542f0e9b8))
|
|
54
|
+
- Fix colorize import logger ([d7c01ccc2](https://github.com/underpostnet/engine/commit/d7c01ccc29b4c6403b024f83a46bd29986260688))
|
|
55
|
+
|
|
56
|
+
### gitleaks
|
|
57
|
+
|
|
58
|
+
- fix: update gitleaks configuration title and add new ignore entries for sensitive tokens ([408cad0a4](https://github.com/underpostnet/engine/commit/408cad0a4de273cbec9f97f9b8b93c98246602fd))
|
|
59
|
+
|
|
60
|
+
### server-conf
|
|
61
|
+
|
|
62
|
+
- feat: add loadCronDeployEnv function to manage deployment-specific environment variables across modules ([19de5ea13](https://github.com/underpostnet/engine/commit/19de5ea13c121d6ad8b64982f14562ab16fb9d09))
|
|
63
|
+
- feat: enhance environment variable file generation with template support ([467f3a348](https://github.com/underpostnet/engine/commit/467f3a348d6bca994829f5fb51034e8b6c0e5c0e))
|
|
64
|
+
- refactor: update configuration loading logic and enhance environment variable handling ([bbda63807](https://github.com/underpostnet/engine/commit/bbda638076f2bb48b39ce1e52624064afecc8e30))
|
|
65
|
+
|
|
66
|
+
### cli-client
|
|
67
|
+
|
|
68
|
+
- feat: refactor deployment process to use new client command and streamline build operations ([c854da41a](https://github.com/underpostnet/engine/commit/c854da41a9d545c1d718e23ffb37e3188c849da7))
|
|
69
|
+
|
|
70
|
+
### env
|
|
71
|
+
|
|
72
|
+
- feat: integrate loadEnv function to manage deploy-specific environment variables in CLI and server modules ([47a1560be](https://github.com/underpostnet/engine/commit/47a1560bee093ed2fdc395d70c911fcaca106763))
|
|
73
|
+
|
|
74
|
+
### template
|
|
75
|
+
|
|
76
|
+
- fix: update deployment script to build template and adjust logging configuration ([30c3a830b](https://github.com/underpostnet/engine/commit/30c3a830b02097fd11538c7b5d46db35ad479c58))
|
|
77
|
+
|
|
78
|
+
### server-client
|
|
79
|
+
|
|
80
|
+
- fix: improve error logging for nodemon crashes in client development server ([a0ece9770](https://github.com/underpostnet/engine/commit/a0ece97700797565dd992f2320d41814fd1e9113))
|
|
81
|
+
|
|
82
|
+
### package-script
|
|
83
|
+
|
|
84
|
+
- feat: add clean script to package.json for environment cleanup ([1516217a8](https://github.com/underpostnet/engine/commit/1516217a8311b3e303a433ebeb70c2306369ee39))
|
|
85
|
+
|
|
86
|
+
### cli-repo
|
|
87
|
+
|
|
88
|
+
- feat: add sync-start option to synchronize start scripts in package.json for deploy IDs ([59ebb8c1c](https://github.com/underpostnet/engine/commit/59ebb8c1cb681bc3a12f17e2588198119cad2964))
|
|
89
|
+
- feat: add option to display current Git branch name ([8492f7a2b](https://github.com/underpostnet/engine/commit/8492f7a2b8bfe8db50b060d2659a8e059f8d4329))
|
|
90
|
+
|
|
91
|
+
### cli-run
|
|
92
|
+
|
|
93
|
+
- Fix runner ide vs code ([70b34ea3d](https://github.com/underpostnet/engine/commit/70b34ea3d3bbf2432882dbe6a9cef87b9af5cf5e))
|
|
94
|
+
|
|
95
|
+
### server-env
|
|
96
|
+
|
|
97
|
+
- refactor: centralize environment variable loading ([3c2709aec](https://github.com/underpostnet/engine/commit/3c2709aecf04111ccff716ac929180e93d0edbb9))
|
|
98
|
+
|
|
99
|
+
### bin-vs
|
|
100
|
+
|
|
101
|
+
- Improve vs code ide runner handling ([2b1a8b326](https://github.com/underpostnet/engine/commit/2b1a8b326129c5e44fac6691d006991be1eb6097))
|
|
102
|
+
|
|
103
|
+
### engine
|
|
104
|
+
|
|
105
|
+
- Refactor security deploy conf logic and handle ([7d6592c43](https://github.com/underpostnet/engine/commit/7d6592c438c6107c10108a0bf78b33b8849a8036))
|
|
106
|
+
- Silencing dotenv injection logs ([56b8e8e80](https://github.com/underpostnet/engine/commit/56b8e8e80f945c508c4cbc277a1f33c9f3977f6d))
|
|
107
|
+
|
|
108
|
+
### engine-cyberia
|
|
109
|
+
|
|
110
|
+
- Add development pv pvc dd-cyberia manifests ([ca4d3d342](https://github.com/underpostnet/engine/commit/ca4d3d3420e1d6a3801430e5c1a28e6377f39a0a))
|
|
111
|
+
- Fix object layer model Mongoose pre save next error ([506fb719c](https://github.com/underpostnet/engine/commit/506fb719cbd875e3ffdd1168cf2155bb0f083ba4))
|
|
112
|
+
- Add missing ethers packahge in CyberiaDependencies scope ([5f11cafe6](https://github.com/underpostnet/engine/commit/5f11cafe64abde831e497ed06be825a589e7ce23))
|
|
113
|
+
- Add Customize Docs release URL and MenuCyberiaPortal GitHub ([e879c2240](https://github.com/underpostnet/engine/commit/e879c22401af13d21056f0cd146f0292ae39fc31))
|
|
114
|
+
- Fix Hardhat CI npm audit failure ([3ea9ed486](https://github.com/underpostnet/engine/commit/3ea9ed486ebbc7e5e3879a61a26fcb2fa5071148))
|
|
115
|
+
- Update hardhat config evm version ([816e1d7d0](https://github.com/underpostnet/engine/commit/816e1d7d0594abd34f344c483fad1a62f0238cf0))
|
|
116
|
+
- Cyberia Portal Docs Modal Fixes ([9bd9eb1e4](https://github.com/underpostnet/engine/commit/9bd9eb1e493cb8136e47c73de3a8dbbb1393fe44))
|
|
117
|
+
- Add Cyberia portal docs build integration ([9d8abe001](https://github.com/underpostnet/engine/commit/9d8abe0017249002e13f8f7c1dde4a9b24e5348f))
|
|
118
|
+
- Kubeadm Underpost Cluster Besu Integration ([1df6cfbfb](https://github.com/underpostnet/engine/commit/1df6cfbfb32621243fb2be39de9aba8ebafbde6f))
|
|
119
|
+
- Fix Hardhat Web Integration Canonical CID ([bb2a81fab](https://github.com/underpostnet/engine/commit/bb2a81fab558f9f3c493e9cbae6f029ca9a1b404))
|
|
120
|
+
- Cryptokoyn and Itemledger metadata client and seo injects ([db8c9b337](https://github.com/underpostnet/engine/commit/db8c9b3372d29f84a27b5b40003f09d5956cefd2))
|
|
121
|
+
- Cyberia NPM Dependency Installer hardhat on main module override ([a43cc25ea](https://github.com/underpostnet/engine/commit/a43cc25ea59f6e36a1a52f53fcd1b6b1544168cc))
|
|
122
|
+
- Apply mermaid on diagrams in WHITE-PAPER.md ([0bb230e14](https://github.com/underpostnet/engine/commit/0bb230e14fe3639a9fe026e0c1f2da585856c04c))
|
|
123
|
+
- Hardhat Cyberia CKY Token Lifecycle ([514bdafae](https://github.com/underpostnet/engine/commit/514bdafaee5d345a7fa43d6b1aab2cd6917d5cee))
|
|
124
|
+
- Hardhat Ethers v6 Upgrade Audit ([114e42f7d](https://github.com/underpostnet/engine/commit/114e42f7dd7f549cda21b873461558fc8ce7c7ba))
|
|
125
|
+
- Hardhat ES6 refactor for Cyberia ([9b9f85693](https://github.com/underpostnet/engine/commit/9b9f85693cb7256e433b1184fd8dbf1739a3dbd9))
|
|
126
|
+
- Object Layer Token Ethereum Refactor ([82076eb9e](https://github.com/underpostnet/engine/commit/82076eb9e311ee003b7d91e38e60829f9e3b0f2c))
|
|
127
|
+
- Rename cyberkoyn reference to cryptokoyn ([ae5949337](https://github.com/underpostnet/engine/commit/ae5949337c5a27f4367cc93247023b1448491c9f))
|
|
128
|
+
- Refactor Object Layer White Paper and ERC1155 Besu Integration ([8cb6f59c2](https://github.com/underpostnet/engine/commit/8cb6f59c23a66265d5b663bec37ac0c402ffffad))
|
|
129
|
+
|
|
130
|
+
### cli-deploy
|
|
131
|
+
|
|
132
|
+
- Fix Kubernetes PVC Manifest Inconsistencies ([6839bccca](https://github.com/underpostnet/engine/commit/6839bccca30723e1cbd4664b31b0cede1ff63c90))
|
|
133
|
+
- Fix Kubernetes PVC Manifest Inconsistencies builder ([d6f311c60](https://github.com/underpostnet/engine/commit/d6f311c608217401ec145e70aab04206147a743e))
|
|
134
|
+
|
|
135
|
+
### client-core
|
|
136
|
+
|
|
137
|
+
- Fix AgGrid Theme Events Rendering ([4b37681f1](https://github.com/underpostnet/engine/commit/4b37681f19a102da5068c20998c0353bae604d54))
|
|
138
|
+
- Add logic to custom ui-icon in content component ([b380703c8](https://github.com/underpostnet/engine/commit/b380703c8a52abb3d37f390725a54ed6b88e5fcc))
|
|
139
|
+
- Fix sitemap generation logic ([7cfb23d01](https://github.com/underpostnet/engine/commit/7cfb23d01988d1f4ff288e8ce17d350c1d3af633))
|
|
140
|
+
- Fix sitemap builder defaul url sitemap ([c39f1e070](https://github.com/underpostnet/engine/commit/c39f1e07055f035da4f737f8ec6f2acfd621ca80))
|
|
141
|
+
|
|
142
|
+
### client-underpost
|
|
143
|
+
|
|
144
|
+
- Add File Explorer Cloud Menu Auth ([f3cc57e28](https://github.com/underpostnet/engine/commit/f3cc57e2818e36e56f34bc41f81846b64e48e2a8))
|
|
145
|
+
|
|
146
|
+
### api-core
|
|
147
|
+
|
|
148
|
+
- Fix deprecated Mongoose pre save next error ([bee1a5829](https://github.com/underpostnet/engine/commit/bee1a582926a0264be0cfb8ddf87f4ef01413a19))
|
|
149
|
+
|
|
150
|
+
### conf
|
|
151
|
+
|
|
152
|
+
- Add SwaggerDarkMode in dd-cyberia conf ([69d4c54f1](https://github.com/underpostnet/engine/commit/69d4c54f1e354e9f45b1b401796ca9702ac95698))
|
|
153
|
+
|
|
154
|
+
### bin-build
|
|
155
|
+
|
|
156
|
+
- Fix jsdocs cyberia json build ([20dbe54dd](https://github.com/underpostnet/engine/commit/20dbe54dd7f1e6559b231971afdba694a37315ca))
|
|
157
|
+
|
|
158
|
+
### cli-core
|
|
159
|
+
|
|
160
|
+
- Update -g8 option flag ([d1779a1da](https://github.com/underpostnet/engine/commit/d1779a1da5a2883408962fa231dad6342f8fe6d3))
|
|
161
|
+
|
|
162
|
+
## New release v:3.0.3 (2026-03-06)
|
|
4
163
|
|
|
5
164
|
### client-underpost
|
|
6
165
|
|