underpost 3.0.3 → 3.1.0

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.
Files changed (82) hide show
  1. package/{.env.production → .env.example} +20 -2
  2. package/.github/workflows/ghpkg.ci.yml +1 -1
  3. package/.github/workflows/gitlab.ci.yml +1 -1
  4. package/.github/workflows/npmpkg.ci.yml +22 -7
  5. package/.github/workflows/publish.ci.yml +5 -5
  6. package/.github/workflows/pwa-microservices-template-page.cd.yml +3 -3
  7. package/.github/workflows/pwa-microservices-template-test.ci.yml +1 -1
  8. package/.github/workflows/release.cd.yml +3 -2
  9. package/.vscode/extensions.json +9 -8
  10. package/.vscode/settings.json +3 -2
  11. package/CHANGELOG.md +146 -1
  12. package/CLI-HELP.md +71 -52
  13. package/README.md +2 -2
  14. package/bin/build.js +4 -1
  15. package/bin/deploy.js +150 -208
  16. package/bin/file.js +2 -1
  17. package/bin/vs.js +3 -3
  18. package/conf.js +30 -13
  19. package/manifests/cronjobs/dd-cron/dd-cron-backup.yaml +1 -1
  20. package/manifests/cronjobs/dd-cron/dd-cron-dns.yaml +1 -1
  21. package/manifests/deployment/dd-default-development/deployment.yaml +2 -2
  22. package/manifests/deployment/dd-test-development/deployment.yaml +52 -52
  23. package/manifests/deployment/dd-test-development/proxy.yaml +4 -4
  24. package/manifests/pv-pvc-dd.yaml +1 -1
  25. package/package.json +48 -43
  26. package/scripts/k3s-node-setup.sh +1 -1
  27. package/src/api/document/document.service.js +1 -1
  28. package/src/api/file/file.controller.js +3 -1
  29. package/src/api/file/file.service.js +28 -5
  30. package/src/api/user/user.router.js +10 -5
  31. package/src/api/user/user.service.js +7 -7
  32. package/src/cli/baremetal.js +6 -10
  33. package/src/cli/cloud-init.js +0 -3
  34. package/src/cli/db.js +54 -71
  35. package/src/cli/deploy.js +64 -12
  36. package/src/cli/env.js +4 -4
  37. package/src/cli/fs.js +0 -2
  38. package/src/cli/image.js +0 -3
  39. package/src/cli/index.js +27 -13
  40. package/src/cli/monitor.js +5 -6
  41. package/src/cli/repository.js +322 -35
  42. package/src/cli/run.js +118 -69
  43. package/src/cli/secrets.js +0 -3
  44. package/src/cli/ssh.js +1 -1
  45. package/src/client/components/core/AgGrid.js +20 -5
  46. package/src/client/components/core/Content.js +22 -3
  47. package/src/client/components/core/Docs.js +21 -4
  48. package/src/client/components/core/FileExplorer.js +71 -4
  49. package/src/client/components/core/Input.js +1 -1
  50. package/src/client/components/core/Modal.js +20 -6
  51. package/src/client/public/default/sitemap +3 -3
  52. package/src/client/public/test/sitemap +3 -3
  53. package/src/client.build.js +0 -3
  54. package/src/client.dev.js +0 -3
  55. package/src/db/DataBaseProvider.js +17 -2
  56. package/src/db/mariadb/MariaDB.js +14 -9
  57. package/src/db/mongo/MongooseDB.js +17 -1
  58. package/src/index.js +1 -1
  59. package/src/proxy.js +0 -3
  60. package/src/runtime/express/Express.js +7 -1
  61. package/src/runtime/lampp/Lampp.js +6 -13
  62. package/src/server/auth.js +6 -9
  63. package/src/server/backup.js +2 -3
  64. package/src/server/client-build-docs.js +178 -3
  65. package/src/server/client-build-live.js +9 -18
  66. package/src/server/client-build.js +175 -38
  67. package/src/server/client-dev-server.js +14 -13
  68. package/src/server/conf.js +357 -149
  69. package/src/server/cron.js +2 -1
  70. package/src/server/dns.js +28 -12
  71. package/src/server/downloader.js +0 -2
  72. package/src/server/logger.js +27 -9
  73. package/src/server/peer.js +0 -2
  74. package/src/server/process.js +1 -50
  75. package/src/server/proxy.js +4 -8
  76. package/src/server/runtime.js +5 -8
  77. package/src/server/ssr.js +0 -3
  78. package/src/server/start.js +5 -5
  79. package/src/server/tls.js +0 -2
  80. package/src/server.js +0 -4
  81. package/.env.development +0 -43
  82. 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=test
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
@@ -20,7 +20,7 @@ jobs:
20
20
  packages: write
