@underpostnet/cyberia 3.3.77 → 3.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +1 -0
- package/.github/workflows/coverall.cyberia.ci.yml +12 -3
- package/.github/workflows/cyberia-client.cd.yml +2 -1
- package/.github/workflows/cyberia-server.cd.yml +2 -1
- package/.github/workflows/docker-image.cyberia-client.ci.yml +1 -1
- package/.github/workflows/docker-image.cyberia-client.dev.ci.yml +1 -1
- package/.github/workflows/docker-image.cyberia-server.ci.yml +1 -1
- package/.github/workflows/docker-image.cyberia-server.dev.ci.yml +1 -1
- package/.github/workflows/docker-image.engine-cyberia.ci.yml +1 -1
- package/.github/workflows/docker-image.engine-cyberia.dev.ci.yml +1 -1
- package/.github/workflows/engine-cyberia.ci.yml +6 -0
- package/.github/workflows/ghpkg.ci.yml +19 -2
- package/.github/workflows/gitlab.ci.yml +8 -6
- package/.github/workflows/hardhat.ci.yml +4 -1
- package/.github/workflows/npmpkg.ci.yml +9 -5
- package/.github/workflows/publish.ci.yml +21 -12
- package/.github/workflows/publish.cyberia.ci.yml +25 -14
- package/.github/workflows/pwa-microservices-template-page.cd.yml +4 -2
- package/CHANGELOG.md +75 -140
- package/CLI-HELP.md +28 -1
- package/Dockerfile +1 -1
- package/Dockerfile.dev +1 -1
- package/Dockerfile.test +1 -1
- package/README.md +1 -1
- package/bin/build.js +2 -4
- package/bin/cyberia.js +4 -4
- package/bin/index.js +4 -4
- package/compose.env +1 -0
- package/conf.js +1 -1042
- package/deploy/cyberia-client/deploy.sh +13 -11
- package/deploy/cyberia-server/deploy.sh +13 -11
- package/deploy/dd-cyberia/sync-deploy.sh +7 -28
- package/deploy/lib/config.sh +1 -1
- package/deploy/lib/github-actions-logging.sh +3 -2
- package/deploy/pwa-microservices-template/deploy.sh +7 -1
- package/deployment.yaml +1 -1
- package/docker-compose.yml +7 -7
- package/docs/coverage/cyberia/api/cyberia-instance/cyberia-fallback-capture.js.html +1 -1
- package/docs/coverage/cyberia/api/cyberia-instance/index.html +1 -1
- package/docs/coverage/cyberia/api/cyberia-server-defaults/cyberia-server-defaults.js.html +1 -1
- package/docs/coverage/cyberia/api/cyberia-server-defaults/index.html +1 -1
- package/docs/coverage/cyberia/api/object-layer/index.html +1 -1
- package/docs/coverage/cyberia/api/object-layer/object-layer.model.js.html +1 -1
- package/docs/coverage/cyberia/index.html +1 -1
- package/docs/coverage/cyberia/projects/cyberia/atlas-sprite-sheet-generator.js.html +1 -1
- package/docs/coverage/cyberia/projects/cyberia/index.html +1 -1
- package/docs/coverage/cyberia/projects/cyberia/instance-backup.js.html +1 -1
- package/docs/coverage/cyberia/projects/cyberia/instance-data.js.html +1 -1
- package/docs/coverage/cyberia/projects/cyberia/shape-generator.js.html +1 -1
- package/docs/coverage/cyberia/projects/cyberia/stat-balance.js.html +1 -1
- package/hardhat/package-lock.json +6 -6
- package/hardhat/package.json +2 -2
- package/manifests/cronjobs/dd-cron/dd-cron-backup.yaml +1 -1
- package/manifests/cronjobs/dd-cron/dd-cron-vultr.yaml +1 -1
- package/manifests/deployment/dd-cyberia-development/deployment.yaml +1 -1
- package/manifests/deployment/dd-default-development/deployment.yaml +2 -2
- package/package.json +19 -17
- package/scripts/test-monitor.sh +1 -1
- package/src/api/file/file.router.js +7 -1
- package/src/cli/baremetal.js +1 -1
- package/src/cli/docker-compose.js +1 -1
- package/src/cli/index.js +36 -0
- package/src/cli/kubectl.js +4 -3
- package/src/cli/release.js +2 -0
- package/src/cli/repository.js +7 -2
- package/src/cli/run.js +1 -1
- package/src/cli/secrets.js +393 -200
- package/src/cli/socketsecurity.js +260 -0
- package/src/client/components/core/CssCore.js +3 -0
- package/src/client/components/core/Modal.js +160 -36
- package/src/client/components/core/SearchBox.js +0 -1
- package/src/client/components/underpost/AppShellUnderpost.js +13 -1
- package/src/client/components/underpost/CssUnderpost.js +15 -2
- package/src/client/public/cyberia-docs/CYBERIA-CLIENT.md +8 -0
- package/src/client/public/cyberia-docs/CYBERIA.md +1 -1
- package/src/client/public/cyberia-docs/OFF-CHAIN-ECONOMY.md +54 -56
- package/src/client/public/cyberia-docs/ROADMAP.md +1 -1
- package/src/client/public/cyberia-docs/UNDERPOST-PLATFORM.md +30 -29
- package/src/client/public/cyberia-docs/WHITE-PAPER.md +1 -1
- package/src/client/ssr/body/UnderpostDefaultSplashScreen.js +54 -25
- package/src/client/ssr/head/Css.js +12 -10
- package/src/client/ssr/views/Cyberia404.js +6 -10
- package/src/client/ssr/views/NotFound.js +75 -0
- package/src/client-builder/client-bundle.js +2 -2
- package/src/index.js +13 -1
- package/src/runtime/engine-cyberia/Dockerfile +1 -1
- package/src/runtime/engine-cyberia/Dockerfile.dev +1 -1
- package/src/runtime/engine-cyberia/Dockerfile.test +1 -1
- package/src/runtime/engine-cyberia/compose.env +1 -0
- package/src/runtime/engine-cyberia/docker-compose.yml +7 -7
- package/src/server/build/catalog.js +1 -0
- package/src/server/build/execution.js +19 -5
- package/src/server/build/package.js +166 -3
- package/src/server/build/testing.js +2 -1
- package/src/server/runtime/conf.js +21 -0
- package/src/server/runtime/config-scope.js +2 -0
- package/src/server/runtime/process.js +4 -3
- package/src/server/security/socketsecurity.js +1735 -0
- package/test/integration/infra/1-security/config-scope.test.js +3 -0
- package/test/integration/infra/1-security/socketsecurity.test.js +1041 -0
- package/test/integration/infra/1-security/sops-secret-store.test.js +201 -71
- package/test/unit/build-template.test.js +24 -0
- package/test/unit/deploy-log-table.test.js +38 -0
- package/test/unit/execution-profiles.test.js +1 -0
- package/test/unit/package.test.js +118 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,80 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 2026-09-
|
|
3
|
+
## 2026-09-15
|
|
4
|
+
|
|
5
|
+
### github-actions
|
|
6
|
+
|
|
7
|
+
- Remove Git LFS from GitLab mirror push pipeline ([8be008098](https://github.com/underpostnet/engine/commit/8be008098439082de109e4b702d3c9b8b786064d))
|
|
8
|
+
- Drop the template Pages auto-enablement and owner build override ([c6e9dfd08](https://github.com/underpostnet/engine/commit/c6e9dfd08648d09ff2b21594467538339d2486f1))
|
|
9
|
+
- Publish the template Pages under the triggering owner ([bbdbce2e4](https://github.com/underpostnet/engine/commit/bbdbce2e460e8f7b4a345b9580172dc65225fb9a))
|
|
10
|
+
- Scope the template package publish to the underpostnet owner ([7bea0bdee](https://github.com/underpostnet/engine/commit/7bea0bdee5479d48dbae55edd251c41bd2e0f195))
|
|
11
|
+
- Add new owner repository scope based on organization ([7d9fdde93](https://github.com/underpostnet/engine/commit/7d9fdde9345b6dc6681e7b27be3f536246bc03c9))
|
|
12
|
+
- Dispatch the org mirror per pushed repository ([cdc80e951](https://github.com/underpostnet/engine/commit/cdc80e951b090832b6edc6ea103215e9f8bdd97a))
|
|
13
|
+
- Reject staged node_modules in the template package publish ([2040f7717](https://github.com/underpostnet/engine/commit/2040f7717fc7a0a1ba02d80e5bd3ba57194848f9))
|
|
14
|
+
- Mirror releases to the organization with owner-scoped packages ([34eaadaf8](https://github.com/underpostnet/engine/commit/34eaadaf8545f6878b9a76759a5510f14d8469e8))
|
|
15
|
+
|
|
16
|
+
### engine-cyberia
|
|
17
|
+
|
|
18
|
+
- Add the GitHub org name to the compose environment ([4331754f1](https://github.com/underpostnet/engine/commit/4331754f1003247610ac09f62e120e90139250f4))
|
|
19
|
+
|
|
20
|
+
### cyberia-docs
|
|
21
|
+
|
|
22
|
+
- Document the wasm-driver stream diagnostic flags ([9f4e122ef](https://github.com/underpostnet/engine/commit/9f4e122efd6f01305adbdb03ef9793c8b913e6fd))
|
|
23
|
+
- Reflow the economy and platform architecture docs ([f7ce74cd2](https://github.com/underpostnet/engine/commit/f7ce74cd202cd9617698188b2e6265ff7c94c66e))
|
|
24
|
+
|
|
25
|
+
### ssr-cyberia
|
|
26
|
+
|
|
27
|
+
- Keep the Cyberia 404 page on the requested URI ([3449cf79d](https://github.com/underpostnet/engine/commit/3449cf79d3e60bb63a9f04a6a166cc4f463b787c))
|
|
28
|
+
|
|
29
|
+
### client
|
|
30
|
+
|
|
31
|
+
- Add a default NotFound status page for PWA clients ([6d646ded8](https://github.com/underpostnet/engine/commit/6d646ded8431dc8e44bd6be25267e5ce62f76cd2))
|
|
32
|
+
- Mirror the Underpost 50px top and bottom bars in the SSR splash ([7cc74f207](https://github.com/underpostnet/engine/commit/7cc74f2071863836a48ae877d13dc70c7c318dc4))
|
|
33
|
+
|
|
34
|
+
### deploy
|
|
35
|
+
|
|
36
|
+
- Pin the per-deploy engine source repositories in the sync deploys ([e0d01e2c1](https://github.com/underpostnet/engine/commit/e0d01e2c16f224cf7766b8e4aafa0429dca9a02c))
|
|
37
|
+
- Open the merged stream before the error stream in run_quiet ([ce2b9eba9](https://github.com/underpostnet/engine/commit/ce2b9eba997792f27ecfc621c551f15ad58896b6))
|
|
38
|
+
|
|
39
|
+
### cli-release
|
|
40
|
+
|
|
41
|
+
- Run security audit and clean deploy ID artifacts in release pipeline ([4163efe74](https://github.com/underpostnet/engine/commit/4163efe745025a70de1b64f1e30294bf1ec29db7))
|
|
42
|
+
|
|
43
|
+
### package
|
|
44
|
+
|
|
45
|
+
- Move nodemon to base dependencies ([7732e00ad](https://github.com/underpostnet/engine/commit/7732e00adbddc2a56f8d2f918accc1316cd687b1))
|
|
46
|
+
|
|
47
|
+
### deploy-cyberia
|
|
48
|
+
|
|
49
|
+
- Simplify sync-deploy script using build conf ([65b5d8c05](https://github.com/underpostnet/engine/commit/65b5d8c05d47f43d8e49fa6eb8a4644b85b57f2e))
|
|
50
|
+
|
|
51
|
+
### engine
|
|
52
|
+
|
|
53
|
+
- Keep non-literal dynamic imports out of the esbuild graph walk ([9b5634567](https://github.com/underpostnet/engine/commit/9b5634567f2d13e534b694ec733f0c420234d3b0))
|
|
54
|
+
- Walk the runtime import graph with esbuild instead of regexes ([067c86467](https://github.com/underpostnet/engine/commit/067c8646715fbcf39b194c9b7a0c3c5b4b845313))
|
|
55
|
+
- Generate the template .gitignore from the engine rules ([4f12f11e0](https://github.com/underpostnet/engine/commit/4f12f11e0070db426cec2f8fe8f4708278087029))
|
|
56
|
+
- Log the copied clipboard length instead of its content ([6541792db](https://github.com/underpostnet/engine/commit/6541792dba3366b2fbb3db5cd229c99adb38cfc8))
|
|
57
|
+
|
|
58
|
+
### client-core
|
|
59
|
+
|
|
60
|
+
- Shell the Underpost menu around the sliding top and bottom bars ([a748e88b9](https://github.com/underpostnet/engine/commit/a748e88b987b4d36a8b5ff50bb4896c42c5b85b8))
|
|
61
|
+
- Add updateBarCustomVisibility to home button toggle to restore top scroll ([451e5ce62](https://github.com/underpostnet/engine/commit/451e5ce62542c47ab574970c2446f3fd60ea0747))
|
|
62
|
+
|
|
63
|
+
### cli
|
|
64
|
+
|
|
65
|
+
- Redact the Maas token secret from the baremetal log ([4f8c55c76](https://github.com/underpostnet/engine/commit/4f8c55c76f278d059e730bfe95f5193fb1d41cee))
|
|
66
|
+
- Quote host command arguments in repository writes and pod exec ([ce5b59260](https://github.com/underpostnet/engine/commit/ce5b5926087980664f09ab516dfcc5a5d130034a))
|
|
67
|
+
- Add the Socket.dev supply-chain audit command ([8294fb557](https://github.com/underpostnet/engine/commit/8294fb557ac19e65627b6534509c1b31c7231f30))
|
|
68
|
+
|
|
69
|
+
### api
|
|
70
|
+
|
|
71
|
+
- Gate the full file listing behind the admin guard ([32872740a](https://github.com/underpostnet/engine/commit/32872740ab91e2c3986bef843c6a5b931e222af3))
|
|
72
|
+
|
|
73
|
+
### cli-secrets
|
|
74
|
+
|
|
75
|
+
- Rotate GitHub Actions secrets under user and org targets ([3676dcdf5](https://github.com/underpostnet/engine/commit/3676dcdf5f5b194ccaedfabb9fdeea32658e082c))
|
|
76
|
+
|
|
77
|
+
## New release v:3.3.77 (2026-09-13)
|
|
4
78
|
|
|
5
79
|
### test
|
|
6
80
|
|
|
@@ -718,142 +792,3 @@
|
|
|
718
792
|
|
|
719
793
|
- Fix instance selection play URL for default instance code ([efec4a34e](https://github.com/underpostnet/engine/commit/efec4a34edbfb3aae780a42b02ad64d4d93791a1))
|
|
720
794
|
|
|
721
|
-
## New release v:3.2.80 (2026-07-23)
|
|
722
|
-
|
|
723
|
-
### engine-cyberia
|
|
724
|
-
|
|
725
|
-
- Implement dynamically build cyberia instance package.json full reference ([4127836f0](https://github.com/underpostnet/engine/commit/4127836f0f2cf2d74f1762fb1379921b283c3429))
|
|
726
|
-
- Fix missing add cyberia dependency in engine-cyberia docker image ([b3d6c4dec](https://github.com/underpostnet/engine/commit/b3d6c4decc23b72ede1958cd158a82a356f10b70))
|
|
727
|
-
- Fix dynamic build instance codes logic ([cb380b335](https://github.com/underpostnet/engine/commit/cb380b3354eaa720ee225c66e17270737616f081))
|
|
728
|
-
- Refactor INSTANCE_CODES Dynamic build inputs access docker image workflows ([bf1cb6c74](https://github.com/underpostnet/engine/commit/bf1cb6c7466415982b34176b70050622a6681acf))
|
|
729
|
-
- Add map preview PNG rendering and preview route in instance map API ([82150a18a](https://github.com/underpostnet/engine/commit/82150a18ad627f29425cb60aaa08850762f18f69))
|
|
730
|
-
- Add multi-instance code support in Dockerfiles with saga copying ([6b902ba86](https://github.com/underpostnet/engine/commit/6b902ba860b235d00b0b69244f9f25c6f589d128))
|
|
731
|
-
- Add multi-instance topology and per-variant compose routing ([4336c024c](https://github.com/underpostnet/engine/commit/4336c024cb3f98e394cc06f5bab038a93d9b3e4b))
|
|
732
|
-
- Add hot reload endpoint and map preview route ([3c7658911](https://github.com/underpostnet/engine/commit/3c76589115d907a74d42081c753fd7f3bf5be946))
|
|
733
|
-
- Add map preview caching for fallback world nodes ([55052ec54](https://github.com/underpostnet/engine/commit/55052ec54119ccb06366dae712f23cd503de91f0))
|
|
734
|
-
- Fix demo quests with actions quest related ([c41feae1a](https://github.com/underpostnet/engine/commit/c41feae1a408b7b9ec56abdd29978b0177c44dfa))
|
|
735
|
-
- Add REST boot fallback endpoints for gRPC CyberiaDataService ([57b698836](https://github.com/underpostnet/engine/commit/57b6988369a0492c18c2df3155630af5a2e8fbb6))
|
|
736
|
-
- Add portalSubtype field and refactor instance map with presence POI system ([fa551a11d](https://github.com/underpostnet/engine/commit/fa551a11dba7cedf18f1cca1bcdb0c11d7a1b57f))
|
|
737
|
-
- Add map preview for Instance Map node backgrounds ([849095cf2](https://github.com/underpostnet/engine/commit/849095cf21fc52e7666be102054b7abfd3b7e738))
|
|
738
|
-
- Add instance map REST endpoints (static graph + dynamic provider activity) ([dc83f8dc0](https://github.com/underpostnet/engine/commit/dc83f8dc03a1ed4aeea606bc3b2aed746cc09336))
|
|
739
|
-
- Update cyberia base lore and introduce Fragmentation concept and refactor weakness narrative of nova faction ([823d69cc9](https://github.com/underpostnet/engine/commit/823d69cc99fb410e5d4a7161baeff28b4f9f6684))
|
|
740
|
-
- Add more demo quests to fallback world ([d0de569bd](https://github.com/underpostnet/engine/commit/d0de569bd2ab987ff7881263f80ab8953ef4f241))
|
|
741
|
-
- Increase portalHoldTimeMs default value ([5d8028120](https://github.com/underpostnet/engine/commit/5d802812012c53942f699763dba24948865f4936))
|
|
742
|
-
|
|
743
|
-
### cli-release
|
|
744
|
-
|
|
745
|
-
- Add cyberia docker-compose bump version file match ([f3eeefeea](https://github.com/underpostnet/engine/commit/f3eeefeeabe377fe4c5db65e1d2d480841f9d2cd))
|
|
746
|
-
|
|
747
|
-
### cyberia-client
|
|
748
|
-
|
|
749
|
-
- Add instance selection view and portal navigation ([9f8ebc5d1](https://github.com/underpostnet/engine/commit/9f8ebc5d147225e0710923392f9b659e20725e60))
|
|
750
|
-
- Improve cyberia portal landing ([57dbaed22](https://github.com/underpostnet/engine/commit/57dbaed228b2ae58202729b6ac9d751c0405a93f))
|
|
751
|
-
- Add Instance sub-path dashboard prefix handle ([958f65929](https://github.com/underpostnet/engine/commit/958f65929a42084c0d4cf3876d3a4fef1fdc7236))
|
|
752
|
-
- Add hot reload UI in instance editor ([ee90a2018](https://github.com/underpostnet/engine/commit/ee90a20180fa8c88f249f3efec0a7fb6258f9e5f))
|
|
753
|
-
- Replace stat icons with PNG images in object layer engine ([7f03972ef](https://github.com/underpostnet/engine/commit/7f03972efcae0ce99493cf65ed96333a59616320))
|
|
754
|
-
- Add center action button to menu modal ([f70ba2d3c](https://github.com/underpostnet/engine/commit/f70ba2d3cb8022f3f2873f0c36fe1cd792dd29d2))
|
|
755
|
-
- Update default fontFamily in SharedDefaultsCyberia module ([868dffa9f](https://github.com/underpostnet/engine/commit/868dffa9f8effb15f694cb8e3f5dd135410243dc))
|
|
756
|
-
|
|
757
|
-
### cyberia-api
|
|
758
|
-
|
|
759
|
-
- Add fallback TEST world to instance selection list ([b93f30586](https://github.com/underpostnet/engine/commit/b93f3058694eafc384ac5b50d24093f4a30f6f00))
|
|
760
|
-
|
|
761
|
-
### github-actions
|
|
762
|
-
|
|
763
|
-
- Fix cyberia github package publish workflow ([fc1bac41d](https://github.com/underpostnet/engine/commit/fc1bac41daf1029962b71d45e73d32780c3b45a5))
|
|
764
|
-
- Fix cyberia-client 404 page build ([a55bcb797](https://github.com/underpostnet/engine/commit/a55bcb797166ecb6d93ccb0ac6814b7b31c6138e))
|
|
765
|
-
- Update engine-cyberia.cd.yml clean assets directory ([ce365cf77](https://github.com/underpostnet/engine/commit/ce365cf77c325a69df1d3614332f9f584c6cd0e3))
|
|
766
|
-
- Update engine-cyberia CD workflow add pull storage assets ([0ee2404f1](https://github.com/underpostnet/engine/commit/0ee2404f1506ce8f4221602b3c73b4a704a1a44d))
|
|
767
|
-
- Fix npm install command in engine-cyberia CD workflow ([7974ab422](https://github.com/underpostnet/engine/commit/7974ab422d64c482a53a745a834b58b3e623d85d))
|
|
768
|
-
- Add image-pull-policy Always in cyberia-server and cyberia-client CD pipeline ([a134c5be2](https://github.com/underpostnet/engine/commit/a134c5be23b067e9fcc7ed8589243d341ca9607a))
|
|
769
|
-
- Set default variant of underpost engine docker image in release workflow ([f3e47bdc6](https://github.com/underpostnet/engine/commit/f3e47bdc660d1074ab04a48a769e9cbf512eb4f8))
|
|
770
|
-
|
|
771
|
-
### cli-cyberia
|
|
772
|
-
|
|
773
|
-
- Add multi-instance sub-path support to hot reload trigger ([f0e0fda7a](https://github.com/underpostnet/engine/commit/f0e0fda7aa23e38466024c0258a17e94386fab9c))
|
|
774
|
-
- Add build-cyberia-404 workflow and 404 page ([51d35594f](https://github.com/underpostnet/engine/commit/51d35594f76e15b4385084d3b7a1d696b0faaf8d))
|
|
775
|
-
- Add Dynamically resolve instance codes in build-manifest runner ([97997df14](https://github.com/underpostnet/engine/commit/97997df14d16ff485fd30001a54f99cc9227b69b))
|
|
776
|
-
- Refactor multi-instance conf structure and respective workflows ([0e607e4c5](https://github.com/underpostnet/engine/commit/0e607e4c5d269fb1048b0ab510e2a90174c4520b))
|
|
777
|
-
- Add --reset option to dev-env runner ([77f17140c](https://github.com/underpostnet/engine/commit/77f17140c7399470d700126fd0d5ccd583fa8323))
|
|
778
|
-
- Add revert option and multi-instance publish support with default-items asset copy ([0913117af](https://github.com/underpostnet/engine/commit/0913117af06d034387c5958bf73c0e652316e94e))
|
|
779
|
-
- Add UNDERPOST_DEPLOY_NODE env for deterministic deploy node resolution ([41bb08ffb](https://github.com/underpostnet/engine/commit/41bb08ffb1e75721962ae2c69414e7adb5266c46))
|
|
780
|
-
- Add in import-default-items runner import FOREST dev instance ([d3bf87a1f](https://github.com/underpostnet/engine/commit/d3bf87a1f72ee97b9cc67bc131a21e9169f7eb11))
|
|
781
|
-
|
|
782
|
-
### client-cyberia
|
|
783
|
-
|
|
784
|
-
- Redesign server metrics dashboard with pixel-art assets and theme toggle ([563783093](https://github.com/underpostnet/engine/commit/5637830934d1f684c04eddbed2eb01030f3ae28b))
|
|
785
|
-
- Update location href of enter button in landing cyberia portal ([1c9efd550](https://github.com/underpostnet/engine/commit/1c9efd5505a161c2de83b77dac16f6a81065263a))
|
|
786
|
-
- Improve cyberia portal landing with new hero section ([024d76b62](https://github.com/underpostnet/engine/commit/024d76b62faee3f04d70c4d303ac486697e40876))
|
|
787
|
-
|
|
788
|
-
### cli-run
|
|
789
|
-
|
|
790
|
-
- Fix instance promote handle multi variant paths ([c23e75021](https://github.com/underpostnet/engine/commit/c23e75021d4bbf6e24cdb45102b344743712b3a6))
|
|
791
|
-
- Add flag 'branch' in default runner options ([4e7a63dfb](https://github.com/underpostnet/engine/commit/4e7a63dfbb8c492e31e53bafbb23586a46aa59ad))
|
|
792
|
-
|
|
793
|
-
### cli-repository
|
|
794
|
-
|
|
795
|
-
- Add init local repo in cmt cli ([0255eb053](https://github.com/underpostnet/engine/commit/0255eb05354edd33741721311f012b339351370b))
|
|
796
|
-
|
|
797
|
-
### cli-deploy
|
|
798
|
-
|
|
799
|
-
- Fix multi-instance blue/green deployment build manifests ([99a9b5265](https://github.com/underpostnet/engine/commit/99a9b5265257856a6df2ed2d9425ddaba834d8bf))
|
|
800
|
-
|
|
801
|
-
### cli-fs
|
|
802
|
-
|
|
803
|
-
- Remove redundant logs ([23761d607](https://github.com/underpostnet/engine/commit/23761d607bbc62a1d6a892faa66a448496ece8d7))
|
|
804
|
-
|
|
805
|
-
### hardhat
|
|
806
|
-
|
|
807
|
-
- Update supply-chain dependency: overrides adm-zip to version 0.6.0 ([fe5d98996](https://github.com/underpostnet/engine/commit/fe5d989964e768911d0c2eaa62d8d918f5421025))
|
|
808
|
-
|
|
809
|
-
### cyberia-docs
|
|
810
|
-
|
|
811
|
-
- Document OFF-CHAIN economy players + bots, any victim loot ([dbc4efa36](https://github.com/underpostnet/engine/commit/dbc4efa365c0e61b6dff32dd00ee5593aa064968))
|
|
812
|
-
- Document path-based multi-instance deployments ([b028657f4](https://github.com/underpostnet/engine/commit/b028657f4c79280d53674e034e396e44e9d8eae4))
|
|
813
|
-
- Document REST boot fallback and gRPC transport refactor ([a4b8006cc](https://github.com/underpostnet/engine/commit/a4b8006cc3240f65ff22fff8b089277032c21add))
|
|
814
|
-
- Update docs to reflect presence POI architecture and instance map changes ([140568b80](https://github.com/underpostnet/engine/commit/140568b808f32a83037841cbe741c18af2b0b743))
|
|
815
|
-
- Document instance map API, data flow and client overlay integration ([a8f7c8ea5](https://github.com/underpostnet/engine/commit/a8f7c8ea58848b92cbe9ce0febb3a8bcc9692524))
|
|
816
|
-
- Update Off chain economy concepts from transfer to loot drop race ([e93cafc83](https://github.com/underpostnet/engine/commit/e93cafc836d58148d4439126a650a20e7ff5d5ce))
|
|
817
|
-
|
|
818
|
-
### client
|
|
819
|
-
|
|
820
|
-
- Fix slide menu title style in dark/light themes ([22c1224d5](https://github.com/underpostnet/engine/commit/22c1224d5b4d50ad466c2988bb2c5e6cd7c30860))
|
|
821
|
-
- FIx center action button to menu modal ([94d6940ed](https://github.com/underpostnet/engine/commit/94d6940ed5d9e7eff72c039f6e22cc64e47d1a90))
|
|
822
|
-
|
|
823
|
-
### cyberia-saga
|
|
824
|
-
|
|
825
|
-
- Add persistInstance helper for saga instance persistence ([3f124c8b5](https://github.com/underpostnet/engine/commit/3f124c8b57f6a4f75051cfa9771c38cf9989aa75))
|
|
826
|
-
|
|
827
|
-
### cyberia-cli
|
|
828
|
-
|
|
829
|
-
- Migrate IPFS registry to mfsPath unique key ([e15cfda51](https://github.com/underpostnet/engine/commit/e15cfda511c674a4c0f8e77901f7df4d59a6e50d))
|
|
830
|
-
- Add clean option in import default items in runner ([9cca28ab9](https://github.com/underpostnet/engine/commit/9cca28ab93178cf2ee06f4d5e7b199a612f9e360))
|
|
831
|
-
- Improve import default items add base saga collection ingestion ([ffe822423](https://github.com/underpostnet/engine/commit/ffe822423c60ce3c103d533be00200ae9a406aa2))
|
|
832
|
-
- Add publish cross repositories push operation workflow ([69e39292e](https://github.com/underpostnet/engine/commit/69e39292e614d577eae4ad8362e8ec80e1282b9a))
|
|
833
|
-
- Fix build-manifest copy docker-compose related files ([b3e252fc7](https://github.com/underpostnet/engine/commit/b3e252fc7d61c2b91f65a199351a32dfb05d87ff))
|
|
834
|
-
|
|
835
|
-
### ci
|
|
836
|
-
|
|
837
|
-
- Add latest tag to Docker image build and push workflows ([36dc44fc3](https://github.com/underpostnet/engine/commit/36dc44fc304eafcd67ad4b2743c2c3254b72b9a0))
|
|
838
|
-
|
|
839
|
-
### grpc-cyberia
|
|
840
|
-
|
|
841
|
-
- Refactor gRPC server to delegate world-load to shared instance-data module ([740577994](https://github.com/underpostnet/engine/commit/7405779948cbd82383efb18efc928fc10ba0341e))
|
|
842
|
-
- Fix itemsId load in fallback world to ensure based in Own-model collections (CyberiaSkill, CyberiaEntityTypeDefault) ([ca4ffbb95](https://github.com/underpostnet/engine/commit/ca4ffbb956cb1e6f19601e35c3ceee8ca71ab49b))
|
|
843
|
-
|
|
844
|
-
### api
|
|
845
|
-
|
|
846
|
-
- Centralize Express middleware and controller/router helpers for engine APIs in src/server/middlewares.js ([1dda3de9d](https://github.com/underpostnet/engine/commit/1dda3de9ddd016acbe5f33d239d0a547445cf6c6))
|
|
847
|
-
|
|
848
|
-
### dependencies
|
|
849
|
-
|
|
850
|
-
- Update typescript version for compatibility with typedocs ([433b68207](https://github.com/underpostnet/engine/commit/433b6820757cce0c8eadb4cca3b64425cdfa9c05))
|
|
851
|
-
|
|
852
|
-
### docs
|
|
853
|
-
|
|
854
|
-
- Update README.md Rocky badge to v9.8 ([f7f31a1aa](https://github.com/underpostnet/engine/commit/f7f31a1aa9257db338c02d2a57d718136216b5f1))
|
|
855
|
-
|
|
856
|
-
### cluster
|
|
857
|
-
|
|
858
|
-
- Fix Helm installation in node bin cluster init host workflow ([f7e141c71](https://github.com/underpostnet/engine/commit/f7e141c71d2c6284cb798a985c1f318e77b5293e))
|
|
859
|
-
|
package/CLI-HELP.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
## Underpost CLI
|
|
2
2
|
|
|
3
|
-
> underpost ci/cd cli v3.
|
|
3
|
+
> underpost ci/cd cli v3.4.0
|
|
4
4
|
|
|
5
5
|
**Usage:** `underpost [options] [command]`
|
|
6
6
|
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
| [`lxd`](#underpost-lxd) | Manages LXD virtual machines as K3s nodes (control plane or workers). |
|
|
51
51
|
| [`baremetal`](#underpost-baremetal) | Manages baremetal server operations, including installation, database setup, commissioning, and user management. |
|
|
52
52
|
| [`package`](#underpost-package) | Generates the package manifests a deploy id owns, from the engine manifest and the deploy's product catalog, and installs the dependencies that catalog pins. |
|
|
53
|
+
| [`socketsecurity`](#underpost-socketsecurity) | Security audit through Socket.dev: dependency security (advisories, supply chain alerts, reachability, security patches in .socket/manifest.json) and source code risk (alerts on this project's own code). |
|
|
53
54
|
| [`release`](#underpost-release) | Release orchestrator for building new versions and deploying releases of the Underpost CLI. |
|
|
54
55
|
|
|
55
56
|
## Command reference
|
|
@@ -1385,6 +1386,32 @@ Generates the package manifests a deploy id owns, from the engine manifest and t
|
|
|
1385
1386
|
|
|
1386
1387
|
---
|
|
1387
1388
|
|
|
1389
|
+
### underpost socketsecurity
|
|
1390
|
+
|
|
1391
|
+
Security audit through Socket.dev: dependency security (advisories, supply chain alerts, reachability, security patches in .socket/manifest.json) and source code risk (alerts on this project's own code).
|
|
1392
|
+
|
|
1393
|
+
**Usage:** `underpost socketsecurity [options]`
|
|
1394
|
+
|
|
1395
|
+
#### Options
|
|
1396
|
+
|
|
1397
|
+
| Option | Description |
|
|
1398
|
+
| --- | --- |
|
|
1399
|
+
| `--audit` | Audits the checkout (default). Dependency security: segregation, npm audit, the Socket patch scan and, with SOCKET_CLI_API_TOKEN set, the Socket full scan of the dependency manifests. Source code risk: with SOCKET_CLI_API_TOKEN set, the alerts Socket's registry analysis raises on this project's own published package, as refactoring tasks. Writes the JSON and Markdown reports. |
|
|
1400
|
+
| `--reach` | Runs the full application reachability analysis over the local working tree with the Socket scan (tier 1 evidence); no pushed commit is needed. |
|
|
1401
|
+
| `--ci` | Audits, then exits non-zero when the Socket scan violates the organization policy or a finding remains at --fail-on. |
|
|
1402
|
+
| `--fail-on <severity>` | Severity --ci fails at. One of: critical, high, moderate, low, info. Defaults to high. |
|
|
1403
|
+
| `--fix` | Runs the remediation pass before the audit: npm audit fix, every available Socket patch, socket fix without major upgrades, socket patch apply. |
|
|
1404
|
+
| `--major` | With --fix: lets socket fix apply major upgrades. |
|
|
1405
|
+
| `--patch-scan` | Lists the Socket patches available for the installed packages. |
|
|
1406
|
+
| `--patch-get <identifier>` | Downloads one patch (UUID, CVE, GHSA or PURL) into .socket/manifest.json and applies it. |
|
|
1407
|
+
| `--patch-apply` | Applies the patch manifest; the prepare hook. A host without the Socket CLI skips it. |
|
|
1408
|
+
| `--patch-setup` | Installs the prepare hook in package.json. |
|
|
1409
|
+
| `--out <dir>` | Report directory (default: security-reports). |
|
|
1410
|
+
| `--dry-run` | Previews --patch-setup; verifies --patch-apply without writing. |
|
|
1411
|
+
| `-h, --help` | display help for command |
|
|
1412
|
+
|
|
1413
|
+
---
|
|
1414
|
+
|
|
1388
1415
|
### underpost release
|
|
1389
1416
|
|
|
1390
1417
|
Release orchestrator for building new versions and deploying releases of the Underpost CLI.
|
package/Dockerfile
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# Stage 1 — builder: clone the private deploy, build it, then scrub secrets.
|
|
7
7
|
# ---------------------------------------------------------------------------
|
|
8
8
|
FROM rockylinux/rockylinux:9 AS builder
|
|
9
|
-
ARG UNDERPOST_VERSION=3.
|
|
9
|
+
ARG UNDERPOST_VERSION=3.4.0
|
|
10
10
|
# Pin Node to an exact patch: dnf's nodejs:24 module lags (24.14.1) while
|
|
11
11
|
# underpost's dependencies require >=24.15.0, so install the official binary.
|
|
12
12
|
ARG NODE_VERSION=24.15.0
|
package/Dockerfile.dev
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# Stage 1 — builder: clone the private deploy, build it, then scrub secrets.
|
|
7
7
|
# ---------------------------------------------------------------------------
|
|
8
8
|
FROM rockylinux/rockylinux:9 AS builder
|
|
9
|
-
ARG UNDERPOST_VERSION=3.
|
|
9
|
+
ARG UNDERPOST_VERSION=3.4.0
|
|
10
10
|
# Pin Node to an exact patch: dnf's nodejs:24 module lags (24.14.1) while
|
|
11
11
|
# underpost's dependencies require >=24.15.0, so install the official binary.
|
|
12
12
|
ARG NODE_VERSION=24.15.0
|
package/Dockerfile.test
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# Stage 1 — builder: clone the private deploy, build it, then scrub secrets.
|
|
7
7
|
# ---------------------------------------------------------------------------
|
|
8
8
|
FROM rockylinux/rockylinux:9 AS builder
|
|
9
|
-
ARG UNDERPOST_VERSION=3.
|
|
9
|
+
ARG UNDERPOST_VERSION=3.4.0
|
|
10
10
|
# Pin Node to an exact patch: dnf's nodejs:24 module lags (24.14.1) while
|
|
11
11
|
# underpost's dependencies require >=24.15.0, so install the official binary.
|
|
12
12
|
ARG NODE_VERSION=24.15.0
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ _Stackable Rendering Layers as a Unified Tokenized Reality_
|
|
|
20
20
|
<!-- CI/CD and health -->
|
|
21
21
|
<div align="center">
|
|
22
22
|
|
|
23
|
-
[](https://github.com/underpostnet/engine-cyberia/actions/workflows/docker-image.engine-cyberia.ci.yml) [](https://github.com/underpostnet/engine-cyberia/actions/workflows/coverall.cyberia.ci.yml) [](https://coveralls.io/github/underpostnet/engine-cyberia?branch=main) [](https://github.com/underpostnet/engine-cyberia/actions/workflows/docker-image.engine-cyberia.ci.yml) [](https://github.com/underpostnet/engine-cyberia/actions/workflows/coverall.cyberia.ci.yml) [](https://coveralls.io/github/underpostnet/engine-cyberia?branch=main) [](https://socket.dev/npm/package/cyberia/overview/3.4.0)
|
|
24
24
|
|
|
25
25
|
</div>
|
|
26
26
|
|
package/bin/build.js
CHANGED
|
@@ -10,6 +10,7 @@ import {
|
|
|
10
10
|
syncDeployIdSources,
|
|
11
11
|
syncDeployIdSourcesBack,
|
|
12
12
|
buildTemplate,
|
|
13
|
+
templateGitignoreFactory,
|
|
13
14
|
updatePrivateEngineTestRepo,
|
|
14
15
|
} from '../src/server/runtime/conf.js';
|
|
15
16
|
import { resolveDeployList } from '../src/server/network/router.js';
|
|
@@ -207,10 +208,7 @@ const buildDeployTemplate = async (confName, { force = false } = {}) => {
|
|
|
207
208
|
if (fs.existsSync(`./src/ws/${confName.split('-')[1]}`)) {
|
|
208
209
|
fs.copySync(`./src/ws/${confName.split('-')[1]}`, `${basePath}/src/ws/${confName.split('-')[1]}`);
|
|
209
210
|
}
|
|
210
|
-
fs.writeFileSync(
|
|
211
|
-
`${basePath}/.gitignore`,
|
|
212
|
-
fs.readFileSync(`.gitignore`, 'utf8').split('# Ignore ERP / CRM custom prototypes src')[0],
|
|
213
|
-
);
|
|
211
|
+
fs.writeFileSync(`${basePath}/.gitignore`, templateGitignoreFactory());
|
|
214
212
|
|
|
215
213
|
// Process catalog copies — each [src, dest] pair is copied from engine root to the template target.
|
|
216
214
|
if (catalog.copies && catalog.copies.length) {
|
package/bin/cyberia.js
CHANGED
|
@@ -5100,7 +5100,7 @@ node bin test cyberia --grep 'Cyberia load'`);
|
|
|
5100
5100
|
// no funca
|
|
5101
5101
|
if (options.loadTar) {
|
|
5102
5102
|
for (const imageId of dockerImageIds)
|
|
5103
|
-
if (imageId === id || id === '.') shellExec(`docker load -i ./${imageId}-dev_v3.
|
|
5103
|
+
if (imageId === id || id === '.') shellExec(`docker load -i ./${imageId}-dev_v3.4.0.tar`);
|
|
5104
5104
|
return;
|
|
5105
5105
|
}
|
|
5106
5106
|
switch (id) {
|
|
@@ -5112,7 +5112,7 @@ node bin/build dd-cyberia --update-private
|
|
|
5112
5112
|
node bin image --path src/runtime/engine-cyberia \
|
|
5113
5113
|
--docker-compose --pull-base --build \
|
|
5114
5114
|
--dockerfile-name Dockerfile.dev \
|
|
5115
|
-
--image-name engine-cyberia-dev:v3.
|
|
5115
|
+
--image-name engine-cyberia-dev:v3.4.0 \
|
|
5116
5116
|
--image-out-path .
|
|
5117
5117
|
`);
|
|
5118
5118
|
break;
|
|
@@ -5124,7 +5124,7 @@ cp -f src/runtime/cyberia-server/Dockerfile.dev cyberia-server/Dockerfile.dev
|
|
|
5124
5124
|
node bin image --path cyberia-server \
|
|
5125
5125
|
--docker-compose --pull-base --build \
|
|
5126
5126
|
--dockerfile-name Dockerfile.dev \
|
|
5127
|
-
--image-name cyberia-server-dev:v3.
|
|
5127
|
+
--image-name cyberia-server-dev:v3.4.0 \
|
|
5128
5128
|
--image-out-path .
|
|
5129
5129
|
`);
|
|
5130
5130
|
break;
|
|
@@ -5135,7 +5135,7 @@ cp -f src/runtime/cyberia-client/Dockerfile.dev cyberia-client/Dockerfile.dev
|
|
|
5135
5135
|
node bin image --path cyberia-client \
|
|
5136
5136
|
--docker-compose --pull-base --build \
|
|
5137
5137
|
--dockerfile-name Dockerfile.dev \
|
|
5138
|
-
--image-name cyberia-client-dev:v3.
|
|
5138
|
+
--image-name cyberia-client-dev:v3.4.0 \
|
|
5139
5139
|
--image-out-path .
|
|
5140
5140
|
`);
|
|
5141
5141
|
break;
|
package/bin/index.js
CHANGED
|
@@ -5100,7 +5100,7 @@ node bin test cyberia --grep 'Cyberia load'`);
|
|
|
5100
5100
|
// no funca
|
|
5101
5101
|
if (options.loadTar) {
|
|
5102
5102
|
for (const imageId of dockerImageIds)
|
|
5103
|
-
if (imageId === id || id === '.') shellExec(`docker load -i ./${imageId}-dev_v3.
|
|
5103
|
+
if (imageId === id || id === '.') shellExec(`docker load -i ./${imageId}-dev_v3.4.0.tar`);
|
|
5104
5104
|
return;
|
|
5105
5105
|
}
|
|
5106
5106
|
switch (id) {
|
|
@@ -5112,7 +5112,7 @@ node bin/build dd-cyberia --update-private
|
|
|
5112
5112
|
node bin image --path src/runtime/engine-cyberia \
|
|
5113
5113
|
--docker-compose --pull-base --build \
|
|
5114
5114
|
--dockerfile-name Dockerfile.dev \
|
|
5115
|
-
--image-name engine-cyberia-dev:v3.
|
|
5115
|
+
--image-name engine-cyberia-dev:v3.4.0 \
|
|
5116
5116
|
--image-out-path .
|
|
5117
5117
|
`);
|
|
5118
5118
|
break;
|
|
@@ -5124,7 +5124,7 @@ cp -f src/runtime/cyberia-server/Dockerfile.dev cyberia-server/Dockerfile.dev
|
|
|
5124
5124
|
node bin image --path cyberia-server \
|
|
5125
5125
|
--docker-compose --pull-base --build \
|
|
5126
5126
|
--dockerfile-name Dockerfile.dev \
|
|
5127
|
-
--image-name cyberia-server-dev:v3.
|
|
5127
|
+
--image-name cyberia-server-dev:v3.4.0 \
|
|
5128
5128
|
--image-out-path .
|
|
5129
5129
|
`);
|
|
5130
5130
|
break;
|
|
@@ -5135,7 +5135,7 @@ cp -f src/runtime/cyberia-client/Dockerfile.dev cyberia-client/Dockerfile.dev
|
|
|
5135
5135
|
node bin image --path cyberia-client \
|
|
5136
5136
|
--docker-compose --pull-base --build \
|
|
5137
5137
|
--dockerfile-name Dockerfile.dev \
|
|
5138
|
-
--image-name cyberia-client-dev:v3.
|
|
5138
|
+
--image-name cyberia-client-dev:v3.4.0 \
|
|
5139
5139
|
--image-out-path .
|
|
5140
5140
|
`);
|
|
5141
5141
|
break;
|
package/compose.env
CHANGED
|
@@ -24,6 +24,7 @@ IPFS_CLUSTER_IMAGE=ipfs/ipfs-cluster:latest
|
|
|
24
24
|
# The engine-cyberia image ships only the underpost CLI; at start it runs the
|
|
25
25
|
# `underpost start --build` bootstrap, which clones ${GITHUB_USERNAME}/engine-cyberia.
|
|
26
26
|
GITHUB_USERNAME=underpostnet
|
|
27
|
+
GITHUB_ORG_NAME=underpost
|
|
27
28
|
GITHUB_TOKEN=change_me_private_repo_token
|
|
28
29
|
|
|
29
30
|
# --- MongoDB (translation of Secret mongodb-secret) --------------------------
|