underpost 3.2.5 → 3.2.9

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 (144) hide show
  1. package/.github/workflows/release.cd.yml +1 -2
  2. package/CHANGELOG.md +351 -1
  3. package/CLI-HELP.md +40 -13
  4. package/Dockerfile +0 -4
  5. package/README.md +4 -4
  6. package/bin/build.js +14 -5
  7. package/bin/deploy.js +570 -1
  8. package/bin/file.js +6 -0
  9. package/conf.js +11 -2
  10. package/jsconfig.json +1 -1
  11. package/manifests/cronjobs/dd-cron/dd-cron-backup.yaml +2 -2
  12. package/manifests/cronjobs/dd-cron/dd-cron-dns.yaml +2 -2
  13. package/manifests/deployment/dd-default-development/deployment.yaml +2 -6
  14. package/manifests/deployment/dd-test-development/deployment.yaml +136 -66
  15. package/manifests/deployment/dd-test-development/proxy.yaml +41 -5
  16. package/package.json +24 -15
  17. package/scripts/k3s-node-setup.sh +2 -2
  18. package/scripts/nat-iptables.sh +103 -18
  19. package/src/api/core/core.controller.js +10 -10
  20. package/src/api/core/core.service.js +10 -10
  21. package/src/api/default/default.controller.js +10 -10
  22. package/src/api/default/default.service.js +10 -10
  23. package/src/api/document/document.controller.js +12 -12
  24. package/src/api/document/document.model.js +10 -16
  25. package/src/api/file/file.controller.js +8 -8
  26. package/src/api/file/file.model.js +10 -10
  27. package/src/api/file/file.service.js +36 -36
  28. package/src/api/test/test.controller.js +8 -8
  29. package/src/api/test/test.service.js +8 -8
  30. package/src/api/user/guest.service.js +99 -0
  31. package/src/api/user/user.controller.js +6 -6
  32. package/src/api/user/user.model.js +8 -13
  33. package/src/api/user/user.service.js +3 -20
  34. package/src/cli/cluster.js +61 -14
  35. package/src/cli/db.js +47 -2
  36. package/src/cli/deploy.js +67 -35
  37. package/src/cli/fs.js +79 -8
  38. package/src/cli/image.js +43 -1
  39. package/src/cli/index.js +26 -1
  40. package/src/cli/release.js +57 -1
  41. package/src/cli/repository.js +69 -31
  42. package/src/cli/run.js +415 -36
  43. package/src/cli/ssh.js +1 -1
  44. package/src/cli/static.js +43 -115
  45. package/src/client/Default.index.js +21 -33
  46. package/src/client/components/core/404.js +4 -4
  47. package/src/client/components/core/500.js +4 -4
  48. package/src/client/components/core/Account.js +73 -60
  49. package/src/client/components/core/AgGrid.js +23 -33
  50. package/src/client/components/core/Alert.js +12 -13
  51. package/src/client/components/core/AppStore.js +1 -1
  52. package/src/client/components/core/Auth.js +35 -37
  53. package/src/client/components/core/Badge.js +7 -13
  54. package/src/client/components/core/BtnIcon.js +15 -17
  55. package/src/client/components/core/CalendarCore.js +42 -63
  56. package/src/client/components/core/Chat.js +13 -15
  57. package/src/client/components/core/ClientEvents.js +87 -0
  58. package/src/client/components/core/ColorPaletteElement.js +309 -0
  59. package/src/client/components/core/Content.js +17 -14
  60. package/src/client/components/core/Css.js +15 -71
  61. package/src/client/components/core/CssCore.js +12 -16
  62. package/src/client/components/core/D3Chart.js +4 -4
  63. package/src/client/components/core/Docs.js +64 -91
  64. package/src/client/components/core/DropDown.js +69 -91
  65. package/src/client/components/core/EventBus.js +92 -0
  66. package/src/client/components/core/EventsUI.js +14 -17
  67. package/src/client/components/core/FileExplorer.js +96 -228
  68. package/src/client/components/core/FullScreen.js +47 -75
  69. package/src/client/components/core/Input.js +24 -69
  70. package/src/client/components/core/Keyboard.js +25 -18
  71. package/src/client/components/core/KeyboardAvoidance.js +145 -0
  72. package/src/client/components/core/LoadingAnimation.js +25 -31
  73. package/src/client/components/core/LogIn.js +41 -41
  74. package/src/client/components/core/LogOut.js +23 -14
  75. package/src/client/components/core/Modal.js +462 -178
  76. package/src/client/components/core/NotificationManager.js +14 -18
  77. package/src/client/components/core/Panel.js +54 -50
  78. package/src/client/components/core/PanelForm.js +25 -125
  79. package/src/client/components/core/Polyhedron.js +110 -214
  80. package/src/client/components/core/PublicProfile.js +39 -32
  81. package/src/client/components/core/Recover.js +48 -44
  82. package/src/client/components/core/Responsive.js +88 -32
  83. package/src/client/components/core/RichText.js +9 -18
  84. package/src/client/components/core/Router.js +24 -3
  85. package/src/client/components/core/SearchBox.js +37 -37
  86. package/src/client/components/core/SignUp.js +39 -30
  87. package/src/client/components/core/SocketIo.js +31 -2
  88. package/src/client/components/core/SocketIoHandler.js +6 -6
  89. package/src/client/components/core/ToggleSwitch.js +8 -20
  90. package/src/client/components/core/ToolTip.js +5 -17
  91. package/src/client/components/core/Translate.js +56 -59
  92. package/src/client/components/core/Validator.js +26 -16
  93. package/src/client/components/core/Wallet.js +15 -26
  94. package/src/client/components/core/Worker.js +163 -27
  95. package/src/client/components/core/windowGetDimensions.js +7 -7
  96. package/src/client/components/default/{MenuDefault.js → AppShellDefault.js} +87 -87
  97. package/src/client/components/default/CssDefault.js +12 -12
  98. package/src/client/components/default/LogInDefault.js +6 -4
  99. package/src/client/components/default/LogOutDefault.js +6 -4
  100. package/src/client/components/default/RouterDefault.js +47 -0
  101. package/src/client/components/default/SettingsDefault.js +4 -4
  102. package/src/client/components/default/SignUpDefault.js +6 -4
  103. package/src/client/components/default/TranslateDefault.js +3 -3
  104. package/src/client/services/core/core.service.js +17 -49
  105. package/src/client/services/default/default.management.js +159 -267
  106. package/src/client/services/default/default.service.js +10 -16
  107. package/src/client/services/document/document.service.js +14 -19
  108. package/src/client/services/file/file.service.js +8 -13
  109. package/src/client/services/test/test.service.js +8 -13
  110. package/src/client/services/user/guest.service.js +86 -0
  111. package/src/client/services/user/user.management.js +5 -5
  112. package/src/client/services/user/user.service.js +14 -20
  113. package/src/client/ssr/body/404.js +3 -3
  114. package/src/client/ssr/body/500.js +3 -3
  115. package/src/client/ssr/body/CacheControl.js +5 -2
  116. package/src/client/ssr/body/DefaultSplashScreen.js +19 -12
  117. package/src/client/ssr/mailer/DefaultRecoverEmail.js +19 -20
  118. package/src/client/ssr/mailer/DefaultVerifyEmail.js +15 -16
  119. package/src/client/ssr/offline/Maintenance.js +12 -11
  120. package/src/client/ssr/offline/NoNetworkConnection.js +3 -3
  121. package/src/client/ssr/pages/Test.js +2 -2
  122. package/src/client/sw/core.sw.js +212 -0
  123. package/src/index.js +1 -1
  124. package/src/runtime/express/Dockerfile +4 -4
  125. package/src/runtime/lampp/Dockerfile +8 -7
  126. package/src/runtime/wp/Dockerfile +11 -17
  127. package/src/server/client-build-docs.js +45 -46
  128. package/src/server/client-build.js +334 -60
  129. package/src/server/client-formatted.js +47 -16
  130. package/src/server/conf.js +5 -4
  131. package/src/server/data-query.js +32 -20
  132. package/src/server/dns.js +22 -0
  133. package/src/server/ipfs-client.js +232 -91
  134. package/src/server/process.js +13 -27
  135. package/src/server/start.js +17 -3
  136. package/src/server/valkey.js +141 -235
  137. package/tsconfig.docs.json +15 -0
  138. package/typedoc.json +29 -0
  139. package/jsdoc.json +0 -52
  140. package/src/client/components/core/ColorPalette.js +0 -5267
  141. package/src/client/components/core/JoyStick.js +0 -80
  142. package/src/client/components/default/RoutesDefault.js +0 -49
  143. package/src/client/sw/default.sw.js +0 -127
  144. package/src/client/sw/template.sw.js +0 -84