21
21
  id-token: write
22
22
  steps:
23
- - uses: actions/checkout@v3
23
+ - uses: actions/checkout@v6
24
24
 
25
25
  - name: Install required packages
26
26
  run: |
@@ -6,7 +6,7 @@ jobs:
6
6
  name: Update gitlab repo package Jobs
7
7
  runs-on: ubuntu-latest
8
8
  steps:
9
- - uses: actions/checkout@v4
9
+ - uses: actions/checkout@v6
10
10
  with:
11
11
  fetch-depth: 0
12
12
  lfs: 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
- && startsWith(github.event.head_commit.message, 'ci(package-pwa-microservices-template')
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@v3
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
- FULL_MSG="${{ github.event.head_commit.message }}"
40
- 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}')"
41
- LAST_COMMIT_MESSAGE="${REST:-$FULL_MSG}"
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-template
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@v4
15
+ - uses: actions/checkout@v6
16
16
 
17
- - uses: actions/setup-node@v4
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@v4
38
+ - uses: actions/checkout@v6
39
39
 
40
- - uses: actions/setup-node@v4
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@v4
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@v4
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
- env-cmd -f .env.production node bin/deploy build-full-client dd-github-pages underpostnet.github.io /pwa-microservices-template-ghpkg
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@v3
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/'
@@ -11,7 +11,7 @@ jobs:
11
11
  options: --entrypoint /bin/bash
12
12
  steps:
13
13
  - name: Clone repository
14
- uses: actions/checkout@v3
14
+ uses: actions/checkout@v6
15
15
 
16
16
  - name: Install required packages
17
17
  run: |
