@underpostnet/cyberia 3.3.0 → 3.3.76

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 (568) hide show
  1. package/.dockerignore +1 -0
  2. package/.env.example +17 -5
  3. package/.github/workflows/coverall.cyberia.ci.yml +39 -14
  4. package/.github/workflows/cyberia-client.cd.yml +5 -0
  5. package/.github/workflows/cyberia-server.cd.yml +5 -0
  6. package/.github/workflows/docker-image.cyberia-client.ci.yml +8 -5
  7. package/.github/workflows/docker-image.cyberia-client.dev.ci.yml +8 -3
  8. package/.github/workflows/docker-image.cyberia-server.ci.yml +8 -5
  9. package/.github/workflows/docker-image.cyberia-server.dev.ci.yml +8 -5
  10. package/.github/workflows/docker-image.engine-cyberia.ci.yml +15 -1
  11. package/.github/workflows/docker-image.engine-cyberia.dev.ci.yml +15 -1
  12. package/.github/workflows/engine-cyberia.cd.yml +3 -0
  13. package/.github/workflows/engine-cyberia.ci.yml +4 -5
  14. package/.github/workflows/ghpkg.ci.yml +35 -20
  15. package/.github/workflows/hardhat.ci.yml +12 -11
  16. package/.github/workflows/npmpkg.ci.yml +17 -15
  17. package/.github/workflows/publish.cyberia.ci.yml +44 -0
  18. package/.github/workflows/pwa-microservices-template-test.ci.yml +2 -2
  19. package/.github/workflows/release.cd.yml +1 -0
  20. package/.prettierignore +1 -0
  21. package/AGENTS.md +96 -0
  22. package/CHANGELOG.md +653 -2513
  23. package/CLI-HELP.md +323 -157
  24. package/Dockerfile +25 -9
  25. package/Dockerfile.dev +25 -9
  26. package/Dockerfile.test +5 -5
  27. package/README.md +48 -28
  28. package/bin/build.js +86 -41
  29. package/bin/build.template.js +8 -3
  30. package/bin/cyberia.js +1494 -1403
  31. package/bin/deploy.js +18 -104
  32. package/bin/index.js +1494 -1403
  33. package/compose.env +17 -5
  34. package/conf.js +98 -7
  35. package/deploy/cyberia-client/deploy.sh +46 -0
  36. package/deploy/cyberia-client/package.sh +17 -0
  37. package/deploy/cyberia-client/state.sh +15 -0
  38. package/deploy/cyberia-server/deploy.sh +46 -0
  39. package/deploy/cyberia-server/package.sh +17 -0
  40. package/deploy/cyberia-server/state.sh +15 -0
  41. package/deploy/dd-cyberia/deploy.sh +9 -29
  42. package/deploy/dd-cyberia/init.sh +38 -45
  43. package/deploy/dd-cyberia/package.sh +16 -0
  44. package/deploy/dd-cyberia/state.sh +14 -0
  45. package/deploy/dd-cyberia/sync-deploy.sh +133 -147
  46. package/deploy/lib/config.sh +29 -0
  47. package/deploy/lib/github-actions-logging.sh +610 -0
  48. package/deploy/lib/host.sh +194 -0
  49. package/deploy/lib/state.sh +65 -0
  50. package/deploy/pwa-microservices-template/deploy.sh +17 -42
  51. package/deploy/release/deploy.sh +9 -41
  52. package/deployment.yaml +7 -2
  53. package/docker-compose.yml +23 -17
  54. package/examples/static-page/README.md +19 -19
  55. package/examples/static-page/ssr-components/CustomPage.js +2 -2
  56. package/hardhat/hardhat.config.js +1 -6
  57. package/hardhat/package-lock.json +101 -40
  58. package/hardhat/package.json +2 -2
  59. package/manifests/alertmanager/deployment.yaml +81 -0
  60. package/manifests/blackbox-exporter/deployment.yaml +75 -0
  61. package/manifests/cronjobs/dd-cron/dd-cron-backup.yaml +32 -7
  62. package/manifests/cronjobs/dd-cron/dd-cron-vultr.yaml +32 -7
  63. package/manifests/deployment/dd-cyberia-development/deployment.yaml +7 -2
  64. package/manifests/deployment/dd-default-development/deployment.yaml +2 -2
  65. package/manifests/deployment/mongo-express/deployment.yaml +46 -27
  66. package/manifests/deployment/mongo-express/kustomization.yaml +9 -0
  67. package/manifests/deployment/mongo-express/mongo-express-nodeport.yaml +18 -0
  68. package/manifests/deployment/mongo-express/service.yaml +16 -0
  69. package/manifests/deployment/mongo-express-no-auth/disable-mongodb-auth.yaml +16 -0
  70. package/manifests/deployment/mongo-express-no-auth/kustomization.yaml +16 -0
  71. package/manifests/grafana/deployment.yaml +26 -7
  72. package/manifests/grafana/kustomization.yaml +1 -0
  73. package/manifests/grafana/service.yaml +6 -1
  74. package/manifests/mariadb/pv.yaml +1 -0
  75. package/manifests/mongodb/statefulset.yaml +9 -2
  76. package/manifests/mysql/pv-pvc.yaml +14 -1
  77. package/manifests/postgresql/pv.yaml +12 -1
  78. package/manifests/postgresql/pvc.yaml +1 -0
  79. package/manifests/prometheus/deployment.yaml +18 -22
  80. package/package.json +87 -12
  81. package/scripts/event-monitor.sh +56 -0
  82. package/scripts/k3s-node-setup.sh +27 -14
  83. package/scripts/kubeadm-node-setup.sh +31 -11
  84. package/scripts/maas-setup.sh +8 -8
  85. package/scripts/selinux-normalize.sh +907 -0
  86. package/scripts/shutdown-machine.sh +843 -0
  87. package/scripts/test-monitor.sh +5 -5
  88. package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.controller.js +15 -10
  89. package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.model.js +36 -5
  90. package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.router.js +7 -2
  91. package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.service.js +90 -186
  92. package/src/api/core/core.controller.js +1 -1
  93. package/src/api/core/core.router.js +2 -2
  94. package/src/api/core/core.service.js +2 -2
  95. package/src/api/crypto/crypto.controller.js +1 -1
  96. package/src/api/crypto/crypto.service.js +1 -1
  97. package/src/api/cyberia-action/cyberia-action.controller.js +1 -1
  98. package/src/api/cyberia-action/cyberia-action.router.js +3 -3
  99. package/src/api/cyberia-action/cyberia-action.service.js +5 -6
  100. package/src/api/cyberia-audio/cyberia-audio.controller.js +6 -0
  101. package/src/api/cyberia-audio/cyberia-audio.model.js +61 -0
  102. package/src/api/cyberia-audio/cyberia-audio.router.js +21 -0
  103. package/src/api/cyberia-audio/cyberia-audio.service.js +220 -0
  104. package/src/api/cyberia-client-hints/cyberia-client-hints.controller.js +2 -4
  105. package/src/api/cyberia-client-hints/cyberia-client-hints.model.js +10 -19
  106. package/src/api/cyberia-client-hints/cyberia-client-hints.router.js +13 -35
  107. package/src/api/cyberia-client-hints/cyberia-client-hints.service.js +17 -34
  108. package/src/api/cyberia-dialogue/cyberia-dialogue.controller.js +1 -1
  109. package/src/api/cyberia-dialogue/cyberia-dialogue.model.js +1 -1
  110. package/src/api/cyberia-dialogue/cyberia-dialogue.router.js +2 -2
  111. package/src/api/cyberia-dialogue/cyberia-dialogue.service.js +2 -2
  112. package/src/api/cyberia-entity/cyberia-entity.controller.js +1 -1
  113. package/src/api/cyberia-entity/cyberia-entity.model.js +2 -0
  114. package/src/api/cyberia-entity/cyberia-entity.router.js +1 -1
  115. package/src/api/cyberia-entity/cyberia-entity.service.js +3 -3
  116. package/src/api/cyberia-entity-type-default/cyberia-entity-type-default.controller.js +8 -2
  117. package/src/api/cyberia-entity-type-default/cyberia-entity-type-default.model.js +31 -20
  118. package/src/api/cyberia-entity-type-default/cyberia-entity-type-default.router.js +17 -2
  119. package/src/api/cyberia-entity-type-default/cyberia-entity-type-default.service.js +468 -5
  120. package/src/api/cyberia-instance/cyberia-fallback-capture.js +502 -0
  121. package/src/api/cyberia-instance/cyberia-fallback-world.js +29 -40
  122. package/src/api/cyberia-instance/cyberia-instance-boot.service.js +5 -5
  123. package/src/api/cyberia-instance/cyberia-instance-items.js +98 -0
  124. package/src/api/cyberia-instance/cyberia-instance-map.service.js +35 -142
  125. package/src/api/cyberia-instance/cyberia-instance.controller.js +2 -5
  126. package/src/api/cyberia-instance/cyberia-instance.model.js +0 -14
  127. package/src/api/cyberia-instance/cyberia-instance.router.js +5 -18
  128. package/src/api/cyberia-instance/cyberia-instance.service.js +5 -45
  129. package/src/api/cyberia-instance/cyberia-world-generator.js +8 -13
  130. package/src/api/cyberia-instance-conf/cyberia-instance-conf.controller.js +1 -1
  131. package/src/api/cyberia-instance-conf/cyberia-instance-conf.model.js +49 -75
  132. package/src/api/cyberia-instance-conf/cyberia-instance-conf.router.js +1 -1
  133. package/src/api/cyberia-instance-conf/cyberia-instance-conf.service.js +76 -3
  134. package/src/api/cyberia-map/cyberia-map.controller.js +1 -1
  135. package/src/api/cyberia-map/cyberia-map.router.js +1 -1
  136. package/src/api/cyberia-map/cyberia-map.service.js +8 -4
  137. package/src/api/cyberia-map-audio-conf/cyberia-map-audio-conf.controller.js +31 -0
  138. package/src/api/cyberia-map-audio-conf/cyberia-map-audio-conf.model.js +56 -0
  139. package/src/api/cyberia-map-audio-conf/cyberia-map-audio-conf.router.js +33 -0
  140. package/src/api/cyberia-map-audio-conf/cyberia-map-audio-conf.service.js +189 -0
  141. package/src/api/cyberia-quest/cyberia-quest.controller.js +1 -1
  142. package/src/api/cyberia-quest/cyberia-quest.router.js +4 -4
  143. package/src/api/cyberia-quest/cyberia-quest.service.js +5 -5
  144. package/src/api/cyberia-quest-progress/cyberia-quest-progress.controller.js +1 -1
  145. package/src/api/cyberia-quest-progress/cyberia-quest-progress.model.js +1 -1
  146. package/src/api/cyberia-quest-progress/cyberia-quest-progress.router.js +1 -1
  147. package/src/api/cyberia-quest-progress/cyberia-quest-progress.service.js +2 -2
  148. package/src/api/cyberia-saga/cyberia-saga.controller.js +1 -1
  149. package/src/api/cyberia-saga/cyberia-saga.router.js +1 -1
  150. package/src/api/cyberia-saga/cyberia-saga.service.js +2 -2
  151. package/src/api/cyberia-server-defaults/cyberia-server-defaults.js +403 -214
  152. package/src/api/cyberia-skill/cyberia-skill.controller.js +1 -1
  153. package/src/api/cyberia-skill/cyberia-skill.model.js +6 -6
  154. package/src/api/cyberia-skill/cyberia-skill.router.js +1 -1
  155. package/src/api/cyberia-skill/cyberia-skill.service.js +2 -2
  156. package/src/api/default/default.controller.js +1 -1
  157. package/src/api/default/default.router.js +1 -1
  158. package/src/api/default/default.service.js +2 -2
  159. package/src/api/document/document.controller.js +1 -1
  160. package/src/api/document/document.router.js +1 -1
  161. package/src/api/document/document.service.js +2 -2
  162. package/src/api/file/file.controller.js +1 -1
  163. package/src/api/file/file.ref.js +153 -0
  164. package/src/api/file/file.ref.json +11 -2
  165. package/src/api/file/file.router.js +1 -1
  166. package/src/api/file/file.service.js +2 -2
  167. package/src/api/instance/instance.controller.js +1 -1
  168. package/src/api/instance/instance.router.js +1 -1
  169. package/src/api/instance/instance.service.js +2 -2
  170. package/src/api/ipfs/ipfs.controller.js +1 -1
  171. package/src/api/ipfs/ipfs.router.js +2 -2
  172. package/src/api/ipfs/ipfs.service.js +2 -2
  173. package/src/api/object-layer/object-layer.controller.js +1 -1
  174. package/src/api/object-layer/object-layer.model.js +47 -12
  175. package/src/api/object-layer/object-layer.router.js +12 -5
  176. package/src/api/object-layer/object-layer.service.js +116 -123
  177. package/src/api/object-layer-render-frames/object-layer-render-frames.controller.js +1 -1
  178. package/src/api/object-layer-render-frames/object-layer-render-frames.router.js +1 -1
  179. package/src/api/object-layer-render-frames/object-layer-render-frames.service.js +2 -2
  180. package/src/api/test/test.controller.js +1 -1
  181. package/src/api/test/test.service.js +1 -1
  182. package/src/api/user/guest.service.js +3 -3
  183. package/src/api/user/user.controller.js +1 -1
  184. package/src/api/user/user.router.js +2 -2
  185. package/src/api/user/user.service.js +4 -4
  186. package/src/api.js +5 -9
  187. package/src/cli/app.js +402 -0
  188. package/src/cli/baremetal.js +30 -35
  189. package/src/cli/client.js +306 -0
  190. package/src/cli/cloud-init.js +3 -3
  191. package/src/cli/cluster.js +191 -82
  192. package/src/cli/db.js +120 -68
  193. package/src/cli/deploy.js +157 -75
  194. package/src/cli/docker-compose.js +5 -5
  195. package/src/cli/domains.js +184 -0
  196. package/src/cli/dotenv-store.js +143 -0
  197. package/src/cli/event.js +2281 -0
  198. package/src/cli/fs-selection.js +115 -0
  199. package/src/cli/fs.js +159 -343
  200. package/src/cli/host.js +672 -0
  201. package/src/cli/image.js +4 -6
  202. package/src/cli/index.js +343 -151
  203. package/src/cli/ipfs.js +34 -30
  204. package/src/cli/kickstart.js +1 -1
  205. package/src/cli/kubectl.js +218 -41
  206. package/src/cli/lxd.js +3 -3
  207. package/src/cli/monitor.js +1359 -26
  208. package/src/cli/package.js +90 -0
  209. package/src/cli/release.js +16 -12
  210. package/src/cli/repository.js +586 -363
  211. package/src/cli/run.js +398 -843
  212. package/src/cli/secrets.js +2158 -964
  213. package/src/cli/ssh.js +478 -279
  214. package/src/cli/state.js +394 -0
  215. package/src/cli/static.js +2 -2
  216. package/src/cli/system.js +1 -1
  217. package/src/cli/test.js +203 -125
  218. package/src/cli/vultr.js +61 -21
  219. package/src/cli/wireguard.js +1112 -306
  220. package/src/client/components/core/CalendarCore.js +53 -96
  221. package/src/client/components/core/Docs.js +327 -303
  222. package/src/client/components/core/FileExplorer.js +0 -21
  223. package/src/client/components/core/Modal.js +56 -1
  224. package/src/client/components/core/PanelForm.js +4 -4
  225. package/src/client/components/core/Repository.js +56 -0
  226. package/src/client/components/core/Translate.js +7 -0
  227. package/src/client/components/core/{FullScreen.js → ViewModeController.js} +42 -39
  228. package/src/client/components/core/Wallet.js +0 -11
  229. package/src/client/components/core/Worker.js +7 -1
  230. package/src/client/components/cryptokoyn/SettingsCryptokoyn.js +2 -2
  231. package/src/client/components/cyberia/ActionEngineCyberia.js +12 -36
  232. package/src/client/components/cyberia/EntityEngineCyberia.js +492 -121
  233. package/src/client/components/cyberia/InstanceEngineCyberia.js +129 -160
  234. package/src/client/components/cyberia/InstanceSelectionView.js +7 -1
  235. package/src/client/components/cyberia/MapEngineCyberia.js +175 -69
  236. package/src/client/components/cyberia/ObjectLayerEngine.js +1011 -97
  237. package/src/client/components/cyberia/ObjectLayerEngineModal.js +81 -155
  238. package/src/client/components/cyberia/ObjectLayerEngineViewer.js +113 -98
  239. package/src/client/components/cyberia/SharedDefaultsCyberia.js +215 -56
  240. package/src/client/components/cyberia-portal/AppShellCyberiaPortal.js +2 -35
  241. package/src/client/components/cyberia-portal/CssCyberiaPortal.js +1 -1
  242. package/src/client/components/cyberia-portal/MainBodyCyberiaPortal.js +712 -76
  243. package/src/client/components/cyberia-portal/SettingsCyberiaPortal.js +2 -2
  244. package/src/client/components/cyberia-portal/TranslateCyberiaPortal.js +0 -4
  245. package/src/client/components/default/AppShellDefault.js +1 -1
  246. package/src/client/components/default/SettingsDefault.js +2 -2
  247. package/src/client/components/itemledger/SettingsItemledger.js +2 -2
  248. package/src/client/components/underpost/AppShellUnderpost.js +3 -2
  249. package/src/client/components/underpost/SettingsUnderpost.js +2 -2
  250. package/src/client/public/cyberia-docs/ARCHITECTURE.md +15 -15
  251. package/src/client/public/cyberia-docs/CYBERIA-CLI.md +313 -30
  252. package/src/client/public/cyberia-docs/CYBERIA-CLIENT.md +51 -29
  253. package/src/client/public/cyberia-docs/CYBERIA-SAGA.md +52 -53
  254. package/src/client/public/cyberia-docs/CYBERIA-SERVER.md +16 -11
  255. package/src/client/public/cyberia-docs/CYBERIA.md +48 -28
  256. package/src/client/public/cyberia-docs/ENTITY-PROFILE.md +11 -5
  257. package/src/client/public/cyberia-docs/HARDHAT-MODULE.md +23 -6
  258. package/src/client/public/cyberia-docs/ROADMAP.md +1 -1
  259. package/src/client/public/cyberia-docs/STATS-PROGRESSION.md +217 -0
  260. package/src/client/public/cyberia-docs/WHITE-PAPER.md +20 -12
  261. package/src/client/public/default/android-chrome-144x144.png +0 -0
  262. package/src/client/public/default/android-chrome-192x192.png +0 -0
  263. package/src/client/public/default/android-chrome-256x256.png +0 -0
  264. package/src/client/public/default/android-chrome-36x36.png +0 -0
  265. package/src/client/public/default/android-chrome-384x384.png +0 -0
  266. package/src/client/public/default/android-chrome-48x48.png +0 -0
  267. package/src/client/public/default/android-chrome-512x512.png +0 -0
  268. package/src/client/public/default/android-chrome-72x72.png +0 -0
  269. package/src/client/public/default/android-chrome-96x96.png +0 -0
  270. package/src/client/public/default/apple-touch-icon-1024x1024.png +0 -0
  271. package/src/client/public/default/apple-touch-icon-114x114.png +0 -0
  272. package/src/client/public/default/apple-touch-icon-120x120.png +0 -0
  273. package/src/client/public/default/apple-touch-icon-144x144.png +0 -0
  274. package/src/client/public/default/apple-touch-icon-152x152.png +0 -0
  275. package/src/client/public/default/apple-touch-icon-167x167.png +0 -0
  276. package/src/client/public/default/apple-touch-icon-180x180.png +0 -0
  277. package/src/client/public/default/apple-touch-icon-57x57.png +0 -0
  278. package/src/client/public/default/apple-touch-icon-60x60.png +0 -0
  279. package/src/client/public/default/apple-touch-icon-72x72.png +0 -0
  280. package/src/client/public/default/apple-touch-icon-76x76.png +0 -0
  281. package/src/client/public/default/apple-touch-icon-precomposed.png +0 -0
  282. package/src/client/public/default/apple-touch-icon.png +0 -0
  283. package/src/client/public/default/apple-touch-startup-image-1125x2436.png +0 -0
  284. package/src/client/public/default/apple-touch-startup-image-1136x640.png +0 -0
  285. package/src/client/public/default/apple-touch-startup-image-1170x2532.png +0 -0
  286. package/src/client/public/default/apple-touch-startup-image-1179x2556.png +0 -0
  287. package/src/client/public/default/apple-touch-startup-image-1242x2208.png +0 -0
  288. package/src/client/public/default/apple-touch-startup-image-1242x2688.png +0 -0
  289. package/src/client/public/default/apple-touch-startup-image-1284x2778.png +0 -0
  290. package/src/client/public/default/apple-touch-startup-image-1290x2796.png +0 -0
  291. package/src/client/public/default/apple-touch-startup-image-1334x750.png +0 -0
  292. package/src/client/public/default/apple-touch-startup-image-1488x2266.png +0 -0
  293. package/src/client/public/default/apple-touch-startup-image-1536x2048.png +0 -0
  294. package/src/client/public/default/apple-touch-startup-image-1620x2160.png +0 -0
  295. package/src/client/public/default/apple-touch-startup-image-1640x2160.png +0 -0
  296. package/src/client/public/default/apple-touch-startup-image-1668x2224.png +0 -0
  297. package/src/client/public/default/apple-touch-startup-image-1668x2388.png +0 -0
  298. package/src/client/public/default/apple-touch-startup-image-1792x828.png +0 -0
  299. package/src/client/public/default/apple-touch-startup-image-2048x1536.png +0 -0
  300. package/src/client/public/default/apple-touch-startup-image-2048x2732.png +0 -0
  301. package/src/client/public/default/apple-touch-startup-image-2160x1620.png +0 -0
  302. package/src/client/public/default/apple-touch-startup-image-2160x1640.png +0 -0
  303. package/src/client/public/default/apple-touch-startup-image-2208x1242.png +0 -0
  304. package/src/client/public/default/apple-touch-startup-image-2224x1668.png +0 -0
  305. package/src/client/public/default/apple-touch-startup-image-2266x1488.png +0 -0
  306. package/src/client/public/default/apple-touch-startup-image-2388x1668.png +0 -0
  307. package/src/client/public/default/apple-touch-startup-image-2436x1125.png +0 -0
  308. package/src/client/public/default/apple-touch-startup-image-2532x1170.png +0 -0
  309. package/src/client/public/default/apple-touch-startup-image-2556x1179.png +0 -0
  310. package/src/client/public/default/apple-touch-startup-image-2688x1242.png +0 -0
  311. package/src/client/public/default/apple-touch-startup-image-2732x2048.png +0 -0
  312. package/src/client/public/default/apple-touch-startup-image-2778x1284.png +0 -0
  313. package/src/client/public/default/apple-touch-startup-image-2796x1290.png +0 -0
  314. package/src/client/public/default/apple-touch-startup-image-640x1136.png +0 -0
  315. package/src/client/public/default/apple-touch-startup-image-750x1334.png +0 -0
  316. package/src/client/public/default/apple-touch-startup-image-828x1792.png +0 -0
  317. package/src/client/public/default/assets/background/white.jpg +0 -0
  318. package/src/client/public/default/browserconfig.xml +1 -1
  319. package/src/client/public/default/favicon-16x16.png +0 -0
  320. package/src/client/public/default/favicon-32x32.png +0 -0
  321. package/src/client/public/default/favicon-48x48.png +0 -0
  322. package/src/client/public/default/favicon.ico +0 -0
  323. package/src/client/public/default/manifest.webmanifest +5 -5
  324. package/src/client/public/default/mstile-144x144.png +0 -0
  325. package/src/client/public/default/mstile-150x150.png +0 -0
  326. package/src/client/public/default/mstile-310x150.png +0 -0
  327. package/src/client/public/default/mstile-310x310.png +0 -0
  328. package/src/client/public/default/mstile-70x70.png +0 -0
  329. package/src/client/public/default/yandex-browser-50x50.png +0 -0
  330. package/src/client/public/default/yandex-browser-manifest.json +1 -1
  331. package/src/client/services/cyberia-audio/cyberia-audio.service.js +99 -0
  332. package/src/client/services/cyberia-entity-type-default/cyberia-entity-type-default.service.js +38 -0
  333. package/src/client/services/cyberia-instance/cyberia-instance.management.js +5 -4
  334. package/src/client/services/cyberia-instance/cyberia-instance.service.js +0 -40
  335. package/src/client/services/cyberia-map/cyberia-map.management.js +5 -4
  336. package/src/client/services/cyberia-map-audio-conf/cyberia-map-audio-conf.service.js +138 -0
  337. package/src/client/services/object-layer/object-layer.management.js +6 -10
  338. package/src/client/services/object-layer/object-layer.service.js +3 -1
  339. package/src/client/ssr/RootDocument.js +1 -1
  340. package/src/client/ssr/body/404.js +1 -1
  341. package/src/client/ssr/body/500.js +1 -1
  342. package/src/client/ssr/body/CacheControl.js +1 -1
  343. package/src/client/ssr/body/CyberiaDefaultSplashScreen.js +1 -1
  344. package/src/client/ssr/body/DefaultSplashScreen.js +1 -1
  345. package/src/client/ssr/body/SwaggerDarkMode.js +1 -1
  346. package/src/client/ssr/body/UnderpostDefaultSplashScreen.js +1 -1
  347. package/src/client/ssr/head/CryptokoynScripts.js +1 -1
  348. package/src/client/ssr/head/Css.js +1 -1
  349. package/src/client/ssr/head/CyberiaPortalScripts.js +1 -1
  350. package/src/client/ssr/head/DefaultScripts.js +1 -1
  351. package/src/client/ssr/head/ItemledgerScripts.js +1 -1
  352. package/src/client/ssr/head/Microdata.js +1 -1
  353. package/src/client/ssr/head/Production.js +1 -1
  354. package/src/client/ssr/head/Pwa.js +1 -1
  355. package/src/client/ssr/head/PwaItemledger.js +1 -1
  356. package/src/client/ssr/head/Seo.js +1 -1
  357. package/src/client/ssr/head/UnderpostScripts.js +1 -1
  358. package/src/client/ssr/mailer/DefaultRecoverEmail.js +1 -1
  359. package/src/client/ssr/mailer/DefaultVerifyEmail.js +1 -1
  360. package/src/client/ssr/views/Cyberia404.js +7 -5
  361. package/src/client/ssr/views/CyberiaServerMetrics.js +1 -1
  362. package/src/client/ssr/views/Maintenance.js +1 -1
  363. package/src/client/ssr/views/NoNetworkConnection.js +1 -1
  364. package/src/client/ssr/views/Test.js +1 -1
  365. package/src/client/sw/core.sw.js +20 -14
  366. package/src/client-builder/client-build-docs.js +92 -77
  367. package/src/client-builder/client-build-live.js +2 -2
  368. package/src/client-builder/client-build.js +105 -74
  369. package/src/client-builder/client-bundle.js +347 -0
  370. package/src/client-builder/client-dev-server.js +3 -3
  371. package/src/client-builder/client-icons.js +2 -2
  372. package/src/client-builder/ssr.js +3 -3
  373. package/src/client.build.js +3 -6
  374. package/src/client.dev.js +3 -6
  375. package/src/db/DataBaseProvider.js +186 -3
  376. package/src/db/mariadb/MariaDB.js +3 -2
  377. package/src/db/mongo/MongoBootstrap.js +273 -101
  378. package/src/db/mongo/MongoExpress.js +187 -0
  379. package/src/db/mongo/MongooseDB.js +7 -8
  380. package/src/{server/valkey.js → db/valkey/Valkey.js} +5 -4
  381. package/src/grpc/cyberia/grpc-server.js +6 -8
  382. package/src/index.js +79 -23
  383. package/src/mailer/EmailRender.js +2 -2
  384. package/src/mailer/MailerInterceptor.js +87 -0
  385. package/src/mailer/MailerProvider.js +50 -6
  386. package/src/projects/cyberia/atlas-sprite-sheet-generator.js +144 -147
  387. package/src/projects/cyberia/atlas-sprite-sheet-store.js +391 -0
  388. package/src/projects/cyberia/besu-genesis-generator.js +8 -17
  389. package/src/projects/cyberia/boot-contract-fixtures.js +32 -0
  390. package/src/projects/cyberia/catalog-cyberia.js +54 -10
  391. package/src/projects/cyberia/gemini-client.js +4 -4
  392. package/src/projects/cyberia/generate-saga.js +5 -12
  393. package/src/projects/cyberia/hot-reload-trigger.js +18 -29
  394. package/src/projects/cyberia/instance-backup.js +210 -0
  395. package/src/projects/cyberia/instance-data.js +178 -258
  396. package/src/projects/cyberia/ipfs-client.js +4 -4
  397. package/src/projects/cyberia/map-preview-generator.js +33 -69
  398. package/src/projects/cyberia/object-layer.js +153 -320
  399. package/src/projects/cyberia/seed-audio.js +139 -0
  400. package/src/projects/cyberia/semantic-layer-generator-skin.js +2 -8
  401. package/src/projects/cyberia/semantic-layer-generator.js +3 -19
  402. package/src/projects/cyberia/stat-balance.js +81 -0
  403. package/src/projects/cyberia/stat-commands.js +23 -0
  404. package/src/projects/cyberia/stat-contract-generator.js +101 -0
  405. package/src/projects/underpost/catalog-underpost.js +9 -1
  406. package/src/proxy.js +4 -7
  407. package/src/runtime/cyberia-client/Dockerfile +17 -8
  408. package/src/runtime/cyberia-client/Dockerfile.dev +13 -4
  409. package/src/runtime/cyberia-server/Dockerfile +18 -6
  410. package/src/runtime/cyberia-server/Dockerfile.dev +16 -3
  411. package/src/runtime/engine-cyberia/Dockerfile +25 -9
  412. package/src/runtime/engine-cyberia/Dockerfile.dev +25 -9
  413. package/src/runtime/engine-cyberia/Dockerfile.test +5 -5
  414. package/src/runtime/engine-cyberia/compose.env +17 -5
  415. package/src/runtime/engine-cyberia/docker-compose.yml +23 -17
  416. package/src/runtime/express/Express.js +32 -27
  417. package/src/runtime/lampp/Lampp.js +22 -70
  418. package/src/runtime/nginx/Nginx.js +1 -1
  419. package/src/runtime/wp/Wp.js +16 -48
  420. package/src/server/{catalog.js → build/catalog.js} +15 -5
  421. package/src/server/build/coverage.js +188 -0
  422. package/src/server/build/execution.js +402 -0
  423. package/src/server/build/package.js +508 -0
  424. package/src/server/build/testing.js +578 -0
  425. package/src/server/{dns.js → network/dns.js} +144 -11
  426. package/src/server/{forward-proxy.js → network/forward-proxy.js} +10 -18
  427. package/src/server/{middlewares.js → network/middlewares.js} +11 -5
  428. package/src/server/network/node-capability.js +98 -0
  429. package/src/server/{peer.js → network/peer.js} +3 -3
  430. package/src/server/{proxy.js → network/proxy.js} +7 -13
  431. package/src/server/network/router.js +356 -0
  432. package/src/server/{tls.js → network/tls.js} +2 -2
  433. package/src/server/{underpost-compression.js → network/underpost-compression.js} +1 -1
  434. package/src/server/{underpost-gateway.js → network/underpost-gateway.js} +7 -7
  435. package/src/server/{underpost-ingress.js → network/underpost-ingress.js} +2 -2
  436. package/src/server/{cri.js → ops/cri.js} +2 -2
  437. package/src/server/{cron.js → ops/cron.js} +349 -74
  438. package/src/server/ops/event-notification.js +284 -0
  439. package/src/server/{logger.js → ops/logger.js} +143 -23
  440. package/src/server/ops/monitoring.js +1724 -0
  441. package/src/server/{systemd.js → ops/systemd.js} +55 -1
  442. package/src/server/{conf.js → runtime/conf.js} +516 -423
  443. package/src/server/runtime/config-scope.js +215 -0
  444. package/src/server/runtime/environment.js +149 -0
  445. package/src/server/{process.js → runtime/process.js} +153 -12
  446. package/src/server/{runtime-status.js → runtime/runtime-status.js} +155 -16
  447. package/src/server/{runtime.js → runtime/runtime.js} +12 -8
  448. package/src/server/{start.js → runtime/start.js} +128 -39
  449. package/src/server/{auth.js → security/auth.js} +7 -8
  450. package/src/server/security/container-storage.js +382 -0
  451. package/src/server/{crypto.js → security/crypto.js} +1 -1
  452. package/src/server/{selinux.js → security/selinux.js} +1 -1
  453. package/src/server/{backup.js → storage/backup.js} +17 -8
  454. package/src/server/{data-query.js → storage/data-query.js} +17 -1
  455. package/src/server/storage/downloader.js +121 -0
  456. package/src/server/storage/repository.js +68 -0
  457. package/src/server/storage/zip.js +153 -0
  458. package/src/server.js +4 -7
  459. package/src/ws/IoInterface.js +1 -1
  460. package/src/ws/IoServer.js +1 -1
  461. package/src/ws/core/core.ws.connection.js +1 -1
  462. package/src/ws/core/core.ws.emit.js +1 -1
  463. package/src/ws/core/core.ws.server.js +1 -1
  464. package/src/ws/default/default.ws.connection.js +1 -1
  465. package/src/ws/default/default.ws.emit.js +1 -1
  466. package/src/ws/default/default.ws.server.js +1 -1
  467. package/test/e2e/event-e2e-public-ingress-down.js +45 -0
  468. package/test/e2e/event-e2e-wireguard-server-down.js +38 -0
  469. package/test/e2e/event-e2e-wireguard-spoke-down.js +40 -0
  470. package/test/{api.test.js → integration/app/api.test.js} +33 -14
  471. package/test/integration/app/cyberia/atlas-sprite-sheet-store.test.js +402 -0
  472. package/test/integration/app/cyberia/atlas-sprite-sheet.test.js +86 -0
  473. package/test/integration/app/cyberia/cyberia-cli-plain-reads.test.js +64 -0
  474. package/test/integration/app/cyberia/cyberia-entity-type-default.test.js +842 -0
  475. package/test/integration/app/cyberia/cyberia-instance-conf-coerce.test.js +53 -0
  476. package/test/{cyberia-instance-conf-defaults.test.js → integration/app/cyberia/cyberia-instance-conf-defaults.test.js} +17 -23
  477. package/test/integration/app/cyberia/cyberia-instance-items.test.js +90 -0
  478. package/test/integration/app/cyberia/cyberia-load.test.js +466 -0
  479. package/test/integration/app/cyberia/cyberia-map-audio-conf.test.js +256 -0
  480. package/test/integration/app/cyberia/cyberia-stats.test.js +150 -0
  481. package/test/integration/app/cyberia/fallback-world-capture.test.js +338 -0
  482. package/test/integration/app/cyberia/object-layer-item-id.test.js +327 -0
  483. package/test/integration/app/cyberia/object-layer-item-selection.test.js +56 -0
  484. package/test/integration/app/cyberia/object-layer-natural-key.test.js +32 -0
  485. package/test/integration/app/cyberia/seed-audio.test.js +275 -0
  486. package/test/{shape-generator.test.js → integration/app/cyberia/shape-generator.test.js} +1 -1
  487. package/test/integration/infra/1-security/config-scope.test.js +305 -0
  488. package/test/integration/infra/1-security/container-storage.test.js +356 -0
  489. package/test/integration/infra/1-security/in-pod-cli-surface.test.js +86 -0
  490. package/test/integration/infra/1-security/secret-onboarding.test.js +930 -0
  491. package/test/{selinux.test.js → integration/infra/1-security/selinux.test.js} +2 -4
  492. package/test/{sops-secret-store.test.js → integration/infra/1-security/sops-secret-store.test.js} +415 -61
  493. package/test/integration/infra/1-security/systemd-service.test.js +70 -0
  494. package/test/integration/infra/1-security/underpost-config-secret.test.js +367 -0
  495. package/test/integration/infra/2-network/dns-firewall.test.js +566 -0
  496. package/test/integration/infra/2-network/node-capability.test.js +182 -0
  497. package/test/integration/infra/2-network/wireguard-cli.test.js +1187 -0
  498. package/test/{wireguard-edge.test.js → integration/infra/2-network/wireguard-edge.test.js} +649 -55
  499. package/test/{cluster-instances.test.js → integration/infra/3-cluster/cluster-instances.test.js} +11 -15
  500. package/test/{deploy-node-placement.test.js → integration/infra/3-cluster/deploy-node-placement.test.js} +3 -3
  501. package/test/integration/infra/3-cluster/docker-compose-stack.test.js +313 -0
  502. package/test/integration/infra/3-cluster/mongo-express-deploy.test.js +156 -0
  503. package/test/integration/infra/4-ingress/api-cross-origin.test.js +79 -0
  504. package/test/integration/infra/4-ingress/deploy-routes.test.js +379 -0
  505. package/test/integration/infra/4-ingress/gateway-static-assets.test.js +453 -0
  506. package/test/{instance-traffic-plan.test.js → integration/infra/4-ingress/instance-traffic-plan.test.js} +10 -6
  507. package/test/{underpost-gateway.test.js → integration/infra/4-ingress/underpost-gateway.test.js} +6 -6
  508. package/test/{underpost-ingress.test.js → integration/infra/4-ingress/underpost-ingress.test.js} +4 -4
  509. package/test/integration/infra/5-observability/cron-jobs.test.js +652 -0
  510. package/test/{deploy-monitor.test.js → integration/infra/5-observability/deploy-monitor.test.js} +29 -31
  511. package/test/integration/infra/5-observability/event-notification.test.js +197 -0
  512. package/test/integration/infra/5-observability/event-remediation.test.js +502 -0
  513. package/test/integration/infra/5-observability/event-targets.test.js +1174 -0
  514. package/test/integration/infra/5-observability/monitoring-stack.test.js +902 -0
  515. package/test/support/shell-harness.js +73 -0
  516. package/test/unit/build-template.test.js +97 -0
  517. package/test/unit/build-workflow-offline.test.js +132 -0
  518. package/test/unit/catalog.test.js +71 -0
  519. package/test/unit/client-build-docs.test.js +361 -0
  520. package/test/unit/client-bundle.test.js +313 -0
  521. package/test/unit/conf-loading.test.js +303 -0
  522. package/test/unit/conf-resolution.test.js +996 -0
  523. package/test/unit/coverage-artifact.test.js +221 -0
  524. package/test/{crypto.test.js → unit/crypto.test.js} +1 -1
  525. package/test/unit/cyberia/instance-backup.test.js +183 -0
  526. package/test/unit/cyberia/instance-object-layer-items.test.js +46 -0
  527. package/test/unit/cyberia/publish-workflow.test.js +22 -0
  528. package/test/unit/cyberia/stat-balance.test.js +69 -0
  529. package/test/unit/deploy-env-resolution.test.js +38 -0
  530. package/test/unit/deploy-log-table.test.js +518 -0
  531. package/test/unit/downloader-integrity.test.js +98 -0
  532. package/test/unit/execution-profiles.test.js +219 -0
  533. package/test/unit/file-reference-registry.test.js +141 -0
  534. package/test/unit/fleet-sync-source.test.js +149 -0
  535. package/test/unit/fs-storage-paths.test.js +596 -0
  536. package/test/unit/logger-redaction.test.js +141 -0
  537. package/test/unit/package.test.js +457 -0
  538. package/test/unit/prepare-host.test.js +382 -0
  539. package/test/unit/process-environment.test.js +18 -0
  540. package/test/unit/propagation-message.test.js +78 -0
  541. package/test/unit/redeploy-plan.test.js +24 -0
  542. package/test/unit/release-bump.test.js +474 -0
  543. package/test/unit/ssh-output-redaction.test.js +28 -0
  544. package/test/unit/start-options.test.js +46 -0
  545. package/test/unit/test-tiers.test.js +220 -0
  546. package/test/unit/zip-archive.test.js +142 -0
  547. package/vitest.config.js +66 -0
  548. package/.nycrc +0 -9
  549. package/deploy/lib/logging.sh +0 -96
  550. package/manifests/cronjobs/dd-cron/dd-cron-dns.yaml +0 -48
  551. package/manifests/mongodb/pv-pvc.yaml +0 -59
  552. package/scripts/coverall-test-cyberia.sh +0 -24
  553. package/scripts/coverall-test.sh +0 -24
  554. package/scripts/link-local-underpost-cli.sh +0 -6
  555. package/src/api/cyberia-instance/cyberia-fallback-default-items.js +0 -63
  556. package/src/api/user/user.build.js +0 -16
  557. package/src/cli/env.js +0 -177
  558. package/src/client/components/core/Blockchain.js +0 -41
  559. package/src/client/components/core/Blog.js +0 -9
  560. package/src/client/components/core/KeyboardAvoidance.js +0 -145
  561. package/src/client/components/cyberia/FallbackWorldEngineCyberia.js +0 -368
  562. package/src/client/public/default/assets/background/dark.jpg +0 -0
  563. package/src/client/public/default/assets/background/white0-min.jpg +0 -0
  564. package/src/client/public/default/assets/background/white0.jpg +0 -0
  565. package/src/client/public/doc/favicon.ico +0 -0
  566. package/src/client/public/doc/sitemap +0 -148
  567. package/src/server/downloader.js +0 -73
  568. package/src/server/environment.js +0 -98
package/CHANGELOG.md CHANGED
@@ -1,2806 +1,946 @@
1
1
  # Changelog
2
2
 
3
- ## 2026-08-18
3
+ ## 2026-09-13
4
4
 
5
- ### github-actions
6
-
7
- - Add workflow_dispatch trigger event handling in .github/workflows/ghpkg.ci.yml ([e21320cf](https://github.com/underpostnet/engine/commit/e21320cf7542680823758f331bd34d619ca185cd))
8
- - Reorder coverall test list ([eb20336b](https://github.com/underpostnet/engine/commit/eb20336b29e87f4371528f78099768e8ee36b586))
9
- - Replace default npm coverall test with scripts/coverall-test.sh ([3471f300](https://github.com/underpostnet/engine/commit/3471f3009391a3f8a1a66cedd1e4761fe5f76712))
10
- - Refactor move CD workflow commands into deployment scripts with run_quiet wrapper ([222a18d7](https://github.com/underpostnet/engine/commit/222a18d719f33fd678a72f9b05639f86ec4037cd))
11
- - Update .github/workflows/engine-test.cd.yml ([94e42e58](https://github.com/underpostnet/engine/commit/94e42e58ee4f9eb6542a010e96899000458f3a7b))
12
- - Add import-default-items steps to cyberia CD ([350444f9](https://github.com/underpostnet/engine/commit/350444f9fb4b34cd15541458c1897299fed7b287))
13
- - Update.github/workflows/engine-cyberia.cd.yml ([53e9da17](https://github.com/underpostnet/engine/commit/53e9da17127a850aebaa0e5e0e90b593ee0ac03d))
14
- - Update base node in engine-core CD pipeline ([fa039f25](https://github.com/underpostnet/engine/commit/fa039f25763bb719496b73dd8044af4570be859e))
15
-
16
- ### cli-cyberia
17
-
18
- - Include deploy strategies in generated projects ([66bc733e](https://github.com/underpostnet/engine/commit/66bc733eb22bd74aff5ff249dade0959c876cdae))
19
- - Refactor make data.item.id is now a unique index for every case ([1391efce](https://github.com/underpostnet/engine/commit/1391efce32f96f56271a1060304bb7b26556b80d))
20
- - Add WebSocket load test runner command ([eebec67e](https://github.com/underpostnet/engine/commit/eebec67edd1bfda0bf6f8205305a90cd73441e4c))
21
-
22
- ### engine
23
-
24
- - Expand server module JSDoc annotations ([213a5519](https://github.com/underpostnet/engine/commit/213a55191dc388d227315f07116148d5b731b883))
25
- - Move writeEnv helper into environment module ([9c57e362](https://github.com/underpostnet/engine/commit/9c57e3629a682da0c7aa45e0cb24d24d3af3cdab))
26
- - Fix SELinux host paths mounts logic and definition ([6cf8dda1](https://github.com/underpostnet/engine/commit/6cf8dda113b92fea011e3825035147ae33a1bc7f))
27
- - Extract environment and cron deploy helpers into dedicated modules ([6ba3fa4c](https://github.com/underpostnet/engine/commit/6ba3fa4c372a2eb1afe87c6fc5c0681209a96b07))
28
- - Enforce SELinux across cluster, SSH, and provisioning ([9d57a359](https://github.com/underpostnet/engine/commit/9d57a359dd94067dfb48fceab9006e3ef3d7d502))
29
-
30
- ### cli-wireguard
31
-
32
- - Add SSH forwarding via VPS edge ([54de1e6e](https://github.com/underpostnet/engine/commit/54de1e6e5dddccad5c056da152cb32712ab3ba25))
33
- - Extract forward proxy and systemd helpers into server modules ([97be08d1](https://github.com/underpostnet/engine/commit/97be08d107e825c2ff5a97382ebb9367a6ad3523))
34
- - Implement HTTP/CONNECT forward proxy for WireGuard ([a95163df](https://github.com/underpostnet/engine/commit/a95163df2797bbfa86d3d1f422fe0afd224b72b3))
35
- - Implement idempotent in Restart, reconnect, and reset pipeline ([65710c3b](https://github.com/underpostnet/engine/commit/65710c3bd3056b1f2cc49e3b82517d081f7f25df))
36
- - Implement Edge Hub WireGuard and HAProxy CLI module ([2e293b87](https://github.com/underpostnet/engine/commit/2e293b87540a43489bb535e2ab731581809b1848))
37
-
38
- ### catalog-cyberia
39
-
40
- - Add coverall cyberia trigger script ([c8e59eed](https://github.com/underpostnet/engine/commit/c8e59eed08c113d39a99f5151d8d6b4af96fb4e9))
41
-
42
- ### scripts
43
-
44
- - Mark scripts as executable ([8f04cbc7](https://github.com/underpostnet/engine/commit/8f04cbc700e2bc17b917ea49450efabc766e27ed))
45
-
46
- ### release
47
-
48
- - Fix missing file bump version scopes ([4aa983a5](https://github.com/underpostnet/engine/commit/4aa983a5d8aea7983295ee01799c358ed1b9c2bc))
49
-
50
- ### deploy
51
-
52
- - Mark deploy scripts as executable ([b18151bf](https://github.com/underpostnet/engine/commit/b18151bfaa52c17b2540e0a2706b79a8850fee84))
53
-
54
- ### hardhat
55
-
56
- - Update hardhat npm module version to sync current project scope v3.2.90 ([8fc717b9](https://github.com/underpostnet/engine/commit/8fc717b9913c69a41c2c9e88b2b7f720a4a7cb09))
57
- - Update undici override dependency to v6.28.0 ([fb2d2aa3](https://github.com/underpostnet/engine/commit/fb2d2aa3b502b5552212f63d9a01f23d2333b296))
58
-
59
- ### dependabot
60
-
61
- - Disable typescript autoupdate ([8bd76183](https://github.com/underpostnet/engine/commit/8bd7618336423a1df1d4ca77cd138aef51902d6c))
62
-
63
- ### cli-client
64
-
65
- - Add only ssr build workload flag option and logic ([92026a66](https://github.com/underpostnet/engine/commit/92026a66ec3c403219af62bfc5bcc78917d537ed))
66
-
67
- ### cli-cron
68
-
69
- - Fix cron CLI setup flag and single job execution ([84eab73d](https://github.com/underpostnet/engine/commit/84eab73d9a618244b46e699ba65b469940d1a267))
70
-
71
- ### cli-repository
72
-
73
- - Add getDefaultBranch resolve in switchRemote method ([04bc8743](https://github.com/underpostnet/engine/commit/04bc8743b6f4c5f9edd891276137183fa444d447))
74
-
75
- ### cli-ssh
76
-
77
- - Add initializeDefaultSshConfig method ([84f5f869](https://github.com/underpostnet/engine/commit/84f5f8698810596f084e632487208ea909feddfd))
78
-
79
- ### cli-vultr
80
-
81
- - Add Vultr Bandwidth Monitor cron job CLI Module ([22fb9249](https://github.com/underpostnet/engine/commit/22fb9249ad40ba24a8cd87da43d742b1972c4fbb))
82
-
83
- ### cli-dns
84
-
85
- - Add blokc/unblock ingress/egress workflow handling ([980fab35](https://github.com/underpostnet/engine/commit/980fab35aba6a279b94701550edfd765c8b422a2))
86
-
87
- ### underpost-ingress
88
-
89
- - Enable response compression in ingress and gateway ([7763f9da](https://github.com/underpostnet/engine/commit/7763f9da2b81128042cef2a73ca5570938dcd3f5))
90
-
91
- ### test
92
-
93
- - Fix missing pngjs import in object-layer test pipeline ([20c1f24d](https://github.com/underpostnet/engine/commit/20c1f24d865d5cdeb70a365c93f8c797c28fe960))
94
- - Add WebSocket load test for cyberia-server ([e3ff2777](https://github.com/underpostnet/engine/commit/e3ff277725e33dace3ed3268e6f60299ea146f59))
95
-
96
- ### engine-cyberia
97
-
98
- - Remove eiri from entity default inventory ([e8f8d03c](https://github.com/underpostnet/engine/commit/e8f8d03c7e326fac012722f659def7d7a7da882c))
99
- - Add fallback world default items staging and hot reload ([e646c430](https://github.com/underpostnet/engine/commit/e646c430d72ea7a319cf1640bd4c7505cbb40b87))
100
- - Add playerBaseSpeed field to instance config defaults ([7cdbd23d](https://github.com/underpostnet/engine/commit/7cdbd23d255bb47e253e60f7ec0cc6c3600d5678))
101
- - Add WebSocket connection limit env to cyberia-server ([c6f834c7](https://github.com/underpostnet/engine/commit/c6f834c7dc7bcae24d4f493a005cdb2d1b76a73d))
102
-
103
- ### client-cyberia
104
-
105
- - Add Fallback World Engine editor view ([cf61dfe8](https://github.com/underpostnet/engine/commit/cf61dfe8e7eec7556f5bd07e445d6759d9b432e4))
106
- - Implement IPFS cid filters in ObjectLayerEngineViewer component ([93eb6992](https://github.com/underpostnet/engine/commit/93eb69928bf8ea6915f70b1ca4307fa582cc17b6))
107
-
108
- ### docs
109
-
110
- - Document moveAck reconciliation and move coalescing in Cyberia replication ([24b14ca4](https://github.com/underpostnet/engine/commit/24b14ca4ee4c9ef0ce4dc9e3135e4990ed0a8274))
111
-
112
- ## New release v:3.2.90 (2026-08-11)
113
-
114
- ### cli-run
115
-
116
- - Add version parameter in cluster runner cmd lines ([bd909bc0](https://github.com/underpostnet/engine/commit/bd909bc046f77f5c36d601116d2f94291ca6aa0a))
117
- - Handle multi-recipient keys in sops runners ([92ecdc15](https://github.com/underpostnet/engine/commit/92ecdc1518d645faa913d0897288a5f6e27e075d))
118
- - Trim ipfs expose to core host ports ([dc473d4f](https://github.com/underpostnet/engine/commit/dc473d4faa1221f0102ce88ee6fff866941d0f3b))
119
- - Add sops setup and status runners ([a29fd394](https://github.com/underpostnet/engine/commit/a29fd3947637ca64398040deaea30d0fab624263))
120
- - Fix sub path handling probes in get-traffic runner ([b65d0fe4](https://github.com/underpostnet/engine/commit/b65d0fe4e73b370a627efbb8b2e23386deff7f74))
121
- - Add restore mongo statefulset runner ([e9e1b224](https://github.com/underpostnet/engine/commit/e9e1b224b964a713f5d6aedbf05d11b41e15a98c))
122
- - In get-traffic runner retains every configured host row matching the input ([a1654225](https://github.com/underpostnet/engine/commit/a16542254c92f9d1564a9a817b990ecbe061459d))
123
- - Rework get-traffic runner with CURRENT and OPPOSITE color state deployment ([34e4a723](https://github.com/underpostnet/engine/commit/34e4a7234784dec5ac6af20bd785a830f9f238bf))
124
- - Rework expose runner to port list options ([b6fe9cfe](https://github.com/underpostnet/engine/commit/b6fe9cfe46e07cf8776157e66d6006341902b616))
125
- - Add status and expose runners ([0d383e7d](https://github.com/underpostnet/engine/commit/0d383e7d9a6bdbc062060635c279821e559a6473))
126
- - Drop redundant rollout restart after node-move patch ([b5399b13](https://github.com/underpostnet/engine/commit/b5399b1342b6c3932b065eb4d6c6b01f7f361e10))
127
- - Load project instance env builder by convention ([8b226d07](https://github.com/underpostnet/engine/commit/8b226d07367e1f5e7a93ffc3ced17c0ebd953f99))
128
- - Route instances through stable traffic Service ([65c674e0](https://github.com/underpostnet/engine/commit/65c674e05c280bba50e6ab6c6bfdda0480e72d67))
129
- - Refactor stop runner logic introduce stopPlanFactory method ([aa972f12](https://github.com/underpostnet/engine/commit/aa972f12008ceb49e3ee3cd053f47b525c344fbd))
130
- - Remove direct ssh remote runners ([79ecee89](https://github.com/underpostnet/engine/commit/79ecee8926e4ccf63f1d8a8fc023e359e750072f))
131
- - Integrate underpost gateway into run ([ce02c328](https://github.com/underpostnet/engine/commit/ce02c3282721f02d89e6af76380ace95a8bfa424))
132
- - Add Gateway API HTTPRoute rules for instance runners ([c85c48e4](https://github.com/underpostnet/engine/commit/c85c48e434c65437bb9704a019c4945c1620e317))
133
-
134
- ### test-secrets
135
-
136
- - Fix rotate and apply manifest test workflow ([5f0be40c](https://github.com/underpostnet/engine/commit/5f0be40c51440bf6496a7da66a5d9edb78d6de0d))
137
-
138
- ### hardhat
139
-
140
- - Update transitive dependencies ([59f18f31](https://github.com/underpostnet/engine/commit/59f18f31bd2490904c4ead85ca8a0dd9d50d1459))
141
-
142
- ### engine-cyberia
143
-
144
- - Implement storageSlots capability workload in fallback world ([c6bceef0](https://github.com/underpostnet/engine/commit/c6bceef0b6d8c4d64e8f02f87ed2fb20abf3e287))
145
- - Implement storageSlots capability workload in fallback world ([e5f4d1c9](https://github.com/underpostnet/engine/commit/e5f4d1c9a979f87d53cbc9c7ddef4dd2d6e747e3))
146
- - Add assembler craft recipes to cyberia action system ([c5072452](https://github.com/underpostnet/engine/commit/c5072452309a51882283568650098eebf87620ff))
147
- - Add vendor shop catalog to cyberia action system ([748533a0](https://github.com/underpostnet/engine/commit/748533a0c68e57c25f9f9c5844fc27f545c2cae6))
148
- - Preserve variant base path through ingress ([3daa9a18](https://github.com/underpostnet/engine/commit/3daa9a18190f41bef20b9a590b04ae51f150a7fc))
149
- - Normalize instance topology and dispatch env builders ([cd0309ae](https://github.com/underpostnet/engine/commit/cd0309ae425c59c957eed5357cabdbc27ad3ffe6))
150
- - Refactor gateway static to underpost gateway ([9f35a007](https://github.com/underpostnet/engine/commit/9f35a007d5cf444f4d84c7eccf446d46b4208e0f))
151
- - Fix minor besu genesis generator update ([6680d5a1](https://github.com/underpostnet/engine/commit/6680d5a16b9936c6995812b3b9f99415d72636c0))
152
- - Fix sum stat response in fall back world static instance map endpoint ([84ea1e4c](https://github.com/underpostnet/engine/commit/84ea1e4ca39bf8046736703951857ba3f91b6965))
153
- - Add seeded random source for deterministic fallback world generation ([74741187](https://github.com/underpostnet/engine/commit/7474118721a446a53077a2a4aa243eefc95abb96))
154
-
155
- ### dependencies
156
-
157
- - Update transitive dependencies ([9c12f8fd](https://github.com/underpostnet/engine/commit/9c12f8fde0739131fa9dc42ccf142e7351ab4295))
158
-
159
- ### github-actions
160
-
161
- - Set dd-cyberia env before build manifest ([3ec1c8e4](https://github.com/underpostnet/engine/commit/3ec1c8e46bca4d31097f7d80b62c7276ef5974bd))
162
- - Update build and deployment manifests ([b8aad935](https://github.com/underpostnet/engine/commit/b8aad9359dafaf0c6aea08b6e9925e3b0425592f))
163
- - Wait for underpost-gateway rollout ([57fc7c22](https://github.com/underpostnet/engine/commit/57fc7c22ff1bbc4f45f042e11d86d73348746915))
164
- - Update engine-test CD deploy workflow ([712cc9e1](https://github.com/underpostnet/engine/commit/712cc9e17a581ed20a27923b169405824f05e759))
165
- - Update build and deployment manifests ([14965333](https://github.com/underpostnet/engine/commit/149653332980e66ab8d49f9bc496f5b32f89c211))
166
- - Update engine-cyberia docker-compose build and deployment manifests ([8dcb10ab](https://github.com/underpostnet/engine/commit/8dcb10ab22c7942d51fa6b94d5a1d09b62fc1930))
167
- - Update engine-cyberia docker-compose build and deployment manifests ([1cf4f753](https://github.com/underpostnet/engine/commit/1cf4f753f899fa995b5b25aba74792f39da6055f))
168
- - Update build and deployment manifests ([ba4f4a17](https://github.com/underpostnet/engine/commit/ba4f4a17321771873f04f2782ff43bce9811bd9e))
169
- - Update build and deployment manifests ([9874b895](https://github.com/underpostnet/engine/commit/9874b895df5f4904b6b5ab6c016a6f8487e24ef9))
170
- - Update build and deployment manifests ([c3a4ec9f](https://github.com/underpostnet/engine/commit/c3a4ec9f154be351d4fffec78d31f55b8119ba94))
171
- - Update build and deployment manifests ([a8bdbf05](https://github.com/underpostnet/engine/commit/a8bdbf0503e437237750bb1257c50aca9b92bfe5))
172
- - Update engine-cyberia CD add prebuild manifest workflow ([a1f4954f](https://github.com/underpostnet/engine/commit/a1f4954f7accfdcf354afcf2c602960bedeca1c5))
173
- - Fix 404 page location in cyber ua-client docker image workflow ([b52bdf89](https://github.com/underpostnet/engine/commit/b52bdf89e50597bb03f325e6f1bec127005af406))
174
- - Disable publish branch and sha docker images versions ([12a37a46](https://github.com/underpostnet/engine/commit/12a37a468a39083e07c13406d1882905eb3d05da))
175
-
176
- ### test
177
-
178
- - Cover store adoption and recipient registration ([e570d647](https://github.com/underpostnet/engine/commit/e570d6472c2f9e87613d109bc88ddabb2acefd38))
179
- - Cover sops encrypted secret store ([7c41910b](https://github.com/underpostnet/engine/commit/7c41910bd48d4ddbee5ff1698fd678e9c03f0606))
180
- - Cover expose and curl status chain ([c19471ae](https://github.com/underpostnet/engine/commit/c19471ae2dc3c38df89a911708679ed12cb13812))
181
- - Add deployment node placement tests ([390e0aa7](https://github.com/underpostnet/engine/commit/390e0aa7d0b05e4410d7c62da2990bac3546bb29))
182
- - Fix test/cluster-instances.test.js ([481740db](https://github.com/underpostnet/engine/commit/481740db8cd24108bc4a599180626d8e3f23c118))
183
- - Remove buildCyberiaMmoInstanceEnv tests in test/cluster-instances.test.js ([46afd8ae](https://github.com/underpostnet/engine/commit/46afd8aed83a023cbc8e3153d7123aee748079e9))
184
-
185
- ### docs
186
-
187
- - Document joining a store created on another host ([25a85b6c](https://github.com/underpostnet/engine/commit/25a85b6cee4b04dec73016782f61ba9ab7d84e49))
188
- - Document shop transaction flow in action system ([7091a506](https://github.com/underpostnet/engine/commit/7091a506a644f7c1a8c0a62526ced91ed568af0c))
189
- - Document sops age secret management ([6b538a2f](https://github.com/underpostnet/engine/commit/6b538a2f6241f47a1ff2e039e8593bddc3328216))
190
- - Document expose port list examples ([f9ba1808](https://github.com/underpostnet/engine/commit/f9ba18083ebd013fa83ef660e5150dbd9934ff03))
191
- - Document run status and expose runners ([bf9a83b4](https://github.com/underpostnet/engine/commit/bf9a83b423834ed7647b5d84ff2bee53b55cd66e))
192
- - Update node-move mechanics for template patch rollout ([fb8d36f8](https://github.com/underpostnet/engine/commit/fb8d36f8974c9f5079a3cce373e0634dbc3bf0e4))
193
-
194
- ### cli-secret
195
-
196
- - Add store adoption pre-flight and recipient registration ([2d634dbb](https://github.com/underpostnet/engine/commit/2d634dbbb503ec00db3df61a1925a888b8c83288))
197
- - Add managed secrets and repair creation rules ([4661114a](https://github.com/underpostnet/engine/commit/4661114a03836074ab3cad51559b660a88a55290))
198
- - Add sops age encrypted secret store ([8de77fdd](https://github.com/underpostnet/engine/commit/8de77fdd6b2e82fcbeabcedba9305bb15f881418))
199
-
200
- ### server-conf
201
-
202
- - Derive remote ports from host ports in expose plan ([45bec1ad](https://github.com/underpostnet/engine/commit/45bec1ad9735794ad57c672a43e76ac2fc9861d2))
203
- - Add replica count and secure password factories ([83320d06](https://github.com/underpostnet/engine/commit/83320d061b192dc883ab8b6ccadd171989c9659e))
204
- - Add expose port list and plan factories ([928ad835](https://github.com/underpostnet/engine/commit/928ad8350426a93d0d8c84f0eee7b8730a538d97))
205
- - Add curl status chain factory ([dfeef123](https://github.com/underpostnet/engine/commit/dfeef123b33253205c70f0a437323179e590a229))
206
- - Support idempotent hosts blocks in etcHostFactory ([aa45f40a](https://github.com/underpostnet/engine/commit/aa45f40ace07b6508e0f7a09f2de4ba8a82b3bb9))
207
-
208
- ### ipfs
209
-
210
- - Prefer sops store for cluster credentials ([62f40264](https://github.com/underpostnet/engine/commit/62f402649454e5fbb049dde070a3f392d55b1963))
211
-
212
- ### engine
213
-
214
- - Generate per-replica mongo volumes with static storage class ([703b8bba](https://github.com/underpostnet/engine/commit/703b8bbacc16c73d0fb96586ea71406d8c723afb))
215
-
216
- ### cli-cluster
217
-
218
- - Prefer sops store in cluster secret seeding ([7be50059](https://github.com/underpostnet/engine/commit/7be50059a724b5fad9cb600cf540e69141dd30da))
219
- - Hot-reload shared ingress host table ([d6328a5e](https://github.com/underpostnet/engine/commit/d6328a5e06237232f492777eca680cf8afd839f7))
220
- - Add shared underpost ingress front for dual ingress stacks ([041debe9](https://github.com/underpostnet/engine/commit/041debe99e0082412798960ec0be3be3229144c2))
221
- - Update Gateway API versions and integrate underpost gateway ([12eefb86](https://github.com/underpostnet/engine/commit/12eefb86e6434da8b55a16ffeb28ac267fe62d05))
222
- - Add Gateway API control plane and CRI socket resolution ([97565eea](https://github.com/underpostnet/engine/commit/97565eea7d4bab91838321a3a96cd058d8496249))
223
-
224
- ### underpost-gateway
225
-
226
- - Fix path replicas handling in deploy pwa workfloads ([702f48e4](https://github.com/underpostnet/engine/commit/702f48e4b04c1a9b4458361ed0d33f0b72815c08))
227
- - Validate and rollback gateway config on reload failure ([4f7ce879](https://github.com/underpostnet/engine/commit/4f7ce8795ef2a46a47bd6d0f49fd0a941cadcca8))
228
-
229
- ### cli-deploy
230
-
231
- - Add resolveSchedulableNode method ([c62ee86d](https://github.com/underpostnet/engine/commit/c62ee86d024e9797f279396d647431a97a399f50))
232
- - Fix merged Gateway listener isolation ([a34f0b93](https://github.com/underpostnet/engine/commit/a34f0b9363a7b16f7d1bf704f27617f7411f2087))
233
- - Remove expose and status options ([e55227eb](https://github.com/underpostnet/engine/commit/e55227eb0ce75fd308cd72a0f3331a62a08ae0ab))
234
- - Add node placement to deployment manifest ([9487ad16](https://github.com/underpostnet/engine/commit/9487ad169e79c1ed4c2d1eb05b1e36ff46defe8d))
235
- - Add stable traffic Service for blue/green routing ([838d1ec0](https://github.com/underpostnet/engine/commit/838d1ec0c1d9d2d9ff35c529180593efcf341203))
236
- - Fall back to other ingress stack for traffic colour ([3115cc84](https://github.com/underpostnet/engine/commit/3115cc84b02aa091927b25ae09de41879bf012d3))
237
- - Fix deploy status workflow logic ([35e1af02](https://github.com/underpostnet/engine/commit/35e1af02484e9d6abeb6f031b33589534fe77665))
238
- - Integrate underpost gateway into deploy ([e95a46d6](https://github.com/underpostnet/engine/commit/e95a46d64897fc92ba2fbb3b5da07c51a0abb729))
239
- - Add gateway.yaml and httproute.yaml to build manifest mirror ([afb7bcf9](https://github.com/underpostnet/engine/commit/afb7bcf9d8a902d744d6030c72c07d1814f45940))
240
- - Add Gateway API deploy manifests and gateway static utility ([073231ca](https://github.com/underpostnet/engine/commit/073231ca5a44b860420373035628ad22cc0435d8))
241
-
242
- ### scripts
243
-
244
- - Use run expose in test monitor ([b19c4931](https://github.com/underpostnet/engine/commit/b19c49318728b92a8fcf6f7e50e90b5b0e808b0d))
245
- - Add firewall UDP range for QUIC/HTTP3 to nat-iptables ([3bdacec3](https://github.com/underpostnet/engine/commit/3bdacec350caa1776b418ac44dd3b1e95e259196))
246
-
247
- ### cli
248
-
249
- - Update run and deploy option flags ([0dfb9ce6](https://github.com/underpostnet/engine/commit/0dfb9ce6cbfef8f5d990a6fa8287902de20500f2))
250
-
251
- ### underpost-ingress
252
-
253
- - Add multi node work load handling ([3dccb3de](https://github.com/underpostnet/engine/commit/3dccb3de3c9a795096613adcca56389c71291c8b))
254
-
255
- ### cli-cyberia
256
-
257
- - Add testPaths in dev-env runner ([b087f4af](https://github.com/underpostnet/engine/commit/b087f4afd226a2fefd0cb344a60ac3b945073a40))
258
- - Install Docker host aliases in compose workflows ([a9fb7507](https://github.com/underpostnet/engine/commit/a9fb750709a4e94f9dd299ff7b62784bb728ad2a))
259
-
260
- ### docker-compose
261
-
262
- - Implement project-agnostic docker-compose workflow ([e0d07689](https://github.com/underpostnet/engine/commit/e0d07689ceb9cf34a930c5f4120d8d5ab05f6ae8))
263
- - Update subpath handling logic ([69fb72fc](https://github.com/underpostnet/engine/commit/69fb72fcb7f7ac87f67f71314d0580ec6a8052f8))
264
-
265
- ### bin-deploy
266
-
267
- - Fix add --ignore-not-found in 'pw-conf' runner ([2f14d2ab](https://github.com/underpostnet/engine/commit/2f14d2ab66357eb032266487e2dee5b614d1b697))
268
-
269
- ### cyberia-docs
270
-
271
- - Update docs for gateway and CLI changes ([c064f82a](https://github.com/underpostnet/engine/commit/c064f82ad3c315fec5ad7cbdd322d577bc311abf))
272
- - Document edge tier architecture and CLI updates ([72760e40](https://github.com/underpostnet/engine/commit/72760e40eb9ea96999b94b5c7d916a21c04ac8ef))
273
-
274
- ### cyberia-cli
275
-
276
- - Refactor SSH port wait to shared utility ([cdf4c4f9](https://github.com/underpostnet/engine/commit/cdf4c4f922ee7980cf43111db1ef1c81578ad2a3))
277
- - Add status page build and instance project resolution ([b1b0a840](https://github.com/underpostnet/engine/commit/b1b0a840e5cd7f7edf084bf86323dfdee7d56fd7))
278
- - Fix SSR html views locations path ([1bf2843c](https://github.com/underpostnet/engine/commit/1bf2843c87607e5b9648f8ec98b35efca5d79b4a))
279
- - Remove redundant logs ([3adba85f](https://github.com/underpostnet/engine/commit/3adba85fe5199972a8a0cd49f6be005c989f2145))
280
-
281
- ### cli-image
282
-
283
- - Implement crictlCommandFactory in image build ([69d24d66](https://github.com/underpostnet/engine/commit/69d24d66848fc27a2503193f82a31ef84435252f))
284
-
285
- ### db
286
-
287
- - Fix MongoDB replica set orphan recovery and improve bootstrap ([71b5f1a3](https://github.com/underpostnet/engine/commit/71b5f1a3e032f34c29a9a6b9251aac328c951872))
288
-
289
- ### cyberia-client
290
-
291
- - Fix instance selection play URL for default instance code ([efec4a34](https://github.com/underpostnet/engine/commit/efec4a34edbfb3aae780a42b02ad64d4d93791a1))
292
-
293
- ## New release v:3.2.80 (2026-07-23)
294
-
295
- ### engine-cyberia
296
-
297
- - Implement dynamically build cyberia instance package.json full reference ([4127836f](https://github.com/underpostnet/engine/commit/4127836f0f2cf2d74f1762fb1379921b283c3429))
298
- - Fix missing add cyberia dependency in engine-cyberia docker image ([b3d6c4de](https://github.com/underpostnet/engine/commit/b3d6c4decc23b72ede1958cd158a82a356f10b70))
299
- - Fix dynamic build instance codes logic ([cb380b33](https://github.com/underpostnet/engine/commit/cb380b3354eaa720ee225c66e17270737616f081))
300
- - Refactor INSTANCE_CODES Dynamic build inputs access docker image workflows ([bf1cb6c7](https://github.com/underpostnet/engine/commit/bf1cb6c7466415982b34176b70050622a6681acf))
301
- - Add map preview PNG rendering and preview route in instance map API ([82150a18](https://github.com/underpostnet/engine/commit/82150a18ad627f29425cb60aaa08850762f18f69))
302
- - Add multi-instance code support in Dockerfiles with saga copying ([6b902ba8](https://github.com/underpostnet/engine/commit/6b902ba860b235d00b0b69244f9f25c6f589d128))
303
- - Add multi-instance topology and per-variant compose routing ([4336c024](https://github.com/underpostnet/engine/commit/4336c024cb3f98e394cc06f5bab038a93d9b3e4b))
304
- - Add hot reload endpoint and map preview route ([3c765891](https://github.com/underpostnet/engine/commit/3c76589115d907a74d42081c753fd7f3bf5be946))
305
- - Add map preview caching for fallback world nodes ([55052ec5](https://github.com/underpostnet/engine/commit/55052ec54119ccb06366dae712f23cd503de91f0))
306
- - Fix demo quests with actions quest related ([c41feae1](https://github.com/underpostnet/engine/commit/c41feae1a408b7b9ec56abdd29978b0177c44dfa))
307
- - Add REST boot fallback endpoints for gRPC CyberiaDataService ([57b69883](https://github.com/underpostnet/engine/commit/57b6988369a0492c18c2df3155630af5a2e8fbb6))
308
- - Add portalSubtype field and refactor instance map with presence POI system ([fa551a11](https://github.com/underpostnet/engine/commit/fa551a11dba7cedf18f1cca1bcdb0c11d7a1b57f))
309
- - Add map preview for Instance Map node backgrounds ([849095cf](https://github.com/underpostnet/engine/commit/849095cf21fc52e7666be102054b7abfd3b7e738))
310
- - Add instance map REST endpoints (static graph + dynamic provider activity) ([dc83f8dc](https://github.com/underpostnet/engine/commit/dc83f8dc03a1ed4aeea606bc3b2aed746cc09336))
311
- - Update cyberia base lore and introduce Fragmentation concept and refactor weakness narrative of nova faction ([823d69cc](https://github.com/underpostnet/engine/commit/823d69cc99fb410e5d4a7161baeff28b4f9f6684))
312
- - Add more demo quests to fallback world ([d0de569b](https://github.com/underpostnet/engine/commit/d0de569bd2ab987ff7881263f80ab8953ef4f241))
313
- - Increase portalHoldTimeMs default value ([5d802812](https://github.com/underpostnet/engine/commit/5d802812012c53942f699763dba24948865f4936))
314
-
315
- ### cli-release
316
-
317
- - Add cyberia docker-compose bump version file match ([f3eeefee](https://github.com/underpostnet/engine/commit/f3eeefeeabe377fe4c5db65e1d2d480841f9d2cd))
318
-
319
- ### cyberia-client
320
-
321
- - Add instance selection view and portal navigation ([9f8ebc5d](https://github.com/underpostnet/engine/commit/9f8ebc5d147225e0710923392f9b659e20725e60))
322
- - Improve cyberia portal landing ([57dbaed2](https://github.com/underpostnet/engine/commit/57dbaed228b2ae58202729b6ac9d751c0405a93f))
323
- - Add Instance sub-path dashboard prefix handle ([958f6592](https://github.com/underpostnet/engine/commit/958f65929a42084c0d4cf3876d3a4fef1fdc7236))
324
- - Add hot reload UI in instance editor ([ee90a201](https://github.com/underpostnet/engine/commit/ee90a20180fa8c88f249f3efec0a7fb6258f9e5f))
325
- - Replace stat icons with PNG images in object layer engine ([7f03972e](https://github.com/underpostnet/engine/commit/7f03972efcae0ce99493cf65ed96333a59616320))
326
- - Add center action button to menu modal ([f70ba2d3](https://github.com/underpostnet/engine/commit/f70ba2d3cb8022f3f2873f0c36fe1cd792dd29d2))
327
- - Update default fontFamily in SharedDefaultsCyberia module ([868dffa9](https://github.com/underpostnet/engine/commit/868dffa9f8effb15f694cb8e3f5dd135410243dc))
328
-
329
- ### cyberia-api
330
-
331
- - Add fallback TEST world to instance selection list ([b93f3058](https://github.com/underpostnet/engine/commit/b93f3058694eafc384ac5b50d24093f4a30f6f00))
332
-
333
- ### github-actions
334
-
335
- - Fix cyberia github package publish workflow ([fc1bac41](https://github.com/underpostnet/engine/commit/fc1bac41daf1029962b71d45e73d32780c3b45a5))
336
- - Fix cyberia-client 404 page build ([a55bcb79](https://github.com/underpostnet/engine/commit/a55bcb797166ecb6d93ccb0ac6814b7b31c6138e))
337
- - Update engine-cyberia.cd.yml clean assets directory ([ce365cf7](https://github.com/underpostnet/engine/commit/ce365cf77c325a69df1d3614332f9f584c6cd0e3))
338
- - Update engine-cyberia CD workflow add pull storage assets ([0ee2404f](https://github.com/underpostnet/engine/commit/0ee2404f1506ce8f4221602b3c73b4a704a1a44d))
339
- - Fix npm install command in engine-cyberia CD workflow ([7974ab42](https://github.com/underpostnet/engine/commit/7974ab422d64c482a53a745a834b58b3e623d85d))
340
- - Add image-pull-policy Always in cyberia-server and cyberia-client CD pipeline ([a134c5be](https://github.com/underpostnet/engine/commit/a134c5be23b067e9fcc7ed8589243d341ca9607a))
341
- - Set default variant of underpost engine docker image in release workflow ([f3e47bdc](https://github.com/underpostnet/engine/commit/f3e47bdc660d1074ab04a48a769e9cbf512eb4f8))
342
-
343
- ### cli-cyberia
344
-
345
- - Add multi-instance sub-path support to hot reload trigger ([f0e0fda7](https://github.com/underpostnet/engine/commit/f0e0fda7aa23e38466024c0258a17e94386fab9c))
346
- - Add build-cyberia-404 workflow and 404 page ([51d35594](https://github.com/underpostnet/engine/commit/51d35594f76e15b4385084d3b7a1d696b0faaf8d))
347
- - Add Dynamically resolve instance codes in build-manifest runner ([97997df1](https://github.com/underpostnet/engine/commit/97997df14d16ff485fd30001a54f99cc9227b69b))
348
- - Refactor multi-instance conf structure and respective workflows ([0e607e4c](https://github.com/underpostnet/engine/commit/0e607e4c5d269fb1048b0ab510e2a90174c4520b))
349
- - Add --reset option to dev-env runner ([77f17140](https://github.com/underpostnet/engine/commit/77f17140c7399470d700126fd0d5ccd583fa8323))
350
- - Add revert option and multi-instance publish support with default-items asset copy ([0913117a](https://github.com/underpostnet/engine/commit/0913117af06d034387c5958bf73c0e652316e94e))
351
- - Add UNDERPOST_DEPLOY_NODE env for deterministic deploy node resolution ([41bb08ff](https://github.com/underpostnet/engine/commit/41bb08ffb1e75721962ae2c69414e7adb5266c46))
352
- - Add in import-default-items runner import FOREST dev instance ([d3bf87a1](https://github.com/underpostnet/engine/commit/d3bf87a1f72ee97b9cc67bc131a21e9169f7eb11))
353
-
354
- ### client-cyberia
355
-
356
- - Redesign server metrics dashboard with pixel-art assets and theme toggle ([56378309](https://github.com/underpostnet/engine/commit/5637830934d1f684c04eddbed2eb01030f3ae28b))
357
- - Update location href of enter button in landing cyberia portal ([1c9efd55](https://github.com/underpostnet/engine/commit/1c9efd5505a161c2de83b77dac16f6a81065263a))
358
- - Improve cyberia portal landing with new hero section ([024d76b6](https://github.com/underpostnet/engine/commit/024d76b62faee3f04d70c4d303ac486697e40876))
359
-
360
- ### cli-run
361
-
362
- - Fix instance promote handle multi variant paths ([c23e7502](https://github.com/underpostnet/engine/commit/c23e75021d4bbf6e24cdb45102b344743712b3a6))
363
- - Add flag 'branch' in default runner options ([4e7a63df](https://github.com/underpostnet/engine/commit/4e7a63dfbb8c492e31e53bafbb23586a46aa59ad))
364
-
365
- ### cli-repository
366
-
367
- - Add init local repo in cmt cli ([0255eb05](https://github.com/underpostnet/engine/commit/0255eb05354edd33741721311f012b339351370b))
368
-
369
- ### cli-deploy
370
-
371
- - Fix multi-instance blue/green deployment build manifests ([99a9b526](https://github.com/underpostnet/engine/commit/99a9b5265257856a6df2ed2d9425ddaba834d8bf))
372
-
373
- ### cli-fs
374
-
375
- - Remove redundant logs ([23761d60](https://github.com/underpostnet/engine/commit/23761d607bbc62a1d6a892faa66a448496ece8d7))
376
-
377
- ### hardhat
378
-
379
- - Update supply-chain dependency: overrides adm-zip to version 0.6.0 ([fe5d9899](https://github.com/underpostnet/engine/commit/fe5d989964e768911d0c2eaa62d8d918f5421025))
380
-
381
- ### cyberia-docs
382
-
383
- - Document OFF-CHAIN economy players + bots, any victim loot ([dbc4efa3](https://github.com/underpostnet/engine/commit/dbc4efa365c0e61b6dff32dd00ee5593aa064968))
384
- - Document path-based multi-instance deployments ([b028657f](https://github.com/underpostnet/engine/commit/b028657f4c79280d53674e034e396e44e9d8eae4))
385
- - Document REST boot fallback and gRPC transport refactor ([a4b8006c](https://github.com/underpostnet/engine/commit/a4b8006cc3240f65ff22fff8b089277032c21add))
386
- - Update docs to reflect presence POI architecture and instance map changes ([140568b8](https://github.com/underpostnet/engine/commit/140568b808f32a83037841cbe741c18af2b0b743))
387
- - Document instance map API, data flow and client overlay integration ([a8f7c8ea](https://github.com/underpostnet/engine/commit/a8f7c8ea58848b92cbe9ce0febb3a8bcc9692524))
388
- - Update Off chain economy concepts from transfer to loot drop race ([e93cafc8](https://github.com/underpostnet/engine/commit/e93cafc836d58148d4439126a650a20e7ff5d5ce))
389
-
390
- ### client
391
-
392
- - Fix slide menu title style in dark/light themes ([22c1224d](https://github.com/underpostnet/engine/commit/22c1224d5b4d50ad466c2988bb2c5e6cd7c30860))
393
- - FIx center action button to menu modal ([94d6940e](https://github.com/underpostnet/engine/commit/94d6940ed5d9e7eff72c039f6e22cc64e47d1a90))
394
-
395
- ### cyberia-saga
396
-
397
- - Add persistInstance helper for saga instance persistence ([3f124c8b](https://github.com/underpostnet/engine/commit/3f124c8b57f6a4f75051cfa9771c38cf9989aa75))
398
-
399
- ### cyberia-cli
400
-
401
- - Migrate IPFS registry to mfsPath unique key ([e15cfda5](https://github.com/underpostnet/engine/commit/e15cfda511c674a4c0f8e77901f7df4d59a6e50d))
402
- - Add clean option in import default items in runner ([9cca28ab](https://github.com/underpostnet/engine/commit/9cca28ab93178cf2ee06f4d5e7b199a612f9e360))
403
- - Improve import default items add base saga collection ingestion ([ffe82242](https://github.com/underpostnet/engine/commit/ffe822423c60ce3c103d533be00200ae9a406aa2))
404
- - Add publish cross repositories push operation workflow ([69e39292](https://github.com/underpostnet/engine/commit/69e39292e614d577eae4ad8362e8ec80e1282b9a))
405
- - Fix build-manifest copy docker-compose related files ([b3e252fc](https://github.com/underpostnet/engine/commit/b3e252fc7d61c2b91f65a199351a32dfb05d87ff))
406
-
407
- ### ci
408
-
409
- - Add latest tag to Docker image build and push workflows ([36dc44fc](https://github.com/underpostnet/engine/commit/36dc44fc304eafcd67ad4b2743c2c3254b72b9a0))
410
-
411
- ### grpc-cyberia
412
-
413
- - Refactor gRPC server to delegate world-load to shared instance-data module ([74057799](https://github.com/underpostnet/engine/commit/7405779948cbd82383efb18efc928fc10ba0341e))
414
- - Fix itemsId load in fallback world to ensure based in Own-model collections (CyberiaSkill, CyberiaEntityTypeDefault) ([ca4ffbb9](https://github.com/underpostnet/engine/commit/ca4ffbb956cb1e6f19601e35c3ceee8ca71ab49b))
415
-
416
- ### api
417
-
418
- - Centralize Express middleware and controller/router helpers for engine APIs in src/server/middlewares.js ([1dda3de9](https://github.com/underpostnet/engine/commit/1dda3de9ddd016acbe5f33d239d0a547445cf6c6))
419
-
420
- ### dependencies
421
-
422
- - Update typescript version for compatibility with typedocs ([433b6820](https://github.com/underpostnet/engine/commit/433b6820757cce0c8eadb4cca3b64425cdfa9c05))
423
-
424
- ### docs
425
-
426
- - Update README.md Rocky badge to v9.8 ([f7f31a1a](https://github.com/underpostnet/engine/commit/f7f31a1aa9257db338c02d2a57d718136216b5f1))
427
-
428
- ### cluster
429
-
430
- - Fix Helm installation in node bin cluster init host workflow ([f7e141c7](https://github.com/underpostnet/engine/commit/f7e141c71d2c6284cb798a985c1f318e77b5293e))
431
-
432
- ## New release v:3.2.70 (2026-07-06)
433
-
434
- ### release
435
-
436
- - Enhance buildVersionBumpTargets patterns scope ([510abdd9](https://github.com/underpostnet/engine/commit/510abdd94faaa121b7f81a21450beba484de654b))
437
-
438
- ### cli-repository
439
-
440
- - Add default branch resolution ([c5074d31](https://github.com/underpostnet/engine/commit/c5074d31cac7046280d24d12e30a87ad2db86285))
441
- - FIx commit message propagation in CI engines workflows ([4b5458d8](https://github.com/underpostnet/engine/commit/4b5458d834efa88a1cf81ae32d517a71a4bb58f2))
442
- - Add runtimeRepo logic in resolveInstanceRepo method ([1ef3ad27](https://github.com/underpostnet/engine/commit/1ef3ad27908989f3ab7f620500257b6e9ff76f4b))
443
-
444
- ### github-actions
445
-
446
- - Clean comments ([785e9d55](https://github.com/underpostnet/engine/commit/785e9d55d27351ad4d529e38f60d3962f9439fee))
447
- - Fix typo engine cyberia cd cmd command, and clean comments in cyberia-engine related dockerfiles ([d93dbf54](https://github.com/underpostnet/engine/commit/d93dbf54a2ec44e1c1b4c01abd21e1baa0cf7fbc))
448
- - Fix add missing install dependencies in cyberia github package workflow ([8897dcdb](https://github.com/underpostnet/engine/commit/8897dcdbbea619687165438f3ac64702480f4d23))
449
- - Add cyberia cli github package workflow ([6ae0ac5f](https://github.com/underpostnet/engine/commit/6ae0ac5f76c08643171b4b3853c874ed26b423c1))
450
- - Add cyberia-server and cyberia-client CD workflows ([c92a6c27](https://github.com/underpostnet/engine/commit/c92a6c27810738c2c6a87962c6fefaf98060cb70))
451
- - Fix engine-cyberia CD and engine-prototype CI manifests workflows ([3ca123db](https://github.com/underpostnet/engine/commit/3ca123dbf9d4d0cfbc1d504e6b0c847abd2f8757))
452
- - Add single source of truth for the underpost image version in ci dockerhub workflows ([97585e73](https://github.com/underpostnet/engine/commit/97585e735c1cd48c80e8c7af8601e14a79e233fd))
453
- - Update engine-cyberia default deployment node ([b181a5bd](https://github.com/underpostnet/engine/commit/b181a5bd5254d2a692579c9c7d188161ae351e59))
454
-
455
- ### engine-cyberia
456
-
457
- - Add sudo in engine-cyberia runtime dockerfiles ([3c3da0fc](https://github.com/underpostnet/engine/commit/3c3da0fccc5b91c01722d3224146ae37ebcc6a27))
458
- - Update production engine-cyberia Dockerfile ([e1a9330e](https://github.com/underpostnet/engine/commit/e1a9330e9c3325a8a1ee41318bbe48714deaf3a2))
459
- - Refactor Dockerfile and deployment configurations for production and development environments ([4901a3f9](https://github.com/underpostnet/engine/commit/4901a3f925ce038ede03b5e08c6b06eb03bc1617))
460
- - Refactor separate engine-cybera public engine URL from internal cyberia-server api engine base url endpoint ([48923d90](https://github.com/underpostnet/engine/commit/48923d90062dc934228c049a33f619dcdacd5cbc))
461
- - Add in runtime engine-cyberia module docker-compose env file related ([ae30329d](https://github.com/underpostnet/engine/commit/ae30329d4e80d4911c3129ad042c623f74110462))
462
- - Add centralized node version arg and update to v24.15.0 id dockerfiles related ([64a649a1](https://github.com/underpostnet/engine/commit/64a649a1b29a941b10d91879207e8a7ff76f48a2))
463
- - Update Dockerfile.dev use canonical repository ([12e43912](https://github.com/underpostnet/engine/commit/12e4391225ee207dd5e3edff93af4cfe667982dd))
464
- - Add ipfs cluster service in cyberia docker-compose deployment ([8ee19a3f](https://github.com/underpostnet/engine/commit/8ee19a3fa5792ed800b03f45a0a677b0d6244450))
465
- - Move ffmpeg to runtime stage in docker-image build pipeline ([1fcca378](https://github.com/underpostnet/engine/commit/1fcca3783add20e42c3c80a14dfdf9a9ff2b08a9))
466
- - Add engine-cyberia runtime module, docker-compose cyberia mmo ecosystem, and docker-image engine-cyberia dockerhub pipeline ([df2162b7](https://github.com/underpostnet/engine/commit/df2162b7d755a814d36bd2da322c3e554496daa2))
467
- - Add behavior field, entity behavior vocabulary, and skill logic validation ([6ac9bcaf](https://github.com/underpostnet/engine/commit/6ac9bcaf5eede564ae80ce74498c91eb9a4e4b20))
468
- - Refactor entity-type-default to subset matching resolution ([bf0aa9fe](https://github.com/underpostnet/engine/commit/bf0aa9fe65523d0817d18b8796ce71b9be858955))
469
- - Add fontFamily+fontFactorSize; in RENDER_DEFAULTS and buildClientHints passthrough; client-hints model fields related logic ([34a1ee78](https://github.com/underpostnet/engine/commit/34a1ee78bf8eba5ed1ffca5bad3c92f5eef5c4fd))
470
- - Add transport status definition for portal entities ([4cf01589](https://github.com/underpostnet/engine/commit/4cf015892eaafd58e6d65f19c7aeeaec3eccfb5e))
471
- - Implement cyberia-entity-type-default model and EntityEngineCyberia and related logic ([96c8c94e](https://github.com/underpostnet/engine/commit/96c8c94ec4a0faf506232d3a1059e0c84f83edc6))
472
- - Add cyberia saga amethyst-strata-expansion custom resources ([6422570a](https://github.com/underpostnet/engine/commit/6422570ab33b686016bed5f338cbbf8a0395f285))
473
- - Refactor questCodes field in cyberia-saga model and add actionCodes references ([93ffb7f0](https://github.com/underpostnet/engine/commit/93ffb7f0bc8097769d3b9f3c4ffbf1c8359af18a))
474
- - Fix idempotency consistency in atlasSpriteSheetId ref in export / import instance pipeline ([05e62ebb](https://github.com/underpostnet/engine/commit/05e62ebbe0fc8284ee468b458818e19fc77298bb))
475
- - Add cyberia-saga documents in import / export cyberia instance pipelines ([e77583fc](https://github.com/underpostnet/engine/commit/e77583fc8b129a875270ef8d7e1c40d61ecc7a18))
476
- - Update CLI and saga documentation for skills ([1655a5c8](https://github.com/underpostnet/engine/commit/1655a5c877c712210cbe83a35848896cdc5e4125))
477
- - CLI seed-skills, import/export, and server defaults skill config ([b2215cce](https://github.com/underpostnet/engine/commit/b2215cce22c5499579a2df63db0ac301a0553feb))
478
- - Action engine skill editor with CyberiaSkill CRUD ([7a3f3b8d](https://github.com/underpostnet/engine/commit/7a3f3b8d71272eee9a3c4fb9218d9152b2023776))
479
- - Saga generator skills stage and instance persistence ([669d991c](https://github.com/underpostnet/engine/commit/669d991cac09dedf60b60c7261cb045cb7dd7f71))
480
- - Skill system - DefaultSkillConfig, gRPC server, CRUD API, and client service ([2e1997eb](https://github.com/underpostnet/engine/commit/2e1997ebceb03723ea7ffd15ea61d950a3723414))
481
- - Instance model itemIds schema with defaultPlayerInventory flag ([342df03c](https://github.com/underpostnet/engine/commit/342df03c3612cc82131b287e1f7545e3fcd7f9f8))
482
- - Add static entity type and shared direction/stat constants ([86ab2ffc](https://github.com/underpostnet/engine/commit/86ab2ffca38851ce870ee72c37221cbf260e5bd8))
483
-
484
- ### cli-fs
485
-
486
- - Isolate Git tracking from JSON storage ([2f9145be](https://github.com/underpostnet/engine/commit/2f9145be92456124118f9c7d74726bdff82dc5f3))
487
-
488
- ### cli-run
489
-
490
- - Add typedef UnderpostRunDefaultOptions in cli runner module ([8a358010](https://github.com/underpostnet/engine/commit/8a3580109d8f70a10c4ac2d216fbd35844e09541))
491
- - Add resolve runtimeRepo logic in ssh-deploy runner ([1d4c2600](https://github.com/underpostnet/engine/commit/1d4c26002ac513fcde86c8839445e2b82fd55e50))
492
- - Add generate sibling manifests (pv-pvc, proxy, grpc-service) in instance-build-manifest runner ([36bf33b4](https://github.com/underpostnet/engine/commit/36bf33b4b2ec34bac3925a4330b4eb5606cf8876))
493
- - Add dev mode in runner docker-image to trigger dev variant docker hub push ([bc1e23ac](https://github.com/underpostnet/engine/commit/bc1e23ac0ce5c705e3d2f7b3e47546e1e3c583bb))
494
- - Fix custom instance artifact generator add custom --trafic flag inteast ([d6873f3c](https://github.com/underpostnet/engine/commit/d6873f3c300d09f34cf5399f671b86ac5f4b8d55))
495
- - Add deploy key runner ([6164b019](https://github.com/underpostnet/engine/commit/6164b0190e59510bdd51bb60d3064ba3a9c32a7b))
496
- - Add kubernetes-sigs metrics server runner setup ([4761c635](https://github.com/underpostnet/engine/commit/4761c6351482fe27e84f47d4cf53946f8f04caa6))
497
-
498
- ### cyberia-cli
499
-
500
- - Add missing deployment manifests copy to build cyberia-instance dir ([ee71573e](https://github.com/underpostnet/engine/commit/ee71573eea0e979d883238744bee97714cf0b224))
501
- - Add publishing functionality for cyberia instances ([aaf8485b](https://github.com/underpostnet/engine/commit/aaf8485bfd003a39dec59760c5dd2b2ffb051f3d))
502
- - Add method to fill empty fields in Instance Conf Defaults export process ([6e1c268a](https://github.com/underpostnet/engine/commit/6e1c268ae755b240abdfcd60ff0f26d2c35a9fe3))
503
- - Add docker-compose-dev-env-up runner workflow ([9e765185](https://github.com/underpostnet/engine/commit/9e765185ad782f34cddddbc2862981416a830de4))
504
- - Add drop-db workflow to clear only cyberia collections ([5b741c22](https://github.com/underpostnet/engine/commit/5b741c22cda0cf7c9ee531903769d466826cf133))
505
- - Add sync-src to engine runner logic ([a777e5ad](https://github.com/underpostnet/engine/commit/a777e5ad69b1069eadb04846010a6d34508ce7c5))
506
- - Remove seed default dialogues in export instance logic ([1cbcb9e5](https://github.com/underpostnet/engine/commit/1cbcb9e52f1441ae10abb046bf356b49dd7fcfd2))
507
- - In cyberia instance export / import disabling overlaps queries for now because they can be very expensive and are not strictly necessary for a backup ([b7d7858d](https://github.com/underpostnet/engine/commit/b7d7858d619edb9feac968c6fce2ac99d5978d24))
508
-
509
- ### cyberia-api
510
-
511
- - Add moderator auth guard in cyberia api CRUD operations endpoints ([0373a052](https://github.com/underpostnet/engine/commit/0373a052f257577b7afec887d18c982938b8de02))
512
-
513
- ### client-cyberia
514
-
515
- - Add moderator guard for CRUD operations in cyberia components ([f746ea9c](https://github.com/underpostnet/engine/commit/f746ea9ced0a0dac113129fb26f2d7f6df763f26))
516
-
517
- ### cli-cyberia
518
-
519
- - Add cyberia run-workflow docker-image local tar builder runner ([a953dec8](https://github.com/underpostnet/engine/commit/a953dec8f108a4d53d9fde07fae7149f5f0e2dd4))
520
-
521
- ### cli-image
522
-
523
- - Add --import-tar flag option and logic ([5f00f64c](https://github.com/underpostnet/engine/commit/5f00f64c9b9c41b6c6220c09c42345f378caee90))
524
- - Refactor and simplifi image build logic, and add support to load local tar in docker-compose ([f8752325](https://github.com/underpostnet/engine/commit/f8752325363bde9f8d18cefb0b348e570c00d9f9))
525
-
526
- ### cluster
527
-
528
- - Enhance cluster and disk clean logic ([d9a079f7](https://github.com/underpostnet/engine/commit/d9a079f7de4add9d7b30c0493d367f620c837d7b))
529
-
530
- ### catalog
531
-
532
- - Add copies and moves options in catalog build logic ([b1940e06](https://github.com/underpostnet/engine/commit/b1940e067a9961581998e9adfd6ba39c62f35735))
533
-
534
- ### engine-prototype
535
-
536
- - Remove ssr prototype components from base engine ([4f3e04f4](https://github.com/underpostnet/engine/commit/4f3e04f4b5fcaca831139f4cdcd6ce871b50297d))
537
-
538
- ### grpc-cyberia
539
-
540
- - Add behavior passthrough in entity defaults merge ([7998df26](https://github.com/underpostnet/engine/commit/7998df26276de1693054bbf3eb00a368edccfb67))
541
- - Fix merge entity defaults logic, preventing cross-instance entity defaults overlap ([0d64d6b8](https://github.com/underpostnet/engine/commit/0d64d6b8ff40a1a889df9c767aa90052a08656f5))
542
-
543
- ### cyberia-instance-engine
544
-
545
- - Implement handler for authoritative initial spawn for new players connections logic and aoi radius customization in intance engine component ([89d68aca](https://github.com/underpostnet/engine/commit/89d68aca0152d1800d6632cddbd428409845a58a))
546
-
547
- ### cyberia-map-engine
548
-
549
- - Add checkbox removeOnClick and enhance ui / ux ([5b557256](https://github.com/underpostnet/engine/commit/5b557256fd17790913e9628440bd6e125d92ee0d))
550
- - Add in client component MapEngineCyberia.js renameFilteredObjectLayerItemId with random factor ([c6519a1c](https://github.com/underpostnet/engine/commit/c6519a1c0b3dfab9ba7856e3dd03914bd14a846a))
551
-
552
- ## New release v:3.2.30 (2026-06-25)
553
-
554
- ### server
555
-
556
- - Add only build client in development mode in normal server run start up ([a332ae45](https://github.com/underpostnet/engine/commit/a332ae458f79458c7911a4a158037ada250d3af6))
557
-
558
- ### cli-start
559
-
560
- - Add start-container-status in start pipeline to insulate readinessProbe monitor server status, prevent external overwritten status ([75f67cf3](https://github.com/underpostnet/engine/commit/75f67cf3fcbc07716415caac4e67ab91abb05985))
561
-
562
- ### cyberia-cli
563
-
564
- - Enhance cyberia-saga variety theme separate custom prompt of random subject theme ([1945a255](https://github.com/underpostnet/engine/commit/1945a2553780d1d3b5fa20e40eedcc7d0b1ecd9c))
565
- - Enhance cyberia-saga variety theme handle and prompt seed customization ([a335d3e2](https://github.com/underpostnet/engine/commit/a335d3e20025f8e714ff98fdc27d7895970187b5))
566
-
567
- ### db
568
-
569
- - Improve wait status ready mongo pods in bootstrap methods ([6805e35c](https://github.com/underpostnet/engine/commit/6805e35c22e43315c14dc9e7457ca3d599877ea8))
570
-
571
- ### cli-env
572
-
573
- - Add keepKeys array options in clean env method ([5b3be0bc](https://github.com/underpostnet/engine/commit/5b3be0bca14a0ccfa64740aff12d2af17a7c29ce))
574
-
575
- ### repository
576
-
577
- - Add getRemoteUrl and switchRemote repository methods in repository cli ([0412b998](https://github.com/underpostnet/engine/commit/0412b998683a8369833eb363f8c9953744ae1a3a))
578
-
579
- ### deploy
580
-
581
- - Enhance node customization in default deployment and custom instance workloads ([31c6b6d3](https://github.com/underpostnet/engine/commit/31c6b6d3b397229b0216f82b8aef29b6941e474e))
582
- - Fix node affinity assignment in volume mount factory ([9ec1ef93](https://github.com/underpostnet/engine/commit/9ec1ef9313ac0dbb5993cd3f158d2d01eae7dec5))
583
-
584
- ### cli-run
585
-
586
- - Add flag ssh key path to customize key usage for ssh operations in deployments pipelines ([861cd737](https://github.com/underpostnet/engine/commit/861cd73734d3442783419af4403bbb8e88711f19))
587
-
588
- ### start-cli
589
-
590
- - Improve underpost container status persistence ([bff2e8f8](https://github.com/underpostnet/engine/commit/bff2e8f8d65c6a2fe8572fe0bc9c42b9566db918))
591
-
592
- ## New release v:3.2.28 (2026-06-23)
593
-
594
- ### hardhat
595
-
596
- - Add chai devDependency in hardhat module ([bf20134d](https://github.com/underpostnet/engine/commit/bf20134d0a61512b223b868129eed38c0e7583cf))
597
- - Fix hardhat undici base dependency ([c9ad2a9f](https://github.com/underpostnet/engine/commit/c9ad2a9f09d893495d3b80be400ca023c96e91cc))
598
- - Hardhat 3 migration to nomicfoundation hardhat-toolbox-viem ([22c41063](https://github.com/underpostnet/engine/commit/22c4106355f3c7d6654f21179f131f6ed8fd20cc))
599
-
600
- ### deploy
601
-
602
- - Fix verify secrets exists tls deployment in deploy pipeline ([0367676a](https://github.com/underpostnet/engine/commit/0367676a9a6363e69f772739040bc100dc1c3ceb))
603
-
604
- ### run-cli
605
-
606
- - move-node runner: Add skip the patch + rollout if the resource is already where node goal ([b88cf3c6](https://github.com/underpostnet/engine/commit/b88cf3c6833572e9128d4aa85eccf0c94b055609))
607
- - Add node-move k8s crd between nodes runner ([4c0259a6](https://github.com/underpostnet/engine/commit/4c0259a63380fea6d5261f55f94ba8daf0d9783f))
608
-
609
- ### baremetal
610
-
611
- - FIx kubeadm join node logic workflow ([72d7994a](https://github.com/underpostnet/engine/commit/72d7994a7d978841df83854e1032f7fe79a7e185))
612
- - Add flag --resume-infra-setup to restore ssh kubeadm remote node deployment ([78a41d40](https://github.com/underpostnet/engine/commit/78a41d4008eceb68a33a2445b4aafd4a7b5aa546))
613
- - Add engine repo customization in control and worker node commission workflows ([2b8c47f5](https://github.com/underpostnet/engine/commit/2b8c47f52b0c4a1eff82bc8b6cf966aa58f0fece))
614
- - Fix kubeadm join node logic in ssh remote commission workflows ([72f7e252](https://github.com/underpostnet/engine/commit/72f7e252733be2f95f67afdfd758f471c1a590f6))
615
- - Fix SELinux config in install chroot in os deployed ([e7d46472](https://github.com/underpostnet/engine/commit/e7d46472e41d4beb992918a3c5e2274614818609))
616
- - Add Timezone + keyboard now configured in the deployed OS ([de00c365](https://github.com/underpostnet/engine/commit/de00c365d0a12d4abef9735f26dd4c56b77d5dc9))
617
- - Implement user and ssh keys customization --deploy-id and --user flags in commission workflow ([ec072023](https://github.com/underpostnet/engine/commit/ec07202309371c8e56df0c2dbe63e0283ccb5c8a))
618
- - Implement worker and control plane automated infra setup post install os deploy ([d5edb41a](https://github.com/underpostnet/engine/commit/d5edb41ab3855696198daa3ef44abe521768d260))
619
- - Implement Automate Rocky Linux bare-metal deployment with SSH and disk detection ([2a0cbf5f](https://github.com/underpostnet/engine/commit/2a0cbf5f1a90ebc1c4bdae0ea5f37fb16f1395c4))
620
-
621
- ### kickstart
622
-
623
- - Fix rocky ephemeral commission ssh server exposure ([b5d3007f](https://github.com/underpostnet/engine/commit/b5d3007f65e9df0affca1ca21ecdfb6cbbea1724))
624
-
625
- ### repository
626
-
627
- - Enhance routePath candidates logic build ([a3d7fd80](https://github.com/underpostnet/engine/commit/a3d7fd8068e31fbdacc5b9832047f09f720ba30c))
628
-
629
- ### engine-cyberia
630
-
631
- - Shrinks cyberia-client and cyberia-server production Dockerfile ([dd218c84](https://github.com/underpostnet/engine/commit/dd218c847bbc0c2e3662833607731a8bbe6815c9))
632
- - Remove redundant saga index and fix null-safe frames access ([9947164e](https://github.com/underpostnet/engine/commit/9947164e681ae7a5407af9227ae600c6a8a1aa84))
633
- - Migrate saga generation from DeepSeek to Gemini with staged generation ([6322cd19](https://github.com/underpostnet/engine/commit/6322cd19774d94f312f64173cb41ba62d3c5bba3))
634
- - Move cyberia server related modules to dedicated src/cyberia directory ([648309ec](https://github.com/underpostnet/engine/commit/648309ecee5b07bcf2132188d089c733f0646fb8))
635
- - Introduce Top-Down PCG (Semantic Reverse-Engineering) modules and cli command ([5664f536](https://github.com/underpostnet/engine/commit/5664f536c54446116296a465fc1efd63b1dece42))
636
- - Clean up quotes and update comment in action service ([1668f95e](https://github.com/underpostnet/engine/commit/1668f95e6fa266faba89dfecafe89b9654fd7b93))
637
- - Split action-provider and quest-provider status icons ([e3186a37](https://github.com/underpostnet/engine/commit/e3186a37d962980e34e0c29234bf4dd3388553e2))
638
- - Add quest-by-cell lookup endpoint ([648eb143](https://github.com/underpostnet/engine/commit/648eb14374a549f9e789a425533f9313b9292cfb))
639
- - Implement base client component ActionEngineCyberia with map-driven quest and action management ([cc89512c](https://github.com/underpostnet/engine/commit/cc89512c098729012d99e5817b29480808044885))
640
-
641
- ### docker-compose
642
-
643
- - Implement base docker-compose engine integration ([3374c7f1](https://github.com/underpostnet/engine/commit/3374c7f1a4379256db577988d841f414947db0c4))
644
-
645
- ### cyberia-cli
646
-
647
- - Update default generate-saga temperature ([dbc5ce5b](https://github.com/underpostnet/engine/commit/dbc5ce5b83a8268f342a3be3af8c21d1628578a0))
648
- - In generate-saga pipeline add 'naming and character culture' customization ([516f0ded](https://github.com/underpostnet/engine/commit/516f0ded7dde5d1990cde5a8e98b6a16807411db))
649
- - Refactor generate saga pipeline general theme purpose ([993aac92](https://github.com/underpostnet/engine/commit/993aac921a5ba0a41dee8f53fb508505c900ad1e))
650
- - Refactor saga pipeline replace THEME_DIMENSIONS to dedicated FACTIONS base theme scope ([1280edfd](https://github.com/underpostnet/engine/commit/1280edfdef885dd0e05afd00dd7dbb418a3d2896))
651
- - Refactor theme dimension scope in generate-sage pipeline, add --tone and simplify 4 mains and add flag --temperature to customizaction ([cc0a3e24](https://github.com/underpostnet/engine/commit/cc0a3e245a3020246e71149d88ed6f026fdff7e2))
652
- - Add maps semantic stage in generate-saga pipeline ([5c7bdab0](https://github.com/underpostnet/engine/commit/5c7bdab034a3de473e6197d5ffc5d3c61d71f4ef))
653
- - Fix quest generation with talk objectives case and related logic ([c4d9e397](https://github.com/underpostnet/engine/commit/c4d9e397c155d5d7c48e42f387c30263cde5c149))
654
- - Add --space-context flag customization in generate-saga pipeline ([19d2f7ed](https://github.com/underpostnet/engine/commit/19d2f7ed6aa8ea41ac72622c384f84a524464a4c))
655
- - Generate saga command: Add lore-grounded auto-theme generation - Auto-synthesize saga themes from CYBERIA-LORE.md when --prompt is omitted - Add --lore-path option to override the base lore document - Add temperature support to GeminiClient.chatJson for varied output - Default --out to ./engine-private/cyberia-sagas/<saga-code>.json - Remove hard requirement for --prompt or --import - Update docs and help text to reflect auto-generation mode ([5b1a668a](https://github.com/underpostnet/engine/commit/5b1a668a7c1e2b48652b717934d56ec6e9902d54))
656
-
657
- ### package
658
-
659
- - Fix nodemailer version ([7d27b7f4](https://github.com/underpostnet/engine/commit/7d27b7f4826b656abdd1d2a10c5d5bb478cd90bf))
660
- - Fix dependency vulnerability ([13991a0f](https://github.com/underpostnet/engine/commit/13991a0fe4594887da89de16ac502be4ef7112cb))
661
-
662
- ### cyberia-docs
663
-
664
- - Add base Cyberia Lore: The Frontier of Hyperspace ([d389b881](https://github.com/underpostnet/engine/commit/d389b881ff8dadb9154bb1f7078a515246150031))
665
-
666
- ### build
667
-
668
- - Fix catalog generic deploy-id handling ([413f3fc6](https://github.com/underpostnet/engine/commit/413f3fc63851d678267a5618c6779fffc49cb14e))
669
-
670
- ### engine
671
-
672
- - Refactor introduce new projects module and client-builder modules split from server ([4d14ee55](https://github.com/underpostnet/engine/commit/4d14ee552258cb3c2f70e43291945798b4d95f1a))
673
-
674
- ### api
675
-
676
- - Introduce base cyberia-saga api / model ([2f02f5d6](https://github.com/underpostnet/engine/commit/2f02f5d6a2ff2258146498bb50ac3e65b51beced))
677
- - Update canonical action defaults with typed quest dialogues and add Wason errand quest ([5e380abe](https://github.com/underpostnet/engine/commit/5e380abeef4954567717138af5218b506b3da414))
678
- - Refactor action model: remove type and grantQuestCode, add per-quest dialogue map and getByCode endpoint ([3ce9f4c1](https://github.com/underpostnet/engine/commit/3ce9f4c18ef993da85fe5f9b10b61cf7987e5457))
679
- - Update quest defaults: replace SCP-2040 references with Kishins ([bf6fa827](https://github.com/underpostnet/engine/commit/bf6fa827d0fffbe5fcf97756263af50eade0af4b))
680
- - Add fallback defaults to dialogue and quest services ([ab2894dd](https://github.com/underpostnet/engine/commit/ab2894dd4f591cc7247d6708a25ea737ea059c56))
681
- - Refactor CyberiaAction model to cell-based binding and remove provideItemId ([614a2aa6](https://github.com/underpostnet/engine/commit/614a2aa60bfa8e2330722c9c4e9fea4afc3adf3c))
682
- - Add quest metadata REST endpoint GET /api/cyberia-quest/code/:code ([c6f7cfa9](https://github.com/underpostnet/engine/commit/c6f7cfa94a4b3cc9f398cd63c24082b8c47db642))
683
-
684
- ### grpc
685
-
686
- - Scope quest delivery to instance map codes ([d357c0cc](https://github.com/underpostnet/engine/commit/d357c0cce491078ea00a294f15f1b886fb92c05d))
687
- - Add prerequisiteCodes and canonical item fallback to instance config ([e34683e2](https://github.com/underpostnet/engine/commit/e34683e2372f48be034435fc2ce25915e5447aad))
688
-
689
- ### hardhar
690
-
691
- - Fix prevent crash build due coverage build: Error HHE905: Couldn't download compiler version list. ([b841b559](https://github.com/underpostnet/engine/commit/b841b55980cc5a3d19b6413f2ebb72c45b8906fb))
692
-
693
- ### cli-run
694
-
695
- - Add shared-dir-add-user runner: Add user to an existing shared directory without changing file owners ([b5c7ea7c](https://github.com/underpostnet/engine/commit/b5c7ea7c83cf85775eaf3fc3071097f2e5e9d59f))
696
-
697
- ### scripts
698
-
699
- - Update scripts/rpmfusion-ffmpeg-setup.sh ([975f7e9f](https://github.com/underpostnet/engine/commit/975f7e9f30f7f224bcf0faa78a617b7f67fc6c96))
700
-
701
- ### client-cyberia
702
-
703
- - Update default bot skin in fallback world ([a7df2b9f](https://github.com/underpostnet/engine/commit/a7df2b9f6fd80c62b1aa3fff2ce58d0a3dc18d7a))
704
- - Fix headerName of metadata cid and render cid in ObjectLayerManagement component ([1d141900](https://github.com/underpostnet/engine/commit/1d14190017c6b080c502a9478f65a35364c413df))
705
- - Add Kishins skin item to shared defaults ([acf13ba0](https://github.com/underpostnet/engine/commit/acf13ba0e2a6acabc7ee1ee233275cdb31311c0d))
706
- - Fix render section title label in ObjectLayerEngineModal ([2b9a88be](https://github.com/underpostnet/engine/commit/2b9a88bed67fe2b205f648050af411a9c1e7588d))
707
-
708
- ### docs
709
-
710
- - Update action and quest system documentation for cell-based binding and explicit quest accept ([fadd9e36](https://github.com/underpostnet/engine/commit/fadd9e3605e686d8487aad1ef28b2668388256c4))
711
- - Update quest system documentation with kill and collect objective details ([1695e17d](https://github.com/underpostnet/engine/commit/1695e17d9ec628ed9907859d6dd4ec890f113240))
712
- - Document mission system: action-provider NPCs and fallback world instantiation ([46909467](https://github.com/underpostnet/engine/commit/469094678a35d4bbd03c79181f78d7720614179c))
713
- - Update cyberia client docs url env parsing ([77923cfa](https://github.com/underpostnet/engine/commit/77923cfa4977fd21ed5acbe6e2e5dfdaa70a614d))
714
-
715
- ### cyberia-instance
716
-
717
- - Give action provider NPCs small wander radius ([b56389b5](https://github.com/underpostnet/engine/commit/b56389b5a63b964ee1c94fcce0d9dafea4c1b2f6))
718
- - Add action-provider NPC generation and cell reservation to fallback world builder ([985ba010](https://github.com/underpostnet/engine/commit/985ba010c0ca76dc10bd12fffbc07871c01e0e90))
719
-
720
- ### grcp
721
-
722
- - Deliver actions and quests in InstanceConfig for mission content ([e26466e9](https://github.com/underpostnet/engine/commit/e26466e9a401ada9a5add5b658243e9cf34879a9))
723
-
724
- ### cli-cyberia
725
-
726
- - Add DefaultCyberiaActions, DefaultCyberiaQuests, and seed-actions-quests CLI command ([cc9f2137](https://github.com/underpostnet/engine/commit/cc9f21377ba77c0e141d153f852dbb9777d74525))
727
-
728
- ### fs
729
-
730
- - Add Single-file handling in upload use case in cloudinary storage ([6061d8bf](https://github.com/underpostnet/engine/commit/6061d8bf290f00c2c4e46a0206419ba4b1119f2e))
731
-
732
- ## New release v:3.2.22 (2026-06-07)
733
-
734
- ### repository
735
-
736
- - Add safe repo config in pullSourceRepo ([4325c1ba](https://github.com/underpostnet/engine/commit/4325c1ba736b4e2fa64f0570dc5bedb9b33e351f))
737
-
738
- ### docs
739
-
740
- - Restore runtimeConfig docs logic ([819792d1](https://github.com/underpostnet/engine/commit/819792d1de4e20e490c7bdffca66f794ef810868))
741
- - Enhance favicon resolution logic in buildJsDocs function to handle missing files ([4b4b6cca](https://github.com/underpostnet/engine/commit/4b4b6cca2b31f1b41c1e893e58a3bb94b67c4f26))
742
- - Fix favicon path resolution in buildJsDocs function to handle missing files ([a572ffaf](https://github.com/underpostnet/engine/commit/a572ffaf88de3e07b0c90fb485f57e9032d4e5bb))
743
- - Update favicon path in buildJsDocs function to use publicClientId for dynamic resolution ([d839d6a0](https://github.com/underpostnet/engine/commit/d839d6a02b6a49a2aa6923ce5392ff4509c36f43))
744
-
745
- ### monitor
746
-
747
- - Add support for custom image names in deployment scripts ([2d4ddf73](https://github.com/underpostnet/engine/commit/2d4ddf731565e45e90b7e105ce17e6a56862e17f))
748
- - Enhance transport handling in UnderpostMonitor: Default to exec, add opt-in for http ([eebe7ef0](https://github.com/underpostnet/engine/commit/eebe7ef0318e3bbe2533e31701bba7af9483e73c))
749
- - Refactor test-monitor script: Enhance deployment modes and flag parsing ([07b65b00](https://github.com/underpostnet/engine/commit/07b65b0040d34883f67ebf6d9fa61872ff4c81f2))
750
- - Enhance runtime status handling with exec transport and kubernetes gate ([13577393](https://github.com/underpostnet/engine/commit/135773938dcbd4e466e09afea73ccc8994a6509e))
751
-
752
- ### deploy
753
-
754
- - Refactor deployment commands to use dynamic node names and update MongoDB flag in run command ([b6a1dc9c](https://github.com/underpostnet/engine/commit/b6a1dc9c751a09fd677d9778b252d967a08225cb))
755
-
756
- ### cli-start
757
-
758
- - Add error handling for deployment build/init process in UnderpostStartUp class ([6c7d7e05](https://github.com/underpostnet/engine/commit/6c7d7e0568903f89a0a3a06683b726e4f34fa843))
759
- - Add support for private test repositories in build and monitor scripts ([23837d02](https://github.com/underpostnet/engine/commit/23837d02b6a250ecc420e903a095d5be397494bb))
760
-
761
- ### ipfs
762
-
763
- - Refactor IPFS API URL functions to include container check for development environment ([61e3fcd1](https://github.com/underpostnet/engine/commit/61e3fcd1e08b9ec43dca29a151a4309f2a44f276))
764
-
765
- ### client-core
766
-
767
- - Fix bug Panel component; when the user writes markdown content but uploads missing reload md file ([f91da978](https://github.com/underpostnet/engine/commit/f91da97807b991bf9c6b8693c9c97bb8365df6f4))
768
-
769
- ## New release v:3.2.21 (2026-06-06)
770
-
771
- ### release
772
-
773
- - Add options for MongoDB and Valkey configuration in build process ([7dba2a68](https://github.com/underpostnet/engine/commit/7dba2a68a01dd0dacdf0e1f430170e80f6ce97d8))
774
-
775
- ### repository
776
-
777
- - Enhance deployment process: Include deploy ID in logging and update build commands ([aedd9941](https://github.com/underpostnet/engine/commit/aedd994157a5688b13c9f063b9e1446807282213))
778
- - Add --has-changes option to check for staged or unstaged git changes and update template repo logic ([f479994a](https://github.com/underpostnet/engine/commit/f479994a40ad3815839cd85f8664390074799c55))
779
- - Ensure repository directory is created before initialization ([5cb66853](https://github.com/underpostnet/engine/commit/5cb66853f2623e18edaf8f63de95757cc48d389a))
780
-
781
- ### docs
782
-
783
- - Refactor CLI documentation generation: Update command argument and option sections for improved clarity ([fd20febb](https://github.com/underpostnet/engine/commit/fd20febb125f547b287edd784504185273080a51))
784
-
785
- ### deploy
786
-
787
- - Add support for self-signed TLS certificates and related options in deployment scripts ([d03ddf7b](https://github.com/underpostnet/engine/commit/d03ddf7b758afb9c55fe7c610011fe9e4828d033))
788
- - Add localProxy option to enable TCP port forwarding and path-based routing ([6b6c03a4](https://github.com/underpostnet/engine/commit/6b6c03a4c0a990a9b03c234025b3d68deb48f41a))
789
- - Add exposeLocalPort option for custom local port configuration in deployment ([60fe88b9](https://github.com/underpostnet/engine/commit/60fe88b95e69c744fb53d900edaf6b918f0824bb))
790
- - Refactor deployment scripts: Update commands in engine-test workflow and add link-local CLI script ([8506dbca](https://github.com/underpostnet/engine/commit/8506dbca4280e782cb550206f8bf550f9f6f81af))
791
-
792
- ### cli-run
793
-
794
- - Add build-cluster-deployment-manifests method and update test-monitor script: Implement deployment manifest building for production and development environments. ([be2c5a71](https://github.com/underpostnet/engine/commit/be2c5a71e553a65e57fd9f21a5ccb5acaf7b7d58))
795
- - Add etc-hosts method: Modify /etc/hosts file for local service access ([c4e7ba28](https://github.com/underpostnet/engine/commit/c4e7ba286651f002c1f6be09225c092b0596e4b8))
796
-
797
- ### monitor
798
-
799
- - Refactor monitoring and deployment port resolution: Introduce deployStatusPort for consistent internal status port handling and implement findFreePort for ephemeral TCP port allocation. ([735c2c41](https://github.com/underpostnet/engine/commit/735c2c41e2cfc7c47dd7ce3f0832b80f9c41188f))
800
- - Add test-monitor script: Implement deployment and monitoring commands for development environment ([a74316ae](https://github.com/underpostnet/engine/commit/a74316ae140c7917c2923f9f6f63d0ea74859116))
801
- - Implement reliable two-phase deployment monitoring with internal HTTP status endpoint ([a2b49dcd](https://github.com/underpostnet/engine/commit/a2b49dcd62ee5056c6d4e5caba0faf867e531269))
802
- - Improve pod status handling: Exclude 'empty' status from container status checks ([6d18e287](https://github.com/underpostnet/engine/commit/6d18e28720004eca5dcff8ad61373ac74b46851a))
803
- - Improve pod status handling: Exclude 'empty' status from advanced pod tracking ([a9040034](https://github.com/underpostnet/engine/commit/a904003428a2a920f56ea409391812a6d3dab794))
804
-
805
- ### build-template
806
-
807
- - Add option to update private template repository ([77cbe276](https://github.com/underpostnet/engine/commit/77cbe276af8f5a3a85c95ab8ad2044b57ee52326))
808
-
809
- ### runtime-cyberia
810
-
811
- - Refactor Dockerfiles: Standardize comments and clean up unnecessary lines ([6ae4d0be](https://github.com/underpostnet/engine/commit/6ae4d0bef71eb31fc56eb66be5e52ba3334b5f13))
812
-
813
- ### engine-cyberia
814
-
815
- - Enhance dialogue and quest systems: Add new dialogue entries for Lain, update action types, and revise implementation status in documentation ([67702fa9](https://github.com/underpostnet/engine/commit/67702fa9c4219fed4742d078f88a52167dd08249))
816
-
817
- ### cyberia-cli
818
-
819
- - Add Mongo host override option to import command for Object Layer items ([b181892b](https://github.com/underpostnet/engine/commit/b181892b48753f7a40ede0346934f6a8b9fd21dc))
820
-
821
- ### env
822
-
823
- - Simplify environment variable check: Remove redundant logging for empty env path ([b192cdff](https://github.com/underpostnet/engine/commit/b192cdff40c2053c651210fbf244be34b74b8376))
824
-
825
- ## New release v:3.2.14 (2026-06-02)
826
-
827
- ### runtime-wp
828
-
829
- - Enhance Dockerfile: Add retry logic for XAMPP installation to handle flaky SourceForge transfers ([d76f7ec6](https://github.com/underpostnet/engine/commit/d76f7ec6959f6ef049d9ef46475e95b7045855a6))
830
-
831
- ### cli-run
832
-
833
- - Bundle runner: Enhance client build process by adding options for zip building and replica handling; improve bundle upload logic for deployment ([ee79ccfe](https://github.com/underpostnet/engine/commit/ee79ccfeaf870c0f772027c0a103634774ac1d10))
834
- - Add shared-dir command execution to UnderpostRun class ([a5d6a3a0](https://github.com/underpostnet/engine/commit/a5d6a3a09ab8ba439a2a21467a9e290a4f4ed59b))
835
-
836
- ### monitor
837
-
838
- - Enhance pod status monitoring by adding advanced error checks and tracking for container status regressions ([de54ee20](https://github.com/underpostnet/engine/commit/de54ee20c1cb76b53898c9785aefe4d2f972e84c))
839
- - Refactor deployment monitoring and image management; add tests for deployment failure detection ([819d17f3](https://github.com/underpostnet/engine/commit/819d17f306f1d62e0663023fbd667ecf26f8df61))
840
-
841
- ### github-actions
842
-
843
- - Add GITHUB_USERNAME environment variable to CI workflows for better repository management ([2f47aaaa](https://github.com/underpostnet/engine/commit/2f47aaaa14e08a30904ae2cc8187b8fabb74a906))
844
- - Update CI workflows to use environment-specific configuration files for engine core, cyberia, lampp, prototype, and test ([5c94eedf](https://github.com/underpostnet/engine/commit/5c94eedf59ddd0a575288f028dbe8588c2931766))
845
- - Add conditional checks to skip commit and push if no changes are detected in CI workflows ([033afed2](https://github.com/underpostnet/engine/commit/033afed27cd0fe9e12d614fb15ef00e056140aa9))
846
- - Add npm install step to CI workflows for engine core, cyberia, lampp, prototype, and test ([25457022](https://github.com/underpostnet/engine/commit/25457022f22b3b7e53c1a156cb2a0a7d35c7cd83))
847
- - Add sparse checkout and configuration updates for engine prototype workflows ([787cbac2](https://github.com/underpostnet/engine/commit/787cbac2b3694c050335f69656cca4e77d2d62bd))
848
- - Add prototype ci cd workflows ([147f9c90](https://github.com/underpostnet/engine/commit/147f9c90e00d36a2f44453432849d5b15200c7f5))
849
-
850
- ### docs
851
-
852
- - Refactor CLI documentation generation in buildCliDoc ([fd2ef99b](https://github.com/underpostnet/engine/commit/fd2ef99bac6204bfc3f8188c9e3b9cfb1707f7b9))
853
- - Update architecture and server documentation ([a3eefadd](https://github.com/underpostnet/engine/commit/a3eefadd1a26c2c2e1fbed6a6c24fae2bfa21ccf))
854
- - Refactor documentation for Cyberia and Underpost Platform ([36c8234d](https://github.com/underpostnet/engine/commit/36c8234df258f2af819d21db3da88019f195d354))
855
-
856
- ### bin-build
857
-
858
- - Enhance build process by adding source repo validation and restoration; implement pullSourceRepo method for managing public source repositories ([7cf35bcd](https://github.com/underpostnet/engine/commit/7cf35bcd889f5a690f75df03fc0a082ee15f2c87))
859
- - Enhance build process by adding template rebuild option and refactoring build template logic; streamline deployment template assembly ([eb28b47f](https://github.com/underpostnet/engine/commit/eb28b47f3d7b53b3f3209b5db763db6cd7abe419))
860
- - Refactor build main entry logic related to CI workflows and build process for engine components ([d1aba687](https://github.com/underpostnet/engine/commit/d1aba687a3b0b3b65ebd5ddaf6a32e14c591150b))
861
-
862
- ### catalog
863
-
864
- - Refactor build process and introduce dynamic product catalogs for Cyberia and Prototype; enhance deployment template assembly and configuration syncing ([65dc9cc6](https://github.com/underpostnet/engine/commit/65dc9cc6bdc39bf9482d26fec74730ff5a942ecd))
865
-
866
- ### engine-prototype
867
-
868
- - Add deployment and proxy configurations for dd-prototype-development ([40549234](https://github.com/underpostnet/engine/commit/40549234c9bae7b3bc62573d1df1104df6bce776))
869
-
870
- ### repository
871
-
872
- - Refactor CI workflow and enhance repository management with sparse checkout functionality ([27485162](https://github.com/underpostnet/engine/commit/27485162d728f4c4d1147b0141c3ebe278097043))
873
-
874
- ### engine
875
-
876
- - Remove update defualt conf.js per deploy-id workflow ([746285d1](https://github.com/underpostnet/engine/commit/746285d10debbd30ed652275dad605a3210b7fd4))
877
-
878
- ### engine-core
879
-
880
- - Remove no core src ([1a90ce0d](https://github.com/underpostnet/engine/commit/1a90ce0d7742a88c794ed2d37392632cbf12e11c))
881
-
882
- ## New release v:3.2.12 (2026-05-31)
883
-
884
- ### docs
885
-
886
- - Refactor Underpost Platform documentation for clarity and structure ([e554d3d6](https://github.com/underpostnet/engine/commit/e554d3d6947d35f31b28319de024120c16cc2210))
887
-
888
- ### engine-cyberia
889
-
890
- - Refactor README and CLI command descriptions for clarity and consistency ([b322c77f](https://github.com/underpostnet/engine/commit/b322c77f14347c3b9d94236c5d522a4decb6e5ee))
891
-
892
- ### server-conf
893
-
894
- - Refactor awaitDeployMonitor parameters inverse arg functionality and fianl deployment event handle ([c34661ad](https://github.com/underpostnet/engine/commit/c34661ad039cafe55a3858c006ba9c54bad4a001))
895
-
896
- ### server-start
897
-
898
- - Remove error throw on unexpected deployment exit for improved error handling ([e6554e09](https://github.com/underpostnet/engine/commit/e6554e09cc7274ed137a9860a751b0706a961284))
899
-
900
- ## New release v:3.2.11 (2026-05-31)
901
-
902
- ### deploy
903
-
904
- - Fix deployment error handling: ensure global secret cleanup only occurs if container status is not 'error' ([83ef9d8c](https://github.com/underpostnet/engine/commit/83ef9d8cf893c8fe8c07d445b324dd864d9ad842))
905
- - Add Underpost integration for container status error handling in database and Valkey services ([3bbcdcf4](https://github.com/underpostnet/engine/commit/3bbcdcf49ac6445c6ea5b37d84a5ebc69102a34e))
906
-
907
- ### bin-build
908
-
909
- - Prevent OnError workflow break on empty commit ([494fc93a](https://github.com/underpostnet/engine/commit/494fc93ab9980d972e66096af5371f5a11173fb4))
910
-
911
- ### cli-run
912
-
913
- - Add k3s-template-env case logic: clean up existing dd-default config and update .env.example ([90a91063](https://github.com/underpostnet/engine/commit/90a910630072fbe3143d87a9aa5a3e479a3ba6e8))
914
- - Add 'remove' option for resource teardown and improve MongoDB handling ([11c09deb](https://github.com/underpostnet/engine/commit/11c09deb605138e344cbd30dad3ba446ec950345))
915
- - Enhance clean method: execute shared-dir script in development mode ([317806d8](https://github.com/underpostnet/engine/commit/317806d8f9681cb768bd7a1cad87f0c86781fd23))
916
- - Rename setup-shared-dir method to shared-dir and remove reload-shared-dir method for clarity and simplification ([7985353c](https://github.com/underpostnet/engine/commit/7985353cb46e5e01e0657c9abb419ddcc6691697))
917
- - Add exit process on error instead of returning null ([567008c3](https://github.com/underpostnet/engine/commit/567008c3df4d53ebdab442b44726b323801ec5d3))
918
-
919
- ### client-core
920
-
921
- - Add modal event handling: introduce ModalEventType, ModalListenerChannels, and createModalEvents for improved modal interactions ([d31bf3b0](https://github.com/underpostnet/engine/commit/d31bf3b0171d94f3c0d2496b19bb7001192dc1ac))
922
- - Fix focus handling in Auth and Modal components: prevent focus on search box when skipFocus is true ([95a42637](https://github.com/underpostnet/engine/commit/95a42637c6bf7d3f3dd4643663f487321097c218))
923
-
924
- ### bin-deploy
925
-
926
- - Add vm-cluster-env case logic ([d55b6120](https://github.com/underpostnet/engine/commit/d55b6120d18485865a22745083743091177806b6))
927
-
928
- ### release
929
-
930
- - Refactor release build process: replace file.js with build.template.js, update package.json script, and enhance repository methods for GitHub directory fetching ([05c0e1d8](https://github.com/underpostnet/engine/commit/05c0e1d85bb777b4bc071d4312ed8e6ae6dece51))
931
-
932
- ### baremetal
933
-
934
- - Refactor NFS configuration: update NFSv3 ports and streamline NFS root mount options ([217c736e](https://github.com/underpostnet/engine/commit/217c736eac25cf68d11b4f9991fc79f0e28a2639))
935
- - Enhance iPXE build process: track embedded script changes to ensure rebuilds when necessary ([4d9d572b](https://github.com/underpostnet/engine/commit/4d9d572bfcfff40d0977249e96b34a474cfe582c))
936
- - Refactor NFS configuration and enhance GRUB module installation for baremetal provisioning ([c94dd434](https://github.com/underpostnet/engine/commit/c94dd434bbe8792d7694744b7eb57a88256a3415))
937
-
938
- ### lxd
939
-
940
- - Enhance LXD management: add support for MAAS project handling and improve command execution consistency ([0910817c](https://github.com/underpostnet/engine/commit/0910817c55a4971860d7b363455efd1d1c13d830))
941
- - Refactor: reorganize LXD Management documentation for clarity and safety ([5cc554cf](https://github.com/underpostnet/engine/commit/5cc554cfe308f28ee94c7ee3cb141ec6dd156368))
942
-
943
- ### cluster
944
-
945
- - Refactor deployment and monitoring to centralize /etc/hosts management ([a10ad7da](https://github.com/underpostnet/engine/commit/a10ad7da651085a45c0301489ccb19c92abd2ee7))
946
- - Add MongoDB manifests including headless service, stateful set, and storage class ([8fd1d817](https://github.com/underpostnet/engine/commit/8fd1d817250cbebbe2812be9f382d0fc526800ee))
947
-
948
- ### repository
949
-
950
- - Enhance git command execution in file storage and repository modules for improved error handling and logging ([bb008852](https://github.com/underpostnet/engine/commit/bb008852d9b6b3c9604815a2b0e1d43aba57cc16))
951
-
952
- ### engine
953
-
954
- - Update VSCode configuration: add bash-beautify extension and enhance settings for shellscript and json ([e0e3c524](https://github.com/underpostnet/engine/commit/e0e3c524923dfcc1c73da2063a4fe7a90ed805d7))
955
-
956
- ### db
957
-
958
- - Refactor MongoDB data directory cleanup logic in Kind nodes to use docker exec for reliability ([87d66f22](https://github.com/underpostnet/engine/commit/87d66f223093695b92f51ce42186e09c06109a45))
959
- - Refactor MongoDB cleanup logic to avoid stale bind mounts and ensure proper directory structure ([c07098e8](https://github.com/underpostnet/engine/commit/c07098e8ce9762e3116d8705c1b7206d7ec0df6c))
960
-
961
- ### cli-secrets
962
-
963
- - Add secret management command to deployment workflows ([796fddb4](https://github.com/underpostnet/engine/commit/796fddb46c3c43399de4264ed940f453fd2056e3))
964
-
965
- ### cli-deploy
966
-
967
- - Fix ready monitor method to wait container runtime complete setup ([c89231a0](https://github.com/underpostnet/engine/commit/c89231a06aa5e1ce6decd6550ea5a7f9cf90dd45))
968
-
969
- ### github-actions
970
-
971
- - Prevent dependabot gitleaks run ([16c2a0c1](https://github.com/underpostnet/engine/commit/16c2a0c1d60ec8d5389288464af60b4a0fcea72d))
972
-
973
- ## New release v:3.2.10 (2026-05-26)
974
-
975
- ### cli-run
976
-
977
- - Add group property and shared directory setup methods to UnderpostRun ([6cc121c4](https://github.com/underpostnet/engine/commit/6cc121c4abe8a5fe07582a99a251ef8e1133ce00))
978
-
979
- ### cli-release
980
-
981
- - Add bumpp configuration and integrate version bumping into release process ([e5eb50d7](https://github.com/underpostnet/engine/commit/e5eb50d70980fe625e4246b5807b2a3984f09e72))
982
-
983
- ### engine-cyberia
984
-
985
- - Refactor CI workflows for cyberia-client and cyberia-server, removing outdated comments and improving clarity. Update Dockerfile to ensure clean builds by adding a clean step before compilation. ([e74918e8](https://github.com/underpostnet/engine/commit/e74918e8102a2c7361ff8abd89aa019aee6ef642))
986
- - Refactor CI workflows and Dockerfiles for cyberia-client and cyberia-server ([0dfda92f](https://github.com/underpostnet/engine/commit/0dfda92fd0c01de7af755a2935fd68199d94d61f))
987
- - Refactor package.json metadata for Cyberia CLI and Underpost Platform, updating descriptions and keywords for improved clarity and relevance. ([893a371a](https://github.com/underpostnet/engine/commit/893a371acef87351841d4ff703f35421e05725e4))
988
- - Enhance Dockerfiles and CLI: align underpost versioning, add dev configurations, and improve manifest build options ([4f9c96df](https://github.com/underpostnet/engine/commit/4f9c96df6b672c25ef8d34d0ad440f66061f7789))
989
- - Refactor presentation handling: remove legacy fields, update documentation, and streamline client hints integration ([e79315e6](https://github.com/underpostnet/engine/commit/e79315e6e3064140d6b2e634f31b153008a15db0))
990
- - Refactor Cyberia defaults management ([2454ad54](https://github.com/underpostnet/engine/commit/2454ad54c9f9d3e9b2aa43a831184f6e87b4772f))
991
- - Add cyberia hints model and refactor docs ([14fc8a63](https://github.com/underpostnet/engine/commit/14fc8a633843a52f705594eba3927a8a7b1dc685))
992
- - Update build process to include README.md and update white paper version ([77099e88](https://github.com/underpostnet/engine/commit/77099e88f50516a0e6e626f74059814585ca18d6))
993
-
994
- ### client
995
-
996
- - Chore landing icons ([ed1bc3fe](https://github.com/underpostnet/engine/commit/ed1bc3fee671319b151e218ec58b9ca67200579e))
997
-
998
- ### github-actions
999
-
1000
- - Add condition to skip jobs for dependabot in Coverall CI workflow ([db35270a](https://github.com/underpostnet/engine/commit/db35270a686edf5c975721a3ec60ae8fc0b893be))
1001
- - Enhance underpost test execution and improve error handling ([d046dcee](https://github.com/underpostnet/engine/commit/d046dcee2a78c2a80fd13ac74322a735aa3044c5))
1002
- - Update CI workflows to specify repository paths for cyberia-client and cyberia-server; adjust Dockerfile to copy from the correct directory ([9bef9377](https://github.com/underpostnet/engine/commit/9bef93774841ec650b2574f2369b8e6b486c342d))
1003
-
1004
- ### cli-deploy
1005
-
1006
- - Add imagePullPolicy option to deployment commands and documentation ([d1ebe5d7](https://github.com/underpostnet/engine/commit/d1ebe5d71a7840d7739be0f41d59dc0f5dfdd155))
1007
- - Enhance deployment monitoring: improve pod readiness checks, add container-status validation, and refine logging for deployment progress ([3cb67b64](https://github.com/underpostnet/engine/commit/3cb67b64b01af8055396ca78515011ffe4146b28))
1008
-
1009
- ### gitub-actions
1010
-
1011
- - Enhance CI workflow and Dockerfiles to include SSR dashboard setup and dependencies ([6e8db980](https://github.com/underpostnet/engine/commit/6e8db980f79b3ef9d48d2231f83ea62c28879f25))
1012
-
1013
- ### client-core
1014
-
1015
- - Enhance file handling logic and improve UI interactions in PanelForm and Auth components ([f4e14619](https://github.com/underpostnet/engine/commit/f4e146195b94dc8df711bb3e1eec52feaae0489c))
1016
- - Enhance offline and maintenance fallback handling: implement inline HTML responses, improve caching logic, and ensure user-friendly error pages ([1802b40c](https://github.com/underpostnet/engine/commit/1802b40caab7c90b0c73a9ab70a042772a8fe77b))
1017
- - Enhance service worker fallback handling: add inline HTML responses for offline and maintenance states, improve caching logic, and refine navigation fetch strategy ([bc2a1a0c](https://github.com/underpostnet/engine/commit/bc2a1a0ca711e7448ee9be7629a8e0e3b598dfaf))
1018
- - Add SSR views for server metrics, maintenance, and offline handling ([81ca2108](https://github.com/underpostnet/engine/commit/81ca21084a7246f2926ee6b6c6f96858714a232c))
1019
-
1020
- ### dependencies
1021
-
1022
- - Update dependencies and improve branch deletion error handling ([bcbf1a5e](https://github.com/underpostnet/engine/commit/bcbf1a5e3a801d4bc6fdfc1e0f17a5630b40b325))
1023
- - Update dependencies: bump body-parser to 1.20.5, express to 4.22.2, and qs to 6.15.2 ([3d5da7d2](https://github.com/underpostnet/engine/commit/3d5da7d28bba137ea50b0c2260b5614bf42c2b69))
1024
-
1025
- ### ssr-cyberia
1026
-
1027
- - Refactor ssr/views/CyberiaServerMetrics.js ([7184a738](https://github.com/underpostnet/engine/commit/7184a738d17602fafe5cefd7722a7cd669b11693))
1028
-
1029
- ### cli
1030
-
1031
- - Enhance error handling: silence errors during git commit and process termination ([7583c4f1](https://github.com/underpostnet/engine/commit/7583c4f1288713513c02b76e5c11649c41e427ca))
1032
-
1033
- ### cluster
1034
-
1035
- - Add targeted reset option for MongoDB components without full cluster restart ([8c293e11](https://github.com/underpostnet/engine/commit/8c293e11dfafb992ccf3b26ab139e95266c28169))
1036
- - Enhance UnderpostCluster: add natSetup method for NAT and iptables configuration, improve cluster deletion logic, and update options parameter for config method ([b90d7dba](https://github.com/underpostnet/engine/commit/b90d7dba7bcbdd1d433f763ab3f7394dabf912f2))
1037
-
1038
- ### ipfs
1039
-
1040
- - Fix IPFS deployment: streamline UDP buffer sysctl application for Kind nodes ([2b08cbc6](https://github.com/underpostnet/engine/commit/2b08cbc6dafcd4af7b55c96d99bc7b8e603b80f6))
1041
-
1042
- ### db
1043
-
1044
- - Refactor MongoDB bootstrap logic: enhance admin authentication check and streamline initialization script execution ([866e56c6](https://github.com/underpostnet/engine/commit/866e56c6303e20b8269778e5a7adc6e618f4520a))
1045
- - Refactor MongoDB primary pod detection and bootstrap logic ([609f5e89](https://github.com/underpostnet/engine/commit/609f5e89b5807df797bd5c16839c87f2bd786ba2))
1046
- - Refactor MongoDB manifests and initialization: update PersistentVolume configurations, enhance StatefulSet security, and improve MongoDB cluster bootstrap logic ([ed89c385](https://github.com/underpostnet/engine/commit/ed89c3850ca3108664ca70f9737ac756f7936083))
1047
- - Refactor DataBaseProviderService: change #instance to static and update instance getter for compatibility ([360d2c85](https://github.com/underpostnet/engine/commit/360d2c856a6409efa32dc2e1d602bd6e5b268223))
1048
- - Refactor replace DataBaseProvider with DataBaseProviderService across services and routers ([614e4731](https://github.com/underpostnet/engine/commit/614e4731493b413346f05915a0be6c18aa0d81c2))
1049
- - Enhance MongoDB configuration and management: update stateful set parameters, improve secret handling, and implement replica set initialization logic ([1fb89566](https://github.com/underpostnet/engine/commit/1fb895669cbd8ec1d42b779c810ae6a35555725e))
1050
-
1051
- ### ws
1052
-
1053
- - Refactor WebSocket management context: replace wsManagementId with hostKeyContext across IoInterface and related channels ([b82c80fc](https://github.com/underpostnet/engine/commit/b82c80fce52cba2ef9443ea664df69e727e35ca0))
1054
-
1055
- ### deploy
1056
-
1057
- - Enhance deployment error handling: update expected container status, throw errors for pod status issues, and manage container status in shell execution ([d170f36c](https://github.com/underpostnet/engine/commit/d170f36cc77b759a4e86a7f0dcad015aa6fc74ef))
1058
-
1059
- ### lxd
1060
-
1061
- - Enhance LXD management: add safe teardown for VMs, improve engine source replication, and update documentation ([e9b3a68c](https://github.com/underpostnet/engine/commit/e9b3a68c961dd08722dc3febbca3a5bd9c42a9fe))
1062
-
1063
- ### api
1064
-
1065
- - Enhance ObjectLayerService command execution with error context ([4253b243](https://github.com/underpostnet/engine/commit/4253b2437b9cb8af42cbea0967baa6900880e0b5))
1066
-
1067
- ### docs
1068
-
1069
- - Clean docs ([46550708](https://github.com/underpostnet/engine/commit/465507082493ec26b96658b8dd26c33ace8e6bf4))
1070
- - Update README.md for clarity and improved documentation links ([4021b6fc](https://github.com/underpostnet/engine/commit/4021b6fcb55c6bad4e3cf605583c5b748ebb4734))
1071
- - Add jsdelivr badge ([d2a6f293](https://github.com/underpostnet/engine/commit/d2a6f293127801b89e7de1794c77bce2c0522276))
1072
- - Update file paths and command syntax in architecture and client/server documentation ([f51891d4](https://github.com/underpostnet/engine/commit/f51891d44552fd5cd386e7685f86434b2cf02eb9))
1073
-
1074
- ### settings
1075
-
1076
- - Update default formatters for JSON and TypeScript files ([e2c20b6f](https://github.com/underpostnet/engine/commit/e2c20b6f896ef65f55df71678cc6e6d9c116b8f6))
1077
-
1078
- ### dependabot
1079
-
1080
- - Update dependency patterns in dependabot.yml for improved package management ([60e8605c](https://github.com/underpostnet/engine/commit/60e8605c3361e1cb824ac072d593a6321d79399f))
1081
-
1082
- ### cli-cyberia
1083
-
1084
- - Refactor CyberiaDialogue handling to use codes instead of itemIds for improved dialogue management ([273fed2e](https://github.com/underpostnet/engine/commit/273fed2e4706311fbbde993ce9ea5d549376dd0b))
1085
-
1086
- ### runtime-cyberia
1087
-
1088
- - Refactor Dockerfiles for cyberia-client and cyberia-server to streamline package installations and improve build processes ([0312126c](https://github.com/underpostnet/engine/commit/0312126c7032c17e1b67fe0fef8e7c74975d9ac8))
1089
-
1090
- ### bin-vs
1091
-
1092
- - Fix correct typo in clean case to remove vsConfigRootPath ([0251c45a](https://github.com/underpostnet/engine/commit/0251c45a3580ec0e5a907667fcc1240307e2f27b))
1093
-
1094
- ## New release v:3.2.9 (2026-05-13)
1095
-
1096
- ### client-core
1097
-
1098
- - Enhance Modal component to support dynamic tooltip positioning and menu collapse behavior ([4c01f401](https://github.com/underpostnet/engine/commit/4c01f4011b55feeb8d02b52547f5cf376fff6ca0))
1099
- - Add support for pulling pre-built client bundles and skipping full builds during deployment ([7f86db25](https://github.com/underpostnet/engine/commit/7f86db25a13ede6a0027b63867b30fc9576a9263))
1100
- - Refactor Docs and Modal components to centralize submenu item rendering and improve code organization ([5fdd051e](https://github.com/underpostnet/engine/commit/5fdd051e923c9adffc2b5261637b9ade88b96fc9))
1101
- - Enhance modal and docs components to improve submenu behavior and animations ([ebf257c3](https://github.com/underpostnet/engine/commit/ebf257c38c12c0f2d66dda681b2f09f97ccfccbc))
1102
- - Defer service worker registration to improve initial load performance in PwaWorker ([88b52b8f](https://github.com/underpostnet/engine/commit/88b52b8fc0a49642b0530d5dc0b0edfaa5395c9d))
1103
- - Refactor filter clearing logic in DefaultManagement to use runIsolated for better control over grid/query listeners ([325f6bd6](https://github.com/underpostnet/engine/commit/325f6bd66bb381adec15feb12b0bd0ba8fa539e7))
1104
- - Fix LoadFileActionsRenderer and LoadFolderActionsRenderer to use instance methods for GUI management ([9e6507a0](https://github.com/underpostnet/engine/commit/9e6507a0ccc667433b9cac6a1cc645ecf6d4e7b3))
1105
- - Fix disable functions to use instance method for visibility checks ([7f5701c8](https://github.com/underpostnet/engine/commit/7f5701c8df74bc6576894d8b5f7655b64cc6797a))
1106
-
1107
- ### cli-run
1108
-
1109
- - Enhance promote method to support TLS configuration for blue/green deployments ([a3118567](https://github.com/underpostnet/engine/commit/a31185676cef0ca639621c722df31114a2b172a1))
1110
- - Add CRI-O installation and configuration methods for kubeadm clusters ([44743552](https://github.com/underpostnet/engine/commit/44743552ee5e2bcd13c157ab4e30e9dfc15979f6))
1111
-
1112
- ### cli-cluster
1113
-
1114
- - Enhance nat-iptables.sh for comprehensive Kubernetes firewall configuration and service exposure ([9087a946](https://github.com/underpostnet/engine/commit/9087a946ab29526e63d5f87b389f1ad500f30d78))
1115
-
1116
- ### cli-dns
1117
-
1118
- - Add MAC address retrieval option to CLI and implement corresponding method in DNS class ([52b31946](https://github.com/underpostnet/engine/commit/52b3194674419624d99835dfe63699ab30683bfb))
1119
-
1120
- ### engine
1121
-
1122
- - Update Node.js version to 24.15.0 in setup scripts and documentation ([e05a472c](https://github.com/underpostnet/engine/commit/e05a472cae67429321b7e1b3c601e0965d3e7b67))
1123
-
1124
- ### scripts
1125
-
1126
- - Enable firewalld and configure persistent IP forwarding in nat-iptables.sh ([845a0979](https://github.com/underpostnet/engine/commit/845a09791187613b512f95cea12bc3b0a53dd13f))
1127
-
1128
- ### cli-fs
1129
-
1130
- - Enhance UnderpostFileStorage and UnderpostRepository with additional options and methods for improved Git operations ([a812d4e6](https://github.com/underpostnet/engine/commit/a812d4e666edd2cd17c9cafc34dfdc44e5bab994))
1131
-
1132
- ### server-valkey
1133
-
1134
- - Enhance Valkey connection handling with reconnecting status and improved retry strategy ([50b26c21](https://github.com/underpostnet/engine/commit/50b26c2155c7160a9e4704aadb8c74554c7d81bd))
1135
-
1136
- ### bin-build
1137
-
1138
- - Remove unnecessary copy docs md in cyberia build repo workdlow ([50a5399f](https://github.com/underpostnet/engine/commit/50a5399f6d3b72dd7dc00092294b425f7ba618b4))
1139
-
1140
- ### package
1141
-
1142
- - Update dependencies for @protobufjs packages and fast-uri ([829026a8](https://github.com/underpostnet/engine/commit/829026a8c685e5714a48bd2fb636c13b0419d818))
1143
- - Add peer dependency flag to multiple packages in package-lock.json ([c2a7870e](https://github.com/underpostnet/engine/commit/c2a7870eb75cc44af4966a2dcb898a08e9dfe84e))
1144
-
1145
- ### docs
1146
-
1147
- - Refactor entryPoints in typedoc configuration files for improved readability and consistency ([fe77bcf3](https://github.com/underpostnet/engine/commit/fe77bcf3fb17766be2d9af31bd57d6c2481b7f87))
1148
-
1149
- ### engine-cyberia
1150
-
1151
- - Update README path in typedoc configuration to point to ARCHITECTURE.md ([74ee0e45](https://github.com/underpostnet/engine/commit/74ee0e45e355472d4f21eb8795b76c79c84c43e6))
1152
- - Add cyberia-docs path to build and file scripts for documentation inclusion ([851e126b](https://github.com/underpostnet/engine/commit/851e126bf80b9427661b6477d3bf8f52462cec87))
1153
- - Remove unique constraint from code field in CyberiaQuestSchema ([b39aa3a7](https://github.com/underpostnet/engine/commit/b39aa3a7b162b7dd230301f7eaf0747687c1c1b4))
1154
- - Rewrite and centralize cyberia docs source ([00e40986](https://github.com/underpostnet/engine/commit/00e40986a51b87c9f5f0354479c77f841a1b9221))
1155
- - Remove legacy cyberia docs ([a5546128](https://github.com/underpostnet/engine/commit/a5546128a20945645fe3008f5c98f01772ff055f))
1156
- - Refactor Cyberia schemas and update quest/action definitions for clarity and consistency ([cd731320](https://github.com/underpostnet/engine/commit/cd7313206903035232da6f842f13475e8af77346))
1157
- - Add source map coordinates to CyberiaQuest schema and update action catalog metadata, and remove lefacy seed runners in cyberia CLI ([b3995848](https://github.com/underpostnet/engine/commit/b3995848556c87def6ff1045c73605c50201a1a3))
1158
- - Refactor CyberiaActionSchema by removing grantQuestCode field and update description in STATUS_ICONS for clarity ([221a8f07](https://github.com/underpostnet/engine/commit/221a8f072393238adf83c26c46d09fe05aa24466))
1159
- - Add seeding commands for Cyberia actions and quests, update schemas and default data structures ([70cd5f17](https://github.com/underpostnet/engine/commit/70cd5f17d08eb1d6c812d7428b8a5a6c76d72728))
1160
- - Refactor Cyberia schemas to enhance action and quest structures, replacing itemId with more descriptive fields and adding new properties for better data management ([8736f2ba](https://github.com/underpostnet/engine/commit/8736f2bac3534180d798ea2ae2e6aac9781db9c2))
1161
- - Refactor Cyberia dialogue handling to use 'code' instead of 'itemId' for dialogue retrieval and update related schemas and data structures ([d8d50325](https://github.com/underpostnet/engine/commit/d8d50325e2fbe8a118edde7e9bd7fb01d1507233))
1162
- - Update CyberiaActionSchema to correct action types and add storage payload structure ([88b68cb6](https://github.com/underpostnet/engine/commit/88b68cb6839900230ffb54fa44f6b11056aca5c0))
1163
- - Add Cyberia action and quest default data structures with schemas ([8171b6b4](https://github.com/underpostnet/engine/commit/8171b6b43b2aee98f0d8fe0151362493b09fdfd5))
1164
- - Implement Cyberia Quest and Progress APIs with controllers, services, models, and routers ([ba3c7bcb](https://github.com/underpostnet/engine/commit/ba3c7bcb05f79f3999ec0f20daf49d4f02a2c9e2))
1165
-
1166
- ### github-actions
1167
-
1168
- - Remove run metadata worflow in engine-core sync deploy ([84d684d4](https://github.com/underpostnet/engine/commit/84d684d4bf694605c67bf521617d60920ea43205))
1169
- - Increase timeout for sync command in engine lampp workflow ([949d693b](https://github.com/underpostnet/engine/commit/949d693b5d4aaa28226b0417c2e2b87511eec885))
1170
- - Remove ssh-deploy sync-engine-test command from release deployment workflow ([0e6cf3af](https://github.com/underpostnet/engine/commit/0e6cf3af48a2e0e904dd2e646a66931cf0cea784))
1171
-
1172
- ### clien-core
1173
-
1174
- - Optimize sessionOut and guest login process to skip unnecessary network calls ([b16a21fe](https://github.com/underpostnet/engine/commit/b16a21fe3ce12d6c3c636677b06e1fa064500b6c))
1175
-
1176
- ### cli-db
1177
-
1178
- - Add export success tracking and enforce backup retention in UnderpostDB ([678ed675](https://github.com/underpostnet/engine/commit/678ed675ff51ae681b6177c34ba1295543f5a916))
1179
-
1180
- ### api-cyberia
1181
-
1182
- - Remove CyberiaAchievement API controller, service, and router files to streamline codebase ([f5f31700](https://github.com/underpostnet/engine/commit/f5f31700fed2940a475149ed0a948eae548c78e2))
1183
-
1184
- ### runtime-cyberia-client
1185
-
1186
- - Refactor cyberia-client Dockerfile to streamline package installations and improve build process ([66edc28c](https://github.com/underpostnet/engine/commit/66edc28c1c3877bbf1d1ad0bdb8dbe259746f18d))
1187
-
1188
- ### server-data-query
1189
-
1190
- - Refactor DataQuery to use class syntax and static methods for improved structure and clarity ([b2722112](https://github.com/underpostnet/engine/commit/b27221124d096a046141d87fbc37de951c58aa92))
1191
-
1192
- ### engine-core
1193
-
1194
- - Fix rename AppointmentFormHealthcare to AppointmentFormHealthCare for consistency ([02839072](https://github.com/underpostnet/engine/commit/02839072b6aaa77d7f524934a8ab92a24d4d5040))
1195
-
1196
- ### cli-release
1197
-
1198
- - Update workflows to reflect new underpost image versions ([f5e18de0](https://github.com/underpostnet/engine/commit/f5e18de0c9209fb6da2254a8dca94e8ef37ae394))
1199
-
1200
- ## New release v:3.2.8 (2026-05-01)
1201
-
1202
- ### bin-build
1203
-
1204
- - Update build.js to replace jsdoc references with typedoc for documentation generation ([198f69d4](https://github.com/underpostnet/engine/commit/198f69d433fb76da8bfdb1581286a0ce5f2e6454))
1205
- - Update cyberia custom folder ([b03ad6dc](https://github.com/underpostnet/engine/commit/b03ad6dca6faa4ed339b3baa60aa15320fbcfcb7))
1206
-
1207
- ### docker-image
1208
-
1209
- - Add Node.js installation to Dockerfiles for cyberia-client and WordPress ([c0674845](https://github.com/underpostnet/engine/commit/c06748453caf588a7801ebc7650945ebcab2dce2))
1210
- - Update Dockerfiles to enhance system package installation and cleanup ([13506d7b](https://github.com/underpostnet/engine/commit/13506d7b39d9e674d5e790b8721cb63e1e9e5001))
1211
- - Remove conditional repository check from CI workflow files and add CI workflow copying logic in run.js ([0d9f1520](https://github.com/underpostnet/engine/commit/0d9f1520c721d36ffda33aacbe4d3ee9d8b59486))
1212
- - Rename template-deploy-image method to docker-image and update workflow file reference ([75eb4b93](https://github.com/underpostnet/engine/commit/75eb4b9328ec05b815f12e416dc22186ec6f05d2))
1213
-
1214
- ### cli-run
1215
-
1216
- - Enhance image pulling logic to skip local images and check for existing images in the cluster ([c3f33ed7](https://github.com/underpostnet/engine/commit/c3f33ed746674486ce302d014ed4ec406252de65))
1217
- - Refactor deployment manifest generation to improve clarity and structure; update Dockerfile paths and instance handling ([c99a67d9](https://github.com/underpostnet/engine/commit/c99a67d952e14e665a710507864e6b7ce907505f))
1218
- - Fix image pulling logic to prevent unnecessary Docker Hub requests for local images ([88556c52](https://github.com/underpostnet/engine/commit/88556c5281c7986479b1710a693b21592cc0ecd8))
1219
- - Add push-bundle and pull-bundle methods for zip file handling and deployment ([e8237990](https://github.com/underpostnet/engine/commit/e82379907267e483177e6be2374cb6c922aa42b2))
1220
- - Add pull-rocky-image method to pull Rocky Linux image via Podman ([59f7e624](https://github.com/underpostnet/engine/commit/59f7e6245b2b5a49fbd14e28632915952f0cde00))
1221
-
1222
- ### cli-ssh
1223
-
1224
- - Fix console log output ([2cd7e7a1](https://github.com/underpostnet/engine/commit/2cd7e7a12f53cdc03c79921d13c71d88276e55bc))
1225
-
1226
- ### bin-file
1227
-
1228
- - Add guest.service.js to the list of files in the workflow configuration ([760a196a](https://github.com/underpostnet/engine/commit/760a196a92853ac05b2765fb27df6894955aaaba))
1229
-
1230
- ### dockerfile
1231
-
1232
- - Remove non-root user creation and unnecessary comments from Dockerfiles ([494194da](https://github.com/underpostnet/engine/commit/494194da26d08b60b94789ad50a3183387a44847))
1233
-
1234
- ### package
1235
-
1236
- - Add missing workbox-cacheable-response package ([0dd5cbe4](https://github.com/underpostnet/engine/commit/0dd5cbe4f0cad214448ac537465041e4cc701d62))
1237
- - Remove legacy peer dependencies from package-lock.json ([60b4c70f](https://github.com/underpostnet/engine/commit/60b4c70f05c62132ff3d27aa410bd9ec4914d4f0))
1238
-
1239
- ### docs
1240
-
1241
- - Update README.md intro ([9672ca54](https://github.com/underpostnet/engine/commit/9672ca54281bbd50f30809fefce58dbe41334c36))
1242
- - Fix iframe handling in Docs component to maintain parent scroll position and synchronize layout on navigation ([032bd1a8](https://github.com/underpostnet/engine/commit/032bd1a8193a3386edd0fe28c63ea863c3ce6d16))
1243
- - Migrate from JSDoc to TypeDoc for documentation generation ([596bd8d4](https://github.com/underpostnet/engine/commit/596bd8d462f5b2b6a2f185285b555554e7440563))
1244
-
1245
- ### runtime
1246
-
1247
- - Add Node.js installation and verification steps to Dockerfiles for cyberia-client, cyberia-server, express, and lampp ([58b2c2a5](https://github.com/underpostnet/engine/commit/58b2c2a513a54fdbf6188a2a7bb4ac74d78d8bcb))
1248
- - Refactor Dockerfiles to improve package installation clarity; update comments and streamline system package installations ([a64cf888](https://github.com/underpostnet/engine/commit/a64cf8881f8675457b74ae9edbdbd619a636b6e6))
1249
-
1250
- ### cli-release
1251
-
1252
- - Update image versions in conf.instances.json files during release process ([3af315b9](https://github.com/underpostnet/engine/commit/3af315b923621e74ae75640f8f782535350e7f41))
1253
- - Update Docker image version tags in release process to reflect new versioning scheme ([07a943f3](https://github.com/underpostnet/engine/commit/07a943f308679bbefffc22d284c832971a467f75))
1254
-
1255
- ### github-actions
1256
-
1257
- - Add CI workflows for cyberia-client, cyberia-server, express, lampp, and wp; update deployment scripts for new image versions ([1d6d64d7](https://github.com/underpostnet/engine/commit/1d6d64d732bb311ee5aca6e8a680c83086c9b654))
1258
- - Refactor deployment commands to simplify sync and remove redundant npm installations ([9cce9039](https://github.com/underpostnet/engine/commit/9cce9039041ec5b160453a38e7b81ba72899b886))
1259
- - Update deployment configurations, service ports, and proxy settings for development environments ([07efd097](https://github.com/underpostnet/engine/commit/07efd09750fd2976c89bbe37f500a0c9f439179b))
1260
- - Update container images and simplify base command in CLI sync function ([e5d22868](https://github.com/underpostnet/engine/commit/e5d22868d610f11fc241bdfa3ddc4fb5eb39a18d))
1261
- - Fix deployment command to remove redundant sync flag in engine-cyberia workflow ([f4d95973](https://github.com/underpostnet/engine/commit/f4d9597383c39eeeb4b7742b4d3f3a554eb85585))
1262
- - Fix sync command in CI workflows to remove hardcoded image version for engine core and cyberia deployments ([1d6aa177](https://github.com/underpostnet/engine/commit/1d6aa177b14362f6b2c7bcd81043738ad671277d))
1263
- - Update deployment commands in CI workflows to remove hardcoded image versions and enhance command execution ([5af414cc](https://github.com/underpostnet/engine/commit/5af414cc13bc4448ff187277b1fd1f5f6740ffa9))
1264
- - Refactor deployment commands to comment out npm installations and adjust secret command execution based on environment options ([0a72d037](https://github.com/underpostnet/engine/commit/0a72d037eb20ef45d53e84af8a54714314e3da11))
1265
-
1266
- ### engine-cyberia
1267
-
1268
- - Add cyberia-server and cyberia-client to build and file copy paths ([12458255](https://github.com/underpostnet/engine/commit/12458255961a68c92fb1809cba7e2848fb30ec6d))
1269
- - Enhance Cyberia instance configuration handling by ensuring updatedAt is set during import and resolving missing config references with instanceCode lookup ([5b12e7f4](https://github.com/underpostnet/engine/commit/5b12e7f488273f7cceff5e781547d749448bd953))
1270
- - Update MongoDB findOneAndUpdate options to use 'returnDocument: after' for consistency ([90abee1e](https://github.com/underpostnet/engine/commit/90abee1ef6be0972701f59b43a3be7b65d4a1337))
1271
- - Add randomization feature for stat inputs in ObjectLayerEngineModal ([b29f361a](https://github.com/underpostnet/engine/commit/b29f361a6406f9bde350897f72970b72aba14935))
1272
- - Add item IDs management and dropdown functionality in InstanceEngineCyberia ([417c82cf](https://github.com/underpostnet/engine/commit/417c82cf4534c0921b5eeafacbd1a6d951740d2b))
1273
- - Add direction preview functionality to ObjectLayerEngineModal ([5ef3c448](https://github.com/underpostnet/engine/commit/5ef3c4489ff04e1e224b75ba0434d0e6413a583b))
1274
- - Add uniform opacity feature to ObjectLayerEngineModal ([c8830efb](https://github.com/underpostnet/engine/commit/c8830efb32ce50b0a65e328fc2760c3b4fc4020e))
1275
- - Refactor canvas behavior handling and add mosaic types in ObjectLayerEngineModal ([08b9ea4b](https://github.com/underpostnet/engine/commit/08b9ea4b2d5fda699687451fe5b562fc190ad92d))
1276
- - Implement distortion types and functionality in ObjectLayerEngineModal ([dbe9edc3](https://github.com/underpostnet/engine/commit/dbe9edc312dc023981b32e362653c9cf6d65d4eb))
1277
- - Refactor item and entity type handling in Cyberia components to utilize shared constants and improve dropdown functionality ([67b52867](https://github.com/underpostnet/engine/commit/67b528675689bcebb68f0b521924cb59ac984c19))
1278
- - Fix frame metadata assignment in AtlasSpriteSheetGenerator to correctly set frame index ([d17b3036](https://github.com/underpostnet/engine/commit/d17b30366574ed91a3797120e16b73c0ceb5afff))
1279
- - Add frame_duration property to AtlasSpriteSheet model and update related services for frame duration handling ([5ce0eef0](https://github.com/underpostnet/engine/commit/5ce0eef0f12f318312475a460e912d30808b9f76))
1280
- - Remove is_stateless property from ObjectLayerRenderFrames model and related components for simplification ([f924f1f4](https://github.com/underpostnet/engine/commit/f924f1f4f8600a43fb437a7829e8cb024f3775d5))
1281
- - Add ColorPaletteElement and integrate it into MapEngineCyberia and ObjectLayerEngineModal for enhanced color selection ([0403c362](https://github.com/underpostnet/engine/commit/0403c362c48ceea77f03475117305b07f0ca1dbf))
1282
- - Enhance resource entity handling by adding dropItemIds and updating schemas for extraction logic ([72ccee23](https://github.com/underpostnet/engine/commit/72ccee238eb01944b872bb7c77f7d638f772aa5d))
1283
- - Add clone logic object layer modal engine ([b03c41b6](https://github.com/underpostnet/engine/commit/b03c41b60f45fa481e55f88256edbef6fa4d2729))
1284
- - Update entity status documentation and add 'resource-extracted' status icon ([7f1be1e3](https://github.com/underpostnet/engine/commit/7f1be1e3d9e8c19fc36637131cf491d1ba26a585))
1285
- - Update skill logicEventId for atlas_pistol_mk2 and add projectile skill for hatchet ([1c1f36bf](https://github.com/underpostnet/engine/commit/1c1f36bf87110a14e3b8665b87ccf00f40a245d5))
1286
- - Refactor skill configuration to use structured skills with detailed attributes ([5cb12ba4](https://github.com/underpostnet/engine/commit/5cb12ba4684a4884ee736183e955f06370c0cae8))
1287
- - Add resource semantic descriptors and shape generation for collectible resources ([a22c63b7](https://github.com/underpostnet/engine/commit/a22c63b730f5f9d57b38c7c9998f7f0775a2b031))
1288
- - Add versioning to instance response using SHA-256 hash of updatedAt timestamps ([ea259838](https://github.com/underpostnet/engine/commit/ea2598386e48f3494fffaab02c210ed59095025b))
1289
- - Add parseRgba function to handle CSS rgba() color strings and update toEntityMsg to include RGBA components ([25aeb957](https://github.com/underpostnet/engine/commit/25aeb957256e82687d5d9d60b2cd458e049d9b68))
1290
- - Refactor toInstanceConfig function for improved color merging logic and enhanced handling of entity defaults ([23adaab8](https://github.com/underpostnet/engine/commit/23adaab83701e1df2246cca9870a627e15e965c4))
1291
- - Implement Base Cyberia Achievement API with CRUD operations and service integration ([67faa491](https://github.com/underpostnet/engine/commit/67faa49113bac62589d0d61c3b7c6cf527d7437c))
1292
-
1293
- ### client-sw
1294
-
1295
- - Enhance service worker to distinguish between server downtime and offline status for improved error handling ([c32233e9](https://github.com/underpostnet/engine/commit/c32233e954c2b9f7029d44f6dc55d2b849c28d23))
1296
-
1297
- ### client-core
1298
-
1299
- - Implement cache management and reset functionality in PWA worker and service worker ([6864157e](https://github.com/underpostnet/engine/commit/6864157e709f05f47899950fa28206e6a4dfdd5e))
1300
- - Add resolveBrowserImportPath function and improve import rewriting logic ([ad796f1d](https://github.com/underpostnet/engine/commit/ad796f1da05804e4bfb13316017662e353165d1e))
1301
- - Refactor client build process to dynamically handle service files ([ec0ffb6e](https://github.com/underpostnet/engine/commit/ec0ffb6e81dc1659f26552d894dcbd12f5159d02))
1302
- - Refactor Auth and Guest Services for Improved Token Management ([650ec6b6](https://github.com/underpostnet/engine/commit/650ec6b6162fc5db8f47cf74f433c399b2c2fdb9))
1303
- - Refactor management components to use instance methods instead of static RenderTable ([67382a9d](https://github.com/underpostnet/engine/commit/67382a9d5576ac8dad54b36de4ea14730cda2fe0))
1304
- - Fix LoadingAnimation to correctly reference img tokens and simplify onload/onerror handlers in ObjectLayerManagement ([051bb65d](https://github.com/underpostnet/engine/commit/051bb65dc5631dd96296ea8e254a1818576b10a8))
1305
- - Refactor Modal, Panel, PublicProfile, SearchBox, and ObjectLayerEngineModal components to use class syntax and static properties for improved structure and maintainability ([3e514e57](https://github.com/underpostnet/engine/commit/3e514e57913bc90475b7b8fc06bef43eb583428a))
1306
- - Remove JoyStick component and its associated functionality from the codebase ([e0817343](https://github.com/underpostnet/engine/commit/e08173436a3788f7fd8d80dc966973fec04f556d))
1307
- - Add Modal layout synchronization and streamline Docs component by removing unused Responsive references ([2fa05c3b](https://github.com/underpostnet/engine/commit/2fa05c3b9a2cb2a1ecdf1ddbb433885a4b6d769d))
1308
- - Refactor Responsive event handlers in Docs and Modal ([2a2e0c90](https://github.com/underpostnet/engine/commit/2a2e0c90ec7c7d5887cedb824bb0677bf7489b19))
1309
- - Update routing logic to use registered routes in getProxyPath and register routes in PwaWorker initialization ([c7054455](https://github.com/underpostnet/engine/commit/c7054455937636e84894a4b709ae5c73704becb1))
1310
- - 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. ([68d6accd](https://github.com/underpostnet/engine/commit/68d6accdb15aca8fd58f5336eee8e4bfa570b588))
1311
- - FIx LoadingAnimation methods to use correct token storage for bar and spinner components ([3884039c](https://github.com/underpostnet/engine/commit/3884039c3d36b097e1dd465917eb88be20bd38b2))
1312
- - Update default configuration to replace 'MenuDefault' with 'AppShellDefault' for improved clarity ([c0eae396](https://github.com/underpostnet/engine/commit/c0eae3962476d4183555e9ef80e7048347b31bf0))
1313
- - Refactor event handling to use new event system across components for improved responsiveness and maintainability ([d3c33f71](https://github.com/underpostnet/engine/commit/d3c33f71ffe12a8e695121aab027e61e41e96014))
1314
- - Refactor authentication components to use EventBus for login, logout, and signup events ([11910476](https://github.com/underpostnet/engine/commit/1191047652a0c51e6484eca40f931d9c7c3af49f))
1315
- - Refactor rendering methods to use 'instance' instead of 'Render' in various components and services for consistency and clarity ([4b9424f6](https://github.com/underpostnet/engine/commit/4b9424f6d945183e0450bc527a41e2049f18e8a9))
1316
- - Fix to use const for event listener objects in Css, Router, and Valkey modules ([35b3987d](https://github.com/underpostnet/engine/commit/35b3987d556e19d5dd92d3c707f3cb770d81e1b4))
1317
- - Refactor to ES6 class static methods ([6f562559](https://github.com/underpostnet/engine/commit/6f5625594b6b1efd74ffb30f9e01b77a121c7bd2))
1318
- - Refactor entry point files to streamline initialization and improve structure ([97d833c2](https://github.com/underpostnet/engine/commit/97d833c20658c864c3c76665b2f0d94b21e8c939))
1319
- - Rename Menu to AppShell components with menu and routing functionality ([503aca7d](https://github.com/underpostnet/engine/commit/503aca7d9620eaac43ed0eb67e753b794b44c284))
1320
- - Remove inline styles from RichText component ([8256212b](https://github.com/underpostnet/engine/commit/8256212be9cd50a1efd34f06a18d52cc6b334cdc))
1321
- - Add 'add-component' command to deploy script for dynamic component management ([ac166e3c](https://github.com/underpostnet/engine/commit/ac166e3ca590237877fc49c02e7fa527f7dc3dfe))
1322
-
1323
- ### server-build
1324
-
1325
- - Refactor client build process to enhance resource pre-caching logic and prioritize critical paths ([6566b958](https://github.com/underpostnet/engine/commit/6566b9583e437242a98b3ab611bc9c3038899102))
1326
- - Enhance resource pre-caching logic by filtering out unnecessary files in client build process ([9543fdb3](https://github.com/underpostnet/engine/commit/9543fdb3aa72e3a80660cc02b8535fb92c74dc49))
1327
-
1328
- ### conf
1329
-
1330
- - Udate package.json for server entry point and script adjustments ([df84b5af](https://github.com/underpostnet/engine/commit/df84b5af2975f718a841b58d7c6ed1ba98d5e581))
1331
- - Rename 'ClientEvent' to 'ClientEvents' for consistency in configuration ([bddd3daa](https://github.com/underpostnet/engine/commit/bddd3daa0bf217d817ea05ce3d94e805900ab4b1))
1332
-
1333
- ### cli-client
1334
-
1335
- - Add checks for replica context in repository and configuration handling ([a8d925ad](https://github.com/underpostnet/engine/commit/a8d925ad37e57a1f99fc15826dc2ddd265d2c120))
1336
- - Add checks for replica context in repository and configuration handling ([c4246296](https://github.com/underpostnet/engine/commit/c424629688226e3b8b20a0828c0fe8e8a1003cc3))
1337
- - Add --merge-zip option and implement mergeClientBuildZip function for combining split ZIP parts ([15408be6](https://github.com/underpostnet/engine/commit/15408be66eb6fab1276a05625eb768baa9ae9ea4))
1338
-
1339
- ### engine-core
1340
-
1341
- - Refactor DefaultManagement and ObjectLayerManagement to use instance properties instead of static properties for eGui and tokens ([2d7da816](https://github.com/underpostnet/engine/commit/2d7da81695556d3404cca1ddbf8a794ac1a4c75d))
1342
- - Add cecinasmarcelina client assets ([045fe5ad](https://github.com/underpostnet/engine/commit/045fe5adda88a3c0ce487ee3189611a718ce90fd))
1343
- - Add cecinasmarcelina base client ([d67924b1](https://github.com/underpostnet/engine/commit/d67924b1a002cc2e55772f6334da86c010303ec8))
1344
-
1345
- ### bin-deploy
1346
-
1347
- - Refactor 'add-component' command to support optional parameters and improve error handling for component addition ([3d5103d1](https://github.com/underpostnet/engine/commit/3d5103d11bcadeeee530cd32d8ad7ab342f4fc7e))
1348
-
1349
- ### engine
1350
-
1351
- - Update deployment configurations and update service ports ([e0a78d38](https://github.com/underpostnet/engine/commit/e0a78d38bfc87353ab3490de3b6824fd1cb991b4))
1352
- - Update moduleResolution in jsconfig to use 'bundler' ([307f5e10](https://github.com/underpostnet/engine/commit/307f5e1062edbb6b3356f0ccb0088cb90ee662cc))
1353
-
1354
- ### cli-fs
1355
-
1356
- - Enhance zip file handling in deployment process to check for existence of bundles and parts ([0bda824f](https://github.com/underpostnet/engine/commit/0bda824f247e315f3886f36d7f2cdbcec42c21cd))
1357
- - Enhance mergeClientBuildZip function to clean stale part files and improve part file handling ([963720fa](https://github.com/underpostnet/engine/commit/963720fab68e78a756552347c3259eb48091ee0e))
1358
- - Enhance pull method to support force option and improve zip file handling ([d6f5fa3f](https://github.com/underpostnet/engine/commit/d6f5fa3f442fa641edbe200f27ba9e1ba2d1b92a))
1359
- - Add --omit-unzip option to pull command to retain downloaded zip files ([a5cf84b1](https://github.com/underpostnet/engine/commit/a5cf84b111aae533cc1fe5dc09809928695826d1))
1360
- - Refactor recursive removal logic in UnderpostFileStorage to improve path handling and logging ([f890ae6a](https://github.com/underpostnet/engine/commit/f890ae6a8d7004a74ec96b219dd3f455db894183))
1361
- - Implement recursive removal of tracked storage keys and enhance logging for associated paths ([5cb5d717](https://github.com/underpostnet/engine/commit/5cb5d71724ac2c687a105ed0a953a9d36e0fbc20))
1362
-
1363
- ### cli-start
1364
-
1365
- - Enhance deployment options by adding --skip-full-build flag and updating deployment commands to support skipping full client bundle builds. ([62594bd3](https://github.com/underpostnet/engine/commit/62594bd3264465e2ebb52e12b396e50c64ed5086))
1366
-
1367
- ### client-build
1368
-
1369
- - Add unzip functionality for client build zip files and enhance deployment commands ([3e8216ae](https://github.com/underpostnet/engine/commit/3e8216ae6fc2b08c25f09f0d3188c485cdd42c40))
1370
- - Add support for splitting generated zip files into specified sizes ([9a5d46ef](https://github.com/underpostnet/engine/commit/9a5d46efc231c2760b9daf0bc201a1db06c6f248))
1371
- - Exclude .git directory from file copy operations in client build process ([ad99de0a](https://github.com/underpostnet/engine/commit/ad99de0acb9fce275c1768b8940138e1d2ed78ac))
1372
- - Remove deprecated HTML website templates handling from client build process ([72e5462d](https://github.com/underpostnet/engine/commit/72e5462d0e2f0ae887984a6129069e1a5b8fdd60))
1373
-
1374
- ### cli-deploy
1375
-
1376
- - Update configMap method to use dynamic cronDeployId for secret creation ([f4e21e57](https://github.com/underpostnet/engine/commit/f4e21e57b04da2527b7718b19ad07384116b9e14))
1377
- - Add 'clone-server' command to replicate server configurations between deployments ([d0f28a43](https://github.com/underpostnet/engine/commit/d0f28a43ca94f819f5a0fafae1723ea5d388d678))
1378
- - Add 'add-server-client' command to streamline client configuration cloning ([2471506e](https://github.com/underpostnet/engine/commit/2471506ec1215d02b287fb972757904e35ac6ebc))
1379
- - Add 'clone-client' command to duplicate client configurations and assets ([ae61478c](https://github.com/underpostnet/engine/commit/ae61478cad677b83be83c0134dd80437afd57dad))
1380
-
1381
- ### cli-run-instance
1382
-
1383
- - Enhance deployment functionality by adding debug port support and updating documentation for configuration parameters ([8af8c3ea](https://github.com/underpostnet/engine/commit/8af8c3eae2344c6afd2b91d30095e84fba0121a5))
1384
-
1385
- ### cli-cyberia
1386
-
1387
- - Enhance --drop option to clarify its functionality and improve item deletion logic in import process ([800803cc](https://github.com/underpostnet/engine/commit/800803cce1d3a674ed5993fcb72d12e51e5e4077))
1388
- - Add --conf option to export/import for processing configuration files only ([43ee7fab](https://github.com/underpostnet/engine/commit/43ee7fab5b79b63001786f81c36da590f0d91fd4))
1389
- - Enhance IPFS export process with resource type inference and backup payload handling ([ad07f788](https://github.com/underpostnet/engine/commit/ad07f788fb95ab09ef359b3d3040484ddcd2445c))
1390
- - Add CyberiaDialogue support for export and import processes ([786c806f](https://github.com/underpostnet/engine/commit/786c806fbf9963d7116596910ffe1295dd69ee78))
1391
- - Enhance IPFS client and export processes with new functionalities ([d174dc80](https://github.com/underpostnet/engine/commit/d174dc80d5ed4970e0e0c85a8b01d3dca884cfb4))
1392
- - Enhance IPFS export process to infer resourceType from mfsPath and ObjectLayer references ([41eee660](https://github.com/underpostnet/engine/commit/41eee660cc2204d9a63714a26973df98b8ef8f38))
1393
- - Enhance IPFS export and import processes to infer resourceType from mfsPath for legacy records, ensuring data integrity and preventing export errors. ([c7854777](https://github.com/underpostnet/engine/commit/c785477773cfcedb8ee71a7764c14208c70541ff))
1394
- - Enhance deletion logic in Cyberia CLI to handle additional metadata for AtlasSpriteSheet, ObjectLayer, and Ipfs entries ([abafcd65](https://github.com/underpostnet/engine/commit/abafcd65befc669d7cd498435aea9f5ae8b4808b))
1395
-
1396
- ### cyberia-cli
1397
-
1398
- - Add default creation logic for CyberiaInstanceConf during export process ([67aaea45](https://github.com/underpostnet/engine/commit/67aaea452c3fea636fe58645a45282da907cafe9))
1399
- - Add CyberiaInstanceConf handling for export and import processes in CLI ([febc2eb1](https://github.com/underpostnet/engine/commit/febc2eb1a5aff31ac83266b7cc5330281c130f41))
1400
-
1401
- ### cyberia-map-engine
1402
-
1403
- - Refactor thumbnail handling in cloneMap to prioritize fresh object-layer capture and update UI text for clarity ([1cbb98a6](https://github.com/underpostnet/engine/commit/1cbb98a61cd8dca5f767b4f4b0cd00ceaeff6967))
1404
- - Add functionality to rename Object Layer ItemIds for filtered entities ([532116d8](https://github.com/underpostnet/engine/commit/532116d8bd8b69ec22b303edfdf8303098f12d5a))
1405
-
1406
- ### cyberia-semantic-engine
1407
-
1408
- - Fix direction handling in semantic layer generator by correcting left/right template mirroring ([494882ce](https://github.com/underpostnet/engine/commit/494882cefa5dc73739d93cf7e47b47b34424217c))
1409
-
1410
- ### client-cyberia-conf
1411
-
1412
- - Update ENTITY_TYPE_DEFAULTS to replace deprecated item IDs and add new entries ([f89a4186](https://github.com/underpostnet/engine/commit/f89a4186ab79c35c40d7e15e593fdd8f4f24d5b8))
1413
-
1414
- ### hardhat
1415
-
1416
- - Update hardhat to version 3.4.1 in package.json ([d2dff4b3](https://github.com/underpostnet/engine/commit/d2dff4b3adaa2049b174538351959d49f26dc4a4))
1417
-
1418
- ### client-cyberia-map
1419
-
1420
- - Implement entity history management with undo/redo functionality in MapEngineCyberia ([2dba8954](https://github.com/underpostnet/engine/commit/2dba89547604567060ea156f29ea9e59628aaff7))
1421
-
1422
- ### client-cyberia-instance
1423
-
1424
- - Refactor instance persistence logic to improve notification handling and streamline save functionality ([45a6a3a3](https://github.com/underpostnet/engine/commit/45a6a3a32adc6dc4ed4e4b76ce48be3a81d576fb))
1425
-
1426
- ### client-cyberia-map-engine
1427
-
1428
- - Implement entity filtering and randomization features in MapEngineCyberia ([70224f29](https://github.com/underpostnet/engine/commit/70224f290c8d4c0f20fe8c8995b4c2e7a641d529))
1429
-
1430
- ### api-cyberia-instance
1431
-
1432
- - Refactor portal connection logic and procedural entity generation ([e670d387](https://github.com/underpostnet/engine/commit/e670d387ddb99a676a1d1cffb3c97ec9aebe4c33))
1433
-
1434
- ### client
1435
-
1436
- - Refactor MenuCecinasmarcelina styles for improved layout and responsiveness ([037acd2c](https://github.com/underpostnet/engine/commit/037acd2ceca9199f532a0590d3964e651e613c49))
1437
- - Enhance cecinasmarcelina configuration and improve menu styles with new hover effects and responsive design ([1e26c5bb](https://github.com/underpostnet/engine/commit/1e26c5bb97c0996ce6f1cfc17df33106276e8cdd))
1438
- - Update contact information in Cecinasmarcelina index ([8239df42](https://github.com/underpostnet/engine/commit/8239df42ea3909306848771d56c9ce54d942413b))
1439
-
1440
- ### gitub-actions
1441
-
1442
- - Update theme color and enhance service configurations for dd-core and dd-test deployments ([d03c4baf](https://github.com/underpostnet/engine/commit/d03c4baf5f7a8ac74b5f731f27931c79084d97d8))
1443
-
1444
- ## New release v:3.2.5 (2026-04-16)
1445
-
1446
- ### cli-run
1447
-
1448
- - Refactor cron command execution to improve flag handling and streamline deployment options ([1773b8e1](https://github.com/underpostnet/engine/commit/1773b8e12d1edccd99d21b231c47bbea647e9772))
1449
- - Add shellExec command for database operations in deployment process ([9de52cb7](https://github.com/underpostnet/engine/commit/9de52cb7d69e2fe2a8e515e8bfb23a615c0974a6))
1450
-
1451
- ### cli-cron
1452
-
1453
- - Enhance cron job commands with git option and streamline backup operations ([170c77ff](https://github.com/underpostnet/engine/commit/170c77ff499712bce2fe443719c29528c52610e5))
1454
- - Refactor cron job commands to use 'underpost' CLI and remove secret run step ([e51cd023](https://github.com/underpostnet/engine/commit/e51cd023195ef8855b36418b4076812ef677baaf))
1455
- - Refactor streamline cron deployment handling and add deploy-id resolver ([bb81fe80](https://github.com/underpostnet/engine/commit/bb81fe80bcb6b7aa30604d65d0357b2e3e5e10ee))
1456
-
1457
- ### github-actions
1458
-
1459
- - Fix sudo usage in package installation step ([8545a8e8](https://github.com/underpostnet/engine/commit/8545a8e88e10443d754bcadb1772c3e1acb369f9))
1460
-
1461
- ## New release v:3.2.4 (2026-04-15)
1462
-
1463
- ### cli-cron
1464
-
1465
- - Update underpost container environment path for volume mount ([8fdfb541](https://github.com/underpostnet/engine/commit/8fdfb54165f4ef7379fccbeb20e5c476320bc1f6))
1466
-
1467
- ### github-actions
1468
-
1469
- - Add dispatch step for release CD in publish workflow ([8dc0e3cc](https://github.com/underpostnet/engine/commit/8dc0e3ccd1a578f776edf215428d08640b44c3d1))
1470
-
1471
- ## New release v:3.2.3 (2026-04-15)
1472
-
1473
- ### cli-cron
1474
-
1475
- - Remove is-inside-container dependency and implement isInsideContainer method in env module ([79d39ece](https://github.com/underpostnet/engine/commit/79d39ece0db1f3acb65af22e3bc7f7c6a66487a9))
1476
-
1477
- ### github-actions
1478
-
1479
- - Ensure deploy-release job runs only on successful build-and-publish ([08ba0463](https://github.com/underpostnet/engine/commit/08ba0463263f6cb2b6c14a6bd56e547c152a0a3a))
1480
-
1481
- ## New release v:3.2.2 (2026-04-15)
1482
-
1483
- ### docker-image
1484
-
1485
- - Remove unnecessary directory creation and volume declaration for working directory in Dockerfile ([84f7f895](https://github.com/underpostnet/engine/commit/84f7f8950d45512b6177c7523e4d278f2db25ef4))
1486
-
1487
- ### github-actions
1488
-
1489
- - Update CronJob schedules and commands to include kubeadm flag ([2795d6a8](https://github.com/underpostnet/engine/commit/2795d6a8a9cd552afbd22b16616c982227540dff))
1490
- - Add volume mounts for .env file in dd-cron backup and dns CronJobs ([76cd8a31](https://github.com/underpostnet/engine/commit/76cd8a31b7d3686d87333bb5384c6648bfbaf066))
1491
- - Refactor deployment and cron job scripts for improved readability and maintainability ([34d38d07](https://github.com/underpostnet/engine/commit/34d38d077adde37d9665b699e642b2ce62bce7fc))
1492
- - Refactor deployment scripts to use environment variables for secret creation ([40165237](https://github.com/underpostnet/engine/commit/40165237caa07386c71ae2db81894e0e7b1d6373))
1493
- - Update cron jobs and deployment scripts to use secrets and streamline environment variable handling ([3e3b0c3b](https://github.com/underpostnet/engine/commit/3e3b0c3b013b012c37c076a71915c365047b989f))
1494
-
1495
- ### cli-cron
1496
-
1497
- - Add support for k3s, kind, and kubeadm flags in CronJob configuration ([d7edd8de](https://github.com/underpostnet/engine/commit/d7edd8dea0c978151f80130203686379beebac2c))
1498
- - Add environment variable volume and path for Kubernetes CronJob ([abe73163](https://github.com/underpostnet/engine/commit/abe7316348a90f4fbe8730150bd87a9ee56d8d5c))
1499
- - Refactor deployment scripts to create secrets from container environment variables and streamline environment handling ([e5589ec7](https://github.com/underpostnet/engine/commit/e5589ec7f6ff67c4d99d49cf65e3261c190919c1))
1500
- - Enhance deployment and backup processes ([f5832307](https://github.com/underpostnet/engine/commit/f58323077dfb4449f22dc4719d07addf2e18d820))
1501
-
1502
- ### cli-db
1503
-
1504
- - Add error handling and logging for database operations in UnderpostDB ([c0d935a0](https://github.com/underpostnet/engine/commit/c0d935a0ce08d26490c997b284e72e3c7f728b76))
1505
- - Implement private engine repository management ([84719664](https://github.com/underpostnet/engine/commit/84719664adac949b42a0731e408bbb467ed867bd))
1506
-
1507
- ### package
1508
-
1509
- - Implement feature X to enhance user experience and fix bug Y in module Z ([8dea4a2f](https://github.com/underpostnet/engine/commit/8dea4a2f7e53cb5f026bd52aa9adad7909cb01c1))
1510
- - Remove --force option from install:test script to prevent unintended package installations ([2aeeff17](https://github.com/underpostnet/engine/commit/2aeeff179a5bd508b38fd73bb1877d80c1caecb4))
1511
- - Remove force in coveralls-next install script ([5751a6d1](https://github.com/underpostnet/engine/commit/5751a6d126f043b43d90269fa79d0dc1164a5be1))
1512
-
1513
- ### runtime-wp
1514
-
1515
- - Implement automatic commit and push of generated files to repository during provisioning ([d20f079e](https://github.com/underpostnet/engine/commit/d20f079ec472c81960cccf5dcdbdefb3c8eb91e4))
1516
-
1517
- ### runtime-lampp
1518
-
1519
- - Enhance .htaccess rules for WordPress and Lampp to protect sensitive files and directories ([1a455ec7](https://github.com/underpostnet/engine/commit/1a455ec7bd5490603cf7d621d6703d8966a3ee2c))
1520
-
1521
- ### cli-deploy
1522
-
1523
- - Refactor command construction in deployment and cron scripts for improved readability ([ceaf5012](https://github.com/underpostnet/engine/commit/ceaf5012b2b16a52f16e816c178d8d4f5af1590d))
1524
-
1525
- ### gitub-actions
1526
-
1527
- - Refactor CI workflows to streamline Docker build and release processes ([ab087583](https://github.com/underpostnet/engine/commit/ab0875839ab1d174db8d8cff8daf3734282fce00))
1528
- - Refactor CI/CD workflows to streamline Docker build and release processes ([5330af10](https://github.com/underpostnet/engine/commit/5330af10280e7acf2a52b3e0ac17bc5dcd5050b4))
1529
-
1530
- ### client-core
1531
-
1532
- - Add SocketIoHandler and AppStore to DefaultConf component list ([a5509688](https://github.com/underpostnet/engine/commit/a550968898ec9526ed3dceef48839ce6be3f1571))
1533
- - Refactor API path handling to introduce getApiBaseProxyPath function and streamline base path construction ([afb1b353](https://github.com/underpostnet/engine/commit/afb1b35325187ef110b40f4a11f78bfd7e7dbb87))
1534
- - Enhance DropDown component to reset checkbox values and improve state management on click events ([b02a3fad](https://github.com/underpostnet/engine/commit/b02a3fad4b9587b317f85c5763f34f806642a7ee))
1535
- - Refactor API path handling to introduce getApiBaseProxyPath function and simplify getApiBasePath logic ([0a18bce9](https://github.com/underpostnet/engine/commit/0a18bce996835a8152360a5f7b2f1b2afaea3423))
1536
-
1537
- ### cli-fs
1538
-
1539
- - Enhance pull operation to log skipped files when they already exist ([7330aa01](https://github.com/underpostnet/engine/commit/7330aa0126dd67bedf75b847dc6c0794f2ecbf74))
1540
-
1541
- ### cli-env
1542
-
1543
- - Refactor UnderpostSecret to streamline environment file handling and remove existing global .env file ([c510f7cf](https://github.com/underpostnet/engine/commit/c510f7cff1aeb3ae26e037000efcee53bcfe6b4b))
1544
-
1545
- ### server-start
1546
-
1547
- - Add cleanup command to production deployment process ([5bf5530e](https://github.com/underpostnet/engine/commit/5bf5530e34b97a6fc1a240a10604d4f5abe2f8cb))
1548
-
1549
- ### conf
1550
-
1551
- - Add SocketIoHandler and AppStore to default configuration ([d155277a](https://github.com/underpostnet/engine/commit/d155277a38359d32d5cd78be20453990585d5d00))
1552
-
1553
- ## New release v:3.2.0 (2026-04-13)
1554
-
1555
- ### cli-repository
1556
-
1557
- - Refactor GitHub URL handling to centralize authentication logic and improve repository accessibility checks ([4783e25b](https://github.com/underpostnet/engine/commit/4783e25bd85d0c6260b4733bbbb09e811979605c))
1558
- - Update GitHub token usage to use x-access-token format in repository URLs ([8a9506d9](https://github.com/underpostnet/engine/commit/8a9506d9754ae41220e40bd72d1cf9023ec1813d))
1559
- - Update GitHub token usage to use OAuth2 format for repository URLs ([e71530fc](https://github.com/underpostnet/engine/commit/e71530fcca079bc86048283f151f7e5c02c18b91))
1560
- - Add remote repository accessibility check and unzip to Dockerfile ([be32eceb](https://github.com/underpostnet/engine/commit/be32ecebe49eab3f39019c5eead74699406d9c99))
1561
- - Refactor UnderpostRepository and UnderpostRun: streamline unpushed commit detection and enhance commit message propagation logic ([f96e3a67](https://github.com/underpostnet/engine/commit/f96e3a6746d745ce1528b598ff36a3dc847f386e))
1562
- - Refactor git repository initialization: streamline repo setup and user configuration using environment variables across multiple modules ([146cb218](https://github.com/underpostnet/engine/commit/146cb218163e3b27e24357167296378767b776f7))
1563
- - Fix getHistory and related methods to support repository path, enhancing command execution context ([ee79f636](https://github.com/underpostnet/engine/commit/ee79f636f2081a943026600d4cbaff52d2997958))
1564
- - Add --unpush option to automatically detect unpushed commits for log display ([9c7ca3ca](https://github.com/underpostnet/engine/commit/9c7ca3ca52abf927a54708e938a71c98b4edb179))
1565
- - Add Git branch reflog and commit hash options to CLI ([c69e8aec](https://github.com/underpostnet/engine/commit/c69e8aecaa6bccd2085cb5de49ca0e6e0e659867))
1566
-
1567
- ### runtime-wp
1568
-
1569
- - Enhance remote repository accessibility checks by preventing credential prompts and improving logging ([abf48b28](https://github.com/underpostnet/engine/commit/abf48b28fad233a3f166c8f14f3f222b6d4e6061))
1570
- - Prepend XAMPP's bin directory to PATH for WP-CLI calls ([a1449e38](https://github.com/underpostnet/engine/commit/a1449e380f47e0187a9f8f9bfcbde603d89e6685))
1571
- - Add WP-CLI installation check and ensure safe.directory for git operations ([414e8743](https://github.com/underpostnet/engine/commit/414e8743e18b1f36edf5113da9a03b6a0261a318))
1572
- - Enhance backup functionality: add GitHub organization support and streamline WordPress backup handling ([717004bb](https://github.com/underpostnet/engine/commit/717004bb0d2e8dac3b1653505b6d9180b34ea364))
1573
- - Enhance WpService: inject WP Mail SMTP plugin configuration into wp-config.php for improved email handling ([10188d10](https://github.com/underpostnet/engine/commit/10188d1042e81402ee2e612e58cd3bb4ba9d3b32))
1574
- - Update .htaccess handling for WordPress subdirectories: append scoped rewrite rules to prevent conflicts between multiple installs. ([409572da](https://github.com/underpostnet/engine/commit/409572dab2327fe0802e9fa67718de7beca7c641))
1575
- - Refactor database creation logic: drop and recreate MariaDB database for fresh installs to ensure a clean state. ([e370b0b2](https://github.com/underpostnet/engine/commit/e370b0b21ad74de3e20668547fa967b787fb33c5))
1576
- - Enhance WpService and runtime configuration: add WordPress install options to support custom titles, admin credentials, and integrate with server configuration. ([deae03d8](https://github.com/underpostnet/engine/commit/deae03d8431fc9bdc4283e0c359df893625cfa90))
1577
- - Ensure parent directory exists before moving WordPress files: add check and create directory if missing. ([3661681f](https://github.com/underpostnet/engine/commit/3661681f8785c46ab3df9e7feaa534398b21c6a0))
1578
- - Enhance deployment scripts and Dockerfiles: update image references to use PHP 8.3, add XAMPP binaries to PATH, and modify WpService to support redirect options in createApp method. ([6c782a07](https://github.com/underpostnet/engine/commit/6c782a07d6ec3eef0f88206775ad7f9ef877e69b))
1579
- - Add WordPress provisioning support with WP-CLI integration: enhance WpService to install WordPress and activate the Wordfence plugin non-interactively; update configuration for subdirectory support in Dockerfile. ([e183f06f](https://github.com/underpostnet/engine/commit/e183f06fc65542c1fa4c6e32912df5516a1c6e72))
1580
- - Enhance WpService for subdirectory support: modify provisioning methods to handle WordPress installations in subdirectories, including .htaccess generation for URL rewriting. ([38704bf3](https://github.com/underpostnet/engine/commit/38704bf374fc6ba896f7f7a24196f023f40fb55c))
1581
- - Update Dockerfile and Lampp.js to install XAMPP 8.2; add WpService for WordPress management ([ee7cb66d](https://github.com/underpostnet/engine/commit/ee7cb66de35b9f7e46e7ab557ad4a7c0675c67aa))
1582
-
1583
- ### server-start
1584
-
1585
- - Clear environment variables during production deployment cleanup ([a6cc0769](https://github.com/underpostnet/engine/commit/a6cc076996b0b891d1179042d35835977dc3c1b2))
1586
- - Add production environment cleanup in deployment process ([69c07f7f](https://github.com/underpostnet/engine/commit/69c07f7f6befe6c591bc3b4fcd18c0cb22da974c))
1587
-
1588
- ### dependencie
1589
-
1590
- - Add is-inside-container package to dependencies ([ba558dea](https://github.com/underpostnet/engine/commit/ba558dea53a7a21fa84619c986978def994bdaaa))
1591
-
1592
- ### engine
1593
-
1594
- - Remove unused CERTBOT_LIVE_PATH variables from environment configuration ([1b47da9b](https://github.com/underpostnet/engine/commit/1b47da9ba3013d1fd9fb4cda9b4924e2b8cef8e4))
1595
-
1596
- ### engine-lampp
1597
-
1598
- - Update WordPress configuration for environment variables and add GitHub authentication for private repositories ([aa0c605e](https://github.com/underpostnet/engine/commit/aa0c605ead84860e9c7e43167c3e7085e4c7a58d))
1599
-
1600
- ### engine-test
1601
-
1602
- - Add SMTP configuration to DefaultConf and update deployment manifests with deploy-id labels ([3bd19e17](https://github.com/underpostnet/engine/commit/3bd19e174f3a114ff1b70ffeb465445ca42cf9b4))
1603
-
1604
- ### release
1605
-
1606
- - Refactor killDevServers function for improved process management during builds and deployments ([a21689bd](https://github.com/underpostnet/engine/commit/a21689bdd7d777c143576709340539d5a9c54c34))
1607
-
1608
- ### package
1609
-
1610
- - Remove unnecessary peer dependencies for Babel packages ([560bf8c6](https://github.com/underpostnet/engine/commit/560bf8c6be2affacd3a88e98bc8ff192020e820d))
1611
- - fix: correct typo in install:test script for coveralls installation ([a466daeb](https://github.com/underpostnet/engine/commit/a466daeb63d2e504bd369dfcba86ec2cfa1eebec))
1612
-
1613
- ### api-cyberia-instance
1614
-
1615
- - Add border color support to status icons and update gRPC server handling ([214ef882](https://github.com/underpostnet/engine/commit/214ef8825f73cc8e23f3ea4f5e4c8507734c7ff5))
1616
- - Enhance portal functionality by introducing portal subtypes and occupancy grid for better entity placement ([93b75c56](https://github.com/underpostnet/engine/commit/93b75c563edc3aa42c2ffc66e17a9155bdd6125c))
1617
- - Implement fallback world generation and API integration for CyberiaInstance ([0657979d](https://github.com/underpostnet/engine/commit/0657979de3fcf18bae9b94f0441575f1f1b424d1))
1618
- - Implement central portal connector and procedural entity generation for CyberiaInstance ([6146ada7](https://github.com/underpostnet/engine/commit/6146ada7638aa4192d749b720ce7174f79923466))
1619
- - Refactor schema to directed graph model (PortalEdgeSchema) ([a4c0d62a](https://github.com/underpostnet/engine/commit/a4c0d62a750bf9cf1cd3d1169a2ca5e113063840))
1620
- - Implement CyberiaInstance API with CRUD operations and service integration ([2fa7fde3](https://github.com/underpostnet/engine/commit/2fa7fde33b149fa4718316c2354079ba8303ffdf))
1621
-
1622
- ### engine-cyberia
1623
-
1624
- - Add Entity Status Indicator (ESI) registry and update gRPC server to handle status icons ([4c5ec09d](https://github.com/underpostnet/engine/commit/4c5ec09d51b6abc87cbb6d82343682ea0ecfc8fd))
1625
- - Refactor Cyberia item definitions: update DefaultCyberiaItems structure and enhance import functionality ([d59279a6](https://github.com/underpostnet/engine/commit/d59279a6d9aaaabc9bdd3c0fa74671f09345575b))
1626
- - Add 'cyberia-dialogue' to DefaultConf: include dialogue module in configuration ([bb729387](https://github.com/underpostnet/engine/commit/bb729387572a466046bf595b0f2bbcdef4d3eb26))
1627
- - Add equipment rules and refactor object layer schemas for clarity ([f852e2d9](https://github.com/underpostnet/engine/commit/f852e2d9b219203e5f40af1bef63ee9819c3608d))
1628
- - Add semantic layer generator files and update configuration ([7bde7856](https://github.com/underpostnet/engine/commit/7bde7856e04bcd4db9bc5e050c554abf7b2d20f3))
1629
- - Refactor enhance Semantic Layer Generator with modular structure and improved documentation ([522ee230](https://github.com/underpostnet/engine/commit/522ee230cbf2a9631a3ac160731c4c7da3436333))
1630
- - Refactor entity schemas to include defaultObjectLayers for enhanced inventory management and streamline entity initialization ([7ca2116e](https://github.com/underpostnet/engine/commit/7ca2116ebd30c65620c3906e1d9029936b99fd03))
1631
- - Implement Fountain & Sink economy model with detailed configuration in defaults and schema ([bd072515](https://github.com/underpostnet/engine/commit/bd0725156f1a2d30f29754c33ea8a769cccdea5f))
1632
- - Enhance bot generation by introducing weapon chance and adjusting entity count ranges for obstacles and foregrounds to improve gameplay variability. ([b22aa71a](https://github.com/underpostnet/engine/commit/b22aa71a82ed30c51cabfc0a2ffcafee1665a0a8))
1633
- - Refactor fallback world generation to use random counts for bots, obstacles, and foregrounds, enhancing procedural variability. ([2829d995](https://github.com/underpostnet/engine/commit/2829d99524586c6d9a0515f7511843580c38d5b6))
1634
- - Refactor Cyberia instance configuration to replace single item ID fields with arrays for live and dead item IDs, enhancing flexibility and consistency across schemas. ([ed7697af](https://github.com/underpostnet/engine/commit/ed7697afbe5c94c6994bdec4cb6b9f44833268fc))
1635
- - Refactor skill rules in Cyberia instance configuration to replace 'bullet' terminology with 'projectile', enhancing clarity and consistency across schemas ([ec88c4bc](https://github.com/underpostnet/engine/commit/ec88c4bc40c3eb2fd43b2fcea622441d7a9b6f6f))
1636
- - Refactor Cyberia instance configuration to utilize defaults for entity types and skill rules, enhancing maintainability and consistency across schemas ([39b0c9c2](https://github.com/underpostnet/engine/commit/39b0c9c292595dda0bdd7dcdf6f8840c0a9f762c))
1637
- - Enhance Cyberia instance configuration with default values and auto-upsert logic for CyberiaInstanceConf ([703603d5](https://github.com/underpostnet/engine/commit/703603d5712bf0cf9e093e52a573905253bf3970))
1638
- - Refactor Cyberia instance configuration to use separate model and enhance skill configuration handling ([6c8c5abe](https://github.com/underpostnet/engine/commit/6c8c5abe391fce7288c49a4767a53efb068d0d20))
1639
- - Update skill configuration to use logicEventIds instead of logicEventId and remove spawnedItemIds ([38d27602](https://github.com/underpostnet/engine/commit/38d27602fe39a2d054c4f05c5a015bef0e262054))
1640
- - Enhance skill configuration and fallback instance handling in gRPC server ([987691fa](https://github.com/underpostnet/engine/commit/987691fa0dd8991365f5278b1e2dfc9fa74b3b6e))
1641
- - Enhance gRPC server with game server configuration and fallback instance handling ([3f2bf5e4](https://github.com/underpostnet/engine/commit/3f2bf5e4302cca881e1c3e57cf26931ff38a9765))
1642
- - Refactor Cyberia dependencies management by removing overrides and patching logic ([74ee9984](https://github.com/underpostnet/engine/commit/74ee9984e19549dc0fee5854cb8fc880541896d0))
1643
- - Update patchCyberiaDependencies to handle file-type import changes for ESM and CommonJS ([4514e6d4](https://github.com/underpostnet/engine/commit/4514e6d48103c2dc0b9a553df6f974317ea6c45d))
1644
- - Add CyberiaDependenciesOverrides for enhanced dependency management in Cyberia portal ([d1783287](https://github.com/underpostnet/engine/commit/d1783287cb54af8779ccd63a0283eb333fb29bf6))
1645
- - Add MapEngineCyberia grid rendering and interactive cell selection ([b798ae61](https://github.com/underpostnet/engine/commit/b798ae61c4a7b690060786904df84d85ce498a04))
1646
- - fix: Enhance build process by missing copying jsdoc file with specific name and improve error handling in CLI ([56d9300d](https://github.com/underpostnet/engine/commit/56d9300d30a163a4b456489a36227a5f39e974fc))
1647
-
1648
- ### grpc-cyberia
1649
-
1650
- - Remove AtlasSpriteSheet handling from gRPC server: delete unused functions and RPC handlers ([c8dd3972](https://github.com/underpostnet/engine/commit/c8dd39728a8f890e5798e051ddd9448dd23e579b))
1651
-
1652
- ### bin-deploy
1653
-
1654
- - Add 'add-api' command to deploy script: implement API addition to server and client configurations ([17811367](https://github.com/underpostnet/engine/commit/17811367ba0a0e3238c77e9332e0dccd298667cf))
1655
-
1656
- ### api-cyberia-dialogue
1657
-
1658
- - Add Cyberia dialogue functionality: implement CRUD operations, enhance dialogue model, and create seed dialogues ([4514545c](https://github.com/underpostnet/engine/commit/4514545c3037a254c08d06cc25679294b1a10800))
1659
- - Implement Cyberia Dialogue API: add controller, service, model, and router for CRUD operations ([dc463616](https://github.com/underpostnet/engine/commit/dc463616cc5b07cba2cdc5dd5d1fa4999a7a95f4))
1660
-
1661
- ### hardhat
1662
-
1663
- - Enhance coverage build process to support Hardhat 3 output structure ([61b90edb](https://github.com/underpostnet/engine/commit/61b90edbe18d5a0ff5bd777411fb4745037a2a53))
1664
- - Upgrade to hardhat v3 and fix vulnerabilities ([80ced86e](https://github.com/underpostnet/engine/commit/80ced86ef1de566574ebeea41e25c4c9fcf5daa4))
1665
-
1666
- ### cli-release
1667
-
1668
- - Enhance UnderpostRelease: update local repo initialization to configure worktree and ensure changes are staged before commit ([c552dbc4](https://github.com/underpostnet/engine/commit/c552dbc4214f84d44ac1aabae53785db1f3093d9))
1669
- - Add pwa method to update and push pwa-microservices-template repository ([752adea1](https://github.com/underpostnet/engine/commit/752adea13a332e78b46cdaa8369bdac273115876))
1670
- - Add CI push options to release command and implement local CI workflow ([4249540d](https://github.com/underpostnet/engine/commit/4249540dc246670048d41f7ead94f4291190943d))
1671
- - Add release orchestrator command and update GitHub workflows ([615a6941](https://github.com/underpostnet/engine/commit/615a6941f9f226b49398b1bdd824c72578b39b89))
1672
-
1673
- ### cli-run
1674
-
1675
- - Add random password generator run id ([76f6be0a](https://github.com/underpostnet/engine/commit/76f6be0a9221306767296fb1314cc3c1d890472f))
1676
- - Refactor release and run modules: update commit handling to return command strings for improved execution flow ([0ff93042](https://github.com/underpostnet/engine/commit/0ff930428d78e407db3ae56c1818a29502d1df88))
1677
- - Enhance commit message handling: update logic to capture and sanitize last N commit messages from the engine repository for CI push and PWA build commands ([114fda52](https://github.com/underpostnet/engine/commit/114fda5291b9fa73b1adb397cd5a67db4ac2fdad))
1678
- - Update gRPC service traffic handling to reflect current parent deploy traffic ([754b8f77](https://github.com/underpostnet/engine/commit/754b8f7708acaccae9a5ef5e0fed28767a107285))
1679
- - Add local deployment method for templates without GitHub Actions ([62c3ff18](https://github.com/underpostnet/engine/commit/62c3ff18a9ec0968bcc53dcbcddeb8ab77ec44cb))
1680
- - feat: add docker-image method to dispatch Docker image CI workflow ([97737c3a](https://github.com/underpostnet/engine/commit/97737c3ab39448db333db0a557f3d0f1a144c351))
1681
- - Add git clean option for deployment processes and enhance cluster context handling ([a59df740](https://github.com/underpostnet/engine/commit/a59df7402de1c365d73b9614177b6d4e91e1470a))
1682
- - Refactor Docker image handling in CLI: Replace direct shell commands with Underpost.image.pullDockerHubImage for improved clarity and maintainability ([6d656bec](https://github.com/underpostnet/engine/commit/6d656bec8882d22d2e333a913d482a1321acc727))
1683
-
1684
- ### wp-runtime
1685
-
1686
- - Refactor WpService and BackUp: initialize git repository for WordPress sites and link to remote repository during backup operations ([220fa61a](https://github.com/underpostnet/engine/commit/220fa61afa87dead743e9938480190f5321ec5b4))
1687
- - Update LamppService and WpService: adjust Apache user/group ownership to current user for improved plugin compatibility ([2bea96a7](https://github.com/underpostnet/engine/commit/2bea96a70c632300a59b1f458ebec82abaa83c4d))
1688
- - Enhance Dockerfiles and WpService: update PATH for XAMPP binaries, add no-op sendmail, and adjust permissions for writable site configuration ([5f6e3410](https://github.com/underpostnet/engine/commit/5f6e3410337da94b19553c28ab00975dde867387))
1689
- - Fix virtual host configuration: update ServerName directive and disable UseCanonicalName for improved routing. ([bd9137ca](https://github.com/underpostnet/engine/commit/bd9137cab0d353e41388f9e64aedd959607427bd))
1690
-
1691
- ### cli-db
1692
-
1693
- - Enhance database management in UnderpostDB: ensure database creation for MariaDB and MongoDB; improve error handling for missing SQL and BSON files. Update WpService to verify remote repository accessibility before cloning, falling back to fresh install if necessary. ([3f7beda2](https://github.com/underpostnet/engine/commit/3f7beda29e569376988eed62ddd50f6a1c2acd3d))
1694
-
1695
- ### cli-kubectl
1696
-
1697
- - Refactor Kubernetes CLI operations: centralize pod management and file transfer in a new kubectl module; update db and deploy modules to utilize the new API ([e3159751](https://github.com/underpostnet/engine/commit/e3159751232e47bb1e0bc5a14ff59ccc1bba0916))
1698
-
1699
- ### cli-deploy
1700
-
1701
- - Add host parameter to buildGrpcServiceManifest for targeted gRPC port scanning ([f33d6a52](https://github.com/underpostnet/engine/commit/f33d6a52ad02ca471f599ba4e27203312e73a839))
1702
- - Add gRPC service deployment support in the deploy module ([456a3207](https://github.com/underpostnet/engine/commit/456a32076d458bc67eea239c2bbf257a5e75fee8))
1703
- - Enhance gRPC service manifest to support traffic color switching during deployment ([daf79cce](https://github.com/underpostnet/engine/commit/daf79cce8b2e48abbefadf3aa2eb64b834bc3dd5))
1704
-
1705
- ### bin-build
1706
-
1707
- - Copy .gitignore to the deployment directory during build process ([fbd53450](https://github.com/underpostnet/engine/commit/fbd53450e3642082051fb595e27f74d3cfa19759))
1708
- - Update build process to conditionally copy jsdoc and deployment manifests for development ([a5b61e90](https://github.com/underpostnet/engine/commit/a5b61e9061511935ba2ddee7531d0e408e91a8af))
1709
-
1710
- ### api-atlas-sprite-sheet
1711
-
1712
- - Add metadata endpoints for AtlasSpriteSheet API to retrieve item metadata ([18dfae3e](https://github.com/underpostnet/engine/commit/18dfae3e1f93154112c2b5374239bcc02f04f801))
1713
- - Add blob endpoint and service for retrieving atlas sprite sheet data ([5c5f60d2](https://github.com/underpostnet/engine/commit/5c5f60d2b18e8d13b5d53449749c5eb694c18b96))
1714
-
1715
- ### cli-cyberia-semantic
1716
-
1717
- - Update default values generate-semantic-examples examples ([b9762521](https://github.com/underpostnet/engine/commit/b9762521182f85aaae88236a5f8ee3fc576b79f5))
1718
-
1719
- ### grpc
1720
-
1721
- - Fix gRPC server initialization condition to check for root path ([1efd33b4](https://github.com/underpostnet/engine/commit/1efd33b4b63f8419a1ba3a8d00b8e854133ada63))
1722
-
1723
- ### cyberia-semantic-engine
1724
-
1725
- - Refactor hair zone calculation for improved accuracy in skin generation ([9eb644ed](https://github.com/underpostnet/engine/commit/9eb644ed272e10352724a6063a82b1f194286243))
1726
- - Refactor hair zone calculation for improved accuracy in skin generation ([4c2e666e](https://github.com/underpostnet/engine/commit/4c2e666e38b8ae4b7dac0cd5a9e4f6f3a4b1b66b))
1727
- - Refactor skin and hair generation logic for improved readability and maintainability ([a2dd4776](https://github.com/underpostnet/engine/commit/a2dd477680fa1d122c65d9bb544327f18b3aae63))
1728
- - Add command to generate semantic examples with customizable options ([45dbb38d](https://github.com/underpostnet/engine/commit/45dbb38d77b8fceedca8013b7069745a9717cfdf))
1729
- - Enhance skin generation with subtype support for varied tones and hair styles ([4549be1e](https://github.com/underpostnet/engine/commit/4549be1e732736afd64e3f05657f78a880dcefa6))
1730
- - Add border extraction and hair depth control to skin template generation ([03b6e45b](https://github.com/underpostnet/engine/commit/03b6e45b88f8bea347b68723bba11e3ee392327d))
1731
-
1732
- ### client-cyberia-ol-viewer
1733
-
1734
- - Refactor WebP display logic to prevent layout flicker and improve control state updates ([4e984355](https://github.com/underpostnet/engine/commit/4e9843554e7834f22f7bfefcb77bb0ac2873290d))
1735
-
1736
- ### playwright
1737
-
1738
- - Update Playwright image version to v1.59.0 for improved features and stability ([3aa4a281](https://github.com/underpostnet/engine/commit/3aa4a281a1200251fc140639e2df1dbecde88fd9))
1739
-
1740
- ### cli-cyberia-instance
1741
-
1742
- - Refactor skillConfig seeding logic to ensure idempotency and improve error handling for missing CyberiaInstance ([0afe4e89](https://github.com/underpostnet/engine/commit/0afe4e899a5f6e4f5edea768a37d136b85a95787))
1743
- - feat: enhance unpin logging for IPFS Cluster to handle 404 status ([5ca83992](https://github.com/underpostnet/engine/commit/5ca839926e123862d4d5d937458d8c62c4f6cc7e))
1744
-
1745
- ### api-ipfs
1746
-
1747
- - Refactor IPFS pinning logic to enhance CID registry management and remove userId dependency ([986520b6](https://github.com/underpostnet/engine/commit/986520b6813d49b23a20f5e56d3ccd5559ba7772))
1748
-
1749
- ### client-cyberia-instance
1750
-
1751
- - Implement portal connection feature in Cyberia instance with error handling and UI integration ([46a98148](https://github.com/underpostnet/engine/commit/46a98148fc9f0ff84723e15563aca51be5610970))
1752
- - Add portal management features to InstanceEngineCyberia component ([ef7a1f1d](https://github.com/underpostnet/engine/commit/ef7a1f1d05429e45743746d9e0fafae130ee8f0d))
1753
- - Add InstanceEngineCyberia and integrate with CyberiaInstance API ([5c03603f](https://github.com/underpostnet/engine/commit/5c03603f79e3049d8dd20a478fad9f6843e23a1c))
1754
-
1755
- ### api-cyberia-global
1756
-
1757
- - Implement Cyberia Global Map Code Registry API with CRUD operations ([2bb06f1c](https://github.com/underpostnet/engine/commit/2bb06f1c46630abcc7c8423b4befadd807faabfc))
1758
-
1759
- ### cyberia-instance-conf
1760
-
1761
- - Implement Cyberia instance configuration API with CRUD operations ([00312d6d](https://github.com/underpostnet/engine/commit/00312d6d0d3095d75c145995d3f96b8fcd050e6a))
1762
-
1763
- ### runtime-express
1764
-
1765
- - implement gRPC server integration and configuration in Express service ([5029c962](https://github.com/underpostnet/engine/commit/5029c962c688b4a25034f8f2bd12383ef09620d9))
1766
-
1767
- ### gprc-cyberia
1768
-
1769
- - feat: add gRPC support with server implementation and update dependencies ([07b552c1](https://github.com/underpostnet/engine/commit/07b552c1c0b6815b281de590789bb3edb9b6c979))
1770
-
1771
- ### github-actions
1772
-
1773
- - Update clean steps for client public directories in deployment process ([b5e9b5ed](https://github.com/underpostnet/engine/commit/b5e9b5edc034c708a5632c9f9f3f90f5dc2cefe0))
1774
- - Update workflow dependencies for Dockerhub and release processes ([5f8aa62e](https://github.com/underpostnet/engine/commit/5f8aa62e06111f5299088320e594a1379c29af0e))
1775
- - feat: streamline CI workflows by removing redundant GITHUB_TOKEN configuration steps ([dc61ed92](https://github.com/underpostnet/engine/commit/dc61ed92b1fd6c4a705b721cd7425b362b999cba))
1776
- - fix: remove coveralls uninstallation from CI workflows and update install:test script ([dee0cbc3](https://github.com/underpostnet/engine/commit/dee0cbc3e825ddbed19a72739b8f69fb4f8250cc))
1777
- - refactor: Simplify CI workflows by removing unnecessary conditions and enhancing dispatch logic ([f7bcb4cc](https://github.com/underpostnet/engine/commit/f7bcb4cc9792c114befa0f97512212dff095b6dc))
1778
-
1779
- ### client-stream
1780
-
1781
- - Enhance user tracking in stream channel by notifying existing users on join ([01702e5d](https://github.com/underpostnet/engine/commit/01702e5d36712b84612bead2081c5e7bd3c31f04))
1782
- - Refactor: enhance Stream class for improved PeerJS management and simplify StreamNexodev integration ([bc470740](https://github.com/underpostnet/engine/commit/bc470740b5f5570e51b5f77df7d4345cd8a7aba9))
1783
-
1784
- ### api-cyberia-map
1785
-
1786
- - feat: enforce unique constraints on code fields in CyberiaInstance and CyberiaMap schemas ([6ea0fe2e](https://github.com/underpostnet/engine/commit/6ea0fe2ee7c2684c02580032ca1b6a033f8f6a36))
1787
- - feat: Implement Cyberia map CRUD operations with controller, service, and router ([dd21f6b0](https://github.com/underpostnet/engine/commit/dd21f6b08d1bf2275c75a77fc02bf3860e392982))
1788
-
1789
- ### cli-cyberia-instace
1790
-
1791
- - Add export/import functionality for Cyberia instances and related documents ([9b64825c](https://github.com/underpostnet/engine/commit/9b64825cc0826dc5f5e76d4de941c959a835263c))
1792
-
1793
- ### client-cyberia-map
1794
-
1795
- - feat: add option to capture object layer thumbnail on save/update ([824d15ae](https://github.com/underpostnet/engine/commit/824d15aee190e353ae219f67444e0d820a77908a))
1796
- - feat: add variation preserve input for entity dimension adjustments ([d6bafbab](https://github.com/underpostnet/engine/commit/d6bafbababef22495727e28fa7b9f87409c0a8d8))
1797
- - feat: ensure new thumbnail upload for cloned maps and handle auto-capture fallback ([06468e02](https://github.com/underpostnet/engine/commit/06468e028b934edc4018f7ebd9dc5562f6f4cd37))
1798
- - feat: add entity variation generation and flip functionality in MapEngineCyberia ([815c9ecd](https://github.com/underpostnet/engine/commit/815c9ecdee73f874e8a90689e66dfe084cf0d78d))
1799
- - feat: implement clone map functionality with thumbnail upload and auto-capture ([ed28d7f9](https://github.com/underpostnet/engine/commit/ed28d7f9ffc971119982cd206d685c971c83e95b))
1800
- - Add grid dimensions to CyberiaMap schema and update MapEngineCyberia to handle grid parameters ([bd3613ec](https://github.com/underpostnet/engine/commit/bd3613eccd93e9cc6d72dff62a99fcef14136d31))
1801
- - feat: add random dimension feature for entities and implement UI controls ([d24f7e55](https://github.com/underpostnet/engine/commit/d24f7e55f3d2093c4ea7fe0cc6fe4eaa07bd15d8))
1802
- - Add object layer image loading and toggle functionality in MapEngineCyberia ([08737740](https://github.com/underpostnet/engine/commit/08737740992c6b8f29c348d8b57a44f2f1c5a067))
1803
- - Add toggle for adding entities on click and display cell coordinates in MapEngineCyberia ([d77967d7](https://github.com/underpostnet/engine/commit/d77967d7272a70802b8faabe0d4ba96f9b747178))
1804
- - Add entity filtering functionality to MapEngineCyberia component ([d58f68ef](https://github.com/underpostnet/engine/commit/d58f68ef91bb3777277b8884545dda1125f6b0a5))
1805
- - Enhance DropDown and MapEngineCyberia components with badge rendering and grid visibility toggle functionality ([b60eb8fb](https://github.com/underpostnet/engine/commit/b60eb8fb08c4f2da0b12bbf3c4b749247f6dcac8))
1806
- - Refactor DropDown and MapEngineCyberia to integrate object layer item selection and thumbnail capture functionality ([34988386](https://github.com/underpostnet/engine/commit/34988386a9cab4c27ad34a009efd0da8a5b9f1de))
1807
- - Add search-item-ids endpoint and implement autocomplete for object layer item IDs ([ec066a75](https://github.com/underpostnet/engine/commit/ec066a7575dd1ba2f839b4a53177bad6dc66bae5))
1808
- - feat: Enhance Cyberia map management with admin role checks for update and delete operations ([e62b121d](https://github.com/underpostnet/engine/commit/e62b121d4b1ffb99516d97d770e7978600113bb1))
1809
- - feat: Enhance Cyberia map management with additional fields, user authentication, and thumbnail support ([0023ba3e](https://github.com/underpostnet/engine/commit/0023ba3ec4570a79b70944aac5ccc90709f3b63d))
1810
- - feat: Enhance Cyberia map management with load map functionality and notifications ([71aab98e](https://github.com/underpostnet/engine/commit/71aab98e9760da91a1c262e66256e54acc627909))
1811
- - feat: Implement Cyberia map management with CRUD operations and integrate into MapEngineCyberia ([f6bb13ec](https://github.com/underpostnet/engine/commit/f6bb13eccc0db73c57510a483de05e8774dd51aa))
1812
- - feat: Enhance Cyberia entity management with CRUD operations and integrate with MapEngineCyberia ([bc3146f2](https://github.com/underpostnet/engine/commit/bc3146f2f93c32e821a21e6dcd5847b4f48a7526))
1813
-
1814
- ### gitub-actions
1815
-
1816
- - Remove coveralls uninstallation from CI workflows ([68eee857](https://github.com/underpostnet/engine/commit/68eee857ca34a2251d07efee6f9ef48efb28022f))
1817
-
1818
- ### coveralls
1819
-
1820
- - Update Coveralls upload step to use direct command instead of GitHub Action ([b0c6712f](https://github.com/underpostnet/engine/commit/b0c6712f3f97d7d3cb4a8e150991b2e8965aaeaa))
1821
-
1822
- ### github-actios
1823
-
1824
- - fix: add bash to required packages and implement retry logic for database connections ([d44c0d52](https://github.com/underpostnet/engine/commit/d44c0d52edf6e675fffa21cdfd05ae44c7e75e51))
1825
-
1826
- ### websocket
1827
-
1828
- - Refactor: update SocketIoHandler to SocketIoHandlerProvider and add AppStore references across multiple configuration files ([0811b67c](https://github.com/underpostnet/engine/commit/0811b67cf3c9bfe1a2f488106e67572397e0367e))
1829
- - Refactor: streamline WebSocket channel management by consolidating channel logic and removing deprecated management files ([23e02455](https://github.com/underpostnet/engine/commit/23e024554ec7f32074eb69ce591067c2a659e0d3))
1830
-
1831
- ### client
1832
-
1833
- - Refactor: remove BaseElement dependencies and simplify AppStore instantiation across multiple components ([f0fa9011](https://github.com/underpostnet/engine/commit/f0fa9011eb444d5dc9e3583bb5dfc599bef6dd25))
1834
- - Refactor components to utilize AppStore for state management ([9436d91c](https://github.com/underpostnet/engine/commit/9436d91cad1e3855f3c81d245847b4c0f07909b1))
1835
- - Refactor: replace uglify-js with esbuild for JavaScript minification and import rewriting ([759d8269](https://github.com/underpostnet/engine/commit/759d8269b54b4d4fddfc0fe8e6ec206fb69aea7b))
1836
- - Refactor parameter handling in multiple components: Remove unused EVENT_CALLBACK_TIME parameters and simplify Keyboard initialization ([491303dc](https://github.com/underpostnet/engine/commit/491303dcdc939f838e71fc418ccd99c1dcb648ab))
1837
-
1838
- ### client-ws
1839
-
1840
- - Refactor: streamline SocketIo handlers and enhance WebSocket management for improved clarity and maintainability ([c2d13507](https://github.com/underpostnet/engine/commit/c2d135072f2ec0cbb64bf651c4198438f2882931))
1841
-
1842
- ### cli-cyberia
1843
-
1844
- - Enhance README.md: Add new features for drop and cleanup, static asset management, IPFS and blockchain integration, and update import commands for clarity ([cf433a4e](https://github.com/underpostnet/engine/commit/cf433a4e6cbc43b0c0d4df88321e84f16b1fd68e))
1845
- - Enhance IPFS cleanup process in Cyberia CLI: collect and unpin CIDs, remove MFS paths for ObjectLayer items ([0984e0fb](https://github.com/underpostnet/engine/commit/0984e0fbb9048520b766605ed3f7c088a8476709))
1846
- - Enhance Object Layer and Atlas Sprite Sheet Management: Implement cut-over consistency for staging CIDs, streamline IPFS integration, and improve thumbnail handling in Cyberia services. ([9b92cdec](https://github.com/underpostnet/engine/commit/9b92cdec78611e0fc47168470270359d457346c4))
1847
- - Refactor CLI commands for object layer import: update flags from `--import` to `--import-types` for clarity ([3ef65f6c](https://github.com/underpostnet/engine/commit/3ef65f6c78daeb65fe9c4cc9804b8a930b21d80b))
1848
- - Add development environment option and enhance ObjectLayer upsert logic in Cyberia CLI ([87ae2f47](https://github.com/underpostnet/engine/commit/87ae2f471ec7d3582958ad8ea383135c1ad470e7))
1849
- - Add default Object Layer items and import command to Cyberia CLI ([4905b91c](https://github.com/underpostnet/engine/commit/4905b91c84a98e389f558a93feb65d1bf143a79e))
1850
- - Enhance import functionality in Cyberia CLI: support specific item imports and batch imports by type ([6c4c567a](https://github.com/underpostnet/engine/commit/6c4c567a6db185287b40cd54495a0d6198291f9b))
1851
-
1852
- ### object-layer-engine
1853
-
1854
- - Update ObjectLayerEngineModal to dynamically set cell dimensions based on loaded data ([6b304e6e](https://github.com/underpostnet/engine/commit/6b304e6e3f0db6888231503570ed7274cbdeec70))
1855
-
1856
- ### conf
1857
-
1858
- - Update deployment configurations and proxy settings for dd-core and dd-cyberia environments ([a9786286](https://github.com/underpostnet/engine/commit/a97862864855601794f21330c198b14f54d75067))
1859
-
1860
- ### cli-client
1861
-
1862
- - Refactor syncEnvPort and singleReplica operations for improved clarity and error handling ([751ef4ff](https://github.com/underpostnet/engine/commit/751ef4ffde6058daa7d8af4cbb74be2a31b5ec60))
1863
-
1864
- ### dependabot
1865
-
1866
- - feat: Enhance dependabot branch management with stashing, merging, and cleanup operations ([06a42f4b](https://github.com/underpostnet/engine/commit/06a42f4bddf1614bab684dc7dfca38e4b3a9c15d))
1867
-
1868
- ### coverage
1869
-
1870
- - feat: Add coverageOutputDir to documentation configuration for custom coverage output path ([ea630ecc](https://github.com/underpostnet/engine/commit/ea630ecc4dab0d5e086a769b0a952a64b8579aae))
1871
-
1872
- ### api-cyberia-entity
1873
-
1874
- - feat: Implement Cyberia entity CRUD operations and service integration ([56629ee1](https://github.com/underpostnet/engine/commit/56629ee1706d06f91375ac6919763c30d073dc73))
1875
-
1876
- ## New release v:3.1.3 (2026-03-17)
1877
-
1878
- ### cli-run
1879
-
1880
- - feat: Add 'pid-info' and 'background' methods to enhance process management in CLI ([30afedf4](https://github.com/underpostnet/engine/commit/30afedf4d17aca20d91f5ad065d979bd42951741))
1881
-
1882
- ### server-start
1883
-
1884
- - feat: Add option to skip pulling base code in build process and update configuration for error handling ([3f8d7b09](https://github.com/underpostnet/engine/commit/3f8d7b09b70270de9b0213b74d9683aad125d732))
1885
-
1886
- ### github-actions
1887
-
1888
- - feat: Update CI workflows to improve commit message handling and deployment conditions ([2a4884a1](https://github.com/underpostnet/engine/commit/2a4884a1e3cbf04eeb4999b1ff38e2c8b4cf41cc))
1889
- - feat: Add deploy_type option to CI workflows and enhance changelog message propagation ([d222753e](https://github.com/underpostnet/engine/commit/d222753ec66cbb1ce3cccc54d7eebea3f144e8b8))
1890
-
1891
- ### docs
1892
-
1893
- - feat: Update changelog, CLI help, and documentation with new commands and options ([124c8b2a](https://github.com/underpostnet/engine/commit/124c8b2aff6aae21b57abeca66281cdfba3aaaf8))
1894
- - feat: Update CLI documentation and enhance README with versioning and command index ([e6eb668d](https://github.com/underpostnet/engine/commit/e6eb668d4007dc828f1b946c36ea369aaea6e2d4))
1895
- - feat: Enhance documentation configuration and remove obsolete options in build processes ([3437e148](https://github.com/underpostnet/engine/commit/3437e14884d54202c8a0bbdcef47edfa03528fb7))
1896
-
1897
- ### client-underpost
1898
-
1899
- - feat: Refactor styles in RichText and CssUnderpost components for improved typography ([ee1d1233](https://github.com/underpostnet/engine/commit/ee1d123354afb0826ef5f942a07feeeb6eb40c7b))
1900
-
1901
- ### client-core
1902
-
1903
- - feat: Update links to open in the top frame and enhance iframe sandboxing ([8ec50df8](https://github.com/underpostnet/engine/commit/8ec50df8d2eaaf210254930351a783c1d4409d5d))
1904
-
1905
- ### cli-client
1906
-
1907
- - feat: Add sync-conf command and enhance build options for client assets ([ad8b9624](https://github.com/underpostnet/engine/commit/ad8b96242431b9a23b3cf3b4345294938552784f))
5
+ ### test-unit
1908
6
 
1909
- ### swagger
7
+ - Skip cyberia product suites where the tree does not ship them ([93c4f0906](https://github.com/underpostnet/engine/commit/93c4f0906386427982318beb73b7ae5741010ae7))
1910
8
 
1911
- - fix: update security middleware to ensure correct CSP headers for Swagger UI ([ef7dd524](https://github.com/underpostnet/engine/commit/ef7dd52434191f4f910a7192007ebca5af16932b))
9
+ ### client-core
1912
10
 
1913
- ### scripts
11
+ - Add top-left hamburger menu button while the top bar is collapsed ([43b00dcd1](https://github.com/underpostnet/engine/commit/43b00dcd1dd6da58cc9513e03ff7f0c88a2bd3a4))
12
+
13
+ ### Cyberia
14
+
15
+ - Fix minified atlas sprite sheet workload and validations ([b64cbf23a](https://github.com/underpostnet/engine/commit/b64cbf23a48229804996c7a95d544f96e64bfbf7))
16
+ - Reuse authored cells when importing an object layer ([117e0e620](https://github.com/underpostnet/engine/commit/117e0e620394f6c4508222c75ee5220f1e9ca0b0))
17
+ - Stage direction frames at one uniform size for webp ([82b4acac6](https://github.com/underpostnet/engine/commit/82b4acac60dff445c02756ff049005adb23cb5e0))
18
+ - Preview items and entity maps by the atlas idle still ([c5fb8ae62](https://github.com/underpostnet/engine/commit/c5fb8ae621eb04e55f8fa399435eb7e513cbd066))
19
+ - Cut an idle-preview still from each atlas render ([0402a1243](https://github.com/underpostnet/engine/commit/0402a12437dab4652be58a085eed5b6fb0fdfc96))
20
+ - Wire signed stats and entity levels through boot payloads ([56000de95](https://github.com/underpostnet/engine/commit/56000de95ccd9120f3fefa874c49a43570a59a90))
21
+ - Add entity levels and progression rules to the game defaults ([208530c45](https://github.com/underpostnet/engine/commit/208530c4568b91c30d478c7daac88457080f0cd1))
22
+ - Sign stat modifiers in the shared contract ([29df5fc49](https://github.com/underpostnet/engine/commit/29df5fc492efa0ab6128e0513a492225e9e5ff31))
23
+ - Preview both atlas renders in the object-layer viewer ([8e8441f6e](https://github.com/underpostnet/engine/commit/8e8441f6e3565db1d050bd05f482d349c7c06c04))
24
+ - Read the audio File fields from the reference registry ([0e3ca2903](https://github.com/underpostnet/engine/commit/0e3ca29035e77c79851f5de1d8423be75e815785))
25
+ - Take the atlas renders when collapsing duplicate layers ([8dcc9ed1a](https://github.com/underpostnet/engine/commit/8dcc9ed1a5c5fc5b9670eb5c56514c2b0e193235))
26
+ - Purge an atlas and its renders through the store ([943e9e4c5](https://github.com/underpostnet/engine/commit/943e9e4c585d26a1e68cf193824df035ef3d7a3f))
27
+ - Add the File reference registry module ([6b7610101](https://github.com/underpostnet/engine/commit/6b76101013de960c4d16b7daab04ebd98b041d9e))
28
+ - Navigate editors by instance code and item id ([d87a56818](https://github.com/underpostnet/engine/commit/d87a568188d01f04b2b083205a9118e282f9742c))
29
+ - Store two atlas renders and refresh the minified one ([73ffe183e](https://github.com/underpostnet/engine/commit/73ffe183e913111f98e30c16117139ecfb9da112))
30
+ - Bind item-pickup and craft audio events ([3b0f1069d](https://github.com/underpostnet/engine/commit/3b0f1069d0134d504572f1270d6865f408670255))
31
+ - Add dropChance to entity-type-default overrides ([5014c7e33](https://github.com/underpostnet/engine/commit/5014c7e338cb58c8c57f5d354dfb858e9df78017))
32
+ - Generate pixel-faithful sprite sheet atlases ([dfba47760](https://github.com/underpostnet/engine/commit/dfba47760f30bc667a83afe7d06f5414c4173404))
33
+ - Resolve object-layer item identity and map previews ([2bd4f88d1](https://github.com/underpostnet/engine/commit/2bd4f88d161689f2b83d3ddf539fd10dc41b4323))
34
+ - Reference entity-type defaults by id and derive skills from content ([f669fa94f](https://github.com/underpostnet/engine/commit/f669fa94f18afa91762ae7662fe443a101cd65a5))
35
+ - Add audio assets and per-map audio configuration ([3ec20cb33](https://github.com/underpostnet/engine/commit/3ec20cb336a320b6167250aac7bca11a629babc9))
36
+ - Fix mentions of wasm-driver.py ([d748d11dc](https://github.com/underpostnet/engine/commit/d748d11dc584a7640742b57e641d3619b18c4d46))
37
+ - Cleared coments ([602f984a0](https://github.com/underpostnet/engine/commit/602f984a0c4d78ab79a9b054d080469b988b4d3f))
1914
38
 
1915
- - Add missing package installation command in ports-ls.sh ([e1325336](https://github.com/underpostnet/engine/commit/e13253366f5dfd029f2a12e031b5f995efb269ac))
39
+ ### cyberia-client
1916
40
 
1917
- ## New release v:3.1.2 (2026-03-15)
41
+ - Surface featured worlds on the portal landing ([90c528be5](https://github.com/underpostnet/engine/commit/90c528be5ab45b906558f85cac3894a6368d6143))
1918
42
 
1919
- ### cli-run
43
+ ### object-layer-engine
1920
44
 
1921
- - Fix streamline deployment logic prevent override env files and redundant build workflows ([048fb8ff](https://github.com/underpostnet/engine/commit/048fb8ff1cbb895c3c04cf8a84daa921fcbe6bf5))
45
+ - Add axis rulers and cursor readout to the pixel canvas ([cd4955c6b](https://github.com/underpostnet/engine/commit/cd4955c6baec17f58bda37d84bbd387949b50093))
46
+ - Add cut, copy, paste, and scale tools with toolbar UI fixes ([e215b3583](https://github.com/underpostnet/engine/commit/e215b3583fd73557c803b7d321e2054ffb85e620))
1922
47
 
1923
- ### engine-cyberia
48
+ ### cyberia-docs
1924
49
 
1925
- - fix: update error handling for underpost passthrough to include 'env' command ([402a9617](https://github.com/underpostnet/engine/commit/402a961768db9753c2cdd7b067c548edcbd2f0b7))
50
+ - Document the idle-preview still ([4344d73b9](https://github.com/underpostnet/engine/commit/4344d73b952cf1baea6f05c2ca0f12e37ffcc205))
51
+ - Document the signed stat contract and progression ([b7a4c3301](https://github.com/underpostnet/engine/commit/b7a4c33018636557ec8a12c921fb6a16fd790868))
52
+ - Reflow the audio option table and emphasis ([8358fe5e8](https://github.com/underpostnet/engine/commit/8358fe5e8c5ee7d5edfca81e6ac2ed7a0215f3f0))
53
+ - Document the ol atlas renders and rebuild options ([888c7bcbf](https://github.com/underpostnet/engine/commit/888c7bcbf58b8c430e2ab13f4b6d68614a974051))
54
+ - Reflow tables and emphasis across the architecture docs ([64c7e3a2d](https://github.com/underpostnet/engine/commit/64c7e3a2d17e77baac1af791be15c03ecce43acc))
55
+ - Document the Data Server URL as a required command-line flag ([28c4a51e4](https://github.com/underpostnet/engine/commit/28c4a51e40d78801dde85af4d10eac0e43f5f805))
56
+ - Document Data Server flags and manifest CLI ([74a09d397](https://github.com/underpostnet/engine/commit/74a09d3977a5c40037ca66b0db5fa4b4d6e15e47))
1926
57
 
1927
- ## New release v:3.1.1 (2026-03-14)
58
+ ### cyberia-cli
1928
59
 
1929
- ### cli-index
60
+ - Carry the idle still through ol minify and backups ([f41f66f52](https://github.com/underpostnet/engine/commit/f41f66f52fc5cf59f7cc5c55f8dbd1e27e2a67c8))
61
+ - Require an explicit source for the ol import commands ([b7c759a2e](https://github.com/underpostnet/engine/commit/b7c759a2ec58e44830a3ce02b6cfd3bfaa68b958))
62
+ - Implement restore OL backup workflow for a single itemId version instance and related document ([293a62db2](https://github.com/underpostnet/engine/commit/293a62db207e55027ed23343ee5c35c14f297c02))
63
+ - Add copy manifests in cyberia-instance repository build workflow ([0f40c2b82](https://github.com/underpostnet/engine/commit/0f40c2b8245ca3e9a7c3e28ea6732228766d820e))
64
+ - Rework sync-src as a bidirectional dry-run mirror ([6f05a7dc6](https://github.com/underpostnet/engine/commit/6f05a7dc6ccfc3a801e6542a0a9321f5de5ab9d9))
65
+ - Integrated the cyberia public assets folders module into the cyberia repo's publish workflows ([7e5c0e0a7](https://github.com/underpostnet/engine/commit/7e5c0e0a729463e981339cb98336399f0925598a))
66
+ - Integrated the cyberia-audio project module into the cyberia repo publish workflows ([07993ee93](https://github.com/underpostnet/engine/commit/07993ee934fd5c8dc781c886d1b6dc0b20819f57))
1930
67
 
1931
- - fix: add quiet option to dotenv config for improved error handling ([975448eb](https://github.com/underpostnet/engine/commit/975448eb4d710cc8248a783240ce818b5fb9b891))
68
+ ### engine
1932
69
 
1933
- ### cli-secrets
70
+ - Publish per-suite coverage reports as deploy artifacts ([f37be7ba6](https://github.com/underpostnet/engine/commit/f37be7ba6ed145e17713e8ba136c26b25dabc8f9))
71
+ - Resolve instances and maps by their codes ([2daca38b8](https://github.com/underpostnet/engine/commit/2daca38b8a118ed229d672367b43cc32a3c91468))
72
+ - Lower the default request timeouts to ten seconds ([9fbb5c844](https://github.com/underpostnet/engine/commit/9fbb5c8448cc3b6ab86d952f0be611bd26789950))
73
+ - Publish products with the engine runtime dependency set ([8bd9a12a3](https://github.com/underpostnet/engine/commit/8bd9a12a38d419cf475f9d881906d44abd92c51f))
74
+ - Redact adjacent credentials in service error messages ([e8ad83ae6](https://github.com/underpostnet/engine/commit/e8ad83ae65f74f9159df412056a0dbca7113fc5b))
75
+ - Fail downloads that stop short of their declared length ([2cb52c254](https://github.com/underpostnet/engine/commit/2cb52c254ba8d2de89cbc1103807361e45733c36))
76
+ - Replace adm-zip with jszip and shared archive helpers ([14e4857c4](https://github.com/underpostnet/engine/commit/14e4857c4ccc52707c5f08fc686d1e7d25ac2a53))
77
+ - Allow cross-origin reads on CRUD controllers ([7100c5ee4](https://github.com/underpostnet/engine/commit/7100c5ee40aa6a175de1e24eb0f79b485767df6d))
1934
78
 
1935
- - fix: add missing dotenv import in secrets module ([7f83e26c](https://github.com/underpostnet/engine/commit/7f83e26c44dfe176b6cc524e7b117f322a62bf32))
79
+ ### test
1936
80
 
1937
- ### cli-repository
81
+ - Fix cyberia stat-contract coverall ([faf4f4378](https://github.com/underpostnet/engine/commit/faf4f4378c54bc9fb6ca8e405d08b904a7f023d6))
82
+ - Move sprite atlas and object-layer minify tests to the cyberia tier ([931d98277](https://github.com/underpostnet/engine/commit/931d9827777b49ac01a81b961281ca51c2ff6e0f))
1938
83
 
1939
- - fix: enhance environment variable checks for GITHUB_TOKEN retrieval ([d097c6c1](https://github.com/underpostnet/engine/commit/d097c6c1f02edcab1e76dca226f129e334dbd453))
84
+ ### cli-cyberia
1940
85
 
1941
- ## New release v:3.1.0 (2026-03-14)
86
+ - Add the stat balancing policies and contract generation to the CLI ([d6f477f59](https://github.com/underpostnet/engine/commit/d6f477f59ac18cd16cfd42c9e4a61b1d73282953))
87
+ - Route drops and imports through the atlas store purge ([0a103f6e8](https://github.com/underpostnet/engine/commit/0a103f6e8bb2f56946ec9a61e9bfa17194076734))
88
+ - Rework the ol command on the stored atlas renders ([73b5c2fa2](https://github.com/underpostnet/engine/commit/73b5c2fa2362d4415d0f95b3431d5f17a4b7ec07))
89
+ - Sync the cyberia-instances checkout on publish with cmt --switch-repo ([66ffde978](https://github.com/underpostnet/engine/commit/66ffde9787b055f6f2d48866ccff602b6f02873a))
90
+ - Keep CLI-name arguments through the underpost reroute ([e898bf498](https://github.com/underpostnet/engine/commit/e898bf4982e98b3368e784be65abc8aec1c70033))
91
+ - Add ol --minify reprocessing scoped to instances ([9b19bfc1e](https://github.com/underpostnet/engine/commit/9b19bfc1eaf2c93d4f0c7001eca1c64ada5ca9a3))
1942
92
 
1943
93
  ### docs
1944
94
 
1945
- - Add documentation for Baremetal and LXD management, including command references and quick start guides ([3569b515](https://github.com/underpostnet/engine/commit/3569b5150f375467bf5cdb03247897e2849e45ce))
1946
- - feat: update documentation with new command options for database and deployment management ([707ef0e4](https://github.com/underpostnet/engine/commit/707ef0e4d522392b9d658402bbcd04f8c47dc7ec))
1947
-
1948
- ### github-actions
1949
-
1950
- - feat: add optional commit message input for workflow_dispatch in CI configurations ([2314de8c](https://github.com/underpostnet/engine/commit/2314de8c61bb309a1fe0aa42863243744aec54bc))
1951
- - Fix cloud explorer underpost session and underpost install in deployments workflows ([74654720](https://github.com/underpostnet/engine/commit/74654720635a04df3dda7785157332b401b3ebd3))
1952
- - Add npm install for update packages in deployments engine workflows ([5549a3f5](https://github.com/underpostnet/engine/commit/5549a3f5d71f8476f0ee8b57e8c9e5c1bc316a10))
1953
- - Remove temporal --underpost-quickly-install in deployments workflows ([777b39a2](https://github.com/underpostnet/engine/commit/777b39a2e07aaab0ac16ddaa01f5df2b4d50f175))
95
+ - Regenerate the CLI references for the storage and bundle options ([4ce71e989](https://github.com/underpostnet/engine/commit/4ce71e989d72343bc4dbe9c11b1325a56fa9a6f7))
1954
96
 
1955
- ### cli-repository
1956
-
1957
- - feat: enhance CI/CD workflows with workflow_dispatch support and input options ([b311866f](https://github.com/underpostnet/engine/commit/b311866faab0872ca9e2f6f3041f1a97784cf362))
1958
-
1959
- ### package
1960
-
1961
- - fix: add production image script to package.json ([fe0ca63d](https://github.com/underpostnet/engine/commit/fe0ca63df51df703cc2323ad2b697df1adb3d795))
1962
- - Add deploy js dependabot branch merge deploy script ([cdc7e90c](https://github.com/underpostnet/engine/commit/cdc7e90c340e7fb8a35c906719a0e0e8fb728625))
1963
- - Fix packages vulnerabilities ([492a3963](https://github.com/underpostnet/engine/commit/492a3963a54c3ed882fbe0078a6ab353cb2d636b))
1964
-
1965
- ### run-deploy
1966
-
1967
- - feat dd security check for secrets before template deployment ([50b6b9ba](https://github.com/underpostnet/engine/commit/50b6b9ba6d2f49eec1343c70ce7740f87f5cbbc1))
97
+ ### cli
1968
98
 
1969
- ### bin-deploy
99
+ - Warn when a container resolves no OCI env overlay ([20dcb3897](https://github.com/underpostnet/engine/commit/20dcb3897a39858d5fddb76c0953193b569cf692))
100
+ - Rework push-bundle and pull-bundle as one client bundle transport ([ead02902b](https://github.com/underpostnet/engine/commit/ead02902be3cb0f05d3ef583824513c984b2a1e5))
101
+ - Rework fs selection around storage manifests ([26471a64b](https://github.com/underpostnet/engine/commit/26471a64bf604473499c9d7c928a28e02020bb37))
102
+ - Resolve instance root path from conf in instance-build-manifest ([fd08a771b](https://github.com/underpostnet/engine/commit/fd08a771bc520023643d95bd37f752a37cc64aa2))
103
+ - Deploy Mongo Express through the cluster command ([4a9d03fbb](https://github.com/underpostnet/engine/commit/4a9d03fbb1c04432b60d609243f35b8dd42b1154))
1970
104
 
1971
- - feat(deploy): add 'conf' case to load configuration based on arguments ([28d3e8bf](https://github.com/underpostnet/engine/commit/28d3e8bf590c35f5c77129400a77b5687bcb05db))
1972
- - Add temporal fallback underpost legacy version handling ([ad74d2ef](https://github.com/underpostnet/engine/commit/ad74d2ef689a95edab80401514f192bb13226e94))
1973
- - separate cyberia-hardhat case deploy script ([3cd03278](https://github.com/underpostnet/engine/commit/3cd03278549a89dfffd04298bc7a53880099a51e))
105
+ ### cli-wireguard
1974
106
 
1975
- ### server-logger
107
+ - Install the landed source before any step runs it ([96db68293](https://github.com/underpostnet/engine/commit/96db682935569eb7bbb556d7bc97b3499e936cae))
1976
108
 
1977
- - fix(logger): update json-colorizer import and color definitions ([2b89456d](https://github.com/underpostnet/engine/commit/2b89456df3d78e49bed257068f93639542f0e9b8))
1978
- - Fix colorize import logger ([d7c01ccc](https://github.com/underpostnet/engine/commit/d7c01ccc29b4c6403b024f83a46bd29986260688))
109
+ ### deploy
1979
110
 
1980
- ### gitleaks
111
+ - Consolidate deploy scripts on shared constants and bundle sync ([dd9d1d368](https://github.com/underpostnet/engine/commit/dd9d1d3682569ed4f86055ba41613ab2cb06d327))
112
+ - Stream the deploy log verbatim in a new debug mode ([1d41af6c0](https://github.com/underpostnet/engine/commit/1d41af6c01c51d79de468d6002dd42c31b19c20c))
113
+ - Fix git track storage in dd-cyberia sync-deploy ([3ed3c297d](https://github.com/underpostnet/engine/commit/3ed3c297df5172edc2b6c5111a270b8bd522bf2a))
1981
114
 
1982
- - fix: update gitleaks configuration title and add new ignore entries for sensitive tokens ([408cad0a](https://github.com/underpostnet/engine/commit/408cad0a4de273cbec9f97f9b8b93c98246602fd))
115
+ ### runtime-cyberia-server
1983
116
 
1984
- ### server-conf
117
+ - Upgrade go version v1.25 ([2a14dd26a](https://github.com/underpostnet/engine/commit/2a14dd26ac32fb109c7b1b0c833956bca12c70eb))
118
+ - Pass Data Server endpoints to cyberia-server as flags ([c8b4a1b54](https://github.com/underpostnet/engine/commit/c8b4a1b54174954a864301b062caea81c06e9762))
1985
119
 
1986
- - feat: add loadCronDeployEnv function to manage deployment-specific environment variables across modules ([19de5ea1](https://github.com/underpostnet/engine/commit/19de5ea13c121d6ad8b64982f14562ab16fb9d09))
1987
- - feat: enhance environment variable file generation with template support ([467f3a34](https://github.com/underpostnet/engine/commit/467f3a348d6bca994829f5fb51034e8b6c0e5c0e))
1988
- - refactor: update configuration loading logic and enhance environment variable handling ([bbda6380](https://github.com/underpostnet/engine/commit/bbda638076f2bb48b39ce1e52624064afecc8e30))
120
+ ### runtime-cyberia-client
1989
121
 
1990
- ### cli-client
122
+ - Add CYBERIA_DATA_SERVER_URL on cyberia-client dockerfiles runtime ([99738cc80](https://github.com/underpostnet/engine/commit/99738cc809a56e716d3cb2729c63aa7495033d3c))
1991
123
 
1992
- - feat: refactor deployment process to use new client command and streamline build operations ([c854da41](https://github.com/underpostnet/engine/commit/c854da41a9d545c1d718e23ffb37e3188c849da7))
124
+ ### package
1993
125
 
1994
- ### env
126
+ - Update qs version >= 6.16.0 via overrides ([b7697d52b](https://github.com/underpostnet/engine/commit/b7697d52b87589edbf5ba36f44e7b8db2195cd16))
1995
127
 
1996
- - feat: integrate loadEnv function to manage deploy-specific environment variables in CLI and server modules ([47a1560b](https://github.com/underpostnet/engine/commit/47a1560bee093ed2fdc395d70c911fcaca106763))
128
+ ## New release v:3.3.73 (2026-09-01)
1997
129
 
1998
- ### template
130
+ ### test
1999
131
 
2000
- - fix: update deployment script to build template and adjust logging configuration ([30c3a830](https://github.com/underpostnet/engine/commit/30c3a830b02097fd11538c7b5d46db35ad479c58))
132
+ - Fix coverall template CI failures by handling stripped product surfaces ([fb14840d4](https://github.com/underpostnet/engine/commit/fb14840d4c42856e21e2dadba0a864f799693934))
133
+ - Move rerouted plain reads to the cyberia app tier ([944ea302e](https://github.com/underpostnet/engine/commit/944ea302eb7a80f77b69a1c603755aaca554aa12))
134
+ - Add unit suites for the propagation message resolution ([78ac60a09](https://github.com/underpostnet/engine/commit/78ac60a09b0a8b4d32887b233d02d044bc85e85a))
135
+ - Fix coverall post-migration secret source resolution ([dedb70980](https://github.com/underpostnet/engine/commit/dedb70980e2487db0086dd08e730055127c98897))
136
+ - Fix coverall config-scope and cron job previousEnv scope ([d3d07e13b](https://github.com/underpostnet/engine/commit/d3d07e13bfe68724a304df8de46699fda83979d9))
137
+ - Move rerouted plain reads to the integration tier ([b59fd9734](https://github.com/underpostnet/engine/commit/b59fd973458b835768ae7de35951e9889c869cd2))
138
+ - Fake the system node candidates under a temp root ([fcd3c8300](https://github.com/underpostnet/engine/commit/fcd3c8300272619accfcd88f363898db1c556cbe))
139
+ - Fix cyberia coverall base repository case ([d470fb1e4](https://github.com/underpostnet/engine/commit/d470fb1e498314160809a7d87712bb0951fe3a01))
140
+ - Fix cyberia CLI assertion in build workflow ([43df85d86](https://github.com/underpostnet/engine/commit/43df85d86175a3ff9037bd582d5067038eaacd82))
141
+ - Cover the sync source guard ([90b965ef4](https://github.com/underpostnet/engine/commit/90b965ef4b170868afb5541ce8facdf1bd714be6))
142
+ - Add unit suites for the execution profiles and offline build workflow ([c86cdaab7](https://github.com/underpostnet/engine/commit/c86cdaab7c5c130927c087cc46558c214e0b224e))
143
+ - Extended the suites for the node URIs and deploy logging changes ([354c9efba](https://github.com/underpostnet/engine/commit/354c9efba236c829ff5f61f1855e1cc8f5db6fc4))
144
+ - Extended suites for the state, image build and fallback capture changes ([355169317](https://github.com/underpostnet/engine/commit/3551693170f9f90571890573d2d14344e31ff1d2))
145
+ - Fix coveralls: hardhat module dependencie scope ([2f7dbb8bd](https://github.com/underpostnet/engine/commit/2f7dbb8bd5fc9f8aae851bed8d5f68e20f298efb))
146
+ - Fix coveralls: event-targets alertmanager webhook receiver ([b201c6dd7](https://github.com/underpostnet/engine/commit/b201c6dd76178b7686f714d8c014f683c48f672c))
147
+ - Add infra and unit suites and raise the coverage gate ([22d11215a](https://github.com/underpostnet/engine/commit/22d11215a159012056ebf2a59559707f47da2148))
148
+ - Fix coverage calculation excludes ([87ce13fdd](https://github.com/underpostnet/engine/commit/87ce13fddf62e624f431b3f3a942887340a1547d))
149
+ - Run the API test suite against an in-process server ([8ed062470](https://github.com/underpostnet/engine/commit/8ed062470a2cc916034beedab06c6607821aeb26))
150
+ - Move suites into tiered unit, integration and e2e layouts ([c17bf2e37](https://github.com/underpostnet/engine/commit/c17bf2e37e613f9774adf25929e48ae659581c5a))
151
+ - Replace Mocha and c8 with the Vitest tiered runner ([cb648a10b](https://github.com/underpostnet/engine/commit/cb648a10b5763d9db9a2f78ebffd8ecb82efab5f))
152
+ - Update coverall execution order list ([9a9ea3db7](https://github.com/underpostnet/engine/commit/9a9ea3db768d1eadbac71249d50c0a7578afe5a5))
153
+ - Add mocha test runner configuration ([ab4e84bb1](https://github.com/underpostnet/engine/commit/ab4e84bb141ab878c2275edfaf166f7cd7e70684))
2001
154
 
2002
- ### server-client
155
+ ### github-actions
2003
156
 
2004
- - fix: improve error logging for nodemon crashes in client development server ([a0ece977](https://github.com/underpostnet/engine/commit/a0ece97700797565dd992f2320d41814fd1e9113))
157
+ - Drop the engine repo from cyberia-scoped CI jobs ([7e3dccd32](https://github.com/underpostnet/engine/commit/7e3dccd3269da4a2319fe3b10371750be0a5e4aa))
158
+ - Resolve propagation payloads through cmt --propagate-msg ([bfecdf73e](https://github.com/underpostnet/engine/commit/bfecdf73e9c304e3e194ddee5ff7436ef396d31d))
159
+ - Point CI image flows at the package command ([fffb75db1](https://github.com/underpostnet/engine/commit/fffb75db1cfc976c54dfe70ddca6b4d981d07a8e))
160
+ - Align CD workflow comments with the renamed deploy logging library ([1cfe400e4](https://github.com/underpostnet/engine/commit/1cfe400e47b34a4652f8d14d7371b6916e65401c))
161
+ - Carried the GitHub Actions runner marker through the deploy ([b54fffa4f](https://github.com/underpostnet/engine/commit/b54fffa4f7bfe839447dfc44a46a9116b9472c7d))
162
+ - Add export RUN_QUIET_CI for github runner ([fd34bf4ec](https://github.com/underpostnet/engine/commit/fd34bf4ec08182295858b8de9ac68d5cd68f2af4))
163
+ - Align CD workflow comments with current secrets ([756bac9eb](https://github.com/underpostnet/engine/commit/756bac9ebff054f61430fe85900c858508933d2e))
164
+ - Rename the template test workflow to unit and infra ([e1cf38135](https://github.com/underpostnet/engine/commit/e1cf38135dfbdbf7f55a990c68065462afef484d))
165
+ - Run the tiered Vitest suites in the test pipelines ([6ea5288e3](https://github.com/underpostnet/engine/commit/6ea5288e3152cf07660c084b8fc5d1062eea6902))
2005
166
 
2006
- ### package-script
167
+ ### cli-repository
2007
168
 
2008
- - feat: add clean script to package.json for environment cleanup ([1516217a](https://github.com/underpostnet/engine/commit/1516217a8311b3e303a433ebeb70c2306369ee39))
169
+ - Add --propagate-msg resolution to the cmt command ([f3491fec4](https://github.com/underpostnet/engine/commit/f3491fec4e3fcbdc30d5e23c2089df376c508148))
170
+ - Add fastForwardEnginePair method ([8db5d2d69](https://github.com/underpostnet/engine/commit/8db5d2d69b6eda6472b86726970bd704c6f20c3a))
171
+ - Keep GitHub credentials out of child Git commands ([329d8a177](https://github.com/underpostnet/engine/commit/329d8a177e3aef6caa96c58928e9077c0f63093d))
172
+ - Derived the private conf repo from the engine sync pair ([8d8a5b0bc](https://github.com/underpostnet/engine/commit/8d8a5b0bcd08c9d964c0309f8ac1acc43589f9eb))
173
+ - Derive the private repo name from the shared factory ([34b5f17e4](https://github.com/underpostnet/engine/commit/34b5f17e4d83fa44dcb3428308fdea095a1dc02c))
174
+ - Fix bare clone path removal in repository clone ([b8df8ac25](https://github.com/underpostnet/engine/commit/b8df8ac258e3be61b5535c60d21936f989498398))
175
+ - Scope deployment builds to the requested instances ([00aeafa9e](https://github.com/underpostnet/engine/commit/00aeafa9e621b122c5c44dfe1e06f75367fb2f9b))
176
+ - Skip backup commit when no changes are pending ([022ef2f3d](https://github.com/underpostnet/engine/commit/022ef2f3db1a34ef20d35169929f80a0bb4cac93))
2009
177
 
2010
- ### cli-repo
178
+ ### package
2011
179
 
2012
- - feat: add sync-start option to synchronize start scripts in package.json for deploy IDs ([59ebb8c1](https://github.com/underpostnet/engine/commit/59ebb8c1cb681bc3a12f17e2588198119cad2964))
2013
- - feat: add option to display current Git branch name ([8492f7a2](https://github.com/underpostnet/engine/commit/8492f7a2b8bfe8db50b060d2659a8e059f8d4329))
180
+ - Remove clean script ([809f225d7](https://github.com/underpostnet/engine/commit/809f225d78f5e843aaca54d8a5fa06f6e77a3f1c))
2014
181
 
2015
- ### cli-run
182
+ ### cli-host
2016
183
 
2017
- - Fix runner ide vs code ([70b34ea3](https://github.com/underpostnet/engine/commit/70b34ea3d3bbf2432882dbe6a9cef87b9af5cf5e))
184
+ - Fix traceback env ([d1fd667d5](https://github.com/underpostnet/engine/commit/d1fd667d56a50fcfa21a70e0a67a29facee81b39))
2018
185
 
2019
- ### server-env
186
+ ### build
2020
187
 
2021
- - refactor: centralize environment variable loading ([3c2709ae](https://github.com/underpostnet/engine/commit/3c2709aecf04111ccff716ac929180e93d0edbb9))
188
+ - FIx host environment entrypoint env scope ([af8bfbee9](https://github.com/underpostnet/engine/commit/af8bfbee90fce1371fa5e325a3eb0c9c53fc3853))
2022
189
 
2023
- ### bin-vs
190
+ ### docs
2024
191
 
2025
- - Improve vs code ide runner handling ([2b1a8b32](https://github.com/underpostnet/engine/commit/2b1a8b326129c5e44fac6691d006991be1eb6097))
192
+ - Document configuration scopes and node capability boundaries ([4cebdacbe](https://github.com/underpostnet/engine/commit/4cebdacbe6365d1cde9b7ea3f4bbf984acda7212))
193
+ - Document the package command and fleet sync flows ([56622044c](https://github.com/underpostnet/engine/commit/56622044c068d7f78f39ae0cd5e1431006487132))
194
+ - Regenerate the CLI references for the execution profile and DB flag changes ([604d65eba](https://github.com/underpostnet/engine/commit/604d65ebabc8ceb5b7ae72c73f0230b61cb54c55))
195
+ - Documented the node-based connection URIs across the CLI references ([1c0eee0db](https://github.com/underpostnet/engine/commit/1c0eee0dbe4ed35f55118fdd0a317beae9d306e2))
196
+ - Documented the CLI domains, staged image builds and fallback capture ([c46dbe4fd](https://github.com/underpostnet/engine/commit/c46dbe4fdf7146c301a6b0d90c93a5c73b7d5b75))
197
+ - Document the host, app, and state CLI domains ([d9bc0bc2a](https://github.com/underpostnet/engine/commit/d9bc0bc2a953fd5c27754c00b04c4d45ce79b758))
198
+ - Update and normalize dynamic status badges across repositories ([51be9cf00](https://github.com/underpostnet/engine/commit/51be9cf009471f9b0256cc63568b381cb0c23316))
199
+ - Add Hybrid-Edge Cloud Distributed Infrastructure Scope document ([80f9040ba](https://github.com/underpostnet/engine/commit/80f9040ba1121efb6d464a9d7bb99676bc81ebe3))
200
+ - Add the repository contribution and testing conventions ([9b861e27f](https://github.com/underpostnet/engine/commit/9b861e27f33467c033763c50b71b984afbcf6ba5))
201
+ - Document the tiered Vitest runner and the test command ([aba90c472](https://github.com/underpostnet/engine/commit/aba90c472dbdce5b4bd050e755b67eeb0c595644))
202
+ - Normalize markdown formatting in observability reference ([8c586e9bb](https://github.com/underpostnet/engine/commit/8c586e9bba47040df9ec5dd6608ad8cb067f2493))
203
+ - Update nexodev reference docs for observability and cluster scoped users ([2c0d6259b](https://github.com/underpostnet/engine/commit/2c0d6259bc54593c9b86dfb79b437f332c266d23))
2026
204
 
2027
205
  ### engine
2028
206
 
2029
- - Refactor security deploy conf logic and handle ([7d6592c4](https://github.com/underpostnet/engine/commit/7d6592c438c6107c10108a0bf78b33b8849a8036))
2030
- - Silencing dotenv injection logs ([56b8e8e8](https://github.com/underpostnet/engine/commit/56b8e8e80f945c508c4cbc277a1f33c9f3977f6d))
207
+ - Deliver cron environments from scoped projections and injected keys ([b9262c9e8](https://github.com/underpostnet/engine/commit/b9262c9e8c459ed9564c4de4d0d2ae461a426234))
208
+ - Gate cluster operations on a node role capability table ([a6c71588e](https://github.com/underpostnet/engine/commit/a6c71588e633006139203c3652dfa28162164cf8))
209
+ - Split the host configuration into scoped durable sources ([46bba77b5](https://github.com/underpostnet/engine/commit/46bba77b597fe6725c207601313c315475f69e9e))
210
+ - Keep the selected NODE_ENV through the OCI env overlay ([99c738905](https://github.com/underpostnet/engine/commit/99c738905cc7c39be733c4f422e3a46637cc8f17))
211
+ - Collapse the start bootstrap into one source pull ([4ee41e393](https://github.com/underpostnet/engine/commit/4ee41e3935093f8d105d75d12cb6da3bd8d41006))
212
+ - Harden command logging around credentials ([3899bcba2](https://github.com/underpostnet/engine/commit/3899bcba2bcf0f1596b591341d456dc76a3672f0))
213
+ - Bundle the test coverage report into deployed artifacts ([6b7ebaaed](https://github.com/underpostnet/engine/commit/6b7ebaaed83e1b0791f355da442cc1fc40a051b9))
214
+ - Serve CronJobs from a labeled engine mirror ([687322acb](https://github.com/underpostnet/engine/commit/687322acb92974ddd9e022086022e12c66429bb0))
215
+ - Pin database PVs down to one claim under /data ([97a53cbd6](https://github.com/underpostnet/engine/commit/97a53cbd6325c776beabed0527994a98224b8af1))
216
+ - Prepare container storage for host-mounted volumes ([3b5470a3d](https://github.com/underpostnet/engine/commit/3b5470a3d96b0755ea901b7afff08274bf426ca4))
217
+ - Add deploy package manifest generation and the package CLI ([3ec0b5265](https://github.com/underpostnet/engine/commit/3ec0b526512547e5ee3f8a87ca936dea445476f8))
218
+ - Add execution profiles and the offline command gate ([4e9b80d67](https://github.com/underpostnet/engine/commit/4e9b80d679e0a71920c53aea653f729cdaaeabd6))
219
+ - Dropped the stale baked-CLI comments from the runtime Dockerfiles ([26a328fbb](https://github.com/underpostnet/engine/commit/26a328fbb56df0af4eef0f9002385dcb0a88315c))
220
+ - Guarded the optional cron conf mirror in the private repo sync ([b7e987f18](https://github.com/underpostnet/engine/commit/b7e987f18415e95c03973e519a6832500f8c1a0b))
221
+ - Awaited the deployment build steps so the status endpoint stays live ([6190fda26](https://github.com/underpostnet/engine/commit/6190fda26885269e209302891089d821dddc1db7))
222
+ - Captured the in-memory fallback world as a persisted instance ([971ff629a](https://github.com/underpostnet/engine/commit/971ff629a8830da644bf7edf7d0121c5230b7e38))
223
+ - Baked the runtime CLI into the images from a staged archive ([ca46e5f5f](https://github.com/underpostnet/engine/commit/ca46e5f5f7f2d8a69cf40d36d57e3631d1d3cd92))
224
+ - Add OCI runtime env overlay context ([8c625e42d](https://github.com/underpostnet/engine/commit/8c625e42d593ea043270e557f18de0b1f2bdfb69))
225
+ - Move container runtime status into a dedicated state store ([b331c4ea7](https://github.com/underpostnet/engine/commit/b331c4ea78525d66517bf89f3b9cd3eb1a4fbd52))
226
+ - Drop stale API documentation comment headers ([77b82ee74](https://github.com/underpostnet/engine/commit/77b82ee74b1dd85f2fa1fc1ce2acb34d3bd9834d))
227
+ - Ignore the .underpost directory in Docker builds ([148d07a59](https://github.com/underpostnet/engine/commit/148d07a593d6897db423b543c4d0bafc13a9e5c5))
228
+ - Rebuild the template before each deploy id assembly ([39b09cd0f](https://github.com/underpostnet/engine/commit/39b09cd0ffa62fc0702c0e2ef7705080c26ffb11))
229
+ - Guard the template checkout and prune stale sources on build ([1034ca412](https://github.com/underpostnet/engine/commit/1034ca412c467eb81a44059b72fa791554ab5ece))
230
+ - Move Valkey adapter to database layer ([cce8cdb20](https://github.com/underpostnet/engine/commit/cce8cdb20553688e5ae7781ac15c25969668c889))
231
+ - Organize server modules by domain ([4178f40b4](https://github.com/underpostnet/engine/commit/4178f40b4bdd81a34fb96677ed7282a562ee4759))
232
+ - Build product manifests declaratively ([27c228299](https://github.com/underpostnet/engine/commit/27c228299037aca19aa7c9cccdda38c9f8484e5d))
233
+ - Ignore the local environment and test report directories ([231eb84f1](https://github.com/underpostnet/engine/commit/231eb84f1c316aae440a638436fbae9a62b84aa8))
234
+ - Harden server framing and CSP security headers ([cb5f7a005](https://github.com/underpostnet/engine/commit/cb5f7a0058f77fc0ccc8fe709525262f6a2da3d1))
235
+ - Resolve repository identity in shared server and client modules ([1bd92d6d8](https://github.com/underpostnet/engine/commit/1bd92d6d8fba75a386a0290bae3bcbb0f7fb58cb))
236
+ - Extract systemd probe helpers and redact shell credentials ([211ae10cc](https://github.com/underpostnet/engine/commit/211ae10ccb305b7783222f5c2631aaf346f4e957))
237
+ - Extract deploy route registry into dedicated router module ([4bd7bd3a7](https://github.com/underpostnet/engine/commit/4bd7bd3a73866a704df00d96fa2de811a78b71b2))
238
+ - Verify nftables egress block chains and policies ([4168f699d](https://github.com/underpostnet/engine/commit/4168f699d6c5edb5227bed6a78bf5057ca729b31))
239
+ - Harden database backup pipeline with exec-readiness gates and bounded retries ([0ed2917b8](https://github.com/underpostnet/engine/commit/0ed2917b83512b1c2c5ff06d8c49c0d7d07bcc25))
2031
240
 
2032
- ### engine-cyberia
241
+ ### cli
2033
242
 
2034
- - Add development pv pvc dd-cyberia manifests ([ca4d3d34](https://github.com/underpostnet/engine/commit/ca4d3d3420e1d6a3801430e5c1a28e6377f39a0a))
2035
- - Fix object layer model Mongoose pre save next error ([506fb719](https://github.com/underpostnet/engine/commit/506fb719cbd875e3ffdd1168cf2155bb0f083ba4))
2036
- - Add missing ethers packahge in CyberiaDependencies scope ([5f11cafe](https://github.com/underpostnet/engine/commit/5f11cafe64abde831e497ed06be825a589e7ce23))
2037
- - Add Customize Docs release URL and MenuCyberiaPortal GitHub ([e879c224](https://github.com/underpostnet/engine/commit/e879c22401af13d21056f0cd146f0292ae39fc31))
2038
- - Fix Hardhat CI npm audit failure ([3ea9ed48](https://github.com/underpostnet/engine/commit/3ea9ed486ebbc7e5e3879a61a26fcb2fa5071148))
2039
- - Update hardhat config evm version ([816e1d7d](https://github.com/underpostnet/engine/commit/816e1d7d0594abd34f344c483fad1a62f0238cf0))
2040
- - Cyberia Portal Docs Modal Fixes ([9bd9eb1e](https://github.com/underpostnet/engine/commit/9bd9eb1e493cb8136e47c73de3a8dbbb1393fe44))
2041
- - Add Cyberia portal docs build integration ([9d8abe00](https://github.com/underpostnet/engine/commit/9d8abe0017249002e13f8f7c1dde4a9b24e5348f))
2042
- - Kubeadm Underpost Cluster Besu Integration ([1df6cfbf](https://github.com/underpostnet/engine/commit/1df6cfbfb32621243fb2be39de9aba8ebafbde6f))
2043
- - Fix Hardhat Web Integration Canonical CID ([bb2a81fa](https://github.com/underpostnet/engine/commit/bb2a81fab558f9f3c493e9cbae6f029ca9a1b404))
2044
- - Cryptokoyn and Itemledger metadata client and seo injects ([db8c9b33](https://github.com/underpostnet/engine/commit/db8c9b3372d29f84a27b5b40003f09d5956cefd2))
2045
- - Cyberia NPM Dependency Installer hardhat on main module override ([a43cc25e](https://github.com/underpostnet/engine/commit/a43cc25ea59f6e36a1a52f53fcd1b6b1544168cc))
2046
- - Apply mermaid on diagrams in WHITE-PAPER.md ([0bb230e1](https://github.com/underpostnet/engine/commit/0bb230e14fe3639a9fe026e0c1f2da585856c04c))
2047
- - Hardhat Cyberia CKY Token Lifecycle ([514bdafa](https://github.com/underpostnet/engine/commit/514bdafaee5d345a7fa43d6b1aab2cd6917d5cee))
2048
- - Hardhat Ethers v6 Upgrade Audit ([114e42f7](https://github.com/underpostnet/engine/commit/114e42f7dd7f549cda21b873461558fc8ce7c7ba))
2049
- - Hardhat ES6 refactor for Cyberia ([9b9f8569](https://github.com/underpostnet/engine/commit/9b9f85693cb7256e433b1184fd8dbf1739a3dbd9))
2050
- - Object Layer Token Ethereum Refactor ([82076eb9](https://github.com/underpostnet/engine/commit/82076eb9e311ee003b7d91e38e60829f9e3b0f2c))
2051
- - Rename cyberkoyn reference to cryptokoyn ([ae594933](https://github.com/underpostnet/engine/commit/ae5949337c5a27f4367cc93247023b1448491c9f))
2052
- - Refactor Object Layer White Paper and ERC1155 Besu Integration ([8cb6f59c](https://github.com/underpostnet/engine/commit/8cb6f59c23a66265d5b663bec37ac0c402ffffad))
243
+ - Report the underpost reroute at info level ([b9c798b4b](https://github.com/underpostnet/engine/commit/b9c798b4b293d82bd0aa2cb9ea7334f0dbd87cbf))
244
+ - Add a build-only mode to the sync-cluster command ([8d3ce9879](https://github.com/underpostnet/engine/commit/8d3ce98799b3b5704f29842562728459f11e46b5))
245
+ - Mirror generated deployment manifests into the project tree ([225da8bc9](https://github.com/underpostnet/engine/commit/225da8bc982bf3a9e612e420f6353ad2e3b6a268))
246
+ - Keep the node sync off the machine it runs from ([4fbb9376a](https://github.com/underpostnet/engine/commit/4fbb9376a27dc016f9ad0bc87d1609a020ebf268))
247
+ - Pin re-entrant commands to executing package location ([151ce5a10](https://github.com/underpostnet/engine/commit/151ce5a10016fa50f87e73425d9cfabaaf75d54d))
248
+ - Centralize underpost resolution and drop the stale DB pod-ensure flag ([3c1b61866](https://github.com/underpostnet/engine/commit/3c1b618660344ed4b3f355b42ec8d479788ee15c))
249
+ - Streamed the state domain as a live pod table with runtime telemetry ([a6a25a24d](https://github.com/underpostnet/engine/commit/a6a25a24dc9bb77f9e32d32c085799d63e5648f7))
250
+ - Added a net-tables diagnostic run workflow ([191febeef](https://github.com/underpostnet/engine/commit/191febeefb69b7f8fed62d3c72d6b571cad3d12a))
251
+ - Applied the per-deployment OCI env overlay before manifest builds ([b39768b99](https://github.com/underpostnet/engine/commit/b39768b9910a89d7526367df819cbfdec9b8cb6e))
252
+ - Resolved connection URIs by node name through the edge targets ([9bb6285ff](https://github.com/underpostnet/engine/commit/9bb6285ffdc40a1cc8f3ecd9556ed6eb1e3dbdd1))
253
+ - Carried the sub-configuration through the client build ([951eb9740](https://github.com/underpostnet/engine/commit/951eb974013afefa30dbfaa76d2a022c68caf111))
254
+ - Reworked the state command into a runtime status domain ([0a6c55a99](https://github.com/underpostnet/engine/commit/0a6c55a99a0cf2ef166079b18c2a659d43b9ec39))
255
+ - Folded the env and config commands into the host configuration store ([1acb5babf](https://github.com/underpostnet/engine/commit/1acb5babf89dd81344e332c6a0b64100ba4077f2))
256
+ - Report caught CLI errors to stderr instead of stdout ([205fe6fea](https://github.com/underpostnet/engine/commit/205fe6fea47de31623499ce534b9eb2ea080bafa))
257
+ - Add host, app, and state domains migrating the config commands ([1ef280b3f](https://github.com/underpostnet/engine/commit/1ef280b3f8e1a80eed7cb2fb2bbbceca8500f4b7))
258
+ - Remove test CLI module and prune client assets ([36750f961](https://github.com/underpostnet/engine/commit/36750f9617921f65c8c332b5f887c7ce3f0c5754))
2053
259
 
2054
- ### cli-deploy
260
+ ### scripts
2055
261
 
2056
- - Fix Kubernetes PVC Manifest Inconsistencies ([6839bccc](https://github.com/underpostnet/engine/commit/6839bccca30723e1cbd4664b31b0cede1ff63c90))
2057
- - Fix Kubernetes PVC Manifest Inconsistencies builder ([d6f311c6](https://github.com/underpostnet/engine/commit/d6f311c608217401ec145e70aab04206147a743e))
262
+ - Restrict node setup to RHEL hosts with a system Node ([e8f4a13b2](https://github.com/underpostnet/engine/commit/e8f4a13b272bb6f7850464517b9726056e3cbf00))
263
+ - Targeted instance flags in the test deploy monitor ([5dcbeb0d8](https://github.com/underpostnet/engine/commit/5dcbeb0d83e9100c4cf2f2622b6c877a18a8421a))
264
+ - Remove the stale local underpost CLI link script ([c3c1d2b46](https://github.com/underpostnet/engine/commit/c3c1d2b46390de536c4407d4561e0cba4dbd5877))
265
+ - Add graceful node shutdown and auto-restore script ([3a5958c00](https://github.com/underpostnet/engine/commit/3a5958c00527954fc693fed6ac6651010eef8024))
266
+ - Update event monitor script with wireguard and envoy logs ([14c83ec68](https://github.com/underpostnet/engine/commit/14c83ec68c0b5e93a1f936273bed0aa055faf038))
2058
267
 
2059
- ### client-core
268
+ ### cli-secrets
2060
269
 
2061
- - Fix AgGrid Theme Events Rendering ([4b37681f](https://github.com/underpostnet/engine/commit/4b37681f19a102da5068c20998c0353bae604d54))
2062
- - Add logic to custom ui-icon in content component ([b380703c](https://github.com/underpostnet/engine/commit/b380703c8a52abb3d37f390725a54ed6b88e5fcc))
2063
- - Fix sitemap generation logic ([7cfb23d0](https://github.com/underpostnet/engine/commit/7cfb23d01988d1f4ff288e8ce17d350c1d3af633))
2064
- - Fix sitemap builder defaul url sitemap ([c39f1e07](https://github.com/underpostnet/engine/commit/c39f1e07055f035da4f737f8ec6f2acfd621ca80))
270
+ - Rotate the GitHub token and seed cron env secrets ([441b81a3f](https://github.com/underpostnet/engine/commit/441b81a3f97849b15c7bc69fb6be9f57ca3ab75e))
271
+ - Rework the secret CLI around the shared domain actions ([afa84003d](https://github.com/underpostnet/engine/commit/afa84003d7c15723b9d7eec133f438489dd102e5))
272
+ - Publish underpost-config only through the secret layer ([588af5f06](https://github.com/underpostnet/engine/commit/588af5f0693d251d65a499efb06b21966e0efeb1))
273
+ - Add SOPS setup and status onboarding commands ([ceb717e2b](https://github.com/underpostnet/engine/commit/ceb717e2b3e220ee0d362fd41ab7197532b0e9bc))
2065
274
 
2066
- ### client-underpost
275
+ ### event
2067
276
 
2068
- - Add File Explorer Cloud Menu Auth ([f3cc57e2](https://github.com/underpostnet/engine/commit/f3cc57e2818e36e56f34bc41f81846b64e48e2a8))
277
+ - Report why a dispatcher Node binary is rejected ([b615b9a80](https://github.com/underpostnet/engine/commit/b615b9a80eea70f2bcbf1d65982b2b9edbd541c0))
278
+ - Report unreadable cluster as unknown in deployed event state ([e184e6c2e](https://github.com/underpostnet/engine/commit/e184e6c2ecafc7d937063de4ca48a9004a3cfcb5))
2069
279
 
2070
- ### api-core
280
+ ### cli-wireguard
2071
281
 
2072
- - Fix deprecated Mongoose pre save next error ([bee1a582](https://github.com/underpostnet/engine/commit/bee1a582926a0264be0cfb8ddf87f4ef01413a19))
282
+ - Reconcile per-node-role services on fleet sync ([bc03d54c8](https://github.com/underpostnet/engine/commit/bc03d54c894531d61edb0d51b92a74f074c85032))
283
+ - Add restart dispatcher on wireguard sync and update ingress recovery wait in ENGINE_SYNC_STEPS scripts steps ([74936a404](https://github.com/underpostnet/engine/commit/74936a404719e4469b54878117c77223284a309d))
284
+ - Refactor edge state into deployment topology ([0b457088d](https://github.com/underpostnet/engine/commit/0b457088d9eaf1eaaa894367f8b4d124a5078cb8))
285
+ - Report peer public keys and unregistered identities in status ([10ef0d140](https://github.com/underpostnet/engine/commit/10ef0d14097f8e25bce18427316b0dcc593d4c07))
2073
286
 
2074
- ### conf
287
+ ### deploy
2075
288
 
2076
- - Add SwaggerDarkMode in dd-cyberia conf ([69d4c54f](https://github.com/underpostnet/engine/commit/69d4c54f1e354e9f45b1b401796ca9702ac95698))
289
+ - Add per-deploy package scripts and shared host preparation ([076388a72](https://github.com/underpostnet/engine/commit/076388a72b4965d8443ae521fc60c5d9d20ba189))
290
+ - FIx deploy npm install order ([665c37f16](https://github.com/underpostnet/engine/commit/665c37f1636313fb9bae355995261bd9454db9ce))
291
+ - FIx treat missing target-colour deployment as normal blue/green state ([aa3097210](https://github.com/underpostnet/engine/commit/aa3097210d98c31ee5e086987ab8b6d10fff1a4e))
292
+ - Add the optional per-deployment env secret overlay to the dev manifests ([a830b0213](https://github.com/underpostnet/engine/commit/a830b0213fea2fd9d3321831d72f0dfa24e5c280))
293
+ - Streamed the runtime state and stamped the bootstrap container status ([89a45ad30](https://github.com/underpostnet/engine/commit/89a45ad3088f201289ce7f7bf090e71b478ead3e))
294
+ - Renamed the deploy logging library to the GitHub Actions variant ([10bce1a4a](https://github.com/underpostnet/engine/commit/10bce1a4a83d23a5ab6df20b60c6bb56d871309e))
295
+ - All in invocations now use one flag per \-continued line ([cb3adbec0](https://github.com/underpostnet/engine/commit/cb3adbec093468be5ab530eadca17a0b641cabba))
296
+ - Converted the deploy scripts to the shared deploy-step log contract ([de350d199](https://github.com/underpostnet/engine/commit/de350d1999ebd52eb5c132f5e05e2d5d12f49900))
297
+ - Add CD Node Source Pull pipeline logic ([7f20ea0d5](https://github.com/underpostnet/engine/commit/7f20ea0d578261d59c25d195b1012b32aeac0adb))
298
+ - Fix cyberia deployment entry point script with cli surface scope ([ed16da715](https://github.com/underpostnet/engine/commit/ed16da7150760d41b9dfd040dd7835fa78e46ebf))
299
+ - Consolidate host prep and update pod start commands ([104ac9c38](https://github.com/underpostnet/engine/commit/104ac9c3829a539f814b27bfa2f396de48f1df89))
300
+ - Add a dd-core remote sync and deploy helper script ([736fe2ec9](https://github.com/underpostnet/engine/commit/736fe2ec968b352b7ab3c2d809026e0519762c91))
301
+ - Resolve the deployment environment from --env and --dev flags ([1e04b3e00](https://github.com/underpostnet/engine/commit/1e04b3e0095118e414cb902d85280f1044aca825))
302
+ - Rename run secret command to secret --from-cron-env in deploy scripts ([101c77526](https://github.com/underpostnet/engine/commit/101c77526e0ad8a92ed0c8d0abde640720da3710))
2077
303
 
2078
- ### bin-build
304
+ ### cyberia-cli
2079
305
 
2080
- - Fix jsdocs cyberia json build ([20dbe54d](https://github.com/underpostnet/engine/commit/20dbe54dd7f1e6559b231971afdba694a37315ca))
306
+ - Add related instance deploy paths in cyberia catalog ([dec9e1175](https://github.com/underpostnet/engine/commit/dec9e11751715b688d744f4c59804ec51ba3cf7b))
2081
307
 
2082
- ### cli-core
308
+ ### client-core
2083
309
 
2084
- - Update -g8 option flag ([d1779a1d](https://github.com/underpostnet/engine/commit/d1779a1da5a2883408962fa231dad6342f8fe6d3))
310
+ - Fix Resolve Swagger UI 404 and incorrect API target in specs ([aa6ba8606](https://github.com/underpostnet/engine/commit/aa6ba8606df8f272604e08759363577d04cfdd0d))
2085
311
 
2086
- ## New release v:3.0.3 (2026-03-06)
312
+ ### client
2087
313
 
2088
- ### client-underpost
314
+ - Fix typo SSRComponent ([e92751afe](https://github.com/underpostnet/engine/commit/e92751afeef08acb37713fc34e9ea3c91e00245e))
315
+ - Served the fullcalendar global build bundle ([164cb0706](https://github.com/underpostnet/engine/commit/164cb07064b4eb792c587a636fe672a8d452cb1a))
316
+ - Rename FullScreen.js to ViewModeController.js ([35e250bd3](https://github.com/underpostnet/engine/commit/35e250bd35a510f99e93062265f3a65055997157))
317
+ - Drop dead code from the wallet, file explorer and nexodev shell ([9b4ec76dc](https://github.com/underpostnet/engine/commit/9b4ec76dce5ff10a87c827dda7528c7ae622176d))
318
+ - Refresh the service worker and its cache policy ([e0a270b35](https://github.com/underpostnet/engine/commit/e0a270b353be5ef8718e52b6f1bafbef217abb2c))
319
+ - Rework the calendar, docs and translation surfaces ([511afcc5e](https://github.com/underpostnet/engine/commit/511afcc5ed3d84e32e631f72a15befa82c049a1c))
2089
320
 
2090
- - Add volume src assets container path ([db4c3f29](https://github.com/underpostnet/engine/commit/db4c3f29242d2dee6b9510d1d7ecf5a2fd6611cd))
2091
- - Add ui icons images ([9bab63ea](https://github.com/underpostnet/engine/commit/9bab63eaa62e069371a109199940f9dea236b5c8))
2092
- - Remove underpost public assets folder ([9b6130a9](https://github.com/underpostnet/engine/commit/9b6130a98202a7638dd194c8587fb95859cd088d))
321
+ ### cli-cyberia
2093
322
 
2094
- ### engine-cyberia
323
+ - Resolve underpost invocations through the shared CLI resolver ([04989793e](https://github.com/underpostnet/engine/commit/04989793ed09f4f099a6855ffad28ee8f8e04472))
2095
324
 
2096
- - Remove object layer base data.seed attribute ([e9044a33](https://github.com/underpostnet/engine/commit/e9044a3371a5de02a35c27a7ef9e4d3ce50a78b6))
2097
- - Pwa retro styles improve ([d9893c0c](https://github.com/underpostnet/engine/commit/d9893c0cae4f514d4948df048b77bd96ae97f7a7))
2098
- - Fix object layer js docs commetns and css label direction improve in object layer engine ([c438eb32](https://github.com/underpostnet/engine/commit/c438eb329b7d7e94a6a278f6efc15df8cdbd0d72))
2099
- - Improve direction code labels in bar directions in object layer engine client component ([82a2c04f](https://github.com/underpostnet/engine/commit/82a2c04fe930e35fbb2dd6b6f38e79d9cd4bd21b))
2100
- - Add Ledger Type and Render Metadata CID to object layer management table ([e75206bb](https://github.com/underpostnet/engine/commit/e75206bb10b6bf31ec6e800ca0b91fcb67d925c4))
2101
- - Add ledger control view card in object layer viewer ([5afc50a9](https://github.com/underpostnet/engine/commit/5afc50a9427b13dc6082b96b7e62bda7a2f82e91))
2102
- - Remove _id of LedgerSchema ([82ded44b](https://github.com/underpostnet/engine/commit/82ded44b530b42f67e34429da72e765d57dd618f))
2103
- - Implements data.render.metadataCid workflow to ref atlas sprite sheet render metada ([5df29b5c](https://github.com/underpostnet/engine/commit/5df29b5cbfd51b69ebe5e1cc980a395ccbf8e961))
2104
- - ObjectLayer model render schema refactor ([dcc9e728](https://github.com/underpostnet/engine/commit/dcc9e72872267900e731928f441c6546940a9c05))
2105
- - Add LedgerSchema and atlasSpriteSheetMetadataCid to object layer base data model ([b63e8a7f](https://github.com/underpostnet/engine/commit/b63e8a7f8de49ba8178e54f86bae306fdbd3261e))
325
+ ### lampp
2106
326
 
2107
- ### engine
327
+ - Implement shared provisioning contract repositories ([1730cced3](https://github.com/underpostnet/engine/commit/1730cced3585a19ef25b07f127d1b022f57e34ee))
2108
328
 
2109
- - Move underpost client to dd-cyberia conf ([b8dfbbb3](https://github.com/underpostnet/engine/commit/b8dfbbb30a43a8e5fa432f6c2b2d7c089d065fad))
329
+ ### monitoring
2110
330
 
2111
- ### cli-run
331
+ - Refactor binary availability metrics to state timeline and stat panels ([ae1f39223](https://github.com/underpostnet/engine/commit/ae1f39223abe8c8bc7be6745fc60c770d174fc4a))
332
+ - Document node exporter provisioning and role relabeling in observability docs ([de8a72b56](https://github.com/underpostnet/engine/commit/de8a72b5677d69727289bd8ef1e6d35cec82628c))
333
+ - Provision node exporter on hubs and relabel node roles in dashboards ([7454ec408](https://github.com/underpostnet/engine/commit/7454ec4082ac5a43329b069f112f21bd1da392d0))
334
+ - Add Node Metrics dashboard, Node Exporter, and 5 cluster threshold alerts ([40c3d6e71](https://github.com/underpostnet/engine/commit/40c3d6e71a9877b63c0f276a4e646937f5ee5b9c))
2112
335
 
2113
- - Implements CLI deploy job hostAliases support ([fbe7da80](https://github.com/underpostnet/engine/commit/fbe7da801910fc6ea7bffd8dfc3c3a7aaf40df1a))
336
+ ### conf
2114
337
 
2115
- ### client-core
338
+ - Restore dev API config generation and CORS origin mapping ([afaebcf16](https://github.com/underpostnet/engine/commit/afaebcf16cbd498a4b0bf57c3e58e9ec9b8b043d))
2116
339
 
2117
- - Add RouterReady logic in Router component ([32bdb815](https://github.com/underpostnet/engine/commit/32bdb815e9eb9cc70844c644dc54ea73f0e7a817))
340
+ ### server-start
2118
341
 
2119
- ## New release v:3.0.2 (2026-03-01)
342
+ - Hand off the build through a linked underpost CLI ([42ae75c08](https://github.com/underpostnet/engine/commit/42ae75c08f917dbfd696431c08f5f299139dc24c))
2120
343
 
2121
- ### engine-cyberia
344
+ ### cli-client
2122
345
 
2123
- - Add test in engine-cyberia cd workflow ([642d7e36](https://github.com/underpostnet/engine/commit/642d7e36155b6db5dbd36e19767dd95f146ceaf5))
2124
- - Add build dd-cyberia shape generator exclusive module files ([188f563a](https://github.com/underpostnet/engine/commit/188f563a61d7f6bf36bef93cdd18d4e1304f9747))
2125
- - Fix ObjectLayerEngineViewer return to list button click ([aeaead6f](https://github.com/underpostnet/engine/commit/aeaead6f5c67a03449c63c584976e9a73ccc953d))
2126
- - Improve static generations assets in object layer generation CLI ([06694d92](https://github.com/underpostnet/engine/commit/06694d92ea1ad849e745f561b8ec9a48bfa66056))
2127
- - Implements deterministic object layer generation CLI ([f70c9841](https://github.com/underpostnet/engine/commit/f70c9841ef2efc9187c87427cc465505487766db))
2128
- - Implement shape generator module ([5741a38b](https://github.com/underpostnet/engine/commit/5741a38bcfb8c1c4e0ef5053a2a6a73ff50a3879))
2129
- - Fix remove of ag grid table delete object layer delete logic ([e98953cd](https://github.com/underpostnet/engine/commit/e98953cd29767ca44c2362997f0af40cd538371b))
2130
- - Centralize Object Layer Logic and add js docs ([ff8eefed](https://github.com/underpostnet/engine/commit/ff8eefed08349a1e3390379f760c0d9eb20aecca))
2131
- - ObjectLayer Engine Viewer Enhancements ([0ee052e5](https://github.com/underpostnet/engine/commit/0ee052e5231f7b55576595a817742970c90cd056))
2132
- - Add metada json editor of object layers ([abe7448f](https://github.com/underpostnet/engine/commit/abe7448f5ed7429ba1f5c5d01ed94c5c70323638))
2133
- - Remove helia pyntype logic ([2b443d1c](https://github.com/underpostnet/engine/commit/2b443d1c0ed2261e27d5be54903c9a37cff29dd5))
2134
- - Object Layer Deletion Cleanup IPFS ([a2dcdf23](https://github.com/underpostnet/engine/commit/a2dcdf238c32d5b5237f0650232aca0c0823f044))
2135
- - Add Public GET Access for File Object Atlas ([826317fe](https://github.com/underpostnet/engine/commit/826317fe21dfd0b77196ef343b31461c45b5eb72))
2136
- - Allow Cross-Origin on GET methods file, object-layer, and atlas-sprite-sheet api. ([6801839c](https://github.com/underpostnet/engine/commit/6801839cc461dbec6ca205b035ea844415779e85))
2137
- - Add DISABLE_API_RATE_LIMIT env option ([ae72885c](https://github.com/underpostnet/engine/commit/ae72885c1178846067db52b62455d804dbe4eeba))
346
+ - Extract the client build into a dedicated CLI module ([86c38d8a2](https://github.com/underpostnet/engine/commit/86c38d8a2e53d09dda5e444713d7df7b42557f03))
2138
347
 
2139
- ### client-core
348
+ ### cli-cron
2140
349
 
2141
- - Fix main-body-btn-container hide logic ([221f8bfc](https://github.com/underpostnet/engine/commit/221f8bfc262048e1ca226f66f0dfab9891db3fd5))
350
+ - Fix vultr cronjob mounts collector host path ([c674e1114](https://github.com/underpostnet/engine/commit/c674e1114832e19ea48e37c47f56fbd2f187ac33))
2142
351
 
2143
- ### runtime-express
352
+ ### release
2144
353
 
2145
- - Fix express rate limit trust proxy ([ed19e729](https://github.com/underpostnet/engine/commit/ed19e729eafb59d46504fb1ebe89e4bd91c05d7e))
354
+ - Add bump version pattern target ([52c30bf82](https://github.com/underpostnet/engine/commit/52c30bf82bc8316ed12080a730f5cb97cbf90a3d))
2146
355
 
2147
- ### cli-cluster
356
+ ### engine-cyberia
2148
357
 
2149
- - Remove unused full flag ([13df39f5](https://github.com/underpostnet/engine/commit/13df39f508d65b61378ccfca4f7bfc427dcf5fa5))
358
+ - Align the cyberia module with the tiered test runner ([4ad1a9ea5](https://github.com/underpostnet/engine/commit/4ad1a9ea5d91cfd2e206195525e891e7b44f204a))
359
+ - Update sharp dependencie to sharp v0.35.3 ([44b5df725](https://github.com/underpostnet/engine/commit/44b5df72535891cb589fac8098c52e6bd87e8eef))
2150
360
 
2151
- ### ipfs
361
+ ### server-conf
2152
362
 
2153
- - Add ipfs client stable json stringify in addJsonToIpfs method ([c2aaf56a](https://github.com/underpostnet/engine/commit/c2aaf56a4bfc4f06147818ec5681567e27967f41))
2154
- - Fix config map IPFS Cluster daemon bind ([7e6df963](https://github.com/underpostnet/engine/commit/7e6df963ba6da1fdc96ac5b6ab844a789901f61b))
2155
- - server ipfs client and object layer atlas sprite sheet ipfs integration ([781e35c4](https://github.com/underpostnet/engine/commit/781e35c4903380df9e7dce7cf5d9275387a46029))
2156
- - Implement ipfs api user-pin and client component service ([1b12e8df](https://github.com/underpostnet/engine/commit/1b12e8df6af21e1dd2edc156e176072f25c9a433))
363
+ - Default missing conf files and gate dev subconfigs to development ([612d52577](https://github.com/underpostnet/engine/commit/612d52577f7de156bc67125b812a3469e6024e52))
2157
364
 
2158
365
  ### cli-run
2159
366
 
2160
- - Implements expose-ipfs runner ([765772b8](https://github.com/underpostnet/engine/commit/765772b8fb1e7b397560464d1dc6dea0b70a9b7f))
2161
-
2162
- ### engine-core
2163
-
2164
- - Clean up legacy logic and json file model ref ([b4c62a2c](https://github.com/underpostnet/engine/commit/b4c62a2cfe4fea0212be644ce333464a81056f6f))
367
+ - Show probe count in get-traffic index column ([efd2adc25](https://github.com/underpostnet/engine/commit/efd2adc25da7e2623213a169a3dda5442047b360))
368
+ - Add index column `#` as the first column of the get-traffic host table in run.js ([3540071e4](https://github.com/underpostnet/engine/commit/3540071e4038614156d279c3edb3b6b096aed9f8))
2165
369
 
2166
- ### bin-build
370
+ ### cli-new
2167
371
 
2168
- - Add missing packagejson overrides on dd-cyberia build repository workflow ([7ece9ed5](https://github.com/underpostnet/engine/commit/7ece9ed5500e83a1baedc4d78fd889bca6ecac3c))
372
+ - Add clusterDeployFactory method to generate base cluster deploy folder engine-private/deploy ([8f2a070bf](https://github.com/underpostnet/engine/commit/8f2a070bfdfd863e1cb2f181ece00923718ae4d0))
2169
373
 
2170
- ## New release v:3.0.1 (2026-02-22)
374
+ ### pwa-microservices-template
2171
375
 
2172
- ### engine-core
376
+ - Add default template assets including favicons, splash screens, and PWA manifest ([f7ab699f2](https://github.com/underpostnet/engine/commit/f7ab699f2f69dabe5009d431cb5c0f00761352fc))
2173
377
 
2174
- - Remove ENABLE_FILE_LOGS to default dev adn test env ([727486dc](https://github.com/underpostnet/engine/commit/727486dc4030921c9d1f6a7035eb1a240569fa74))
2175
-
2176
- ### gitlab
2177
-
2178
- - Fix package json lock template build ([e674ec6b](https://github.com/underpostnet/engine/commit/e674ec6be61d7a170ab468d473d0e545401b765a))
2179
- - Fix mirror push to GitLab ([9585aa50](https://github.com/underpostnet/engine/commit/9585aa50ee481fa49084c0edd44cc28b4b2561e8))
378
+ ### cluster
2180
379
 
2181
- ### bin-file
380
+ - Converge observability stack and provision secrets from cron env ([944fb9882](https://github.com/underpostnet/engine/commit/944fb98820d6810214ca9d4495ec3a67e059d2d3))
2182
381
 
2183
- - Add missing gitlab.ci.yml build to pwa-microservices-template ([ec49ded0](https://github.com/underpostnet/engine/commit/ec49ded0ac3fbfcba1e7e10b0ed1dcfc13a8da87))
382
+ ### cli-dns
2184
383
 
2185
- ### client-core
384
+ - Add ingress port block and unblock workflows ([28ee09f93](https://github.com/underpostnet/engine/commit/28ee09f936d3c036fbe5e5539a2a8ab9735a1b19))
2186
385
 
2187
- - Add missing keyboard focus search box on iframes docs ([c5b0f86c](https://github.com/underpostnet/engine/commit/c5b0f86c7acc0d2c964cc1ef80625693241e6d62))
2188
- - Add VanillaJs get selector in iframe ([e37fa340](https://github.com/underpostnet/engine/commit/e37fa34037cff9924bc747f1ee11190ee2e1164b))
386
+ ### cli-ssh
2189
387
 
2190
- ### giblab
388
+ - Make SSH users cluster scoped with shared registry ([ba35a2c4d](https://github.com/underpostnet/engine/commit/ba35a2c4dc04629ac7638b9e1709ffabed460081))
2191
389
 
2192
- - Add .gitlab-ci.yml ([a795bd5f](https://github.com/underpostnet/engine/commit/a795bd5f3526257c858ec70ee27feb8bfd793baf))
390
+ ### monitor
2193
391
 
2194
- ### docs
392
+ - Add cluster observability stack and operational event dispatcher ([4fd2097d0](https://github.com/underpostnet/engine/commit/4fd2097d0ca0130f19770162bba3e54f21666fe3))
2195
393
 
2196
- - Add VanillaJs get selector in iframe sync darkTheme in docs component. ([5b2ba08f](https://github.com/underpostnet/engine/commit/5b2ba08f3b0df3a6072aa49ca55efd223f72a95c))
394
+ ### cron
2197
395
 
2198
- ### server-client-build-docs
396
+ - Fix resolved deployId list related job defualt in cron main callback method ([4d88f472a](https://github.com/underpostnet/engine/commit/4d88f472aa190a15c7ff47734bf74df1738a295f))
2199
397
 
2200
- - Enable Swagger UI Dark Light Mode ([eaadad70](https://github.com/underpostnet/engine/commit/eaadad70cd74bcd9f7990dd63834bbd69bffcbae))
398
+ ## New release v:3.3.0 (2026-08-18)
2201
399
 
2202
400
  ### github-actions
2203
401
 
2204
- - Add gitlab mirror CI repository integration ([3d6acdef](https://github.com/underpostnet/engine/commit/3d6acdefeea72f26a733975e822dbcf2b4e793e3))
2205
- - Fix GitHub Actions npm provenance ([cd31b8f0](https://github.com/underpostnet/engine/commit/cd31b8f0ed202ed376016d3fc4b9fc63152f5186))
2206
-
2207
- ### cli-run
2208
-
2209
- - Fix missing cluster type on runners id cluster and gpu env ([ddd72d2e](https://github.com/underpostnet/engine/commit/ddd72d2e32e448b8956862f0719d5ab2d2ea7606))
2210
-
2211
- ### package
2212
-
2213
- - Resolve npm ci lock mismatch ([357b4e81](https://github.com/underpostnet/engine/commit/357b4e81611541a0d979bc95cb587343bf540604))
402
+ - Add workflow_dispatch trigger event handling in .github/workflows/ghpkg.ci.yml ([e21320cf7](https://github.com/underpostnet/engine/commit/e21320cf7542680823758f331bd34d619ca185cd))
403
+ - Reorder coverall test list ([eb20336b2](https://github.com/underpostnet/engine/commit/eb20336b29e87f4371528f78099768e8ee36b586))
404
+ - Replace default npm coverall test with scripts/coverall-test.sh ([3471f3009](https://github.com/underpostnet/engine/commit/3471f3009391a3f8a1a66cedd1e4761fe5f76712))
405
+ - Refactor move CD workflow commands into deployment scripts with run_quiet wrapper ([222a18d71](https://github.com/underpostnet/engine/commit/222a18d719f33fd678a72f9b05639f86ec4037cd))
406
+ - Update .github/workflows/engine-test.cd.yml ([94e42e58e](https://github.com/underpostnet/engine/commit/94e42e58ee4f9eb6542a010e96899000458f3a7b))
407
+ - Add import-default-items steps to cyberia CD ([350444f9f](https://github.com/underpostnet/engine/commit/350444f9fb4b34cd15541458c1897299fed7b287))
408
+ - Update.github/workflows/engine-cyberia.cd.yml ([53e9da171](https://github.com/underpostnet/engine/commit/53e9da17127a850aebaa0e5e0e90b593ee0ac03d))
409
+ - Update base node in engine-core CD pipeline ([fa039f257](https://github.com/underpostnet/engine/commit/fa039f25763bb719496b73dd8044af4570be859e))
2214
410
 
2215
- ### cli-repo
411
+ ### cli-cyberia
2216
412
 
2217
- - Fix Changelog error due to type integration message ([750656e1](https://github.com/underpostnet/engine/commit/750656e1cbee5dbb3e73d9d5cdd4d94ed049a4f1))
413
+ - Include deploy strategies in generated projects ([66bc733eb](https://github.com/underpostnet/engine/commit/66bc733eb22bd74aff5ff249dade0959c876cdae))
414
+ - Refactor make data.item.id is now a unique index for every case ([1391efce3](https://github.com/underpostnet/engine/commit/1391efce32f96f56271a1060304bb7b26556b80d))
415
+ - Add WebSocket load test runner command ([eebec67ed](https://github.com/underpostnet/engine/commit/eebec67edd1bfda0bf6f8205305a90cd73441e4c))
2218
416
 
2219
- ### cli-ipfs
417
+ ### engine
2220
418
 
2221
- - Fix underpost ipfs syntax import in main src index ([f7bebb65](https://github.com/underpostnet/engine/commit/f7bebb6555a85df35aed3e248dd0b304c00fd008))
419
+ - Expand server module JSDoc annotations ([213a55191](https://github.com/underpostnet/engine/commit/213a55191dc388d227315f07116148d5b731b883))
420
+ - Move writeEnv helper into environment module ([9c57e3629](https://github.com/underpostnet/engine/commit/9c57e3629a682da0c7aa45e0cb24d24d3af3cdab))
421
+ - Fix SELinux host paths mounts logic and definition ([6cf8dda11](https://github.com/underpostnet/engine/commit/6cf8dda113b92fea011e3825035147ae33a1bc7f))
422
+ - Extract environment and cron deploy helpers into dedicated modules ([6ba3fa4c3](https://github.com/underpostnet/engine/commit/6ba3fa4c372a2eb1afe87c6fc5c0681209a96b07))
423
+ - Enforce SELinux across cluster, SSH, and provisioning ([9d57a359d](https://github.com/underpostnet/engine/commit/9d57a359dd94067dfb48fceab9006e3ef3d7d502))
2222
424
 
2223
- ## New release v:3.0.0 (2026-02-22)
425
+ ### cli-wireguard
2224
426
 
2225
- ### engine-core
427
+ - Add SSH forwarding via VPS edge ([54de1e6e5](https://github.com/underpostnet/engine/commit/54de1e6e5dddccad5c056da152cb32712ab3ba25))
428
+ - Extract forward proxy and systemd helpers into server modules ([97be08d10](https://github.com/underpostnet/engine/commit/97be08d107e825c2ff5a97382ebb9367a6ad3523))
429
+ - Implement HTTP/CONNECT forward proxy for WireGuard ([a95163df2](https://github.com/underpostnet/engine/commit/a95163df2797bbfa86d3d1f422fe0afd224b72b3))
430
+ - Implement idempotent in Restart, reconnect, and reset pipeline ([65710c3bd](https://github.com/underpostnet/engine/commit/65710c3bd3056b1f2cc49e3b82517d081f7f25df))
431
+ - Implement Edge Hub WireGuard and HAProxy CLI module ([2e293b875](https://github.com/underpostnet/engine/commit/2e293b87540a43489bb535e2ab731581809b1848))
2226
432
 
2227
- - Add ENABLE_FILE_LOGS env ([8657e35f](https://github.com/underpostnet/engine/commit/8657e35f2dab6cf1507a9b3f9146df45ab07d0dd))
433
+ ### catalog-cyberia
2228
434
 
2229
- ### docs
435
+ - Add coverall cyberia trigger script ([c8e59eed0](https://github.com/underpostnet/engine/commit/c8e59eed08c113d39a99f5151d8d6b4af96fb4e9))
2230
436
 
2231
- - Rename cli.md -> CLI-HELP.md ([18e18689](https://github.com/underpostnet/engine/commit/18e18689349227b2c8769eec9f4e1ebeb85b8cf0))
2232
- - Apply fix in swagger-autogen@2.9.2 bug: getResponsesTag missing __¬¬¬__ decode ([2b0d27db](https://github.com/underpostnet/engine/commit/2b0d27db38307d9276b14651083b0ac0c20ecaed))
2233
- - Remove unused jsdocs sections ([ec06f338](https://github.com/underpostnet/engine/commit/ec06f338cca5d656f46629b8957e3ded183ecff7))
437
+ ### scripts
2234
438
 
2235
- ### bin-zed
439
+ - Mark scripts as executable ([8f04cbc70](https://github.com/underpostnet/engine/commit/8f04cbc700e2bc17b917ea49450efabc766e27ed))
2236
440
 
2237
- - Move zed settings file tod zed js bin module ([ba32abea](https://github.com/underpostnet/engine/commit/ba32abeaff4d198c79bcd92ab0fc0120bb41d9d5))
441
+ ### release
2238
442
 
2239
- ### client-core
443
+ - Fix missing file bump version scopes ([4aa983a5d](https://github.com/underpostnet/engine/commit/4aa983a5d8aea7983295ee01799c358ed1b9c2bc))
2240
444
 
2241
- - Fix clear filter user management ([a1d79661](https://github.com/underpostnet/engine/commit/a1d796612654f0e03a4d64ad16dfed403ad0a771))
445
+ ### deploy
2242
446
 
2243
- ### package
447
+ - Mark deploy scripts as executable ([b18151bfa](https://github.com/underpostnet/engine/commit/b18151bfaa52c17b2540e0a2706b79a8850fee84))
2244
448
 
2245
- - Fix resolve npm minimatch ReDoS vulnerability ([4739fea1](https://github.com/underpostnet/engine/commit/4739fea18407b88e407f7b4be109f2ecc3a3435e))
2246
- - Apply npm audit fix ([9496c5c7](https://github.com/underpostnet/engine/commit/9496c5c77980102fcb402aae29de3f72337adcc4))
2247
- - Apply npm audit fix versions packages ([a1ed004e](https://github.com/underpostnet/engine/commit/a1ed004eecc1219e612027e9bc1f2fab4c717517))
449
+ ### hardhat
2248
450
 
2249
- ### server-client-build-docs
451
+ - Update hardhat npm module version to sync current project scope v3.2.90 ([8fc717b99](https://github.com/underpostnet/engine/commit/8fc717b9913c69a41c2c9e88b2b7f720a4a7cb09))
452
+ - Update undici override dependency to v6.28.0 ([fb2d2aa3b](https://github.com/underpostnet/engine/commit/fb2d2aa3b502b5552212f63d9a01f23d2333b296))
2250
453
 
2251
- - Apply Swagger autogen syntax error fix of version v2.9.2 ([7c8da2ff](https://github.com/underpostnet/engine/commit/7c8da2ff7ffd55e7b0492f019a2b44294137ab39))
454
+ ### dependabot
2252
455
 
2253
- ### vscode
456
+ - Disable typescript autoupdate ([8bd761833](https://github.com/underpostnet/engine/commit/8bd7618336423a1df1d4ca77cd138aef51902d6c))
2254
457
 
2255
- - Remove vs deprecated settings conf, and remove vs extension to minimal and remove comments of vs extensions in vanilla js ([b2aec354](https://github.com/underpostnet/engine/commit/b2aec354e757f136265b564a86cd1744bd460d88))
458
+ ### cli-client
2256
459
 
2257
- ### cli-ipfs
460
+ - Add only ssr build workload flag option and logic ([92026a66e](https://github.com/underpostnet/engine/commit/92026a66ec3c403219af62bfc5bcc78917d537ed))
2258
461
 
2259
- - Implements base ipfs underpost dedicated module ([7f4f27f9](https://github.com/underpostnet/engine/commit/7f4f27f9c63ff149c5dd4de57952961a2b3498d0))
462
+ ### cli-cron
2260
463
 
2261
- ### cli-cluster
464
+ - Fix cron CLI setup flag and single job execution ([84eab73d9](https://github.com/underpostnet/engine/commit/84eab73d9a618244b46e699ba65b469940d1a267))
2262
465
 
2263
- - Add Main IPFS Cluster StatefulSet Integration ([53dd0903](https://github.com/underpostnet/engine/commit/53dd09038b47d1a8330ff1e72b0087d2600c93b9))
2264
- - Add --exposePort custom flag ([a29185fe](https://github.com/underpostnet/engine/commit/a29185fe6f48c3babaa66d142d042909ca8b0889))
2265
- - Refactor pullImage load docker pull images to kind nodes ([3bdd5e78](https://github.com/underpostnet/engine/commit/3bdd5e787c242318cbab032816adf0008e9ab9dd))
2266
- - Add --replicas custom option ([70bdc6cd](https://github.com/underpostnet/engine/commit/70bdc6cdc0cf2aa3b2025133a5438f55d7e1ad18))
2267
- - Centralize pullImage for k3s kubeadm kind ([873b20d5](https://github.com/underpostnet/engine/commit/873b20d5a24b07afea39a95e0f705d1f8f01050b))
2268
- - Add snap install on init host workflow and cluster safeReset refactor ([48b4c33d](https://github.com/underpostnet/engine/commit/48b4c33d59166d54042fc5f96b5b524eccbdf1ec))
466
+ ### cli-repository
2269
467
 
2270
- ### server-logger
468
+ - Add getDefaultBranch resolve in switchRemote method ([04bc8743b](https://github.com/underpostnet/engine/commit/04bc8743b6f4c5f9edd891276137183fa444d447))
2271
469
 
2272
- - Add optional file logging to logger factory ([ef18a29e](https://github.com/underpostnet/engine/commit/ef18a29e6e31e24e0e705446ca3cdf8804bda6ef))
470
+ ### cli-ssh
2273
471
 
2274
- ### cli-lxd
472
+ - Add initializeDefaultSshConfig method ([84f5f8698](https://github.com/underpostnet/engine/commit/84f5f8698810596f084e632487208ea909feddfd))
2275
473
 
2276
- - Refactor lxd module and workflows to vm cluster with k3s control and worker node integration ([812d5cdd](https://github.com/underpostnet/engine/commit/812d5cdd86f3055c448b594c218ae6e99c365e38))
474
+ ### cli-vultr
2277
475
 
2278
- ### bin-deploy
476
+ - Add Vultr Bandwidth Monitor cron job CLI Module ([22fb9249a](https://github.com/underpostnet/engine/commit/22fb9249ad40ba24a8cd87da43d742b1972c4fbb))
2279
477
 
2280
- - Clean up legacy logic ([d3cb1139](https://github.com/underpostnet/engine/commit/d3cb1139b3670915f6c612fd127541debb717d86))
478
+ ### cli-dns
2281
479
 
2282
- ### github-actions
480
+ - Add blokc/unblock ingress/egress workflow handling ([980fab35a](https://github.com/underpostnet/engine/commit/980fab35aba6a279b94701550edfd765c8b422a2))
2283
481
 
2284
- - Add ref to checkout for provenance in cyberia publish workflow package ([6e0f9b59](https://github.com/underpostnet/engine/commit/6e0f9b5939103a366d28c4940e859d545cabdc34))
2285
- - Add ref to checkout for provenance ([0512ebec](https://github.com/underpostnet/engine/commit/0512ebecf65d1379d29c2c0e2377733a4265c06f))
2286
- - Remove copying of MariaDB.js to underpost directory. ([d64c64ee](https://github.com/underpostnet/engine/commit/d64c64ee99b015dd1e956f6ccc9055fcb73057f9))
2287
- - Fix package-pwa-microservices-template-ghpkg commit message propagation logic ([c8ef2ea8](https://github.com/underpostnet/engine/commit/c8ef2ea8d89d1a37c4dacef4d2538304605369fc))
482
+ ### underpost-ingress
2288
483
 
2289
- ## New release v:2.99.8 (2026-02-18)
484
+ - Enable response compression in ingress and gateway ([7763f9da2](https://github.com/underpostnet/engine/commit/7763f9da2b81128042cef2a73ca5570938dcd3f5))
2290
485
 
2291
- ### github-actions
486
+ ### test
2292
487
 
2293
- - Fix last commit message in npmpkg workflow ([6dd0f484](https://github.com/underpostnet/engine/commit/6dd0f48452fd9810eeb3f535d8859d7e92a418fd))
2294
- - Fix MariaDB import in CI workflows ([2002c11f](https://github.com/underpostnet/engine/commit/2002c11f312293be00c6434e4ba64a81a370e1df))
2295
- - Fix GitHub Actions commit message ([e36c4fb6](https://github.com/underpostnet/engine/commit/e36c4fb6592d17e4d3ffca1e8eede90105a5847b))
488
+ - Fix missing pngjs import in object-layer test pipeline ([20c1f24d8](https://github.com/underpostnet/engine/commit/20c1f24d865d5cdeb70a365c93f8c797c28fe960))
489
+ - Add WebSocket load test for cyberia-server ([e3ff27772](https://github.com/underpostnet/engine/commit/e3ff277725e33dace3ed3268e6f60299ea146f59))
2296
490
 
2297
- ### dockerfile
491
+ ### engine-cyberia
2298
492
 
2299
- - Underpost image dockerfiles file formats and clean comment ([6e22157c](https://github.com/underpostnet/engine/commit/6e22157c3d276aab9dc328165e7bc686a339663b))
493
+ - Remove eiri from entity default inventory ([e8f8d03c7](https://github.com/underpostnet/engine/commit/e8f8d03c7e326fac012722f659def7d7a7da882c))
494
+ - Add fallback world default items staging and hot reload ([e646c430d](https://github.com/underpostnet/engine/commit/e646c430d72ea7a319cf1640bd4c7505cbb40b87))
495
+ - Add playerBaseSpeed field to instance config defaults ([7cdbd23d2](https://github.com/underpostnet/engine/commit/7cdbd23d255bb47e253e60f7ec0cc6c3600d5678))
496
+ - Add WebSocket connection limit env to cyberia-server ([c6f834c7d](https://github.com/underpostnet/engine/commit/c6f834c7dc7bcae24d4f493a005cdb2d1b76a73d))
2300
497
 
2301
- ### conf
498
+ ### client-cyberia
2302
499
 
2303
- - Fix repository README logic builder ([d88c5317](https://github.com/underpostnet/engine/commit/d88c5317e32b18b8d180d028e4ef9388ce6db78a))
500
+ - Add Fallback World Engine editor view ([cf61dfe8e](https://github.com/underpostnet/engine/commit/cf61dfe8e7eec7556f5bd07e445d6759d9b432e4))
501
+ - Implement IPFS cid filters in ObjectLayerEngineViewer component ([93eb69928](https://github.com/underpostnet/engine/commit/93eb69928bf8ea6915f70b1ca4307fa582cc17b6))
2304
502
 
2305
- ### db
503
+ ### docs
2306
504
 
2307
- - Fix MariaDB import ([6edf3719](https://github.com/underpostnet/engine/commit/6edf3719bf4ee71ebe30fb1e7e5a9767aaefe352))
505
+ - Document moveAck reconciliation and move coalescing in Cyberia replication ([24b14ca4e](https://github.com/underpostnet/engine/commit/24b14ca4ee4c9ef0ce4dc9e3135e4990ed0a8274))
2308
506
 
2309
- ### cli-static
507
+ ## New release v:3.2.90 (2026-08-11)
2310
508
 
2311
- - Fix module js doc path ([6b10a929](https://github.com/underpostnet/engine/commit/6b10a9295422425863ef24f6eb7d76c67b248385))
509
+ ### cli-run
2312
510
 
2313
- ## New release v:2.99.7 (2026-02-17)
511
+ - Add version parameter in cluster runner cmd lines ([bd909bc04](https://github.com/underpostnet/engine/commit/bd909bc046f77f5c36d601116d2f94291ca6aa0a))
512
+ - Handle multi-recipient keys in sops runners ([92ecdc151](https://github.com/underpostnet/engine/commit/92ecdc1518d645faa913d0897288a5f6e27e075d))
513
+ - Trim ipfs expose to core host ports ([dc473d4fa](https://github.com/underpostnet/engine/commit/dc473d4faa1221f0102ce88ee6fff866941d0f3b))
514
+ - Add sops setup and status runners ([a29fd3947](https://github.com/underpostnet/engine/commit/a29fd3947637ca64398040deaea30d0fab624263))
515
+ - Fix sub path handling probes in get-traffic runner ([b65d0fe4e](https://github.com/underpostnet/engine/commit/b65d0fe4e73b370a627efbb8b2e23386deff7f74))
516
+ - Add restore mongo statefulset runner ([e9e1b224b](https://github.com/underpostnet/engine/commit/e9e1b224b964a713f5d6aedbf05d11b41e15a98c))
517
+ - In get-traffic runner retains every configured host row matching the input ([a16542254](https://github.com/underpostnet/engine/commit/a16542254c92f9d1564a9a817b990ecbe061459d))
518
+ - Rework get-traffic runner with CURRENT and OPPOSITE color state deployment ([34e4a7234](https://github.com/underpostnet/engine/commit/34e4a7234784dec5ac6af20bd785a830f9f238bf))
519
+ - Rework expose runner to port list options ([b6fe9cfe4](https://github.com/underpostnet/engine/commit/b6fe9cfe46e07cf8776157e66d6006341902b616))
520
+ - Add status and expose runners ([0d383e7d9](https://github.com/underpostnet/engine/commit/0d383e7d9a6bdbc062060635c279821e559a6473))
521
+ - Drop redundant rollout restart after node-move patch ([b5399b134](https://github.com/underpostnet/engine/commit/b5399b1342b6c3932b065eb4d6c6b01f7f361e10))
522
+ - Load project instance env builder by convention ([8b226d073](https://github.com/underpostnet/engine/commit/8b226d07367e1f5e7a93ffc3ced17c0ebd953f99))
523
+ - Route instances through stable traffic Service ([65c674e05](https://github.com/underpostnet/engine/commit/65c674e05c280bba50e6ab6c6bfdda0480e72d67))
524
+ - Refactor stop runner logic introduce stopPlanFactory method ([aa972f120](https://github.com/underpostnet/engine/commit/aa972f12008ceb49e3ee3cd053f47b525c344fbd))
525
+ - Remove direct ssh remote runners ([79ecee892](https://github.com/underpostnet/engine/commit/79ecee8926e4ccf63f1d8a8fc023e359e750072f))
526
+ - Integrate underpost gateway into run ([ce02c3282](https://github.com/underpostnet/engine/commit/ce02c3282721f02d89e6af76380ace95a8bfa424))
527
+ - Add Gateway API HTTPRoute rules for instance runners ([c85c48e43](https://github.com/underpostnet/engine/commit/c85c48e434c65437bb9704a019c4945c1620e317))
2314
528
 
2315
- ### cli-ssh
529
+ ### test-secrets
2316
530
 
2317
- - Fix batch remote execution ([3658db14](https://github.com/underpostnet/engine/commit/3658db140b550914b0c331723d7a8cd11999514a))
531
+ - Fix rotate and apply manifest test workflow ([5f0be40c5](https://github.com/underpostnet/engine/commit/5f0be40c51440bf6496a7da66a5d9edb78d6de0d))
2318
532
 
2319
- ### cli-cron
533
+ ### hardhat
2320
534
 
2321
- - Change order exec createJobNow logic ([524b8b80](https://github.com/underpostnet/engine/commit/524b8b802dc40220cef8380dd9b7a80eb3055821))
2322
- - Fix error prepare subPath in cronjob subPath mount ([33bedaff](https://github.com/underpostnet/engine/commit/33bedaff2a7e815e3522f4921e937384ee0b7750))
2323
- - Fix engine path definition and remove old cmd job in ci core sync command ([dbc5b6e6](https://github.com/underpostnet/engine/commit/dbc5b6e6e863b6c11f6c186d3a6f52781920c2be))
2324
- - Refactor run sync cron and remove redundant cron runner ([5885a747](https://github.com/underpostnet/engine/commit/5885a747acb16dc422b6d4007bfe403bbc896660))
2325
- - Add SSH flag to remote cron exec ([4339fb9d](https://github.com/underpostnet/engine/commit/4339fb9d32dea3dc4d47da19d554347a6a5ab070))
2326
- - Add underpost cron jobs config env persistence ([d8d15eda](https://github.com/underpostnet/engine/commit/d8d15eda887465300b58b6775d5c2b8d241010f8))
535
+ - Update transitive dependencies ([59f18f31b](https://github.com/underpostnet/engine/commit/59f18f31bd2490904c4ead85ca8a0dd9d50d1459))
2327
536
 
2328
- ### cron-cli
537
+ ### engine-cyberia
2329
538
 
2330
- - Enable createJobNow in cron setup-start ([bdce5ca0](https://github.com/underpostnet/engine/commit/bdce5ca0df705daa25255b55ce15c1483bc8a717))
539
+ - Implement storageSlots capability workload in fallback world ([c6bceef0b](https://github.com/underpostnet/engine/commit/c6bceef0b6d8c4d64e8f02f87ed2fb20abf3e287))
540
+ - Implement storageSlots capability workload in fallback world ([e5f4d1c9a](https://github.com/underpostnet/engine/commit/e5f4d1c9a979f87d53cbc9c7ddef4dd2d6e747e3))
541
+ - Add assembler craft recipes to cyberia action system ([c50724523](https://github.com/underpostnet/engine/commit/c5072452309a51882283568650098eebf87620ff))
542
+ - Add vendor shop catalog to cyberia action system ([748533a0c](https://github.com/underpostnet/engine/commit/748533a0c68e57c25f9f9c5844fc27f545c2cae6))
543
+ - Preserve variant base path through ingress ([3daa9a181](https://github.com/underpostnet/engine/commit/3daa9a18190f41bef20b9a590b04ae51f150a7fc))
544
+ - Normalize instance topology and dispatch env builders ([cd0309ae4](https://github.com/underpostnet/engine/commit/cd0309ae425c59c957eed5357cabdbc27ad3ffe6))
545
+ - Refactor gateway static to underpost gateway ([9f35a007d](https://github.com/underpostnet/engine/commit/9f35a007d5cf444f4d84c7eccf446d46b4208e0f))
546
+ - Fix minor besu genesis generator update ([6680d5a16](https://github.com/underpostnet/engine/commit/6680d5a16b9936c6995812b3b9f99415d72636c0))
547
+ - Fix sum stat response in fall back world static instance map endpoint ([84ea1e4ca](https://github.com/underpostnet/engine/commit/84ea1e4ca39bf8046736703951857ba3f91b6965))
548
+ - Add seeded random source for deterministic fallback world generation ([747411872](https://github.com/underpostnet/engine/commit/7474118721a446a53077a2a4aa243eefc95abb96))
2331
549
 
2332
- ### cli-run
550
+ ### dependencies
2333
551
 
2334
- - Improve message commit clean on logic propagate in template-deploy runnner ([dfa64105](https://github.com/underpostnet/engine/commit/dfa641052bc71ad3c5c8c461651d1947dc5f21c0))
2335
- - Add replaceNthNewline logic in template-deploy runner ([282faf73](https://github.com/underpostnet/engine/commit/282faf73ef32dc65e1b140af6f4e7609e964a503))
552
+ - Update transitive dependencies ([9c12f8fde](https://github.com/underpostnet/engine/commit/9c12f8fde0739131fa9dc42ccf142e7351ab4295))
2336
553
 
2337
554
  ### github-actions
2338
555
 
2339
- - Replace split logic ')' character, to simply deletes the first line and keeps everything from the second line ([6c1fbdf1](https://github.com/underpostnet/engine/commit/6c1fbdf1193cbf0f32cdfa9bccd11228d9f889f4))
556
+ - Set dd-cyberia env before build manifest ([3ec1c8e46](https://github.com/underpostnet/engine/commit/3ec1c8e46bca4d31097f7d80b62c7276ef5974bd))
557
+ - Update build and deployment manifests ([b8aad9359](https://github.com/underpostnet/engine/commit/b8aad9359dafaf0c6aea08b6e9925e3b0425592f))
558
+ - Wait for underpost-gateway rollout ([57fc7c22f](https://github.com/underpostnet/engine/commit/57fc7c22ff1bbc4f45f042e11d86d73348746915))
559
+ - Update engine-test CD deploy workflow ([712cc9e17](https://github.com/underpostnet/engine/commit/712cc9e17a581ed20a27923b169405824f05e759))
560
+ - Update build and deployment manifests ([149653332](https://github.com/underpostnet/engine/commit/149653332980e66ab8d49f9bc496f5b32f89c211))
561
+ - Update engine-cyberia docker-compose build and deployment manifests ([8dcb10ab2](https://github.com/underpostnet/engine/commit/8dcb10ab22c7942d51fa6b94d5a1d09b62fc1930))
562
+ - Update engine-cyberia docker-compose build and deployment manifests ([1cf4f753f](https://github.com/underpostnet/engine/commit/1cf4f753f899fa995b5b25aba74792f39da6055f))
563
+ - Update build and deployment manifests ([ba4f4a173](https://github.com/underpostnet/engine/commit/ba4f4a17321771873f04f2782ff43bce9811bd9e))
564
+ - Update build and deployment manifests ([9874b895d](https://github.com/underpostnet/engine/commit/9874b895df5f4904b6b5ab6c016a6f8487e24ef9))
565
+ - Update build and deployment manifests ([c3a4ec9f1](https://github.com/underpostnet/engine/commit/c3a4ec9f154be351d4fffec78d31f55b8119ba94))
566
+ - Update build and deployment manifests ([a8bdbf050](https://github.com/underpostnet/engine/commit/a8bdbf0503e437237750bb1257c50aca9b92bfe5))
567
+ - Update engine-cyberia CD add prebuild manifest workflow ([a1f4954f7](https://github.com/underpostnet/engine/commit/a1f4954f7accfdcf354afcf2c602960bedeca1c5))
568
+ - Fix 404 page location in cyber ua-client docker image workflow ([b52bdf89e](https://github.com/underpostnet/engine/commit/b52bdf89e50597bb03f325e6f1bec127005af406))
569
+ - Disable publish branch and sha docker images versions ([12a37a468](https://github.com/underpostnet/engine/commit/12a37a468a39083e07c13406d1882905eb3d05da))
2340
570
 
2341
- ### cli-repo
2342
-
2343
- - Fix propagation message logic ([9ff035f1](https://github.com/underpostnet/engine/commit/9ff035f157b8433d5b236f46e54abc895b7ff626))
2344
- - Add logic to propagate integration commit message between repos ([4f7201c9](https://github.com/underpostnet/engine/commit/4f7201c945d1c0e95a604ff680bc2a64ac2e4c8d))
2345
- - Add --changelog-no-hash flag and logic ([d71cfe06](https://github.com/underpostnet/engine/commit/d71cfe062fe2a1a6b1f8678b64ee24faed4751f4))
2346
- - Add changelog commits logic to sub repo builds ([c8e94c32](https://github.com/underpostnet/engine/commit/c8e94c32fdad0a68eeadd9ab599d640c7cdd3f51))
2347
- - Remove redundant --msg flag in cmt command ([59b529bb](https://github.com/underpostnet/engine/commit/59b529bb6ecd5bf8ff14d5d686e96a1d9e6911a5))
2348
-
2349
- ### cli-system
2350
-
2351
- - Fix missing fs import ([94bbd4ec](https://github.com/underpostnet/engine/commit/94bbd4ec7aa5a154f12ae55657a77c7320ae3739))
2352
- - Add cli system module as a SystemProvisionig OS instructions provider ([d8e629e7](https://github.com/underpostnet/engine/commit/d8e629e71dcc580cf0d3997e88457a35466333a1))
2353
-
2354
- ### bin-deploy
571
+ ### test
2355
572
 
2356
- - Add sync start scripts of each deploy id dd.router ([3d40afa8](https://github.com/underpostnet/engine/commit/3d40afa8b84fa4329624177e242c9105519fe6e8))
573
+ - Cover store adoption and recipient registration ([e570d6472](https://github.com/underpostnet/engine/commit/e570d6472c2f9e87613d109bc88ddabb2acefd38))
574
+ - Cover sops encrypted secret store ([7c41910bd](https://github.com/underpostnet/engine/commit/7c41910bd48d4ddbee5ff1698fd678e9c03f0606))
575
+ - Cover expose and curl status chain ([c19471ae2](https://github.com/underpostnet/engine/commit/c19471ae2dc3c38df89a911708679ed12cb13812))
576
+ - Add deployment node placement tests ([390e0aa7d](https://github.com/underpostnet/engine/commit/390e0aa7d0b05e4410d7c62da2990bac3546bb29))
577
+ - Fix test/cluster-instances.test.js ([481740db8](https://github.com/underpostnet/engine/commit/481740db8cd24108bc4a599180626d8e3f23c118))
578
+ - Remove buildCyberiaMmoInstanceEnv tests in test/cluster-instances.test.js ([46afd8aed](https://github.com/underpostnet/engine/commit/46afd8aed83a023cbc8e3153d7123aee748079e9))
2357
579
 
2358
580
  ### docs
2359
581
 
2360
- - JSDoc name, descriptions, and render logic improvements ([01a288ab](https://github.com/underpostnet/engine/commit/01a288abcf25876c357678996913e4702487de28))
2361
-
2362
- ### cli
2363
-
2364
- - Chore exports and ssh command description ([589f0403](https://github.com/underpostnet/engine/commit/589f0403e9d20ccb3404a1980da956dd181b204a))
2365
-
2366
- ## New release v:2.99.6 (2026-02-15)
582
+ - Document joining a store created on another host ([25a85b6ce](https://github.com/underpostnet/engine/commit/25a85b6cee4b04dec73016782f61ba9ab7d84e49))
583
+ - Document shop transaction flow in action system ([7091a506a](https://github.com/underpostnet/engine/commit/7091a506a644f7c1a8c0a62526ced91ed568af0c))
584
+ - Document sops age secret management ([6b538a2f6](https://github.com/underpostnet/engine/commit/6b538a2f6241f47a1ff2e039e8593bddc3328216))
585
+ - Document expose port list examples ([f9ba18083](https://github.com/underpostnet/engine/commit/f9ba18083ebd013fa83ef660e5150dbd9934ff03))
586
+ - Document run status and expose runners ([bf9a83b42](https://github.com/underpostnet/engine/commit/bf9a83b423834ed7647b5d84ff2bee53b55cd66e))
587
+ - Update node-move mechanics for template patch rollout ([fb8d36f89](https://github.com/underpostnet/engine/commit/fb8d36f8974c9f5079a3cce373e0634dbc3bf0e4))
2367
588
 
2368
- ### cli-cron
589
+ ### cli-secret
2369
590
 
2370
- - Add update envs with ip in dns job logic ([ab685064](https://github.com/underpostnet/engine/commit/ab6850645b7c70af87cd9350863951ccafc95d89))
2371
- - Migrate PM2 cronjobs to Kubernetes cronjobs ([968361a2](https://github.com/underpostnet/engine/commit/968361a23d2a0c68df685641f10f0d3d4b0ed29c))
591
+ - Add store adoption pre-flight and recipient registration ([2d634dbbb](https://github.com/underpostnet/engine/commit/2d634dbbb503ec00db3df61a1925a888b8c83288))
592
+ - Add managed secrets and repair creation rules ([4661114a0](https://github.com/underpostnet/engine/commit/4661114a03836074ab3cad51559b660a88a55290))
593
+ - Add sops age encrypted secret store ([8de77fdd6](https://github.com/underpostnet/engine/commit/8de77fdd6b2e82fcbeabcedba9305bb15f881418))
2372
594
 
2373
- ### build
595
+ ### server-conf
2374
596
 
2375
- - Fix remove dd-core cron files exclusive copy ([cb7b594f](https://github.com/underpostnet/engine/commit/cb7b594f9feeb1062edf3cdfe41f85eb2c57e867))
597
+ - Derive remote ports from host ports in expose plan ([45bec1ad9](https://github.com/underpostnet/engine/commit/45bec1ad9735794ad57c672a43e76ac2fc9861d2))
598
+ - Add replica count and secure password factories ([83320d061](https://github.com/underpostnet/engine/commit/83320d061b192dc883ab8b6ccadd171989c9659e))
599
+ - Add expose port list and plan factories ([928ad8350](https://github.com/underpostnet/engine/commit/928ad8350426a93d0d8c84f0eee7b8730a538d97))
600
+ - Add curl status chain factory ([dfeef123b](https://github.com/underpostnet/engine/commit/dfeef123b33253205c70f0a437323179e590a229))
601
+ - Support idempotent hosts blocks in etcHostFactory ([aa45f40ac](https://github.com/underpostnet/engine/commit/aa45f40ace07b6508e0f7a09f2de4ba8a82b3bb9))
2376
602
 
2377
- ### docs
603
+ ### ipfs
2378
604
 
2379
- - Improve cluster lifecycle and cron ref ([a15e9a8d](https://github.com/underpostnet/engine/commit/a15e9a8d85e6168e581ff9a4d34e0efac6ff8e5f))
2380
- - chore main cluster lifecycle commands ([144db5f9](https://github.com/underpostnet/engine/commit/144db5f98a1829698867b7fe66ba55007d493eec))
605
+ - Prefer sops store for cluster credentials ([62f402649](https://github.com/underpostnet/engine/commit/62f402649454e5fbb049dde070a3f392d55b1963))
2381
606
 
2382
- ### manifests
607
+ ### engine
2383
608
 
2384
- - Add k8s base engine core cron jobs yamls ([8c2e54a5](https://github.com/underpostnet/engine/commit/8c2e54a56b8e17a0de2da45a90d9e124be7c00ba))
609
+ - Generate per-replica mongo volumes with static storage class ([703b8bbac](https://github.com/underpostnet/engine/commit/703b8bbacc16c73d0fb96586ea71406d8c723afb))
2385
610
 
2386
- ### cli-static
611
+ ### cli-cluster
2387
612
 
2388
- - Add --run-sv flag to run http server to preview the static build ([bd73bdd0](https://github.com/underpostnet/engine/commit/bd73bdd08f174a75d2b687b587f93d110b165d60))
613
+ - Prefer sops store in cluster secret seeding ([7be50059a](https://github.com/underpostnet/engine/commit/7be50059a724b5fad9cb600cf540e69141dd30da))
614
+ - Hot-reload shared ingress host table ([d6328a5e0](https://github.com/underpostnet/engine/commit/d6328a5e06237232f492777eca680cf8afd839f7))
615
+ - Add shared underpost ingress front for dual ingress stacks ([041debe99](https://github.com/underpostnet/engine/commit/041debe99e0082412798960ec0be3be3229144c2))
616
+ - Update Gateway API versions and integrate underpost gateway ([12eefb86e](https://github.com/underpostnet/engine/commit/12eefb86e6434da8b55a16ffeb28ac267fe62d05))
617
+ - Add Gateway API control plane and CRI socket resolution ([97565eea7](https://github.com/underpostnet/engine/commit/97565eea7d4bab91838321a3a96cd058d8496249))
2389
618
 
2390
- ### cli-baremetal
619
+ ### underpost-gateway
2391
620
 
2392
- - Fix nfs root directoy build cleanup logic ([302879a7](https://github.com/underpostnet/engine/commit/302879a7c075175b95d29d70008370042e9da7bc))
2393
- - Add kickstart commissioning workflow logic and Cloud init and kickstart bootstrap http server enhancements ([c0fecb91](https://github.com/underpostnet/engine/commit/c0fecb911c2f6a04a41673067c675f76fd7e3c0b))
2394
- - Fix ipxeBuildIso method with forceRebuild parameter ([b79f030c](https://github.com/underpostnet/engine/commit/b79f030c059a0f7927507b0a54cadb82305a9d74))
2395
- - Add iso-ram rocky9 kickstart anaconda logic workflow ([2607edf2](https://github.com/underpostnet/engine/commit/2607edf222624295e9c96ff8a005c159c19bde49))
2396
- - Remove redundate logic and, add silent on run kill http bootstrap port ([95b7b990](https://github.com/underpostnet/engine/commit/95b7b990aebccf2ba218457213837830683834a0))
2397
- - Add bootstrapHttpServerRun flag in baremetal callback for standalone http bootstrap run server options workflow ([e360a7d9](https://github.com/underpostnet/engine/commit/e360a7d91b9b7f7bcfc1d1749fbb7a99599b26dd))
2398
- - Remove machine system id in kernel params ([6a706392](https://github.com/underpostnet/engine/commit/6a706392b6b09d5aabe2f0cd9d09efd774f22c4f))
2399
- - Add nfs server reset optional flag ([a42e76b5](https://github.com/underpostnet/engine/commit/a42e76b541858819662f563bf83b8fe0dda334a8))
2400
- - Remove chroot enlistment cloud init script ([c153b186](https://github.com/underpostnet/engine/commit/c153b1860132f3b4e7aaaf20f7f2a4fd8c08fda5))
621
+ - Fix path replicas handling in deploy pwa workfloads ([702f48e4b](https://github.com/underpostnet/engine/commit/702f48e4b04c1a9b4458361ed0d33f0b72815c08))
622
+ - Validate and rollback gateway config on reload failure ([4f7ce8795](https://github.com/underpostnet/engine/commit/4f7ce8795ef2a46a47bd6d0f49fd0a941cadcca8))
2401
623
 
2402
- ### client-core
624
+ ### cli-deploy
2403
625
 
2404
- - Fix iframe docs component inconsistent modals positions on pwa app cycle ([fe716235](https://github.com/underpostnet/engine/commit/fe716235fbdac09c9fe80c5541af265b236ca06d))
626
+ - Add resolveSchedulableNode method ([c62ee86d0](https://github.com/underpostnet/engine/commit/c62ee86d024e9797f279396d647431a97a399f50))
627
+ - Fix merged Gateway listener isolation ([a34f0b936](https://github.com/underpostnet/engine/commit/a34f0b9363a7b16f7d1bf704f27617f7411f2087))
628
+ - Remove expose and status options ([e55227eb0](https://github.com/underpostnet/engine/commit/e55227eb0ce75fd308cd72a0f3331a62a08ae0ab))
629
+ - Add node placement to deployment manifest ([9487ad169](https://github.com/underpostnet/engine/commit/9487ad169e79c1ed4c2d1eb05b1e36ff46defe8d))
630
+ - Add stable traffic Service for blue/green routing ([838d1ec0c](https://github.com/underpostnet/engine/commit/838d1ec0c1d9d2d9ff35c529180593efcf341203))
631
+ - Fall back to other ingress stack for traffic colour ([3115cc84b](https://github.com/underpostnet/engine/commit/3115cc84b02aa091927b25ae09de41879bf012d3))
632
+ - Fix deploy status workflow logic ([35e1af024](https://github.com/underpostnet/engine/commit/35e1af02484e9d6abeb6f031b33589534fe77665))
633
+ - Integrate underpost gateway into deploy ([e95a46d64](https://github.com/underpostnet/engine/commit/e95a46d64897fc92ba2fbb3b5da07c51a0abb729))
634
+ - Add gateway.yaml and httproute.yaml to build manifest mirror ([afb7bcf9d](https://github.com/underpostnet/engine/commit/afb7bcf9d8a902d744d6030c72c07d1814f45940))
635
+ - Add Gateway API deploy manifests and gateway static utility ([073231ca5](https://github.com/underpostnet/engine/commit/073231ca5a44b860420373035628ad22cc0435d8))
2405
636
 
2406
637
  ### scripts
2407
638
 
2408
- - MAAS DHCP dynamic range fix ([b89b577d](https://github.com/underpostnet/engine/commit/b89b577d5d2717537ce6e280b89ea09d54bb4e05))
2409
-
2410
- ## New release v:2.99.5 (2026-02-11)
2411
-
2412
- ### client-docs
2413
-
2414
- - Remove legacy static generator site guide docs ([cdb67b86](https://github.com/underpostnet/engine/commit/cdb67b865205abe28aec9c0ac433afce4a1003a1))
639
+ - Use run expose in test monitor ([b19c49318](https://github.com/underpostnet/engine/commit/b19c49318728b92a8fcf6f7e50e90b5b0e808b0d))
640
+ - Add firewall UDP range for QUIC/HTTP3 to nat-iptables ([3bdacec35](https://github.com/underpostnet/engine/commit/3bdacec350caa1776b418ac44dd3b1e95e259196))
2415
641
 
2416
- ### cli-baremetal
2417
-
2418
- - Add enable ssh in cloud init config in commission workflow ([9c3dee4f](https://github.com/underpostnet/engine/commit/9c3dee4f4a67de92f24fb6087f0dbaad0e6de26f))
2419
- - Refactor commission workflow with cloud init cmd run commission enlist request ([2d908f76](https://github.com/underpostnet/engine/commit/2d908f76148821686afaa6c3601aee65aed96255))
2420
- - Add to IPXE build iso method iso-nfs commission workflow type support ([76476eb9](https://github.com/underpostnet/engine/commit/76476eb9c3e30c555b7cb4f01bb4aa1f47a3c4eb))
2421
- - Add --ipxe-build-iso workflow ([4b305884](https://github.com/underpostnet/engine/commit/4b3058849c0fb71a7ef3b2c3da75d39c8e5e9b6c))
2422
- - Fix baremetal machineFactory method and add fallbackArchitecture for commission arch handle ([7e921fee](https://github.com/underpostnet/engine/commit/7e921fee2584038bea20aaa93239991b081103f0))
2423
- - Add hp-envy-iso-ram baremetal commissioning workflow ([c9a00a3c](https://github.com/underpostnet/engine/commit/c9a00a3c78d228a10d7e0e1e3f0a69ef9f310cc8))
2424
- - Create maasCliExec method and apply centralized implementation ([752833c8](https://github.com/underpostnet/engine/commit/752833c8dff81139f7166fba4b5e10430d81db36))
2425
-
2426
- ### cli-static
2427
-
2428
- - Chore remoe redundant comments ([b8fb0259](https://github.com/underpostnet/engine/commit/b8fb0259ddbc5f6ee20e3531b82a39cec0bce5e9))
2429
- - Simplified static example README.md and remove unused params build ([3ac1cc2c](https://github.com/underpostnet/engine/commit/3ac1cc2c83913f4cbf8ed40364357c4f8cefb1ed))
2430
-
2431
- ### server-logger
2432
-
2433
- - Refactor logger factory with log level and skip arg function param ([56394e5e](https://github.com/underpostnet/engine/commit/56394e5ea35809e00028a84721bbc0fdb6a8eed7))
2434
-
2435
- ### cli-image
2436
-
2437
- - Remove un legacy secretDockerInput ([8dc8e7a2](https://github.com/underpostnet/engine/commit/8dc8e7a280ef358f7f1f360afb68f2c5084e72c0))
2438
- - Remove legacy docker secrets logic ([4580efac](https://github.com/underpostnet/engine/commit/4580efacacbec019dda566d039f37c84405a2d35))
2439
-
2440
- ### cli-cloud-init
2441
-
2442
- - Fix kernelParamsFactory missing mac address arg ([207647c4](https://github.com/underpostnet/engine/commit/207647c4d33b89f122e2be42745db649742d2434))
2443
- - Create kernerParamsFactory cloud init method ([57945e9a](https://github.com/underpostnet/engine/commit/57945e9a2ce447a70625fa275514115591d381c5))
2444
-
2445
- ### cli-repo
2446
-
2447
- - Add index from head in cmt --log flag history ([d3f9cb69](https://github.com/underpostnet/engine/commit/d3f9cb69715df648751ad2cbe0ebc98dee444211))
2448
-
2449
- ### package
642
+ ### cli
2450
643
 
2451
- - Remove --clear-discovered --remove-machines in default baremetal script ([276ff4e4](https://github.com/underpostnet/engine/commit/276ff4e4ce7dffa8c5662ce6c1ba9c418e45ee3b))
644
+ - Update run and deploy option flags ([0dfb9ce6c](https://github.com/underpostnet/engine/commit/0dfb9ce6cbfef8f5d990a6fa8287902de20500f2))
2452
645
 
2453
- ### cli-run
646
+ ### underpost-ingress
2454
647
 
2455
- - Add list disk devices runner ([14dc4d7e](https://github.com/underpostnet/engine/commit/14dc4d7e11ef201e5782fb9dc2f0f8963d776e1e))
648
+ - Add multi node work load handling ([3dccb3de3](https://github.com/underpostnet/engine/commit/3dccb3de3c9a795096613adcca56389c71291c8b))
2456
649
 
2457
- ### src-index
650
+ ### cli-cyberia
2458
651
 
2459
- - Add required nodejs major version warning ([c6ef0afd](https://github.com/underpostnet/engine/commit/c6ef0afd32c1d3c278a8f76c5757139ae3339aae))
652
+ - Add testPaths in dev-env runner ([b087f4afd](https://github.com/underpostnet/engine/commit/b087f4afd226a2fefd0cb344a60ac3b945073a40))
653
+ - Install Docker host aliases in compose workflows ([a9fb75070](https://github.com/underpostnet/engine/commit/a9fb750709a4e94f9dd299ff7b62784bb728ad2a))
2460
654
 
2461
- ### cli-secrets
655
+ ### docker-compose
2462
656
 
2463
- - Remove legacy docker secrets api ([7db58689](https://github.com/underpostnet/engine/commit/7db58689c1d6bec538a7a49d8b48f916f77aba7e))
657
+ - Implement project-agnostic docker-compose workflow ([e0d07689c](https://github.com/underpostnet/engine/commit/e0d07689ceb9cf34a930c5f4120d8d5ab05f6ae8))
658
+ - Update subpath handling logic ([69fb72fcb](https://github.com/underpostnet/engine/commit/69fb72fcb7f7ac87f67f71314d0580ec6a8052f8))
2464
659
 
2465
660
  ### bin-deploy
2466
661
 
2467
- - Rename build/syncs envs batch workflows ([c2e89cf8](https://github.com/underpostnet/engine/commit/c2e89cf8d9f5cb24ff505afc3b6fbf38760d7cb4))
2468
-
2469
- ### server-tls
2470
-
2471
- - Chore js docs path module ([50e795a0](https://github.com/underpostnet/engine/commit/50e795a05a3b8f17f15d1380545f043a64b6fbff))
2472
- - Rename comments module to `UnderpostTLS` namespace ([9a4ed608](https://github.com/underpostnet/engine/commit/9a4ed608856853137f2a02f22fa7b149c9be61d1))
2473
-
2474
- ### cli-config
2475
-
2476
- - Add copy option to get operations ([5837f55f](https://github.com/underpostnet/engine/commit/5837f55fc2da8e200ffa036bf353e07802841d8c))
662
+ - Fix add --ignore-not-found in 'pw-conf' runner ([2f14d2ab6](https://github.com/underpostnet/engine/commit/2f14d2ab66357eb032266487e2dee5b614d1b697))
2477
663
 
2478
- ### engine-core
2479
-
2480
- - Rename default toPath in playwright workflow ([348e4cd6](https://github.com/underpostnet/engine/commit/348e4cd6c0ed78d8e64e8761a67d5587533c1b04))
664
+ ### cyberia-docs
2481
665
 
2482
- ## New release v:2.99.4 (2026-02-03)
666
+ - Update docs for gateway and CLI changes ([c064f82ad](https://github.com/underpostnet/engine/commit/c064f82ad3c315fec5ad7cbdd322d577bc311abf))
667
+ - Document edge tier architecture and CLI updates ([72760e40e](https://github.com/underpostnet/engine/commit/72760e40eb9ea96999b94b5c7d916a21c04ac8ef))
2483
668
 
2484
- ### cli-deploy
669
+ ### cyberia-cli
2485
670
 
2486
- - Smplified existsContainerFile remove legacy useKindDockerPod ([ff877519](https://github.com/underpostnet/engine/commit/ff877519e17726567d3eb33445e2a0f34782d70c))
2487
- - Refactor existsContainerFile and add useKindDockerPodlogic and remove legacy tf-vae-test monitor runner ([a7ab0866](https://github.com/underpostnet/engine/commit/a7ab086691d070613b305ec4e742486d73d72732))
671
+ - Refactor SSH port wait to shared utility ([cdf4c4f92](https://github.com/underpostnet/engine/commit/cdf4c4f922ee7980cf43111db1ef1c81578ad2a3))
672
+ - Add status page build and instance project resolution ([b1b0a840e](https://github.com/underpostnet/engine/commit/b1b0a840e5cd7f7edf084bf86323dfdee7d56fd7))
673
+ - Fix SSR html views locations path ([1bf2843c8](https://github.com/underpostnet/engine/commit/1bf2843c87607e5b9648f8ec98b35efca5d79b4a))
674
+ - Remove redundant logs ([3adba85fe](https://github.com/underpostnet/engine/commit/3adba85fe5199972a8a0cd49f6be005c989f2145))
2488
675
 
2489
- ### engine-core
676
+ ### cli-image
2490
677
 
2491
- - Add base playwright deployment ([8e020cd6](https://github.com/underpostnet/engine/commit/8e020cd64f64c0ff258a024765c25c36948edcba))
2492
- - Fix js docs params types and descriptions ([9c50af10](https://github.com/underpostnet/engine/commit/9c50af103ec7c2bd938aee620d62abeb2c061269))
2493
- - Revert compiler js options and set checkJs false to vs code problems ([e4566c6c](https://github.com/underpostnet/engine/commit/e4566c6c33b3f862d7a75864d4930721af597050))
2494
- - Fix fas api load image with latest underpost cli version ([ac785df4](https://github.com/underpostnet/engine/commit/ac785df467d6b22df59ab3ec43bf73ec5b58f9a2))
2495
- - Fix: js config import meta module option ([58b22b73](https://github.com/underpostnet/engine/commit/58b22b7348c2924b70858f07cf39d248a89c1e4e))
2496
- - chore: License year ([987a1dc6](https://github.com/underpostnet/engine/commit/987a1dc6b38e525376a8a030f39875774b5e55f1))
2497
- - Add volume in exclude js config and checkJs attribute ([e6bdd41a](https://github.com/underpostnet/engine/commit/e6bdd41a397175d5d62ee622f824a4146b1b35db))
678
+ - Implement crictlCommandFactory in image build ([69d24d668](https://github.com/underpostnet/engine/commit/69d24d66848fc27a2503193f82a31ef84435252f))
2498
679
 
2499
- ### client-core
680
+ ### db
2500
681
 
2501
- - Fix user timestamps and CLI flags ([61109e3a](https://github.com/underpostnet/engine/commit/61109e3adce4e918325bd1137ae6cb8c3c2a5156))
2502
- - Add Polyhedron immersive particle color palettes ([40471fab](https://github.com/underpostnet/engine/commit/40471fabbf899b4019008d21b16dea93af43accd))
2503
- - Add Polyhedron component immersive fullscreen image faces mode effects ([8a00a8d7](https://github.com/underpostnet/engine/commit/8a00a8d7999bfb7de1d62c9201fe33c047d16a66))
2504
- - Chore missing translate key ([43a6c807](https://github.com/underpostnet/engine/commit/43a6c807ea448c7887109f0e9abedff5b238b714))
682
+ - Fix MongoDB replica set orphan recovery and improve bootstrap ([71b5f1a3e](https://github.com/underpostnet/engine/commit/71b5f1a3e032f34c29a9a6b9251aac328c951872))
2505
683
 
2506
- ### cli-baremetal
684
+ ### cyberia-client
2507
685
 
2508
- - Change args to options for more readable cli docs ([401f82b2](https://github.com/underpostnet/engine/commit/401f82b2521f65f91e846c9cba9ace79b420b945))
686
+ - Fix instance selection play URL for default instance code ([efec4a34e](https://github.com/underpostnet/engine/commit/efec4a34edbfb3aae780a42b02ad64d4d93791a1))
2509
687
 
2510
- ### server-proxy
688
+ ## New release v:3.2.80 (2026-07-23)
2511
689
 
2512
- - Fix tls base ref ([20afc368](https://github.com/underpostnet/engine/commit/20afc3684e186a186353c1b8b3e548b098d4a40e))
690
+ ### engine-cyberia
2513
691
 
2514
- ### server-process
692
+ - Implement dynamically build cyberia instance package.json full reference ([4127836f0](https://github.com/underpostnet/engine/commit/4127836f0f2cf2d74f1762fb1379921b283c3429))
693
+ - Fix missing add cyberia dependency in engine-cyberia docker image ([b3d6c4dec](https://github.com/underpostnet/engine/commit/b3d6c4decc23b72ede1958cd158a82a356f10b70))
694
+ - Fix dynamic build instance codes logic ([cb380b335](https://github.com/underpostnet/engine/commit/cb380b3354eaa720ee225c66e17270737616f081))
695
+ - Refactor INSTANCE_CODES Dynamic build inputs access docker image workflows ([bf1cb6c74](https://github.com/underpostnet/engine/commit/bf1cb6c7466415982b34176b70050622a6681acf))
696
+ - Add map preview PNG rendering and preview route in instance map API ([82150a18a](https://github.com/underpostnet/engine/commit/82150a18ad627f29425cb60aaa08850762f18f69))
697
+ - Add multi-instance code support in Dockerfiles with saga copying ([6b902ba86](https://github.com/underpostnet/engine/commit/6b902ba860b235d00b0b69244f9f25c6f589d128))
698
+ - Add multi-instance topology and per-variant compose routing ([4336c024c](https://github.com/underpostnet/engine/commit/4336c024cb3f98e394cc06f5bab038a93d9b3e4b))
699
+ - Add hot reload endpoint and map preview route ([3c7658911](https://github.com/underpostnet/engine/commit/3c76589115d907a74d42081c753fd7f3bf5be946))
700
+ - Add map preview caching for fallback world nodes ([55052ec54](https://github.com/underpostnet/engine/commit/55052ec54119ccb06366dae712f23cd503de91f0))
701
+ - Fix demo quests with actions quest related ([c41feae1a](https://github.com/underpostnet/engine/commit/c41feae1a408b7b9ec56abdd29978b0177c44dfa))
702
+ - Add REST boot fallback endpoints for gRPC CyberiaDataService ([57b698836](https://github.com/underpostnet/engine/commit/57b6988369a0492c18c2df3155630af5a2e8fbb6))
703
+ - Add portalSubtype field and refactor instance map with presence POI system ([fa551a11d](https://github.com/underpostnet/engine/commit/fa551a11dba7cedf18f1cca1bcdb0c11d7a1b57f))
704
+ - Add map preview for Instance Map node backgrounds ([849095cf2](https://github.com/underpostnet/engine/commit/849095cf21fc52e7666be102054b7abfd3b7e738))
705
+ - Add instance map REST endpoints (static graph + dynamic provider activity) ([dc83f8dc0](https://github.com/underpostnet/engine/commit/dc83f8dc03a1ed4aeea606bc3b2aed746cc09336))
706
+ - Update cyberia base lore and introduce Fragmentation concept and refactor weakness narrative of nova faction ([823d69cc9](https://github.com/underpostnet/engine/commit/823d69cc99fb410e5d4a7161baeff28b4f9f6684))
707
+ - Add more demo quests to fallback world ([d0de569bd](https://github.com/underpostnet/engine/commit/d0de569bd2ab987ff7881263f80ab8953ef4f241))
708
+ - Increase portalHoldTimeMs default value ([5d8028120](https://github.com/underpostnet/engine/commit/5d802812012c53942f699763dba24948865f4936))
2515
709
 
2516
- - Improve process.js run openTerminal with graphical as root ([298b265c](https://github.com/underpostnet/engine/commit/298b265ca4ddaae6a2e0eb18b74f39b2ff7d3384))
2517
- - Fix openTerminal DBUS_SESSION_BUS_ADDRESS env ([58a24816](https://github.com/underpostnet/engine/commit/58a2481635e2778184210696204f3af95d0fe712))
710
+ ### cli-release
2518
711
 
2519
- ### cli-run
712
+ - Add cyberia docker-compose bump version file match ([f3eeefeea](https://github.com/underpostnet/engine/commit/f3eeefeeabe377fe4c5db65e1d2d480841f9d2cd))
2520
713
 
2521
- - Add options.logs customization in git-conf runner ([2ae5d3cc](https://github.com/underpostnet/engine/commit/2ae5d3cc39c87ebeab5218c3b1f5c3b04b87fd57))
2522
- - Add --logs and --monitor-status flags options customization ([1c395cc6](https://github.com/underpostnet/engine/commit/1c395cc6ef21f3c156fd80295e665a4ea3576f9c))
714
+ ### cyberia-client
2523
715
 
2524
- ### server-tls
716
+ - Add instance selection view and portal navigation ([9f8ebc5d1](https://github.com/underpostnet/engine/commit/9f8ebc5d147225e0710923392f9b659e20725e60))
717
+ - Improve cyberia portal landing ([57dbaed22](https://github.com/underpostnet/engine/commit/57dbaed228b2ae58202729b6ac9d751c0405a93f))
718
+ - Add Instance sub-path dashboard prefix handle ([958f65929](https://github.com/underpostnet/engine/commit/958f65929a42084c0d4cf3876d3a4fef1fdc7236))
719
+ - Add hot reload UI in instance editor ([ee90a2018](https://github.com/underpostnet/engine/commit/ee90a20180fa8c88f249f3efec0a7fb6258f9e5f))
720
+ - Replace stat icons with PNG images in object layer engine ([7f03972ef](https://github.com/underpostnet/engine/commit/7f03972efcae0ce99493cf65ed96333a59616320))
721
+ - Add center action button to menu modal ([f70ba2d3c](https://github.com/underpostnet/engine/commit/f70ba2d3cb8022f3f2873f0c36fe1cd792dd29d2))
722
+ - Update default fontFamily in SharedDefaultsCyberia module ([868dffa9f](https://github.com/underpostnet/engine/commit/868dffa9f8effb15f694cb8e3f5dd135410243dc))
2525
723
 
2526
- - Add Underpost tls Namespace ([cc31c8ee](https://github.com/underpostnet/engine/commit/cc31c8ee3d5be67e76f95948374d617980efe855))
724
+ ### cyberia-api
2527
725
 
2528
- ### server-logger
726
+ - Add fallback TEST world to instance selection list ([b93f30586](https://github.com/underpostnet/engine/commit/b93f3058694eafc384ac5b50d24093f4a30f6f00))
2529
727
 
2530
- - Refactor loggerFactory to custom underpostLogger with merge 'setUpInfo' interface typedef scope ([34ae041a](https://github.com/underpostnet/engine/commit/34ae041aa2ae3dc19f78e131a5834753cc1be375))
728
+ ### github-actions
2531
729
 
2532
- ### scripts
730
+ - Fix cyberia github package publish workflow ([fc1bac41d](https://github.com/underpostnet/engine/commit/fc1bac41daf1029962b71d45e73d32780c3b45a5))
731
+ - Fix cyberia-client 404 page build ([a55bcb797](https://github.com/underpostnet/engine/commit/a55bcb797166ecb6d93ccb0ac6814b7b31c6138e))
732
+ - Update engine-cyberia.cd.yml clean assets directory ([ce365cf77](https://github.com/underpostnet/engine/commit/ce365cf77c325a69df1d3614332f9f584c6cd0e3))
733
+ - Update engine-cyberia CD workflow add pull storage assets ([0ee2404f1](https://github.com/underpostnet/engine/commit/0ee2404f1506ce8f4221602b3c73b4a704a1a44d))
734
+ - Fix npm install command in engine-cyberia CD workflow ([7974ab422](https://github.com/underpostnet/engine/commit/7974ab422d64c482a53a745a834b58b3e623d85d))
735
+ - Add image-pull-policy Always in cyberia-server and cyberia-client CD pipeline ([a134c5be2](https://github.com/underpostnet/engine/commit/a134c5be23b067e9fcc7ed8589243d341ca9607a))
736
+ - Set default variant of underpost engine docker image in release workflow ([f3e47bdc6](https://github.com/underpostnet/engine/commit/f3e47bdc660d1074ab04a48a769e9cbf512eb4f8))
2533
737
 
2534
- - Remove ([41af6e99](https://github.com/underpostnet/engine/commit/41af6e9988c036def7bbeb2c4ec3802a718ccd33))
738
+ ### cli-cyberia
2535
739
 
2536
- ### client-underpost
740
+ - Add multi-instance sub-path support to hot reload trigger ([f0e0fda7a](https://github.com/underpostnet/engine/commit/f0e0fda7aa23e38466024c0258a17e94386fab9c))
741
+ - Add build-cyberia-404 workflow and 404 page ([51d35594f](https://github.com/underpostnet/engine/commit/51d35594f76e15b4385084d3b7a1d696b0faaf8d))
742
+ - Add Dynamically resolve instance codes in build-manifest runner ([97997df14](https://github.com/underpostnet/engine/commit/97997df14d16ff485fd30001a54f99cc9227b69b))
743
+ - Refactor multi-instance conf structure and respective workflows ([0e607e4c5](https://github.com/underpostnet/engine/commit/0e607e4c5d269fb1048b0ab510e2a90174c4520b))
744
+ - Add --reset option to dev-env runner ([77f17140c](https://github.com/underpostnet/engine/commit/77f17140c7399470d700126fd0d5ccd583fa8323))
745
+ - Add revert option and multi-instance publish support with default-items asset copy ([0913117af](https://github.com/underpostnet/engine/commit/0913117af06d034387c5958bf73c0e652316e94e))
746
+ - Add UNDERPOST_DEPLOY_NODE env for deterministic deploy node resolution ([41bb08ffb](https://github.com/underpostnet/engine/commit/41bb08ffb1e75721962ae2c69414e7adb5266c46))
747
+ - Add in import-default-items runner import FOREST dev instance ([d3bf87a1f](https://github.com/underpostnet/engine/commit/d3bf87a1f72ee97b9cc67bc131a21e9169f7eb11))
2537
748
 
2538
- - Add base Polyhedron component view ([aefb59be](https://github.com/underpostnet/engine/commit/aefb59bede3117459d4d4d6d0bf5b74a0e0133e2))
749
+ ### client-cyberia
2539
750
 
2540
- ## New release v:2.99.1 (2026-01-29)
751
+ - Redesign server metrics dashboard with pixel-art assets and theme toggle ([563783093](https://github.com/underpostnet/engine/commit/5637830934d1f684c04eddbed2eb01030f3ae28b))
752
+ - Update location href of enter button in landing cyberia portal ([1c9efd550](https://github.com/underpostnet/engine/commit/1c9efd5505a161c2de83b77dac16f6a81065263a))
753
+ - Improve cyberia portal landing with new hero section ([024d76b62](https://github.com/underpostnet/engine/commit/024d76b62faee3f04d70c4d303ac486697e40876))
2541
754
 
2542
755
  ### cli-run
2543
756
 
2544
- - In sync runner add cmd customization ([056564e5](https://github.com/underpostnet/engine/commit/056564e51cbfb90df60d5fa7a8b0331b3e972956))
2545
- - Add missin name space in ssh-deploy runners and add shh-deploy-db-status runner ([56b017e7](https://github.com/underpostnet/engine/commit/56b017e78cbae85feaa18e33116925bcb51a7aa2))
2546
- - Fix missing dev case in deploy runner ([6e928c0b](https://github.com/underpostnet/engine/commit/6e928c0b4aa8d229d475e75f2e3b8d7824a97f00))
2547
-
2548
- ### engine-cyberia
2549
-
2550
- - Fix handle missing atlas sprite fileId ([dc1adbc4](https://github.com/underpostnet/engine/commit/dc1adbc418b397b1413be118ec39c787edc018d2))
2551
-
2552
- ### github-actions
2553
-
2554
- - Add init workflow deployment dd-core, dd-lampp, and dd-test ([1a56deb2](https://github.com/underpostnet/engine/commit/1a56deb2570571af4badc5294dd28dac9771aa8a))
2555
- - Add ssh-init-engine-cyberia worflow to dd-cyberia cd ([5478f7d7](https://github.com/underpostnet/engine/commit/5478f7d764ab5ed1747fc4ba0b82d339009c88cb))
757
+ - Fix instance promote handle multi variant paths ([c23e75021](https://github.com/underpostnet/engine/commit/c23e75021d4bbf6e24cdb45102b344743712b3a6))
758
+ - Add flag 'branch' in default runner options ([4e7a63dfb](https://github.com/underpostnet/engine/commit/4e7a63dfbb8c492e31e53bafbb23586a46aa59ad))
2556
759
 
2557
- ### cli-ssh
2558
-
2559
- - Add sshRemoteRunner for runner exec arbitrary shell commands on a remote server via SSH with proper credential handling ([3764291a](https://github.com/underpostnet/engine/commit/3764291a90dc2361662409c602e74bb88c1f8269))
2560
-
2561
- ### cli-monitor
760
+ ### cli-repository
2562
761
 
2563
- - Add multiple version async monitor support and rename version to versions for cli flag compatibility ([03a56097](https://github.com/underpostnet/engine/commit/03a560970db6b7a59e8b31f8b80d554101bbbaf7))
2564
- - Add readyDeployment monitor mode ([1e7a4fa9](https://github.com/underpostnet/engine/commit/1e7a4fa9c7accd93a5c9fbbf820219cbf7d355ff))
762
+ - Add init local repo in cmt cli ([0255eb053](https://github.com/underpostnet/engine/commit/0255eb05354edd33741721311f012b339351370b))
2565
763
 
2566
764
  ### cli-deploy
2567
765
 
2568
- - Fix ternary custom image handle on manifest build ([b02ba105](https://github.com/underpostnet/engine/commit/b02ba105624c7455a082f6ddac233c05525aa9c0))
2569
-
2570
- ### cli-env
2571
-
2572
- - Chore js docs comments in build param set method ([9c66cdfc](https://github.com/underpostnet/engine/commit/9c66cdfcf8106a2d567475df1f2469529abc2226))
2573
-
2574
- ## New release v:2.99.0 (2026-01-28)
2575
-
2576
- ### cli-run
2577
-
2578
- - Add custom etc-hosts runner ([541dbb0b](https://github.com/underpostnet/engine/commit/541dbb0b003a346229c378726aba2b0cd00d7990))
2579
- - Fix runner sync deploy handle custom versions ([983feae4](https://github.com/underpostnet/engine/commit/983feae4cf06ff3fff6f77baf0ad1c02cd34f84d))
2580
- - Add 'crypto-policy' runner to DEFAULT:SHA1 for compatibility ([cd24992e](https://github.com/underpostnet/engine/commit/cd24992e238394b2aea3af769dea8de14c5994d8))
2581
- - Add top customers ps and headers in ps runner ([d221b8a8](https://github.com/underpostnet/engine/commit/d221b8a8cb756dc97fded2b4429771a43d78b32c))
2582
- - Add top-consumers custom path to run ps (Displays running processes) ([c07e29be](https://github.com/underpostnet/engine/commit/c07e29be495fdc62a9a2f458eff3ba0267b264f9))
2583
- - Add missing --timeout-response in monitor command ([a1f02fb4](https://github.com/underpostnet/engine/commit/a1f02fb4f5f44bcd28b8da8325eb1a21618dc848))
2584
- - Add missing switchTraffic options object args, and centralize monitor switchTraffic ([314db030](https://github.com/underpostnet/engine/commit/314db03081f4193ef32828a4623d65c509d4cb8b))
766
+ - Fix multi-instance blue/green deployment build manifests ([99a9b5265](https://github.com/underpostnet/engine/commit/99a9b5265257856a6df2ed2d9425ddaba834d8bf))
2585
767
 
2586
- ### auth
2587
-
2588
- - Fix cookieOptionsFactory in development etc hosts session persistence case ([ab242ee3](https://github.com/underpostnet/engine/commit/ab242ee3c99125d1608e71ca133f51101b21acaa))
768
+ ### cli-fs
2589
769
 
2590
- ### cli-config
770
+ - Remove redundant logs ([23761d607](https://github.com/underpostnet/engine/commit/23761d607bbc62a1d6a892faa66a448496ece8d7))
2591
771
 
2592
- - Add batch build deploy id envs in set method ([bb5857c3](https://github.com/underpostnet/engine/commit/bb5857c32a4c5587184772dde4f085abdba1e9be))
772
+ ### hardhat
2593
773
 
2594
- ### cli-cluster
774
+ - Update supply-chain dependency: overrides adm-zip to version 0.6.0 ([fe5d98996](https://github.com/underpostnet/engine/commit/fe5d989964e768911d0c2eaa62d8d918f5421025))
2595
775
 
2596
- - Increment await time valkey-service status monitor ([a33d30fe](https://github.com/underpostnet/engine/commit/a33d30fe1367ef96d59a8211f75548dba48dd09c))
776
+ ### cyberia-docs
2597
777
 
2598
- ### github-actions
778
+ - Document OFF-CHAIN economy players + bots, any victim loot ([dbc4efa36](https://github.com/underpostnet/engine/commit/dbc4efa365c0e61b6dff32dd00ee5593aa064968))
779
+ - Document path-based multi-instance deployments ([b028657f4](https://github.com/underpostnet/engine/commit/b028657f4c79280d53674e034e396e44e9d8eae4))
780
+ - Document REST boot fallback and gRPC transport refactor ([a4b8006cc](https://github.com/underpostnet/engine/commit/a4b8006cc3240f65ff22fff8b089277032c21add))
781
+ - Update docs to reflect presence POI architecture and instance map changes ([140568b80](https://github.com/underpostnet/engine/commit/140568b808f32a83037841cbe741c18af2b0b743))
782
+ - Document instance map API, data flow and client overlay integration ([a8f7c8ea5](https://github.com/underpostnet/engine/commit/a8f7c8ea58848b92cbe9ce0febb3a8bcc9692524))
783
+ - Update Off chain economy concepts from transfer to loot drop race ([e93cafc83](https://github.com/underpostnet/engine/commit/e93cafc836d58148d4439126a650a20e7ff5d5ce))
2599
784
 
2600
- - Update base underpost image version deploy from v2.8.846 to v2.98.3 ([dcbb9e83](https://github.com/underpostnet/engine/commit/dcbb9e8361cc395ab90e730a9a7951e7c5590980))
785
+ ### client
2601
786
 
2602
- ### server-dns
787
+ - Fix slide menu title style in dark/light themes ([22c1224d5](https://github.com/underpostnet/engine/commit/22c1224d5b4d50ad466c2988bb2c5e6cd7c30860))
788
+ - FIx center action button to menu modal ([94d6940ed](https://github.com/underpostnet/engine/commit/94d6940ed5d9e7eff72c039f6e22cc64e47d1a90))
2603
789
 
2604
- - Fix missing class ref getLocalIPv4Address and UnderpostDns export ([bf311240](https://github.com/underpostnet/engine/commit/bf3112401131a1f1c3c1a9506d861072339016e4))
790
+ ### cyberia-saga
2605
791
 
2606
- ### cli-monitor
792
+ - Add persistInstance helper for saga instance persistence ([3f124c8b5](https://github.com/underpostnet/engine/commit/3f124c8b57f6a4f75051cfa9771c38cf9989aa75))
2607
793
 
2608
- - Simplify and change to etc hosts test in development case monitor ([b2bbff6a](https://github.com/underpostnet/engine/commit/b2bbff6a28c709faa6ce321ae124771d046024ca))
2609
- - Remove monitor-init-callback-script ([c95e759c](https://github.com/underpostnet/engine/commit/c95e759c4c73c4ac92092314a89c51294047eba9))
2610
- - Simplify and improve monitor input runtime methods ([a68a4333](https://github.com/underpostnet/engine/commit/a68a43333877183d718398af9690bd24413d9d4f))
794
+ ### cyberia-cli
2611
795
 
2612
- ### cli-deploy
796
+ - Migrate IPFS registry to mfsPath unique key ([e15cfda51](https://github.com/underpostnet/engine/commit/e15cfda511c674a4c0f8e77901f7df4d59a6e50d))
797
+ - Add clean option in import default items in runner ([9cca28ab9](https://github.com/underpostnet/engine/commit/9cca28ab93178cf2ee06f4d5e7b199a612f9e360))
798
+ - Improve import default items add base saga collection ingestion ([ffe822423](https://github.com/underpostnet/engine/commit/ffe822423c60ce3c103d533be00200ae9a406aa2))
799
+ - Add publish cross repositories push operation workflow ([69e39292e](https://github.com/underpostnet/engine/commit/69e39292e614d577eae4ad8362e8ec80e1282b9a))
800
+ - Fix build-manifest copy docker-compose related files ([b3e252fc7](https://github.com/underpostnet/engine/commit/b3e252fc7d61c2b91f65a199351a32dfb05d87ff))
2613
801
 
2614
- - Add flag --underpost-quickly-install in default cmd run deployments yaml ([04c16a94](https://github.com/underpostnet/engine/commit/04c16a94302f6a107c3e264adefa902d02179d3d))
2615
- - Add and centralize timeout response proxy flags ([e89a6e3f](https://github.com/underpostnet/engine/commit/e89a6e3f2cf0dea7926743426d2e804ecb92aeb7))
2616
- - Add HTTPProxy response timeout option cutomization ([e9132794](https://github.com/underpostnet/engine/commit/e9132794e1ad941bed69920d456a5f7d23189b27))
802
+ ### ci
2617
803
 
2618
- ### engine-core
804
+ - Add latest tag to Docker image build and push workflows ([36dc44fc3](https://github.com/underpostnet/engine/commit/36dc44fc304eafcd67ad4b2743c2c3254b72b9a0))
2619
805
 
2620
- - Refactor and improve underpost modules and exports to Underpost index main class ([7865e95d](https://github.com/underpostnet/engine/commit/7865e95d4a03cc9f32479de68c29463f17c1be45))
806
+ ### grpc-cyberia
2621
807
 
2622
- ### cli
808
+ - Refactor gRPC server to delegate world-load to shared instance-data module ([740577994](https://github.com/underpostnet/engine/commit/7405779948cbd82383efb18efc928fc10ba0341e))
809
+ - Fix itemsId load in fallback world to ensure based in Own-model collections (CyberiaSkill, CyberiaEntityTypeDefault) ([ca4ffbb95](https://github.com/underpostnet/engine/commit/ca4ffbb956cb1e6f19601e35c3ceee8ca71ab49b))
2623
810
 
2624
- - Remove un used script command ([f79d65f3](https://github.com/underpostnet/engine/commit/f79d65f34b6d10a585b178c9486830e1a0457f84))
811
+ ### api
2625
812
 
2626
- ### engine-cyberia
813
+ - Centralize Express middleware and controller/router helpers for engine APIs in src/server/middlewares.js ([1dda3de9d](https://github.com/underpostnet/engine/commit/1dda3de9ddd016acbe5f33d239d0a547445cf6c6))
2627
814
 
2628
- - Remove duplicate comments ([923cc103](https://github.com/underpostnet/engine/commit/923cc103b60c6cbc0d9d00badd89c39ac1470ac0))
2629
- - chore comments object layer component ([1cdf2e79](https://github.com/underpostnet/engine/commit/1cdf2e7924df9fa79cd5a9e0f62237e7ddc1dcf5))
2630
- - Add object layer api/component atlas sprite sheet integration ([499479a4](https://github.com/underpostnet/engine/commit/499479a48fd54a88169718ed367d8bac566e3326))
2631
- - Add in object layer viewer check if modal is open and DOM element exists before trying to render ([d3e4c75f](https://github.com/underpostnet/engine/commit/d3e4c75f380fb0a18140b108e77f99a6c540c93e))
2632
- - Fix object layer viewer full grid reload on navigation router events ([3edb984f](https://github.com/underpostnet/engine/commit/3edb984fabb0aee71f3f2e3e9853a5db5be0427d))
815
+ ### dependencies
2633
816
 
2634
- ### cli-cyberia
817
+ - Update typescript version for compatibility with typedocs ([433b68207](https://github.com/underpostnet/engine/commit/433b6820757cce0c8eadb4cca3b64425cdfa9c05))
2635
818
 
2636
- - Add git clean assets directory on drop option ([7bddac9c](https://github.com/underpostnet/engine/commit/7bddac9cbe2621295afe05dffe74cd6c191116c7))
819
+ ### docs
2637
820
 
2638
- ## New release v:2.98.3 (2026-01-23)
821
+ - Update README.md Rocky badge to v9.8 ([f7f31a1aa](https://github.com/underpostnet/engine/commit/f7f31a1aa9257db338c02d2a57d718136216b5f1))
2639
822
 
2640
- ### client-core
823
+ ### cluster
2641
824
 
2642
- - Fix and robust Fullscreen Component for PWA for cross compatibility ([f303c1d5](https://github.com/underpostnet/engine/commit/f303c1d52ebd8d100209587291856d1d6b12b81d))
2643
- - Fix add restrict markdown link handlers to file on panel form component ([f498cc6e](https://github.com/underpostnet/engine/commit/f498cc6e4fe5d9f9988c4fe57865645d7cb364b2))
2644
- - Add missing markdown-source-copied translate data ([8ee364b2](https://github.com/underpostnet/engine/commit/8ee364b2c0e20be0f172be76f7c5c280d7c4a88c))
825
+ - Fix Helm installation in node bin cluster init host workflow ([f7e141c71](https://github.com/underpostnet/engine/commit/f7e141c71d2c6284cb798a985c1f318e77b5293e))
2645
826
 
2646
- ### engine-cyberia
827
+ ## New release v:3.2.70 (2026-07-06)
2647
828
 
2648
- - Fix object layer viewer prevent full grid reload on navigation ([50d9a20d](https://github.com/underpostnet/engine/commit/50d9a20da32663948a9beb115ddfc85e5196a5bb))
829
+ ### release
2649
830
 
2650
- ### cli-cyberia
831
+ - Enhance buildVersionBumpTargets patterns scope ([510abdd94](https://github.com/underpostnet/engine/commit/510abdd94faaa121b7f81a21450beba484de654b))
2651
832
 
2652
- - Add command to install cyberia dedicated dependencies ([a817e316](https://github.com/underpostnet/engine/commit/a817e3161b64a204235949d0df049e7bfc0f7671))
833
+ ### cli-repository
2653
834
 
2654
- ## New release v:2.98.1 (2026-01-23)
835
+ - Add default branch resolution ([c5074d31c](https://github.com/underpostnet/engine/commit/c5074d31cac7046280d24d12e30a87ad2db86285))
836
+ - FIx commit message propagation in CI engines workflows ([4b5458d83](https://github.com/underpostnet/engine/commit/4b5458d834efa88a1cf81ae32d517a71a4bb58f2))
837
+ - Add runtimeRepo logic in resolveInstanceRepo method ([1ef3ad279](https://github.com/underpostnet/engine/commit/1ef3ad27908989f3ab7f620500257b6e9ff76f4b))
2655
838
 
2656
- ### bin-deploy
839
+ ### github-actions
2657
840
 
2658
- - Add router default-conf build in version-build logic ([196b0c6f](https://github.com/underpostnet/engine/commit/196b0c6f138dd9391e3b51facf5586bfee9b6a2f))
841
+ - Clean comments ([785e9d55d](https://github.com/underpostnet/engine/commit/785e9d55d27351ad4d529e38f60d3962f9439fee))
842
+ - Fix typo engine cyberia cd cmd command, and clean comments in cyberia-engine related dockerfiles ([d93dbf54a](https://github.com/underpostnet/engine/commit/d93dbf54a2ec44e1c1b4c01abd21e1baa0cf7fbc))
843
+ - Fix add missing install dependencies in cyberia github package workflow ([8897dcdbb](https://github.com/underpostnet/engine/commit/8897dcdbbea619687165438f3ac64702480f4d23))
844
+ - Add cyberia cli github package workflow ([6ae0ac5f7](https://github.com/underpostnet/engine/commit/6ae0ac5f76c08643171b4b3853c874ed26b423c1))
845
+ - Add cyberia-server and cyberia-client CD workflows ([c92a6c278](https://github.com/underpostnet/engine/commit/c92a6c27810738c2c6a87962c6fefaf98060cb70))
846
+ - Fix engine-cyberia CD and engine-prototype CI manifests workflows ([3ca123dbf](https://github.com/underpostnet/engine/commit/3ca123dbf9d4d0cfbc1d504e6b0c847abd2f8757))
847
+ - Add single source of truth for the underpost image version in ci dockerhub workflows ([97585e735](https://github.com/underpostnet/engine/commit/97585e735c1cd48c80e8c7af8601e14a79e233fd))
848
+ - Update engine-cyberia default deployment node ([b181a5bd5](https://github.com/underpostnet/engine/commit/b181a5bd5254d2a692579c9c7d188161ae351e59))
2659
849
 
2660
- ### scripts
850
+ ### engine-cyberia
2661
851
 
2662
- - Rocky Linux setup script simplification ([06255c17](https://github.com/underpostnet/engine/commit/06255c17d7bfdba7acc893c854f82820ba55225e))
852
+ - Add sudo in engine-cyberia runtime dockerfiles ([3c3da0fcc](https://github.com/underpostnet/engine/commit/3c3da0fccc5b91c01722d3224146ae37ebcc6a27))
853
+ - Update production engine-cyberia Dockerfile ([e1a9330e9](https://github.com/underpostnet/engine/commit/e1a9330e9c3325a8a1ee41318bbe48714deaf3a2))
854
+ - Refactor Dockerfile and deployment configurations for production and development environments ([4901a3f92](https://github.com/underpostnet/engine/commit/4901a3f925ce038ede03b5e08c6b06eb03bc1617))
855
+ - Refactor separate engine-cybera public engine URL from internal cyberia-server api engine base url endpoint ([48923d900](https://github.com/underpostnet/engine/commit/48923d90062dc934228c049a33f619dcdacd5cbc))
856
+ - Add in runtime engine-cyberia module docker-compose env file related ([ae30329d4](https://github.com/underpostnet/engine/commit/ae30329d4e80d4911c3129ad042c623f74110462))
857
+ - Add centralized node version arg and update to v24.15.0 id dockerfiles related ([64a649a1b](https://github.com/underpostnet/engine/commit/64a649a1b29a941b10d91879207e8a7ff76f48a2))
858
+ - Update Dockerfile.dev use canonical repository ([12e439122](https://github.com/underpostnet/engine/commit/12e4391225ee207dd5e3edff93af4cfe667982dd))
859
+ - Add ipfs cluster service in cyberia docker-compose deployment ([8ee19a3fa](https://github.com/underpostnet/engine/commit/8ee19a3fa5792ed800b03f45a0a677b0d6244450))
860
+ - Move ffmpeg to runtime stage in docker-image build pipeline ([1fcca3783](https://github.com/underpostnet/engine/commit/1fcca3783add20e42c3c80a14dfdf9a9ff2b08a9))
861
+ - Add engine-cyberia runtime module, docker-compose cyberia mmo ecosystem, and docker-image engine-cyberia dockerhub pipeline ([df2162b7d](https://github.com/underpostnet/engine/commit/df2162b7d755a814d36bd2da322c3e554496daa2))
862
+ - Add behavior field, entity behavior vocabulary, and skill logic validation ([6ac9bcaf5](https://github.com/underpostnet/engine/commit/6ac9bcaf5eede564ae80ce74498c91eb9a4e4b20))
863
+ - Refactor entity-type-default to subset matching resolution ([bf0aa9fe6](https://github.com/underpostnet/engine/commit/bf0aa9fe65523d0817d18b8796ce71b9be858955))
864
+ - Add fontFamily+fontFactorSize; in RENDER_DEFAULTS and buildClientHints passthrough; client-hints model fields related logic ([34a1ee78b](https://github.com/underpostnet/engine/commit/34a1ee78bf8eba5ed1ffca5bad3c92f5eef5c4fd))
865
+ - Add transport status definition for portal entities ([4cf015892](https://github.com/underpostnet/engine/commit/4cf015892eaafd58e6d65f19c7aeeaec3eccfb5e))
866
+ - Implement cyberia-entity-type-default model and EntityEngineCyberia and related logic ([96c8c94ec](https://github.com/underpostnet/engine/commit/96c8c94ec4a0faf506232d3a1059e0c84f83edc6))
867
+ - Add cyberia saga amethyst-strata-expansion custom resources ([6422570ab](https://github.com/underpostnet/engine/commit/6422570ab33b686016bed5f338cbbf8a0395f285))
868
+ - Refactor questCodes field in cyberia-saga model and add actionCodes references ([93ffb7f0b](https://github.com/underpostnet/engine/commit/93ffb7f0bc8097769d3b9f3c4ffbf1c8359af18a))
869
+ - Fix idempotency consistency in atlasSpriteSheetId ref in export / import instance pipeline ([05e62ebbe](https://github.com/underpostnet/engine/commit/05e62ebbe0fc8284ee468b458818e19fc77298bb))
870
+ - Add cyberia-saga documents in import / export cyberia instance pipelines ([e77583fc8](https://github.com/underpostnet/engine/commit/e77583fc8b129a875270ef8d7e1c40d61ecc7a18))
871
+ - Update CLI and saga documentation for skills ([1655a5c87](https://github.com/underpostnet/engine/commit/1655a5c877c712210cbe83a35848896cdc5e4125))
872
+ - CLI seed-skills, import/export, and server defaults skill config ([b2215cce2](https://github.com/underpostnet/engine/commit/b2215cce22c5499579a2df63db0ac301a0553feb))
873
+ - Action engine skill editor with CyberiaSkill CRUD ([7a3f3b8d7](https://github.com/underpostnet/engine/commit/7a3f3b8d71272eee9a3c4fb9218d9152b2023776))
874
+ - Saga generator skills stage and instance persistence ([669d991ca](https://github.com/underpostnet/engine/commit/669d991cac09dedf60b60c7261cb045cb7dd7f71))
875
+ - Skill system - DefaultSkillConfig, gRPC server, CRUD API, and client service ([2e1997ebc](https://github.com/underpostnet/engine/commit/2e1997ebceb03723ea7ffd15ea61d950a3723414))
876
+ - Instance model itemIds schema with defaultPlayerInventory flag ([342df03c3](https://github.com/underpostnet/engine/commit/342df03c3612cc82131b287e1f7545e3fcd7f9f8))
877
+ - Add static entity type and shared direction/stat constants ([86ab2ffca](https://github.com/underpostnet/engine/commit/86ab2ffca38851ce870ee72c37221cbf260e5bd8))
2663
878
 
2664
- ### client-core
879
+ ### cli-fs
2665
880
 
2666
- - Add PanelForm copy markdown option ([8e65564a](https://github.com/underpostnet/engine/commit/8e65564a64728469df1bbb58cfc03fc828e400e4))
2667
- - Add PanelForm Markdown Link Click Handling ([1152759b](https://github.com/underpostnet/engine/commit/1152759b388adffa30cfb7a179bf7f948cc06027))
2668
- - Fix document service search response bug ([04a4e3dc](https://github.com/underpostnet/engine/commit/04a4e3dccc204b0a1dfe1b3743856eb74e3c6194))
2669
- - Remove unused services ([5be25ec9](https://github.com/underpostnet/engine/commit/5be25ec9fcef5dbeda3171ea1be35cddf7ba8a9e))
2670
- - Add Default Management Clear Filter Button and related event listener and logic ([f0a55bab](https://github.com/underpostnet/engine/commit/f0a55bab0dc4362914b8f4a6b6a1ddd9cd90ee79))
2671
- - Fix duplicate notification default management ([e74f9646](https://github.com/underpostnet/engine/commit/e74f964622fb942fec156d261e805334aa5642fa))
881
+ - Isolate Git tracking from JSON storage ([2f9145be9](https://github.com/underpostnet/engine/commit/2f9145be92456124118f9c7d74726bdff82dc5f3))
2672
882
 
2673
883
  ### cli-run
2674
884
 
2675
- - Chore reorder runners keys in static runners attr ([7bebd622](https://github.com/underpostnet/engine/commit/7bebd6221073318bff5c88109e6c1961c45ff860))
2676
-
2677
- ### cli-repository
2678
-
2679
- - Chore rename g8 -> G8 comments and default options ([a624ffdd](https://github.com/underpostnet/engine/commit/a624ffddb8a63ec6367cd9f6ea7429a39d051caa))
2680
- - Fix -g8 flag and related logic ([aef3575b](https://github.com/underpostnet/engine/commit/aef3575b11846fd6a50c88cec01bc243789de4cf))
885
+ - Add typedef UnderpostRunDefaultOptions in cli runner module ([8a3580109](https://github.com/underpostnet/engine/commit/8a3580109d8f70a10c4ac2d216fbd35844e09541))
886
+ - Add resolve runtimeRepo logic in ssh-deploy runner ([1d4c26002](https://github.com/underpostnet/engine/commit/1d4c26002ac513fcde86c8839445e2b82fd55e50))
887
+ - Add generate sibling manifests (pv-pvc, proxy, grpc-service) in instance-build-manifest runner ([36bf33b4b](https://github.com/underpostnet/engine/commit/36bf33b4b2ec34bac3925a4330b4eb5606cf8876))
888
+ - Add dev mode in runner docker-image to trigger dev variant docker hub push ([bc1e23ac0](https://github.com/underpostnet/engine/commit/bc1e23ac0ce5c705e3d2f7b3e47546e1e3c583bb))
889
+ - Fix custom instance artifact generator add custom --trafic flag inteast ([d6873f3c3](https://github.com/underpostnet/engine/commit/d6873f3c300d09f34cf5399f671b86ac5f4b8d55))
890
+ - Add deploy key runner ([6164b0190](https://github.com/underpostnet/engine/commit/6164b0190e59510bdd51bb60d3064ba3a9c32a7b))
891
+ - Add kubernetes-sigs metrics server runner setup ([4761c6351](https://github.com/underpostnet/engine/commit/4761c6351482fe27e84f47d4cf53946f8f04caa6))
2681
892
 
2682
- ### cli-cluster
2683
-
2684
- - Fix unused kind-config-cuda conf on kind cluster ([e0b0cb2e](https://github.com/underpostnet/engine/commit/e0b0cb2eb1b0eafecdb8d0e83a497236d989d5b8))
2685
-
2686
- ### bin-build
893
+ ### cyberia-cli
2687
894
 
2688
- - Fix origin package json sub repo builder switch case ([67505c5f](https://github.com/underpostnet/engine/commit/67505c5f24247141c199422670166f0c8e520fca))
895
+ - Add missing deployment manifests copy to build cyberia-instance dir ([ee71573ee](https://github.com/underpostnet/engine/commit/ee71573eea0e979d883238744bee97714cf0b224))
896
+ - Add publishing functionality for cyberia instances ([aaf8485bf](https://github.com/underpostnet/engine/commit/aaf8485bfd003a39dec59760c5dd2b2ffb051f3d))
897
+ - Add method to fill empty fields in Instance Conf Defaults export process ([6e1c268ae](https://github.com/underpostnet/engine/commit/6e1c268ae755b240abdfcd60ff0f26d2c35a9fe3))
898
+ - Add docker-compose-dev-env-up runner workflow ([9e765185a](https://github.com/underpostnet/engine/commit/9e765185ad782f34cddddbc2862981416a830de4))
899
+ - Add drop-db workflow to clear only cyberia collections ([5b741c22c](https://github.com/underpostnet/engine/commit/5b741c22cda0cf7c9ee531903769d466826cf133))
900
+ - Add sync-src to engine runner logic ([a777e5ad6](https://github.com/underpostnet/engine/commit/a777e5ad69b1069eadb04846010a6d34508ce7c5))
901
+ - Remove seed default dialogues in export instance logic ([1cbcb9e52](https://github.com/underpostnet/engine/commit/1cbcb9e52f1441ae10abb046bf356b49dd7fcfd2))
902
+ - In cyberia instance export / import disabling overlaps queries for now because they can be very expensive and are not strictly necessary for a backup ([b7d7858d6](https://github.com/underpostnet/engine/commit/b7d7858d619edb9feac968c6fce2ac99d5978d24))
2689
903
 
2690
- ### dependencie
904
+ ### cyberia-api
2691
905
 
2692
- - Remove systeminformation and cyberia module dependencies of base core engine ([b81b0a8d](https://github.com/underpostnet/engine/commit/b81b0a8ddaa282a7fece263b26d7ce9d8aa4df5f))
2693
- - Add fast-json-stable-stringify dependencie ([7a0cd142](https://github.com/underpostnet/engine/commit/7a0cd142d601a6f6285925bcec4d54c044569788))
906
+ - Add moderator auth guard in cyberia api CRUD operations endpoints ([0373a052f](https://github.com/underpostnet/engine/commit/0373a052f257577b7afec887d18c982938b8de02))
2694
907
 
2695
- ### engine-cyberia
908
+ ### client-cyberia
2696
909
 
2697
- - Add ObjectLayer modal frame validation fallback ([3f6fe3dd](https://github.com/underpostnet/engine/commit/3f6fe3ddcf7cea48e6946a863dd95b984cdc6f2c))
2698
- - Fix Filter New Object Layer Highlight ([f076e6c2](https://github.com/underpostnet/engine/commit/f076e6c2ff7b7388b9770ccfb2297203e5da1a04))
2699
- - Clean up cyberia client legacy components ([ef85e18b](https://github.com/underpostnet/engine/commit/ef85e18b9e9cfc818977bb93dd74a1ac6b985567))
2700
- - Refactor object layer model schema and add atlas cli sprite sheet generation and API support, with new object-layer-render-frames and atlas-sprite-sheet related models ([f7044c63](https://github.com/underpostnet/engine/commit/f7044c639d93f2b11168ce512bcddc2aff961c10))
910
+ - Add moderator guard for CRUD operations in cyberia components ([f746ea9ce](https://github.com/underpostnet/engine/commit/f746ea9ced0a0dac113129fb26f2d7f6df763f26))
2701
911
 
2702
- ### engine-core
912
+ ### cli-cyberia
2703
913
 
2704
- - Fix default management new item filter in default management component ([a0ae66bd](https://github.com/underpostnet/engine/commit/a0ae66bd2653f4fddeaa926471467b6f7b30576c))
914
+ - Add cyberia run-workflow docker-image local tar builder runner ([a953dec8f](https://github.com/underpostnet/engine/commit/a953dec8f108a4d53d9fde07fae7149f5f0e2dd4))
2705
915
 
2706
- ### engine
916
+ ### cli-image
2707
917
 
2708
- - Converted all the static field initializers to getter methods in package main index.js ([fe11f692](https://github.com/underpostnet/engine/commit/fe11f692414bfef514f27360f8cd23e8ebbd721e))
918
+ - Add --import-tar flag option and logic ([5f00f64c9](https://github.com/underpostnet/engine/commit/5f00f64c9b9c41b6c6220c09c42345f378caee90))
919
+ - Refactor and simplifi image build logic, and add support to load local tar in docker-compose ([f87523253](https://github.com/underpostnet/engine/commit/f8752325363bde9f8d18cefb0b348e570c00d9f9))
2709
920
 
2710
- ## New release v:2.98.0 (2026-01-14)
921
+ ### cluster
2711
922
 
2712
- ### client-core
923
+ - Enhance cluster and disk clean logic ([d9a079f7d](https://github.com/underpostnet/engine/commit/d9a079f7de4add9d7b30c0493d367f620c837d7b))
2713
924
 
2714
- - In file explorer add missing nav path after upload files ([22b9d3e3](https://github.com/underpostnet/engine/commit/22b9d3e33954ff067853928ea9d5ef12987b0e75))
2715
- - Simplify fileexplorer mimetype file info display from table files to edit modal ([ae441743](https://github.com/underpostnet/engine/commit/ae44174343ff059d8bb3439afa2d890936c29e29))
2716
- - Implements file explorer document edit feature ([e5a8a84e](https://github.com/underpostnet/engine/commit/e5a8a84edda93d7009fb3920b0d69bc93249a4cb))
2717
- - Implements Minimal Custom Pagination for File Explorer ([acf953b7](https://github.com/underpostnet/engine/commit/acf953b734a9af26f9ba63422cd6b0a2d9a2eade))
2718
- - Add clean search box history on logout event ([ffb07e12](https://github.com/underpostnet/engine/commit/ffb07e12e0c407dc1d17410d4fb2a844cdc18124))
2719
- - Filter Document Search by idPanel Tag ([4f473489](https://github.com/underpostnet/engine/commit/4f473489a2703ea0fb155b6fa04eccd0dfb85d40))
2720
- - Cleanup document model and streamline search logic ([9e3eebc7](https://github.com/underpostnet/engine/commit/9e3eebc75c8120949df22ebcfa62c9248a1d7897))
2721
- - Fix Epiphany responsive screen orientation compatibility ([c0e42ccd](https://github.com/underpostnet/engine/commit/c0e42ccdd1baa71f77fd41cfbbedf5b60a1ea0cc))
2722
- - Implement preventing Orphaned Files in Document Service ([2f35476d](https://github.com/underpostnet/engine/commit/2f35476dd94baf46e533005a9d20ab3e4512a064))
2723
- - Implement filter query default management browser navigation handler ([31dc83ba](https://github.com/underpostnet/engine/commit/31dc83bac5bb2bc2e8cea523890e9d161c89cae6))
2724
- - Fix auto save on cell edit in Default Management ([607d0085](https://github.com/underpostnet/engine/commit/607d00858198db401876a88a790a322c33d407c3))
925
+ ### catalog
2725
926
 
2726
- ## New release v:2.97.5 (2026-01-12)
927
+ - Add copies and moves options in catalog build logic ([b1940e067](https://github.com/underpostnet/engine/commit/b1940e067a9961581998e9adfd6ba39c62f35735))
2727
928
 
2728
- ### cli-db
929
+ ### engine-prototype
2729
930
 
2730
- - Implements orphaned file clean collections workflow. ([c69763c0](https://github.com/underpostnet/engine/commit/c69763c0c4b04c98cb88011e77ca48668a157c8b))
2731
- - Add missing js docs comments ([e85df3ec](https://github.com/underpostnet/engine/commit/e85df3ec02468ae4241f97c3b301982ec0f0dd50))
931
+ - Remove ssr prototype components from base engine ([4f3e04f4b](https://github.com/underpostnet/engine/commit/4f3e04f4b5fcaca831139f4cdcd6ce871b50297d))
2732
932
 
2733
- ### client-core
933
+ ### grpc-cyberia
2734
934
 
2735
- - Add js docs comments in src/client/services/core/core.service.js ([a81a1ad8](https://github.com/underpostnet/engine/commit/a81a1ad85556ab706179fee175e7b6c2a95c1945))
2736
- - Centralizing Query Param Handling in Services with generic abstract method ([2ac38972](https://github.com/underpostnet/engine/commit/2ac38972edacd643d6c33f4a7d700fcb2e1e4f82))
2737
- - Implements file explorer public toggle document switch ([580831d7](https://github.com/underpostnet/engine/commit/580831d7af37276b70449ccff96ec2da45828c0d))
2738
- - Rename @private to @method js docs ([8e85094c](https://github.com/underpostnet/engine/commit/8e85094ca86b7dad373faa6ef2acd911cdce9170))
2739
- - Implements base server data query SSRM pagination ([6341984c](https://github.com/underpostnet/engine/commit/6341984c2c54c39c9933a10a5dca844937283d83))
2740
- - Remove unused /sh core api path ([47e47526](https://github.com/underpostnet/engine/commit/47e4752655eddf06d264aa7d4c7ab1a6ffc8fd5f))
2741
- - Implement client file service get blob by id generic switch use case with data defualt mode ([64686b61](https://github.com/underpostnet/engine/commit/64686b615232c5c59591c358962c64b2c846fcbe))
2742
- - Implements in api service file document ownership authorization validation ([d6663ca1](https://github.com/underpostnet/engine/commit/d6663ca1e70dd67ea9bb4848caf7b3e5dacab456))
2743
- - Fix urlFactory abstraction method ([3cbe674f](https://github.com/underpostnet/engine/commit/3cbe674f5d8774437dd5235a5e1cee7bc34a5da0))
2744
- - Improve cloud component transfer files to content componentn to render logic ([167f6a0d](https://github.com/underpostnet/engine/commit/167f6a0d9cd3ca141be9d4240eecaebca53c8e57))
2745
- - Improve user profile image logic render ([451ffdf6](https://github.com/underpostnet/engine/commit/451ffdf613d4a44f9d09a112852cc1485c0a6973))
2746
- - Remove getDefaultProfileImageId, and simplify case use static resource avatar. ([1b64f824](https://github.com/underpostnet/engine/commit/1b64f824e45ad95938f93aa3a5b35b42499cf263))
2747
- - Remove dotenv on object-layer module ([cf5173d9](https://github.com/underpostnet/engine/commit/cf5173d95199470a9314173403cad479d0372d67))
2748
- - Refactor and improve ux SPA public profile navigation consistency ([04d16bb6](https://github.com/underpostnet/engine/commit/04d16bb6565f8387e061df4fa06e33c88ebb9513))
2749
- - Fix chat socket io sub path connections ([b2aade8a](https://github.com/underpostnet/engine/commit/b2aade8a2ca0151ecb3e1ee4fee67b64ed9343e1))
2750
- - Refactor public profile routing and user info handling ([cc6080a5](https://github.com/underpostnet/engine/commit/cc6080a5900b86b94def226b099777d642dde092))
2751
- - Remove unused pathOptions in setQueryPath ([4691f33e](https://github.com/underpostnet/engine/commit/4691f33eb3392ddca92fa097ab1e74e7c0a37fb1))
2752
- - Implement and simplify dynamic public profile modal update ([30e9f2a8](https://github.com/underpostnet/engine/commit/30e9f2a82a40bbc71a7fd6a64e3ca0298b8e93d5))
2753
- - Implement public profile SPA navigation ([01d1061e](https://github.com/underpostnet/engine/commit/01d1061e032085182b128bcf34750ee40dc14028))
2754
- - Fix panel component: Add conditional onclick clean-file event ([3056c767](https://github.com/underpostnet/engine/commit/3056c76724d1703e9cdad54d24c3cd092952449d))
2755
- - Add public profile view in underpost client ([ca459d3b](https://github.com/underpostnet/engine/commit/ca459d3b30d2f3010dd4522f3325d6b1f5afe25f))
2756
- - Implements username URI-Safe validator ([d0a17614](https://github.com/underpostnet/engine/commit/d0a17614a47213245a4c53aedecbe0887edbb644))
2757
- - Implement PublicProfile onObserverListener ([935f43f6](https://github.com/underpostnet/engine/commit/935f43f6c85aab826fc1c59b0a0f8baed84d0dd8))
2758
- - Add public profile public api endpoint ([2a419dff](https://github.com/underpostnet/engine/commit/2a419dffc8a60a8864128459efac5533d480004f))
2759
- - Add PublicProfile component and user profile settings ([60dee0a8](https://github.com/underpostnet/engine/commit/60dee0a82dfcf1a779bb41c0909db09433bd4c6d))
2760
- - Add public profile and brewDescription in user model and account update related logic. ([6700fc5e](https://github.com/underpostnet/engine/commit/6700fc5e4046d91122d7a1e597ead742a9f75119))
2761
- - Refactor SearchBox.RecentResults to ensure only serializable data is persisted to localStorage (excluding DOM elements). ([896480c2](https://github.com/underpostnet/engine/commit/896480c25ab4aa70691c3fdf8d33176a96945e91))
2762
- - Implements historySearchBox with SearchBox.RecentResults consistency ([e9088ccf](https://github.com/underpostnet/engine/commit/e9088ccf1f6f22dcf2ea76989b9fc5347b3de189))
2763
- - Refactor underpost panel utf8 file handling and improve panel form file upload and header render user logic ([89ffa667](https://github.com/underpostnet/engine/commit/89ffa6677ea8088717427faccc33548cc44acdbe))
2764
- - Improve PanelForm uploader avatar username render ([acfa25b6](https://github.com/underpostnet/engine/commit/acfa25b6601178621e0b5cdfed2f26c97a2b10f2))
2765
- - Rename panel form profile label ([fcd14d5c](https://github.com/underpostnet/engine/commit/fcd14d5c8dc84ca73d796155f419d1bccc1efab1))
2766
-
2767
- ### clinet-core
2768
-
2769
- - Improve public profile RouterEvents logic ([3e0ad850](https://github.com/underpostnet/engine/commit/3e0ad850dfdfeb3433be081177b1ced2fb13a22e))
2770
-
2771
- ## New release v:2.97.1 (2026-01-04)
935
+ - Add behavior passthrough in entity defaults merge ([7998df262](https://github.com/underpostnet/engine/commit/7998df26276de1693054bbf3eb00a368edccfb67))
936
+ - Fix merge entity defaults logic, preventing cross-instance entity defaults overlap ([0d64d6b8f](https://github.com/underpostnet/engine/commit/0d64d6b8ff40a1a889df9c767aa90052a08656f5))
2772
937
 
2773
- ### conf
938
+ ### cyberia-instance-engine
2774
939
 
2775
- - Update default confs js with the last deploys conf changes ([f73782bf](https://github.com/underpostnet/engine/commit/f73782bf829dd7d07075d0ba34691c936e096c4e))
940
+ - Implement handler for authoritative initial spawn for new players connections logic and aoi radius customization in intance engine component ([89d68aca0](https://github.com/underpostnet/engine/commit/89d68aca0152d1800d6632cddbd428409845a58a))
2776
941
 
2777
- ### client-core
942
+ ### cyberia-map-engine
2778
943
 
2779
- - Improve profile Image Avatar Implementation logic render ux/ui ([cd094651](https://github.com/underpostnet/engine/commit/cd09465133b8f5ff941a8ff376f7a036d4b56499))
2780
- - Improve Public Tag Visibility and auth logic ([58d20ef7](https://github.com/underpostnet/engine/commit/58d20ef7078df2688abbc6941c19f4d90e2eb235))
2781
- - Fix Search Box scroll tracking logic on pointer search box history ([abc91914](https://github.com/underpostnet/engine/commit/abc91914a47e7e60ce8f3c7ae9be6b8950d5f86f))
2782
- - Improve styles logic Search Box Icon and Panel Title ([b7093e31](https://github.com/underpostnet/engine/commit/b7093e31324316daf5c955849232abc7f3406821))
2783
- - Improve document search service with Optimization Strategy regex ([6ac9a165](https://github.com/underpostnet/engine/commit/6ac9a165ea8efd29fdbdd1de55b08053d2780918))
2784
- - Improve Unified Active/Selected States style panel form tags ([59d0fa67](https://github.com/underpostnet/engine/commit/59d0fa676627734a57a386047b373d612f9963db))
2785
- - Improve panel form styles ([4931fa45](https://github.com/underpostnet/engine/commit/4931fa4507a4d3c82fd321a23fcbc71821d15009))
2786
- - SearchBox Refactoring add auth search box Security rules ([ee547ad9](https://github.com/underpostnet/engine/commit/ee547ad99f9a7a97e4c6e9cb0212f8d015ce026d))
2787
- - Implement and Abstract Modal SearchBox Core Component, and custom document search provider for underpost client. ([afdbfbc4](https://github.com/underpostnet/engine/commit/afdbfbc41eb654c1296c6189e0c8998a8ed3b8e7))
2788
-
2789
- ### client-clore
2790
-
2791
- - Implement PanelForm creator avatar username option render ([424a4a05](https://github.com/underpostnet/engine/commit/424a4a05f463dd722d8062d29f55743dbff369dc))
2792
-
2793
- ### cli-baremetal
2794
-
2795
- - Improve Ubunut and Rocky chroot Linux Provisioning steps ([704a4e3b](https://github.com/underpostnet/engine/commit/704a4e3b66215cb45cc8307f041270be26120f24))
2796
- - Refactor the `downloadUbuntuLiveISO` function to a generic `downloadISO` ([fc8e7a5e](https://github.com/underpostnet/engine/commit/fc8e7a5e538a564da865db69a23d56598f4fe9b7))
2797
- - Reorder options workflow run tasks ([650c4f2a](https://github.com/underpostnet/engine/commit/650c4f2a7f821ebfc20ca7b9860ee47c5740d6b7))
2798
- - Add rockyTools flags to Provisioning steps for Rocky Linux-based systems. ([e57c3cdc](https://github.com/underpostnet/engine/commit/e57c3cdcdb56278687b1bb813f5703c979f2bba7))
2799
- - Refactored the baremetal kernel boot parameter construction to use OS family identification (`osIdLike`) from workflow configuration instead of hostname pattern matching. Also renamed the `chroot` type to `chroot-debootstrap` for clarity. ([775c70ad](https://github.com/underpostnet/engine/commit/775c70ad9569c0301583e209d3127163367e9482))
2800
- - Implements Dracut NFS multiple version options ([700b407a](https://github.com/underpostnet/engine/commit/700b407a20c94f32f59dda912df42bc9cadead12))
2801
- - Improve PXE iPXE kernel load workflow ([650440e0](https://github.com/underpostnet/engine/commit/650440e0aa47aa4e88efb26038a4a58d0c90dc7d))
2802
- - Improve mountBinfmtMisc mountCmds and unMountCmds logic ([231b245b](https://github.com/underpostnet/engine/commit/231b245b0bbad1cc529d105459cc0fcff28d2d33))
2803
- - Implement ipxeEfiFactory and improve iPXE shouldRebuild logic after cleanup tftp directory ([10511e3c](https://github.com/underpostnet/engine/commit/10511e3c0e621ba384d87507a635dfaa7d4b8ab0))
2804
- - Implements base Rocky9 ARM64 NFS Chroot Workflow ([b642f225](https://github.com/underpostnet/engine/commit/b642f22557ab42cf6a7b6d9a0da5203ec70c9752))
2805
- - Implements base rpi4mbarm64-chroot-rocky9 commission workflow ([d9524632](https://github.com/underpostnet/engine/commit/d95246327095889b04db88b478601ab266d2127b))
944
+ - Add checkbox removeOnClick and enhance ui / ux ([5b557256f](https://github.com/underpostnet/engine/commit/5b557256fd17790913e9628440bd6e125d92ee0d))
945
+ - Add in client component MapEngineCyberia.js renameFilteredObjectLayerItemId with random factor ([c6519a1c0](https://github.com/underpostnet/engine/commit/c6519a1c0b3dfab9ba7856e3dd03914bd14a846a))
2806
946