@@ -42,5 +42,4 @@ jobs:
42
42
  sudo -n -- /bin/bash -lc "npm install -g underpost"
43
43
  sudo -n -- /bin/bash -lc "node bin run secret"
44
44
  sudo -n -- /bin/bash -lc "node bin run --dev git-conf"
45
- sudo -n -- /bin/bash -lc "node bin run --dev template-deploy-image"
46
- sudo -n -- /bin/bash -lc "node bin run --dev ssh-deploy sync-engine-test"
45
+ sudo -n -- /bin/bash -lc "node bin run --dev docker-image"
package/CHANGELOG.md CHANGED
@@ -1,6 +1,356 @@
1
1
  # Changelog
2
2
 
3
- ## 2026-04-16
3
+ ## 2026-05-14
4
+
5
+ ### client-core
6
+
7
+ - Enhance Modal component to support dynamic tooltip positioning and menu collapse behavior ([4c01f4011](https://github.com/underpostnet/engine/commit/4c01f4011b55feeb8d02b52547f5cf376fff6ca0))
8
+ - Add support for pulling pre-built client bundles and skipping full builds during deployment ([7f86db25a](https://github.com/underpostnet/engine/commit/7f86db25a13ede6a0027b63867b30fc9576a9263))
9
+ - Refactor Docs and Modal components to centralize submenu item rendering and improve code organization ([5fdd051e9](https://github.com/underpostnet/engine/commit/5fdd051e923c9adffc2b5261637b9ade88b96fc9))
10
+ - Enhance modal and docs components to improve submenu behavior and animations ([ebf257c38](https://github.com/underpostnet/engine/commit/ebf257c38c12c0f2d66dda681b2f09f97ccfccbc))
11
+ - Defer service worker registration to improve initial load performance in PwaWorker ([88b52b8fc](https://github.com/underpostnet/engine/commit/88b52b8fc0a49642b0530d5dc0b0edfaa5395c9d))
12
+ - Refactor filter clearing logic in DefaultManagement to use runIsolated for better control over grid/query listeners ([325f6bd66](https://github.com/underpostnet/engine/commit/325f6bd66bb381adec15feb12b0bd0ba8fa539e7))
13
+ - Fix LoadFileActionsRenderer and LoadFolderActionsRenderer to use instance methods for GUI management ([9e6507a0c](https://github.com/underpostnet/engine/commit/9e6507a0ccc667433b9cac6a1cc645ecf6d4e7b3))
14
+ - Fix disable functions to use instance method for visibility checks ([7f5701c8d](https://github.com/underpostnet/engine/commit/7f5701c8df74bc6576894d8b5f7655b64cc6797a))
15
+
16
+ ### cli-run
17
+
18
+ - Enhance promote method to support TLS configuration for blue/green deployments ([a31185676](https://github.com/underpostnet/engine/commit/a31185676cef0ca639621c722df31114a2b172a1))
19
+ - Add CRI-O installation and configuration methods for kubeadm clusters ([44743552e](https://github.com/underpostnet/engine/commit/44743552ee5e2bcd13c157ab4e30e9dfc15979f6))
20
+
21
+ ### cli-cluster
22
+
23
+ - Enhance nat-iptables.sh for comprehensive Kubernetes firewall configuration and service exposure ([9087a946a](https://github.com/underpostnet/engine/commit/9087a946ab29526e63d5f87b389f1ad500f30d78))
24
+
25
+ ### cli-dns
26
+
27
+ - Add MAC address retrieval option to CLI and implement corresponding method in DNS class ([52b319467](https://github.com/underpostnet/engine/commit/52b3194674419624d99835dfe63699ab30683bfb))
28
+
29
+ ### engine
30
+
31
+ - Update Node.js version to 24.15.0 in setup scripts and documentation ([e05a472ca](https://github.com/underpostnet/engine/commit/e05a472cae67429321b7e1b3c601e0965d3e7b67))
32
+
33
+ ### scripts
34
+
35
+ - Enable firewalld and configure persistent IP forwarding in nat-iptables.sh ([845a09791](https://github.com/underpostnet/engine/commit/845a09791187613b512f95cea12bc3b0a53dd13f))
36
+
37
+ ### cli-fs
38
+
39
+ - Enhance UnderpostFileStorage and UnderpostRepository with additional options and methods for improved Git operations ([a812d4e66](https://github.com/underpostnet/engine/commit/a812d4e666edd2cd17c9cafc34dfdc44e5bab994))
40
+
41
+ ### server-valkey
42
+
43
+ - Enhance Valkey connection handling with reconnecting status and improved retry strategy ([50b26c215](https://github.com/underpostnet/engine/commit/50b26c2155c7160a9e4704aadb8c74554c7d81bd))
44
+
45
+ ### bin-build
46
+
47
+ - Remove unnecessary copy docs md in cyberia build repo workdlow ([50a5399f6](https://github.com/underpostnet/engine/commit/50a5399f6d3b72dd7dc00092294b425f7ba618b4))
48
+
49
+ ### package
50
+
51
+ - Update dependencies for @protobufjs packages and fast-uri ([829026a8c](https://github.com/underpostnet/engine/commit/829026a8c685e5714a48bd2fb636c13b0419d818))
52
+ - Add peer dependency flag to multiple packages in package-lock.json ([c2a7870eb](https://github.com/underpostnet/engine/commit/c2a7870eb75cc44af4966a2dcb898a08e9dfe84e))
53
+
54
+ ### docs
55
+
56
+ - Refactor entryPoints in typedoc configuration files for improved readability and consistency ([fe77bcf3f](https://github.com/underpostnet/engine/commit/fe77bcf3fb17766be2d9af31bd57d6c2481b7f87))
57
+
58
+ ### engine-cyberia
59
+
60
+ - Update README path in typedoc configuration to point to ARCHITECTURE.md ([74ee0e45e](https://github.com/underpostnet/engine/commit/74ee0e45e355472d4f21eb8795b76c79c84c43e6))
61
+ - Add cyberia-docs path to build and file scripts for documentation inclusion ([851e126bf](https://github.com/underpostnet/engine/commit/851e126bf80b9427661b6477d3bf8f52462cec87))
62
+ - Remove unique constraint from code field in CyberiaQuestSchema ([b39aa3a7b](https://github.com/underpostnet/engine/commit/b39aa3a7b162b7dd230301f7eaf0747687c1c1b4))
63
+ - Rewrite and centralize cyberia docs source ([00e40986a](https://github.com/underpostnet/engine/commit/00e40986a51b87c9f5f0354479c77f841a1b9221))
64
+ - Remove legacy cyberia docs ([a5546128a](https://github.com/underpostnet/engine/commit/a5546128a20945645fe3008f5c98f01772ff055f))
65
+ - Refactor Cyberia schemas and update quest/action definitions for clarity and consistency ([cd7313206](https://github.com/underpostnet/engine/commit/cd7313206903035232da6f842f13475e8af77346))
66
+ - Add source map coordinates to CyberiaQuest schema and update action catalog metadata, and remove lefacy seed runners in cyberia CLI ([b39958485](https://github.com/underpostnet/engine/commit/b3995848556c87def6ff1045c73605c50201a1a3))
67
+ - Refactor CyberiaActionSchema by removing grantQuestCode field and update description in STATUS_ICONS for clarity ([221a8f072](https://github.com/underpostnet/engine/commit/221a8f072393238adf83c26c46d09fe05aa24466))
68
+ - Add seeding commands for Cyberia actions and quests, update schemas and default data structures ([70cd5f17d](https://github.com/underpostnet/engine/commit/70cd5f17d08eb1d6c812d7428b8a5a6c76d72728))
69
+ - Refactor Cyberia schemas to enhance action and quest structures, replacing itemId with more descriptive fields and adding new properties for better data management ([8736f2bac](https://github.com/underpostnet/engine/commit/8736f2bac3534180d798ea2ae2e6aac9781db9c2))
70
+ - Refactor Cyberia dialogue handling to use 'code' instead of 'itemId' for dialogue retrieval and update related schemas and data structures ([d8d50325e](https://github.com/underpostnet/engine/commit/d8d50325e2fbe8a118edde7e9bd7fb01d1507233))
71
+ - Update CyberiaActionSchema to correct action types and add storage payload structure ([88b68cb68](https://github.com/underpostnet/engine/commit/88b68cb6839900230ffb54fa44f6b11056aca5c0))
72
+ - Add Cyberia action and quest default data structures with schemas ([8171b6b43](https://github.com/underpostnet/engine/commit/8171b6b43b2aee98f0d8fe0151362493b09fdfd5))
73
+ - Implement Cyberia Quest and Progress APIs with controllers, services, models, and routers ([ba3c7bcb0](https://github.com/underpostnet/engine/commit/ba3c7bcb05f79f3999ec0f20daf49d4f02a2c9e2))
74
+
75
+ ### github-actions
76
+
77
+ - Remove run metadata worflow in engine-core sync deploy ([84d684d4b](https://github.com/underpostnet/engine/commit/84d684d4bf694605c67bf521617d60920ea43205))
78
+ - Increase timeout for sync command in engine lampp workflow ([949d693b5](https://github.com/underpostnet/engine/commit/949d693b5d4aaa28226b0417c2e2b87511eec885))
79
+ - Remove ssh-deploy sync-engine-test command from release deployment workflow ([0e6cf3af4](https://github.com/underpostnet/engine/commit/0e6cf3af48a2e0e904dd2e646a66931cf0cea784))
80
+
81
+ ### clien-core
82
+
83
+ - Optimize sessionOut and guest login process to skip unnecessary network calls ([b16a21fe3](https://github.com/underpostnet/engine/commit/b16a21fe3ce12d6c3c636677b06e1fa064500b6c))
84
+
85
+ ### cli-db
86
+
87
+ - Add export success tracking and enforce backup retention in UnderpostDB ([678ed675f](https://github.com/underpostnet/engine/commit/678ed675ff51ae681b6177c34ba1295543f5a916))
88
+
89
+ ### api-cyberia
90
+
91
+ - Remove CyberiaAchievement API controller, service, and router files to streamline codebase ([f5f31700f](https://github.com/underpostnet/engine/commit/f5f31700fed2940a475149ed0a948eae548c78e2))
92
+
93
+ ### runtime-cyberia-client
94
+
95
+ - Refactor cyberia-client Dockerfile to streamline package installations and improve build process ([66edc28c1](https://github.com/underpostnet/engine/commit/66edc28c1c3877bbf1d1ad0bdb8dbe259746f18d))
96
+
97
+ ### server-data-query
98
+
99
+ - Refactor DataQuery to use class syntax and static methods for improved structure and clarity ([b27221124](https://github.com/underpostnet/engine/commit/b27221124d096a046141d87fbc37de951c58aa92))
100
+
101
+ ### engine-core
102
+
103
+ - Fix rename AppointmentFormHealthcare to AppointmentFormHealthCare for consistency ([02839072b](https://github.com/underpostnet/engine/commit/02839072b6aaa77d7f524934a8ab92a24d4d5040))
104
+
105
+ ### cli-release
106
+
107
+ - Update workflows to reflect new underpost image versions ([f5e18de0c](https://github.com/underpostnet/engine/commit/f5e18de0c9209fb6da2254a8dca94e8ef37ae394))
108
+
109
+ ## New release v:3.2.8 (2026-05-01)
110
+
111
+ ### bin-build
112
+
113
+ - Update build.js to replace jsdoc references with typedoc for documentation generation ([198f69d43](https://github.com/underpostnet/engine/commit/198f69d433fb76da8bfdb1581286a0ce5f2e6454))
114
+ - Update cyberia custom folder ([b03ad6dca](https://github.com/underpostnet/engine/commit/b03ad6dca6faa4ed339b3baa60aa15320fbcfcb7))
115
+
116
+ ### docker-image
117
+
118
+ - Add Node.js installation to Dockerfiles for cyberia-client and WordPress ([c06748453](https://github.com/underpostnet/engine/commit/c06748453caf588a7801ebc7650945ebcab2dce2))
119
+ - Update Dockerfiles to enhance system package installation and cleanup ([13506d7b3](https://github.com/underpostnet/engine/commit/13506d7b39d9e674d5e790b8721cb63e1e9e5001))
120
+ - Remove conditional repository check from CI workflow files and add CI workflow copying logic in run.js ([0d9f1520c](https://github.com/underpostnet/engine/commit/0d9f1520c721d36ffda33aacbe4d3ee9d8b59486))
121
+ - Rename template-deploy-image method to docker-image and update workflow file reference ([75eb4b932](https://github.com/underpostnet/engine/commit/75eb4b9328ec05b815f12e416dc22186ec6f05d2))
122
+
123
+ ### cli-run
124
+
125
+ - Enhance image pulling logic to skip local images and check for existing images in the cluster ([c3f33ed74](https://github.com/underpostnet/engine/commit/c3f33ed746674486ce302d014ed4ec406252de65))
126
+ - Refactor deployment manifest generation to improve clarity and structure; update Dockerfile paths and instance handling ([c99a67d95](https://github.com/underpostnet/engine/commit/c99a67d952e14e665a710507864e6b7ce907505f))
127
+ - Fix image pulling logic to prevent unnecessary Docker Hub requests for local images ([88556c528](https://github.com/underpostnet/engine/commit/88556c5281c7986479b1710a693b21592cc0ecd8))
128
+ - Add push-bundle and pull-bundle methods for zip file handling and deployment ([e82379907](https://github.com/underpostnet/engine/commit/e82379907267e483177e6be2374cb6c922aa42b2))
129
+ - Add pull-rocky-image method to pull Rocky Linux image via Podman ([59f7e6245](https://github.com/underpostnet/engine/commit/59f7e6245b2b5a49fbd14e28632915952f0cde00))
130
+
131
+ ### cli-ssh
132
+
133
+ - Fix console log output ([2cd7e7a12](https://github.com/underpostnet/engine/commit/2cd7e7a12f53cdc03c79921d13c71d88276e55bc))
134
+
135
+ ### bin-file
136
+
137
+ - Add guest.service.js to the list of files in the workflow configuration ([760a196a9](https://github.com/underpostnet/engine/commit/760a196a92853ac05b2765fb27df6894955aaaba))
138
+
139
+ ### dockerfile
140
+
141
+ - Remove non-root user creation and unnecessary comments from Dockerfiles ([494194da2](https://github.com/underpostnet/engine/commit/494194da26d08b60b94789ad50a3183387a44847))
142
+
143
+ ### package
144
+
145
+ - Add missing workbox-cacheable-response package ([0dd5cbe4f](https://github.com/underpostnet/engine/commit/0dd5cbe4f0cad214448ac537465041e4cc701d62))
146
+ - Remove legacy peer dependencies from package-lock.json ([60b4c70f0](https://github.com/underpostnet/engine/commit/60b4c70f05c62132ff3d27aa410bd9ec4914d4f0))
147
+
148
+ ### docs
149
+
150
+ - Update README.md intro ([9672ca542](https://github.com/underpostnet/engine/commit/9672ca54281bbd50f30809fefce58dbe41334c36))
151
+ - Fix iframe handling in Docs component to maintain parent scroll position and synchronize layout on navigation ([032bd1a81](https://github.com/underpostnet/engine/commit/032bd1a8193a3386edd0fe28c63ea863c3ce6d16))
152
+ - Migrate from JSDoc to TypeDoc for documentation generation ([596bd8d46](https://github.com/underpostnet/engine/commit/596bd8d462f5b2b6a2f185285b555554e7440563))
153
+
154
+ ### runtime
155
+
156
+ - Add Node.js installation and verification steps to Dockerfiles for cyberia-client, cyberia-server, express, and lampp ([58b2c2a51](https://github.com/underpostnet/engine/commit/58b2c2a513a54fdbf6188a2a7bb4ac74d78d8bcb))
157
+ - Refactor Dockerfiles to improve package installation clarity; update comments and streamline system package installations ([a64cf8881](https://github.com/underpostnet/engine/commit/a64cf8881f8675457b74ae9edbdbd619a636b6e6))
158
+
159
+ ### cli-release
160
+
161
+ - Update image versions in conf.instances.json files during release process ([3af315b92](https://github.com/underpostnet/engine/commit/3af315b923621e74ae75640f8f782535350e7f41))
162
+ - Update Docker image version tags in release process to reflect new versioning scheme ([07a943f30](https://github.com/underpostnet/engine/commit/07a943f308679bbefffc22d284c832971a467f75))
163
+
164
+ ### github-actions
165
+
166
+ - Add CI workflows for cyberia-client, cyberia-server, express, lampp, and wp; update deployment scripts for new image versions ([1d6d64d73](https://github.com/underpostnet/engine/commit/1d6d64d732bb311ee5aca6e8a680c83086c9b654))
167
+ - Refactor deployment commands to simplify sync and remove redundant npm installations ([9cce90390](https://github.com/underpostnet/engine/commit/9cce9039041ec5b160453a38e7b81ba72899b886))
168
+ - Update deployment configurations, service ports, and proxy settings for development environments ([07efd0975](https://github.com/underpostnet/engine/commit/07efd09750fd2976c89bbe37f500a0c9f439179b))
169
+ - Update container images and simplify base command in CLI sync function ([e5d22868d](https://github.com/underpostnet/engine/commit/e5d22868d610f11fc241bdfa3ddc4fb5eb39a18d))
170
+ - Fix deployment command to remove redundant sync flag in engine-cyberia workflow ([f4d959738](https://github.com/underpostnet/engine/commit/f4d9597383c39eeeb4b7742b4d3f3a554eb85585))
171
+ - Fix sync command in CI workflows to remove hardcoded image version for engine core and cyberia deployments ([1d6aa177b](https://github.com/underpostnet/engine/commit/1d6aa177b14362f6b2c7bcd81043738ad671277d))
172
+ - Update deployment commands in CI workflows to remove hardcoded image versions and enhance command execution ([5af414cc1](https://github.com/underpostnet/engine/commit/5af414cc13bc4448ff187277b1fd1f5f6740ffa9))
173
+ - Refactor deployment commands to comment out npm installations and adjust secret command execution based on environment options ([0a72d037e](https://github.com/underpostnet/engine/commit/0a72d037eb20ef45d53e84af8a54714314e3da11))
174
+
175
+ ### engine-cyberia
176
+
177
+ - Add cyberia-server and cyberia-client to build and file copy paths ([124582559](https://github.com/underpostnet/engine/commit/12458255961a68c92fb1809cba7e2848fb30ec6d))
178
+ - Enhance Cyberia instance configuration handling by ensuring updatedAt is set during import and resolving missing config references with instanceCode lookup ([5b12e7f48](https://github.com/underpostnet/engine/commit/5b12e7f488273f7cceff5e781547d749448bd953))
179
+ - Update MongoDB findOneAndUpdate options to use 'returnDocument: after' for consistency ([90abee1ef](https://github.com/underpostnet/engine/commit/90abee1ef6be0972701f59b43a3be7b65d4a1337))
180
+ - Add randomization feature for stat inputs in ObjectLayerEngineModal ([b29f361a6](https://github.com/underpostnet/engine/commit/b29f361a6406f9bde350897f72970b72aba14935))
181
+ - Add item IDs management and dropdown functionality in InstanceEngineCyberia ([417c82cf4](https://github.com/underpostnet/engine/commit/417c82cf4534c0921b5eeafacbd1a6d951740d2b))
182
+ - Add direction preview functionality to ObjectLayerEngineModal ([5ef3c4489](https://github.com/underpostnet/engine/commit/5ef3c4489ff04e1e224b75ba0434d0e6413a583b))
183
+ - Add uniform opacity feature to ObjectLayerEngineModal ([c8830efb3](https://github.com/underpostnet/engine/commit/c8830efb32ce50b0a65e328fc2760c3b4fc4020e))
184
+ - Refactor canvas behavior handling and add mosaic types in ObjectLayerEngineModal ([08b9ea4b2](https://github.com/underpostnet/engine/commit/08b9ea4b2d5fda699687451fe5b562fc190ad92d))
185
+ - Implement distortion types and functionality in ObjectLayerEngineModal ([dbe9edc31](https://github.com/underpostnet/engine/commit/dbe9edc312dc023981b32e362653c9cf6d65d4eb))
186
+ - Refactor item and entity type handling in Cyberia components to utilize shared constants and improve dropdown functionality ([67b528675](https://github.com/underpostnet/engine/commit/67b528675689bcebb68f0b521924cb59ac984c19))
187
+ - Fix frame metadata assignment in AtlasSpriteSheetGenerator to correctly set frame index ([d17b30366](https://github.com/underpostnet/engine/commit/d17b30366574ed91a3797120e16b73c0ceb5afff))
188
+ - Add frame_duration property to AtlasSpriteSheet model and update related services for frame duration handling ([5ce0eef0f](https://github.com/underpostnet/engine/commit/5ce0eef0f12f318312475a460e912d30808b9f76))
189
+ - Remove is_stateless property from ObjectLayerRenderFrames model and related components for simplification ([f924f1f4f](https://github.com/underpostnet/engine/commit/f924f1f4f8600a43fb437a7829e8cb024f3775d5))
190
+ - Add ColorPaletteElement and integrate it into MapEngineCyberia and ObjectLayerEngineModal for enhanced color selection ([0403c362c](https://github.com/underpostnet/engine/commit/0403c362c48ceea77f03475117305b07f0ca1dbf))
191
+ - Enhance resource entity handling by adding dropItemIds and updating schemas for extraction logic ([72ccee238](https://github.com/underpostnet/engine/commit/72ccee238eb01944b872bb7c77f7d638f772aa5d))
192
+ - Add clone logic object layer modal engine ([b03c41b60](https://github.com/underpostnet/engine/commit/b03c41b60f45fa481e55f88256edbef6fa4d2729))
193
+ - Update entity status documentation and add 'resource-extracted' status icon ([7f1be1e3d](https://github.com/underpostnet/engine/commit/7f1be1e3d9e8c19fc36637131cf491d1ba26a585))
194
+ - Update skill logicEventId for atlas_pistol_mk2 and add projectile skill for hatchet ([1c1f36bf8](https://github.com/underpostnet/engine/commit/1c1f36bf87110a14e3b8665b87ccf00f40a245d5))
195
+ - Refactor skill configuration to use structured skills with detailed attributes ([5cb12ba46](https://github.com/underpostnet/engine/commit/5cb12ba4684a4884ee736183e955f06370c0cae8))
196
+ - Add resource semantic descriptors and shape generation for collectible resources ([a22c63b73](https://github.com/underpostnet/engine/commit/a22c63b730f5f9d57b38c7c9998f7f0775a2b031))
197
+ - Add versioning to instance response using SHA-256 hash of updatedAt timestamps ([ea2598386](https://github.com/underpostnet/engine/commit/ea2598386e48f3494fffaab02c210ed59095025b))
198
+ - Add parseRgba function to handle CSS rgba() color strings and update toEntityMsg to include RGBA components ([25aeb9572](https://github.com/underpostnet/engine/commit/25aeb957256e82687d5d9d60b2cd458e049d9b68))
199
+ - Refactor toInstanceConfig function for improved color merging logic and enhanced handling of entity defaults ([23adaab83](https://github.com/underpostnet/engine/commit/23adaab83701e1df2246cca9870a627e15e965c4))
200
+ - Implement Base Cyberia Achievement API with CRUD operations and service integration ([67faa4911](https://github.com/underpostnet/engine/commit/67faa49113bac62589d0d61c3b7c6cf527d7437c))
201
+
202
+ ### client-sw
203
+
204
+ - Enhance service worker to distinguish between server downtime and offline status for improved error handling ([c32233e95](https://github.com/underpostnet/engine/commit/c32233e954c2b9f7029d44f6dc55d2b849c28d23))
205
+
206
+ ### client-core
207
+
208
+ - Implement cache management and reset functionality in PWA worker and service worker ([6864157e7](https://github.com/underpostnet/engine/commit/6864157e709f05f47899950fa28206e6a4dfdd5e))
209
+ - Add resolveBrowserImportPath function and improve import rewriting logic ([ad796f1da](https://github.com/underpostnet/engine/commit/ad796f1da05804e4bfb13316017662e353165d1e))
210
+ - Refactor client build process to dynamically handle service files ([ec0ffb6e8](https://github.com/underpostnet/engine/commit/ec0ffb6e81dc1659f26552d894dcbd12f5159d02))
211
+ - Refactor Auth and Guest Services for Improved Token Management ([650ec6b61](https://github.com/underpostnet/engine/commit/650ec6b6162fc5db8f47cf74f433c399b2c2fdb9))
212
+ - Refactor management components to use instance methods instead of static RenderTable ([67382a9d5](https://github.com/underpostnet/engine/commit/67382a9d5576ac8dad54b36de4ea14730cda2fe0))
213
+ - Fix LoadingAnimation to correctly reference img tokens and simplify onload/onerror handlers in ObjectLayerManagement ([051bb65dc](https://github.com/underpostnet/engine/commit/051bb65dc5631dd96296ea8e254a1818576b10a8))
214
+ - Refactor Modal, Panel, PublicProfile, SearchBox, and ObjectLayerEngineModal components to use class syntax and static properties for improved structure and maintainability ([3e514e579](https://github.com/underpostnet/engine/commit/3e514e57913bc90475b7b8fc06bef43eb583428a))
215
+ - Remove JoyStick component and its associated functionality from the codebase ([e08173436](https://github.com/underpostnet/engine/commit/e08173436a3788f7fd8d80dc966973fec04f556d))
216
+ - Add Modal layout synchronization and streamline Docs component by removing unused Responsive references ([2fa05c3b9](https://github.com/underpostnet/engine/commit/2fa05c3b9a2cb2a1ecdf1ddbb433885a4b6d769d))
217
+ - Refactor Responsive event handlers in Docs and Modal ([2a2e0c90e](https://github.com/underpostnet/engine/commit/2a2e0c90ec7c7d5887cedb824bb0677bf7489b19))
218
+ - Update routing logic to use registered routes in getProxyPath and register routes in PwaWorker initialization ([c70544559](https://github.com/underpostnet/engine/commit/c7054455937636e84894a4b709ae5c73704becb1))
219
+ - Refactor routing structure by consolidating route definitions into dedicated Router files for Cryptokoyn, CyberiaPortal, Default, Dogmadual, Healthcare, Itemledger, Nexodev, and Underpost components. Removed legacy Routes files and updated imports accordingly. This change enhances code organization and maintainability. ([68d6accdb](https://github.com/underpostnet/engine/commit/68d6accdb15aca8fd58f5336eee8e4bfa570b588))
220
+ - FIx LoadingAnimation methods to use correct token storage for bar and spinner components ([3884039c3](https://github.com/underpostnet/engine/commit/3884039c3d36b097e1dd465917eb88be20bd38b2))
221
+ - Update default configuration to replace 'MenuDefault' with 'AppShellDefault' for improved clarity ([c0eae3962](https://github.com/underpostnet/engine/commit/c0eae3962476d4183555e9ef80e7048347b31bf0))
222
+ - Refactor event handling to use new event system across components for improved responsiveness and maintainability ([d3c33f71f](https://github.com/underpostnet/engine/commit/d3c33f71ffe12a8e695121aab027e61e41e96014))
223
+ - Refactor authentication components to use EventBus for login, logout, and signup events ([119104765](https://github.com/underpostnet/engine/commit/1191047652a0c51e6484eca40f931d9c7c3af49f))
224
+ - Refactor rendering methods to use 'instance' instead of 'Render' in various components and services for consistency and clarity ([4b9424f6d](https://github.com/underpostnet/engine/commit/4b9424f6d945183e0450bc527a41e2049f18e8a9))
225
+ - Fix to use const for event listener objects in Css, Router, and Valkey modules ([35b3987d5](https://github.com/underpostnet/engine/commit/35b3987d556e19d5dd92d3c707f3cb770d81e1b4))
226
+ - Refactor to ES6 class static methods ([6f5625594](https://github.com/underpostnet/engine/commit/6f5625594b6b1efd74ffb30f9e01b77a121c7bd2))
227
+ - Refactor entry point files to streamline initialization and improve structure ([97d833c20](https://github.com/underpostnet/engine/commit/97d833c20658c864c3c76665b2f0d94b21e8c939))
228
+ - Rename Menu to AppShell components with menu and routing functionality ([503aca7d9](https://github.com/underpostnet/engine/commit/503aca7d9620eaac43ed0eb67e753b794b44c284))
229
+ - Remove inline styles from RichText component ([8256212be](https://github.com/underpostnet/engine/commit/8256212be9cd50a1efd34f06a18d52cc6b334cdc))
230
+ - Add 'add-component' command to deploy script for dynamic component management ([ac166e3ca](https://github.com/underpostnet/engine/commit/ac166e3ca590237877fc49c02e7fa527f7dc3dfe))
231
+
232
+ ### server-build
233
+
234
+ - Refactor client build process to enhance resource pre-caching logic and prioritize critical paths ([6566b9583](https://github.com/underpostnet/engine/commit/6566b9583e437242a98b3ab611bc9c3038899102))
235
+ - Enhance resource pre-caching logic by filtering out unnecessary files in client build process ([9543fdb3a](https://github.com/underpostnet/engine/commit/9543fdb3aa72e3a80660cc02b8535fb92c74dc49))
236
+
237
+ ### conf
238
+
239
+ - Udate package.json for server entry point and script adjustments ([df84b5af2](https://github.com/underpostnet/engine/commit/df84b5af2975f718a841b58d7c6ed1ba98d5e581))
240
+ - Rename 'ClientEvent' to 'ClientEvents' for consistency in configuration ([bddd3daa0](https://github.com/underpostnet/engine/commit/bddd3daa0bf217d817ea05ce3d94e805900ab4b1))
241
+
242
+ ### cli-client
243
+
244
+ - Add checks for replica context in repository and configuration handling ([a8d925ad3](https://github.com/underpostnet/engine/commit/a8d925ad37e57a1f99fc15826dc2ddd265d2c120))
245
+ - Add checks for replica context in repository and configuration handling ([c42462968](https://github.com/underpostnet/engine/commit/c424629688226e3b8b20a0828c0fe8e8a1003cc3))
246
+ - Add --merge-zip option and implement mergeClientBuildZip function for combining split ZIP parts ([15408be66](https://github.com/underpostnet/engine/commit/15408be66eb6fab1276a05625eb768baa9ae9ea4))
247
+
248
+ ### engine-core
249
+
250
+ - Refactor DefaultManagement and ObjectLayerManagement to use instance properties instead of static properties for eGui and tokens ([2d7da8169](https://github.com/underpostnet/engine/commit/2d7da81695556d3404cca1ddbf8a794ac1a4c75d))
251
+ - Add cecinasmarcelina client assets ([045fe5add](https://github.com/underpostnet/engine/commit/045fe5adda88a3c0ce487ee3189611a718ce90fd))
252
+ - Add cecinasmarcelina base client ([d67924b1a](https://github.com/underpostnet/engine/commit/d67924b1a002cc2e55772f6334da86c010303ec8))
253
+
254
+ ### bin-deploy
255
+
256
+ - Refactor 'add-component' command to support optional parameters and improve error handling for component addition ([3d5103d11](https://github.com/underpostnet/engine/commit/3d5103d11bcadeeee530cd32d8ad7ab342f4fc7e))
257
+
258
+ ### engine
259
+
260
+ - Update deployment configurations and update service ports ([e0a78d38b](https://github.com/underpostnet/engine/commit/e0a78d38bfc87353ab3490de3b6824fd1cb991b4))
261
+ - Update moduleResolution in jsconfig to use 'bundler' ([307f5e106](https://github.com/underpostnet/engine/commit/307f5e1062edbb6b3356f0ccb0088cb90ee662cc))
262
+
263
+ ### cli-fs
264
+
265
+ - Enhance zip file handling in deployment process to check for existence of bundles and parts ([0bda824f2](https://github.com/underpostnet/engine/commit/0bda824f247e315f3886f36d7f2cdbcec42c21cd))
266
+ - Enhance mergeClientBuildZip function to clean stale part files and improve part file handling ([963720fab](https://github.com/underpostnet/engine/commit/963720fab68e78a756552347c3259eb48091ee0e))
267
+ - Enhance pull method to support force option and improve zip file handling ([d6f5fa3f4](https://github.com/underpostnet/engine/commit/d6f5fa3f442fa641edbe200f27ba9e1ba2d1b92a))
268
+ - Add --omit-unzip option to pull command to retain downloaded zip files ([a5cf84b11](https://github.com/underpostnet/engine/commit/a5cf84b111aae533cc1fe5dc09809928695826d1))
269
+ - Refactor recursive removal logic in UnderpostFileStorage to improve path handling and logging ([f890ae6a8](https://github.com/underpostnet/engine/commit/f890ae6a8d7004a74ec96b219dd3f455db894183))
270
+ - Implement recursive removal of tracked storage keys and enhance logging for associated paths ([5cb5d7172](https://github.com/underpostnet/engine/commit/5cb5d71724ac2c687a105ed0a953a9d36e0fbc20))
271
+
272
+ ### cli-start
273
+
274
+ - Enhance deployment options by adding --skip-full-build flag and updating deployment commands to support skipping full client bundle builds. ([62594bd32](https://github.com/underpostnet/engine/commit/62594bd3264465e2ebb52e12b396e50c64ed5086))
275
+
276
+ ### client-build
277
+
278
+ - Add unzip functionality for client build zip files and enhance deployment commands ([3e8216ae6](https://github.com/underpostnet/engine/commit/3e8216ae6fc2b08c25f09f0d3188c485cdd42c40))
279
+ - Add support for splitting generated zip files into specified sizes ([9a5d46efc](https://github.com/underpostnet/engine/commit/9a5d46efc231c2760b9daf0bc201a1db06c6f248))
280
+ - Exclude .git directory from file copy operations in client build process ([ad99de0ac](https://github.com/underpostnet/engine/commit/ad99de0acb9fce275c1768b8940138e1d2ed78ac))
281
+ - Remove deprecated HTML website templates handling from client build process ([72e5462d0](https://github.com/underpostnet/engine/commit/72e5462d0e2f0ae887984a6129069e1a5b8fdd60))
282
+
283
+ ### cli-deploy
284
+
285
+ - Update configMap method to use dynamic cronDeployId for secret creation ([f4e21e57b](https://github.com/underpostnet/engine/commit/f4e21e57b04da2527b7718b19ad07384116b9e14))
286
+ - Add 'clone-server' command to replicate server configurations between deployments ([d0f28a43c](https://github.com/underpostnet/engine/commit/d0f28a43ca94f819f5a0fafae1723ea5d388d678))
287
+ - Add 'add-server-client' command to streamline client configuration cloning ([2471506ec](https://github.com/underpostnet/engine/commit/2471506ec1215d02b287fb972757904e35ac6ebc))
288
+ - Add 'clone-client' command to duplicate client configurations and assets ([ae61478ca](https://github.com/underpostnet/engine/commit/ae61478cad677b83be83c0134dd80437afd57dad))
289
+
290
+ ### cli-run-instance
291
+
292
+ - Enhance deployment functionality by adding debug port support and updating documentation for configuration parameters ([8af8c3eae](https://github.com/underpostnet/engine/commit/8af8c3eae2344c6afd2b91d30095e84fba0121a5))
293
+
294
+ ### cli-cyberia
295
+
296
+ - Enhance --drop option to clarify its functionality and improve item deletion logic in import process ([800803cce](https://github.com/underpostnet/engine/commit/800803cce1d3a674ed5993fcb72d12e51e5e4077))
297
+ - Add --conf option to export/import for processing configuration files only ([43ee7fab5](https://github.com/underpostnet/engine/commit/43ee7fab5b79b63001786f81c36da590f0d91fd4))
298
+ - Enhance IPFS export process with resource type inference and backup payload handling ([ad07f788f](https://github.com/underpostnet/engine/commit/ad07f788fb95ab09ef359b3d3040484ddcd2445c))
299
+ - Add CyberiaDialogue support for export and import processes ([786c806fb](https://github.com/underpostnet/engine/commit/786c806fbf9963d7116596910ffe1295dd69ee78))
300
+ - Enhance IPFS client and export processes with new functionalities ([d174dc80d](https://github.com/underpostnet/engine/commit/d174dc80d5ed4970e0e0c85a8b01d3dca884cfb4))
301
+ - Enhance IPFS export process to infer resourceType from mfsPath and ObjectLayer references ([41eee660c](https://github.com/underpostnet/engine/commit/41eee660cc2204d9a63714a26973df98b8ef8f38))
302
+ - Enhance IPFS export and import processes to infer resourceType from mfsPath for legacy records, ensuring data integrity and preventing export errors. ([c78547777](https://github.com/underpostnet/engine/commit/c785477773cfcedb8ee71a7764c14208c70541ff))
303
+ - Enhance deletion logic in Cyberia CLI to handle additional metadata for AtlasSpriteSheet, ObjectLayer, and Ipfs entries ([abafcd65b](https://github.com/underpostnet/engine/commit/abafcd65befc669d7cd498435aea9f5ae8b4808b))
304
+
305
+ ### cyberia-cli
306
+
307
+ - Add default creation logic for CyberiaInstanceConf during export process ([67aaea452](https://github.com/underpostnet/engine/commit/67aaea452c3fea636fe58645a45282da907cafe9))
308
+ - Add CyberiaInstanceConf handling for export and import processes in CLI ([febc2eb1a](https://github.com/underpostnet/engine/commit/febc2eb1a5aff31ac83266b7cc5330281c130f41))
309
+
310
+ ### cyberia-map-engine
311
+
312
+ - Refactor thumbnail handling in cloneMap to prioritize fresh object-layer capture and update UI text for clarity ([1cbb98a61](https://github.com/underpostnet/engine/commit/1cbb98a61cd8dca5f767b4f4b0cd00ceaeff6967))
313
+ - Add functionality to rename Object Layer ItemIds for filtered entities ([532116d8b](https://github.com/underpostnet/engine/commit/532116d8bd8b69ec22b303edfdf8303098f12d5a))
314
+
315
+ ### cyberia-semantic-engine
316
+
317
+ - Fix direction handling in semantic layer generator by correcting left/right template mirroring ([494882cef](https://github.com/underpostnet/engine/commit/494882cefa5dc73739d93cf7e47b47b34424217c))
318
+
319
+ ### client-cyberia-conf
320
+
321
+ - Update ENTITY_TYPE_DEFAULTS to replace deprecated item IDs and add new entries ([f89a4186a](https://github.com/underpostnet/engine/commit/f89a4186ab79c35c40d7e15e593fdd8f4f24d5b8))
322
+
323
+ ### hardhat
324
+
325
+ - Update hardhat to version 3.4.1 in package.json ([d2dff4b3a](https://github.com/underpostnet/engine/commit/d2dff4b3adaa2049b174538351959d49f26dc4a4))
326
+
327
+ ### client-cyberia-map
328
+
329
+ - Implement entity history management with undo/redo functionality in MapEngineCyberia ([2dba89547](https://github.com/underpostnet/engine/commit/2dba89547604567060ea156f29ea9e59628aaff7))
330
+
331
+ ### client-cyberia-instance
332
+
333
+ - Refactor instance persistence logic to improve notification handling and streamline save functionality ([45a6a3a32](https://github.com/underpostnet/engine/commit/45a6a3a32adc6dc4ed4e4b76ce48be3a81d576fb))
334
+
335
+ ### client-cyberia-map-engine
336
+
337
+ - Implement entity filtering and randomization features in MapEngineCyberia ([70224f290](https://github.com/underpostnet/engine/commit/70224f290c8d4c0f20fe8c8995b4c2e7a641d529))
338
+
339
+ ### api-cyberia-instance
340
+
341
+ - Refactor portal connection logic and procedural entity generation ([e670d387d](https://github.com/underpostnet/engine/commit/e670d387ddb99a676a1d1cffb3c97ec9aebe4c33))
342
+
343
+ ### client
344
+
345
+ - Refactor MenuCecinasmarcelina styles for improved layout and responsiveness ([037acd2ce](https://github.com/underpostnet/engine/commit/037acd2ceca9199f532a0590d3964e651e613c49))
346
+ - Enhance cecinasmarcelina configuration and improve menu styles with new hover effects and responsive design ([1e26c5bb9](https://github.com/underpostnet/engine/commit/1e26c5bb97c0996ce6f1cfc17df33106276e8cdd))
347
+ - Update contact information in Cecinasmarcelina index ([8239df42e](https://github.com/underpostnet/engine/commit/8239df42ea3909306848771d56c9ce54d942413b))
348
+
349
+ ### gitub-actions
350
+
351
+ - Update theme color and enhance service configurations for dd-core and dd-test deployments ([d03c4baf5](https://github.com/underpostnet/engine/commit/d03c4baf5f7a8ac74b5f731f27931c79084d97d8))
352
+
353
+ ## New release v:3.2.5 (2026-04-16)
4
354
 
5
355
  ### cli-run
6
356
 
package/CLI-HELP.md CHANGED
@@ -1,4 +1,4 @@
1
- ## underpost ci/cd cli v3.2.5
1
+ ## underpost ci/cd cli v3.2.9
2
2
 
3
3
  ### Usage: `underpost [options] [command]`
4
4
  ```
@@ -85,18 +85,29 @@ Options:
85
85
  Builds client assets, single replicas, and/or syncs environment ports.
86
86
 
87
87
  Arguments:
88
- deploy-id The deployment ID to build. (default: "dd-default")
89
- sub-conf The sub-configuration for the build. (default: "")
90
- host Comma-separated hosts to filter the build. (default: "")
91
- path Comma-separated paths to filter the build. (default: "")
88
+ deploy-id The deployment ID to build. (default:
89
+ "dd-default")
90
+ sub-conf The sub-configuration for the build. (default: "")
91
+ host Comma-separated hosts to filter the build.
92
+ (default: "")
93
+ path Comma-separated paths to filter the build.
94
+ (default: "")
92
95
 
93
96
  Options:
94
- --sync-env-port Sync environment port assignments across all deploy IDs
95
- --single-replica Build single replica folders instead of full client
96
- --build-zip Create zip files of the builds
97
- --lite-build Skip full build (default is full build)
98
- --icons-build Build icons
99
- -h, --help display help for command
97
+ --sync-env-port Sync environment port assignments across all
98
+ deploy IDs
99
+ --single-replica Build single replica folders instead of full
100
+ client
101
+ --build-zip Create zip files of the builds
102
+ --split <mb> Split generated zip files into parts of the
103
+ specified size in MB
104
+ --unzip <build-prefix> Extract a built client zip or split zip parts
105
+ using the given build prefix
106
+ --merge-zip <build-prefix> Merge split ZIP parts back into a single ZIP file
107
+ for the given build prefix
108
+ --lite-build Skip full build (default is full build)
109
+ --icons-build Build icons
110
+ -h, --help display help for command
100
111
 
101
112
  ```
102
113
 
@@ -124,6 +135,12 @@ Options:
124
135
  installation.
125
136
  --skip-pull-base Skips cloning repositories, uses current
126
137
  workspace code directly.
138
+ --skip-full-build Skips the full client bundle build during
139
+ deployment.
140
+ --pull-bundle Downloads the pre-built client bundle from
141
+ Cloudinary via pull-bundle before starting. Use
142
+ together with --skip-full-build to skip the local
143
+ build entirely.
127
144
  -h, --help display help for command
128
145
 
129
146
  ```
@@ -376,6 +393,7 @@ Options:
376
393
  lists.
377
394
  --ban-both-remove Removes IP addresses from both banned ingress and egress
378
395
  lists.
396
+ --mac Prints the MAC address of the main network interface.
379
397
  -h, --help display help for command
380
398
 
381
399
  ```
@@ -540,6 +558,13 @@ Options:
540
558
  auto-detected service port).
541
559
  --cmd <cmd> Custom initialization command for
542
560
  deployment (comma-separated commands).
561
+ --skip-full-build Skip client bundle rebuild; container will
562
+ pull pre-built bundle via pull-bundle
563
+ instead.
564
+ --pull-bundle Explicitly pull the pre-built client
565
+ bundle from Cloudinary inside the
566
+ container. Use together with
567
+ --skip-full-build.
543
568
  -h, --help display help for command
544
569
 
545
570
  ```
@@ -749,6 +774,7 @@ Options:
749
774
  --recursive Uploads files recursively from the specified path.
750
775
  --deploy-id <deploy-id> Specifies the deployment configuration ID for file operations.
751
776
  --pull Downloads the specified file.
777
+ --omit-unzip With --pull, keeps the downloaded .zip file and skips extraction.
752
778
  --force Forces the action, overriding any warnings or conflicts.
753
779
  --storage-file-path <storage-file-path> Specifies a custom file storage path.
754
780
  -h, --help display help for command
@@ -877,7 +903,7 @@ Options:
877
903
  Runs specified scripts using various runners.
878
904
 
879
905
  Arguments:
880
- runner-id The runner ID to run. Options: dev-cluster,ipfs-expose,metadata,svc-ls,svc-rm,ssh-deploy-info,dev-hosts-expose,dev-hosts-restore,cluster-build,template-deploy,template-deploy-local,template-deploy-image,docker-image,clean,pull,release-deploy,ssh-deploy,ide,crypto-policy,sync,stop,ssh-deploy-stop,ssh-deploy-db-rollback,ssh-deploy-db,ssh-deploy-db-status,tz,get-proxy,instance-promote,instance,ls-deployments,host-update,dd-container,ip-info,db-client,git-conf,promote,metrics,cluster,deploy,disk-clean,disk-devices,disk-usage,dev,service,etc-hosts,sh,log,ps,pid-info,background,ports,deploy-test,tf-vae-test,spark-template,rmi,kill,generate-pass,secret,underpost-config,gpu-env,tf-gpu-test,deploy-job.
906
+ runner-id The runner ID to run. Options: dev-cluster,ipfs-expose,metadata,svc-ls,svc-rm,ssh-deploy-info,dev-hosts-expose,dev-hosts-restore,cluster-build,template-deploy,template-deploy-local,docker-image,clean,pull,release-deploy,ssh-deploy,ide,crypto-policy,sync,stop,ssh-deploy-stop,ssh-deploy-db-rollback,ssh-deploy-db,ssh-deploy-db-status,tz,get-proxy,instance-promote,instance,instance-build-manifest,ls-deployments,host-update,install-crio,dd-container,ip-info,db-client,git-conf,promote,metrics,cluster,deploy,disk-clean,disk-devices,disk-usage,dev,service,etc-hosts,sh,log,ps,pid-info,background,ports,deploy-test,tf-vae-test,spark-template,pull-rocky-image,rmi,kill,generate-pass,secret,underpost-config,gpu-env,tf-gpu-test,deploy-job,push-bundle,pull-bundle.
881
907
  path The input value, identifier, or path for the operation.
882
908
 
883
909
  Options:
@@ -925,7 +951,6 @@ Options:
925
951
  --k3s Sets the k3s cluster context for the runner execution.
926
952
  --kind Sets the kind cluster context for the runner execution.
927
953
  --git-clean Runs git clean on volume mount paths before copying.
928
- --log-type <log-type> Sets the log type for the runner execution.
929
954
  --deploy-id <deploy-id> Sets deploy id context for the runner execution.
930
955
  --user <user> Sets user context for the runner execution.
931
956
  --hosts <hosts> Comma-separated list of hosts for the runner execution.
@@ -946,6 +971,8 @@ Options:
946
971
  --create-job-now After applying cron manifests, immediately create a Job from each CronJob (forwarded to cron runner).
947
972
  --host-aliases <host-aliases> Adds entries to the Pod /etc/hosts via hostAliases. Format: semicolon-separated entries of "ip=hostname1,hostname2" (e.g., "127.0.0.1=foo.local,bar.local;10.1.2.3=foo.remote,bar.remote").
948
973
  --copy Copies the runner output to the clipboard (supported by: generate-pass, template-deploy-local).
974
+ --skip-full-build Skip client bundle rebuild; triggers pull-bundle in container startup (supported by: sync, template-deploy).
975
+ --pull-bundle Explicitly download the pre-built client bundle from Cloudinary inside the container (supported by: sync, template-deploy). Use together with --skip-full-build.
949
976
  -h, --help display help for command
950
977
 
951
978
  ```
package/Dockerfile CHANGED
@@ -34,10 +34,6 @@ RUN npm --version
34
34
  RUN npm install -g underpost
35
35
  RUN underpost --version
36
36
 
37
- # Create non-root user for secure container execution (cron jobs, init containers)
38
- # Deployment containers override to root via securityContext when npm install -g is needed
39
- RUN useradd -m -u 1000 -s /bin/bash dd
40
-
41
37
  # Create working directory
42
38
  WORKDIR /home/dd
43
39
 
package/README.md CHANGED
@@ -10,13 +10,13 @@
10
10
 
11
11
  <div align="center">
12
12
 
13
- <a target="_top" href='https://download.rockylinux.org/pub/rocky/9/'><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?activeTab=versions'><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'><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>
13
+ <a target="_top" href='https://download.rockylinux.org/pub/rocky/9/'><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?activeTab=versions'><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'><img alt='nodedotjs' src='https://img.shields.io/badge/node v24.15.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
- [![Node.js CI](https://github.com/underpostnet/engine/actions/workflows/docker-image.ci.yml/badge.svg?branch=master)](https://github.com/underpostnet/engine/actions/workflows/docker-image.ci.yml) [![Test](https://github.com/underpostnet/engine/actions/workflows/coverall.ci.yml/badge.svg?branch=master)](https://github.com/underpostnet/engine/actions/workflows/coverall.ci.yml) [![Downloads](https://img.shields.io/npm/dm/underpost.svg)](https://www.npmjs.com/package/underpost) [![Socket Badge](https://socket.dev/api/badge/npm/package/underpost/3.2.5)](https://socket.dev/npm/package/underpost/overview/3.2.5) [![Coverage Status](https://coveralls.io/repos/github/underpostnet/engine/badge.svg?branch=master)](https://coveralls.io/github/underpostnet/engine?branch=master) [![Version](https://img.shields.io/npm/v/underpost.svg)](https://www.npmjs.org/package/underpost) [![License](https://img.shields.io/npm/l/underpost.svg)](https://www.npmjs.com/package/underpost)
19
+ [![Node.js CI](https://github.com/underpostnet/engine/actions/workflows/docker-image.ci.yml/badge.svg?branch=master)](https://github.com/underpostnet/engine/actions/workflows/docker-image.ci.yml) [![Test](https://github.com/underpostnet/engine/actions/workflows/coverall.ci.yml/badge.svg?branch=master)](https://github.com/underpostnet/engine/actions/workflows/coverall.ci.yml) [![Downloads](https://img.shields.io/npm/dm/underpost.svg)](https://www.npmjs.com/package/underpost) [![Socket Badge](https://socket.dev/api/badge/npm/package/underpost/3.2.9)](https://socket.dev/npm/package/underpost/overview/3.2.9) [![Coverage Status](https://coveralls.io/repos/github/underpostnet/engine/badge.svg?branch=master)](https://coveralls.io/github/underpostnet/engine?branch=master) [![Version](https://img.shields.io/npm/v/underpost.svg)](https://www.npmjs.org/package/underpost) [![License](https://img.shields.io/npm/l/underpost.svg)](https://www.npmjs.com/package/underpost)
20
20
 
21
21
  </div>
22
22
 
@@ -24,7 +24,7 @@
24
24
 
25
25
  #### Base template for pwa/api-rest projects.
26
26
 
27
- <div style="font-size: 20px;"><em>End2end</em> continuous integration and continuous deployment cloud to applications federation tools. Develop, build, deploy, test, monitor, and manage multiple runtime applications on virtual machines or container instances.</div>
27
+ <div style="font-size: 20px;"><em>End2end</em> continuous integration and continuous deployment cloud applications toolchain. Develop, build, deploy, test, monitor, and manage multiple runtime applications on virtual machines or container instances.</div>
28
28
 
29
29
  </div>
30
30
 
@@ -61,7 +61,7 @@ npm run dev
61
61
  <a target="_top" href="https://www.nexodev.org/docs?cid=src">See Docs here.</a>
62
62
 
63
63
  <!-- cli-index-start -->
64
- ## underpost ci/cd cli v3.2.5
64
+ ## underpost ci/cd cli v3.2.9
65
65
 
66
66
  ### Usage: `underpost [options] [command]`
67
67
  ```
package/bin/build.js CHANGED
@@ -55,6 +55,13 @@ if (process.argv.includes('conf')) {
55
55
  if (itcScript.match(_confName))
56
56
  fs.copySync(`./engine-private/itc-scripts/${itcScript}`, `../${privateRepoName}/itc-scripts/${itcScript}`);
57
57
  }
58
+ switch (_confName) {
59
+ case 'dd-cyberia':
60
+ fs.copySync(`./engine-private/cyberia-instances/FOREST`, `../${privateRepoName}/cyberia-instances/FOREST`);
61
+ break;
62
+ default:
63
+ break;
64
+ }
58
65
  shellExec(
59
66
  `cd ../${privateRepoName}` +
60
67
  ` && git add .` +
@@ -173,9 +180,7 @@ const { DefaultConf } = await import(`../conf.${confName}.js`);
173
180
  ...CyberiaDependencies,
174
181
  };
175
182
  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`);
177
183
  fs.copySync(`./hardhat`, `${basePath}/hardhat`);
178
- fs.copySync(`./hardhat/WHITE-PAPER.md`, `${basePath}/WHITE-PAPER.md`);
179
184
  for (const path of [
180
185
  '/src/grpc/cyberia',
181
186
  '/src/client/ssr/pages/CyberiaServerMetrics.js',
@@ -185,9 +190,13 @@ const { DefaultConf } = await import(`../conf.${confName}.js`);
185
190
  '/src/server/semantic-layer-generator.js',
186
191
  '/src/server/semantic-layer-generator-floor.js',
187
192
  '/src/server/semantic-layer-generator-skin.js',
193
+ '/src/server/semantic-layer-generator-resource.js',
188
194
  '/test/shape-generator.test.js',
189
195
  '/src/server/besu-genesis-generator.js',
196
+ '/src/runtime/cyberia-server',
197
+ '/src/runtime/cyberia-client',
190
198
  '/.github/workflows/hardhat.ci.yml',
199
+ '/src/client/public/cyberia-docs',
191
200
  ])
192
201
  fs.copySync(`.${path}`, `${basePath}${path}`);
193
202
 
@@ -207,9 +216,9 @@ const { DefaultConf } = await import(`../conf.${confName}.js`);
207
216
  fs.copyFileSync(`./.github/workflows/${repoName}.ci.yml`, `${basePath}/.github/workflows/${repoName}.ci.yml`);
208
217
  fs.copyFileSync(`./.github/workflows/${repoName}.cd.yml`, `${basePath}/.github/workflows/${repoName}.cd.yml`);
209
218
 
210
- if (fs.existsSync(`./jsdoc.${confName}.json`)) {
211
- fs.copyFileSync(`./jsdoc.${confName}.json`, `${basePath}/jsdoc.json`);
212
- fs.copyFileSync(`./jsdoc.${confName}.json`, `${basePath}/jsdoc.${confName}.json`);
219
+ if (fs.existsSync(`./typedoc.${confName}.json`)) {
220
+ fs.copyFileSync(`./typedoc.${confName}.json`, `${basePath}/typedoc.json`);
221
+ fs.copyFileSync(`./typedoc.${confName}.json`, `${basePath}/typedoc.${confName}.json`);
213
222
  }
214
223
 
215
224
  if (fs.existsSync(`./manifests/deployment/${confName}-development`))