@@ -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.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 "node bin run pull"
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"
@@ -1,9 +1,10 @@
1
1
  {
2
- "recommendations": [
3
- "antiantisepticeye.vscode-color-picker",
4
- "bashmish.es6-string-css",
5
- "eamodio.gitlens",
6
- "esbenp.prettier-vscode",
7
- "tobermory.es6-string-html",
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
+ }
@@ -2,8 +2,9 @@
2
2
  "editor.defaultFormatter": "esbenp.prettier-vscode",
3
3
  "editor.formatOnSave": true,
4
4
  "explorer.compactFolders": false,
5
- "javascript.preferences.importModuleSpecifierEnding": "js",
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,151 @@
1
1
  # Changelog
2
2
 
3
- ## 2026-03-06
3
+ ## 2026-03-15
4
+
5
+ ### docs
6
+
7
+ - Add documentation for Baremetal and LXD management, including command references and quick start guides ([3569b5150](https://github.com/underpostnet/engine/commit/3569b5150f375467bf5cdb03247897e2849e45ce))
8
+ - feat: update documentation with new command options for database and deployment management ([707ef0e4d](https://github.com/underpostnet/engine/commit/707ef0e4d522392b9d658402bbcd04f8c47dc7ec))
9
+
10
+ ### github-actions
11
+
12
+ - feat: add optional commit message input for workflow_dispatch in CI configurations ([2314de8c6](https://github.com/underpostnet/engine/commit/2314de8c61bb309a1fe0aa42863243744aec54bc))
13
+ - Fix cloud explorer underpost session and underpost install in deployments workflows ([746547206](https://github.com/underpostnet/engine/commit/74654720635a04df3dda7785157332b401b3ebd3))
14
+ - Add npm install for update packages in deployments engine workflows ([5549a3f5d](https://github.com/underpostnet/engine/commit/5549a3f5d71f8476f0ee8b57e8c9e5c1bc316a10))
15
+ - Remove temporal --underpost-quickly-install in deployments workflows ([777b39a2e](https://github.com/underpostnet/engine/commit/777b39a2e07aaab0ac16ddaa01f5df2b4d50f175))
16
+
17
+ ### cli-repository
18
+
19
+ - feat: enhance CI/CD workflows with workflow_dispatch support and input options ([b311866fa](https://github.com/underpostnet/engine/commit/b311866faab0872ca9e2f6f3041f1a97784cf362))
20
+
21
+ ### package
22
+
23
+ - fix: add production image script to package.json ([fe0ca63df](https://github.com/underpostnet/engine/commit/fe0ca63df51df703cc2323ad2b697df1adb3d795))
24
+ - Add deploy js dependabot branch merge deploy script ([cdc7e90c3](https://github.com/underpostnet/engine/commit/cdc7e90c340e7fb8a35c906719a0e0e8fb728625))
25
+ - Fix packages vulnerabilities ([492a3963a](https://github.com/underpostnet/engine/commit/492a3963a54c3ed882fbe0078a6ab353cb2d636b))
26
+
27
+ ### run-deploy
28
+
29
+ - feat dd security check for secrets before template deployment ([50b6b9ba6](https://github.com/underpostnet/engine/commit/50b6b9ba6d2f49eec1343c70ce7740f87f5cbbc1))
30
+
31
+ ### bin-deploy
32
+
33
+ - feat(deploy): add 'conf' case to load configuration based on arguments ([28d3e8bf5](https://github.com/underpostnet/engine/commit/28d3e8bf590c35f5c77129400a77b5687bcb05db))
34
+ - Add temporal fallback underpost legacy version handling ([ad74d2ef6](https://github.com/underpostnet/engine/commit/ad74d2ef689a95edab80401514f192bb13226e94))
35
+ - separate cyberia-hardhat case deploy script ([3cd032785](https://github.com/underpostnet/engine/commit/3cd03278549a89dfffd04298bc7a53880099a51e))
36
+
37
+ ### server-logger
38
+
39
+ - fix(logger): update json-colorizer import and color definitions ([2b89456df](https://github.com/underpostnet/engine/commit/2b89456df3d78e49bed257068f93639542f0e9b8))
40
+ - Fix colorize import logger ([d7c01ccc2](https://github.com/underpostnet/engine/commit/d7c01ccc29b4c6403b024f83a46bd29986260688))
41
+
42
+ ### gitleaks
43
+
44
+ - fix: update gitleaks configuration title and add new ignore entries for sensitive tokens ([408cad0a4](https://github.com/underpostnet/engine/commit/408cad0a4de273cbec9f97f9b8b93c98246602fd))
45
+
46
+ ### server-conf
47
+
48
+ - feat: add loadCronDeployEnv function to manage deployment-specific environment variables across modules ([19de5ea13](https://github.com/underpostnet/engine/commit/19de5ea13c121d6ad8b64982f14562ab16fb9d09))
49
+ - feat: enhance environment variable file generation with template support ([467f3a348](https://github.com/underpostnet/engine/commit/467f3a348d6bca994829f5fb51034e8b6c0e5c0e))
50
+ - refactor: update configuration loading logic and enhance environment variable handling ([bbda63807](https://github.com/underpostnet/engine/commit/bbda638076f2bb48b39ce1e52624064afecc8e30))
51
+
52
+ ### cli-client
53
+
54
+ - feat: refactor deployment process to use new client command and streamline build operations ([c854da41a](https://github.com/underpostnet/engine/commit/c854da41a9d545c1d718e23ffb37e3188c849da7))
55
+
56
+ ### env
57
+
58
+ - feat: integrate loadEnv function to manage deploy-specific environment variables in CLI and server modules ([47a1560be](https://github.com/underpostnet/engine/commit/47a1560bee093ed2fdc395d70c911fcaca106763))
59
+
60
+ ### template
61
+
62
+ - fix: update deployment script to build template and adjust logging configuration ([30c3a830b](https://github.com/underpostnet/engine/commit/30c3a830b02097fd11538c7b5d46db35ad479c58))
63
+
64
+ ### server-client
65
+
66
+ - fix: improve error logging for nodemon crashes in client development server ([a0ece9770](https://github.com/underpostnet/engine/commit/a0ece97700797565dd992f2320d41814fd1e9113))
67
+
68
+ ### package-script
69
+
70
+ - feat: add clean script to package.json for environment cleanup ([1516217a8](https://github.com/underpostnet/engine/commit/1516217a8311b3e303a433ebeb70c2306369ee39))
71
+
72
+ ### cli-repo
73
+
74
+ - feat: add sync-start option to synchronize start scripts in package.json for deploy IDs ([59ebb8c1c](https://github.com/underpostnet/engine/commit/59ebb8c1cb681bc3a12f17e2588198119cad2964))
75
+ - feat: add option to display current Git branch name ([8492f7a2b](https://github.com/underpostnet/engine/commit/8492f7a2b8bfe8db50b060d2659a8e059f8d4329))
76
+
77
+ ### cli-run
78
+
79
+ - Fix runner ide vs code ([70b34ea3d](https://github.com/underpostnet/engine/commit/70b34ea3d3bbf2432882dbe6a9cef87b9af5cf5e))
80
+
81
+ ### server-env
82
+
83
+ - refactor: centralize environment variable loading ([3c2709aec](https://github.com/underpostnet/engine/commit/3c2709aecf04111ccff716ac929180e93d0edbb9))
84
+
85
+ ### bin-vs
86
+
87
+ - Improve vs code ide runner handling ([2b1a8b326](https://github.com/underpostnet/engine/commit/2b1a8b326129c5e44fac6691d006991be1eb6097))
88
+
89
+ ### engine
90
+
91
+ - Refactor security deploy conf logic and handle ([7d6592c43](https://github.com/underpostnet/engine/commit/7d6592c438c6107c10108a0bf78b33b8849a8036))
92
+ - Silencing dotenv injection logs ([56b8e8e80](https://github.com/underpostnet/engine/commit/56b8e8e80f945c508c4cbc277a1f33c9f3977f6d))
93
+
94
+ ### engine-cyberia
95
+
96
+ - Add development pv pvc dd-cyberia manifests ([ca4d3d342](https://github.com/underpostnet/engine/commit/ca4d3d3420e1d6a3801430e5c1a28e6377f39a0a))
97
+ - Fix object layer model Mongoose pre save next error ([506fb719c](https://github.com/underpostnet/engine/commit/506fb719cbd875e3ffdd1168cf2155bb0f083ba4))
98
+ - Add missing ethers packahge in CyberiaDependencies scope ([5f11cafe6](https://github.com/underpostnet/engine/commit/5f11cafe64abde831e497ed06be825a589e7ce23))
99
+ - Add Customize Docs release URL and MenuCyberiaPortal GitHub ([e879c2240](https://github.com/underpostnet/engine/commit/e879c22401af13d21056f0cd146f0292ae39fc31))
100
+ - Fix Hardhat CI npm audit failure ([3ea9ed486](https://github.com/underpostnet/engine/commit/3ea9ed486ebbc7e5e3879a61a26fcb2fa5071148))
101
+ - Update hardhat config evm version ([816e1d7d0](https://github.com/underpostnet/engine/commit/816e1d7d0594abd34f344c483fad1a62f0238cf0))
102
+ - Cyberia Portal Docs Modal Fixes ([9bd9eb1e4](https://github.com/underpostnet/engine/commit/9bd9eb1e493cb8136e47c73de3a8dbbb1393fe44))
103
+ - Add Cyberia portal docs build integration ([9d8abe001](https://github.com/underpostnet/engine/commit/9d8abe0017249002e13f8f7c1dde4a9b24e5348f))
104
+ - Kubeadm Underpost Cluster Besu Integration ([1df6cfbfb](https://github.com/underpostnet/engine/commit/1df6cfbfb32621243fb2be39de9aba8ebafbde6f))
105
+ - Fix Hardhat Web Integration Canonical CID ([bb2a81fab](https://github.com/underpostnet/engine/commit/bb2a81fab558f9f3c493e9cbae6f029ca9a1b404))
106
+ - Cryptokoyn and Itemledger metadata client and seo injects ([db8c9b337](https://github.com/underpostnet/engine/commit/db8c9b3372d29f84a27b5b40003f09d5956cefd2))
107
+ - Cyberia NPM Dependency Installer hardhat on main module override ([a43cc25ea](https://github.com/underpostnet/engine/commit/a43cc25ea59f6e36a1a52f53fcd1b6b1544168cc))
108
+ - Apply mermaid on diagrams in WHITE-PAPER.md ([0bb230e14](https://github.com/underpostnet/engine/commit/0bb230e14fe3639a9fe026e0c1f2da585856c04c))
109
+ - Hardhat Cyberia CKY Token Lifecycle ([514bdafae](https://github.com/underpostnet/engine/commit/514bdafaee5d345a7fa43d6b1aab2cd6917d5cee))
110
+ - Hardhat Ethers v6 Upgrade Audit ([114e42f7d](https://github.com/underpostnet/engine/commit/114e42f7dd7f549cda21b873461558fc8ce7c7ba))
111
+ - Hardhat ES6 refactor for Cyberia ([9b9f85693](https://github.com/underpostnet/engine/commit/9b9f85693cb7256e433b1184fd8dbf1739a3dbd9))
112
+ - Object Layer Token Ethereum Refactor ([82076eb9e](https://github.com/underpostnet/engine/commit/82076eb9e311ee003b7d91e38e60829f9e3b0f2c))
113
+ - Rename cyberkoyn reference to cryptokoyn ([ae5949337](https://github.com/underpostnet/engine/commit/ae5949337c5a27f4367cc93247023b1448491c9f))
114
+ - Refactor Object Layer White Paper and ERC1155 Besu Integration ([8cb6f59c2](https://github.com/underpostnet/engine/commit/8cb6f59c23a66265d5b663bec37ac0c402ffffad))
115
+
116
+ ### cli-deploy
117
+
118
+ - Fix Kubernetes PVC Manifest Inconsistencies ([6839bccca](https://github.com/underpostnet/engine/commit/6839bccca30723e1cbd4664b31b0cede1ff63c90))
119
+ - Fix Kubernetes PVC Manifest Inconsistencies builder ([d6f311c60](https://github.com/underpostnet/engine/commit/d6f311c608217401ec145e70aab04206147a743e))
120
+
121
+ ### client-core
122
+
123
+ - Fix AgGrid Theme Events Rendering ([4b37681f1](https://github.com/underpostnet/engine/commit/4b37681f19a102da5068c20998c0353bae604d54))
124
+ - Add logic to custom ui-icon in content component ([b380703c8](https://github.com/underpostnet/engine/commit/b380703c8a52abb3d37f390725a54ed6b88e5fcc))
125
+ - Fix sitemap generation logic ([7cfb23d01](https://github.com/underpostnet/engine/commit/7cfb23d01988d1f4ff288e8ce17d350c1d3af633))
126
+ - Fix sitemap builder defaul url sitemap ([c39f1e070](https://github.com/underpostnet/engine/commit/c39f1e07055f035da4f737f8ec6f2acfd621ca80))
127
+
128
+ ### client-underpost
129
+
130
+ - Add File Explorer Cloud Menu Auth ([f3cc57e28](https://github.com/underpostnet/engine/commit/f3cc57e2818e36e56f34bc41f81846b64e48e2a8))
131
+
132
+ ### api-core
133
+
134
+ - Fix deprecated Mongoose pre save next error ([bee1a5829](https://github.com/underpostnet/engine/commit/bee1a582926a0264be0cfb8ddf87f4ef01413a19))
135
+
136
+ ### conf
137
+
138
+ - Add SwaggerDarkMode in dd-cyberia conf ([69d4c54f1](https://github.com/underpostnet/engine/commit/69d4c54f1e354e9f45b1b401796ca9702ac95698))
139
+
140
+ ### bin-build
141
+
142
+ - Fix jsdocs cyberia json build ([20dbe54dd](https://github.com/underpostnet/engine/commit/20dbe54dd7f1e6559b231971afdba694a37315ca))
143
+
144
+ ### cli-core
145
+
146
+ - Update -g8 option flag ([d1779a1da](https://github.com/underpostnet/engine/commit/d1779a1da5a2883408962fa231dad6342f8fe6d3))
147
+
148
+ ## New release v:3.0.3 (2026-03-06)
4
149
 
5
150
  ### client-underpost
6
151