cyberia 2.99.8 → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.production +1 -0
- package/.github/workflows/engine-cyberia.cd.yml +1 -0
- package/.github/workflows/gitlab.ci.yml +20 -0
- package/.github/workflows/publish.ci.yml +18 -38
- package/.github/workflows/publish.cyberia.ci.yml +18 -38
- package/.vscode/extensions.json +8 -50
- package/.vscode/settings.json +0 -77
- package/CHANGELOG.md +171 -1
- package/{cli.md → CLI-HELP.md} +49 -44
- package/README.md +139 -0
- package/bin/build.js +7 -15
- package/bin/cyberia.js +385 -71
- package/bin/deploy.js +14 -151
- package/bin/file.js +13 -8
- package/bin/index.js +385 -71
- package/bin/zed.js +63 -2
- package/conf.js +32 -3
- package/deployment.yaml +2 -2
- package/jsdoc.json +1 -2
- package/manifests/cronjobs/dd-cron/dd-cron-backup.yaml +1 -1
- package/manifests/cronjobs/dd-cron/dd-cron-dns.yaml +1 -1
- package/manifests/deployment/dd-default-development/deployment.yaml +2 -2
- package/manifests/deployment/dd-test-development/deployment.yaml +2 -2
- package/manifests/deployment/fastapi/initial_data.sh +4 -52
- package/manifests/ipfs/configmap.yaml +64 -0
- package/manifests/ipfs/headless-service.yaml +35 -0
- package/manifests/ipfs/kustomization.yaml +8 -0
- package/manifests/ipfs/statefulset.yaml +149 -0
- package/manifests/ipfs/storage-class.yaml +9 -0
- package/package.json +15 -11
- package/scripts/k3s-node-setup.sh +89 -0
- package/scripts/lxd-vm-setup.sh +23 -0
- package/scripts/rocky-setup.sh +1 -13
- package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.controller.js +2 -0
- package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.model.js +7 -0
- package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.service.js +93 -2
- package/src/api/file/file.controller.js +3 -13
- package/src/api/file/file.ref.json +0 -21
- package/src/api/ipfs/ipfs.controller.js +104 -0
- package/src/api/ipfs/ipfs.model.js +71 -0
- package/src/api/ipfs/ipfs.router.js +31 -0
- package/src/api/ipfs/ipfs.service.js +193 -0
- package/src/api/object-layer/README.md +139 -0
- package/src/api/object-layer/object-layer.controller.js +3 -0
- package/src/api/object-layer/object-layer.model.js +15 -1
- package/src/api/object-layer/object-layer.router.js +6 -10
- package/src/api/object-layer/object-layer.service.js +311 -182
- package/src/api/user/user.router.js +0 -47
- package/src/cli/baremetal.js +7 -9
- package/src/cli/cluster.js +95 -152
- package/src/cli/deploy.js +8 -5
- package/src/cli/index.js +31 -31
- package/src/cli/ipfs.js +184 -0
- package/src/cli/lxd.js +192 -237
- package/src/cli/repository.js +4 -1
- package/src/cli/run.js +17 -2
- package/src/client/components/core/Docs.js +92 -6
- package/src/client/components/core/LoadingAnimation.js +2 -3
- package/src/client/components/core/Modal.js +1 -1
- package/src/client/components/core/VanillaJs.js +36 -25
- package/src/client/components/cyberia/ObjectLayerEngineModal.js +4 -5
- package/src/client/components/cyberia/ObjectLayerEngineViewer.js +280 -29
- package/src/client/services/ipfs/ipfs.service.js +144 -0
- package/src/client/services/object-layer/object-layer.management.js +161 -8
- package/src/client/services/user/user.management.js +0 -5
- package/src/client/services/user/user.service.js +1 -1
- package/src/index.js +12 -1
- package/src/runtime/express/Express.js +4 -3
- package/src/server/auth.js +18 -18
- package/src/server/client-build-docs.js +178 -41
- package/src/server/conf.js +1 -1
- package/src/server/ipfs-client.js +433 -0
- package/src/server/logger.js +22 -10
- package/src/server/object-layer.js +649 -18
- package/src/server/semantic-layer-generator.js +1083 -0
- package/src/server/shape-generator.js +952 -0
- package/test/shape-generator.test.js +457 -0
- package/.vscode/zed.keymap.json +0 -39
- package/.vscode/zed.settings.json +0 -20
- package/bin/ssl.js +0 -63
- package/manifests/lxd/underpost-setup.sh +0 -163
package/.env.production
CHANGED
|
@@ -59,6 +59,7 @@ jobs:
|
|
|
59
59
|
echo "Starting remote sync and deploy"
|
|
60
60
|
cd /home/dd/engine
|
|
61
61
|
sudo -n -- /bin/bash -lc "node bin run pull"
|
|
62
|
+
sudo -n -- /bin/bash -lc "npm run test"
|
|
62
63
|
sudo -n -- /bin/bash -lc "node bin run sync --kubeadm --deploy-id-cron-jobs none --timeout-response 300000ms dd-cyberia,1,,localhost/rockylinux9-underpost:v2.98.3 --cmd 'npm install -g npm@11.2.0,npm install -g underpost,underpost secret underpost --create-from-file /etc/config/.env.production,underpost start --build --run dd-cyberia production'"
|
|
63
64
|
init:
|
|
64
65
|
if: github.repository == 'underpostnet/engine' && startsWith(github.event.head_commit.message, 'cd(ssh-init-engine-cyberia)')
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
name: CI | Publish gitlab repository package
|
|
2
|
+
on: [push]
|
|
3
|
+
jobs:
|
|
4
|
+
pwa-microservices-template:
|
|
5
|
+
if: github.repository == 'underpostnet/pwa-microservices-template' && startsWith(github.event.head_commit.message, 'ci(package-pwa-microservices-template-ghpkg)')
|
|
6
|
+
name: Update gitlab repo package Jobs
|
|
7
|
+
runs-on: ubuntu-latest
|
|
8
|
+
steps:
|
|
9
|
+
- uses: actions/checkout@v4
|
|
10
|
+
with:
|
|
11
|
+
fetch-depth: 0
|
|
12
|
+
lfs: true
|
|
13
|
+
- name: Push to GitLab
|
|
14
|
+
run: |
|
|
15
|
+
git remote add gitlab https://oauth2:${{ secrets.GITLAB_TOKEN }}@gitlab.com/underpostnet/pwa-microservices-template.git
|
|
16
|
+
git lfs install
|
|
17
|
+
git lfs fetch --all
|
|
18
|
+
git lfs push --all gitlab
|
|
19
|
+
git push gitlab HEAD:main --force
|
|
20
|
+
git push gitlab --force --tags
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
name: CI | Publish npm package
|
|
2
2
|
on:
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
push:
|
|
4
|
+
tags:
|
|
5
|
+
- 'v*'
|
|
5
6
|
jobs:
|
|
6
7
|
build-and-publish:
|
|
7
8
|
# prevents this action from running on forks
|
|
@@ -12,28 +13,18 @@ jobs:
|
|
|
12
13
|
id-token: write
|
|
13
14
|
steps:
|
|
14
15
|
- uses: actions/checkout@v4
|
|
15
|
-
|
|
16
|
-
ref: ${{ github.ref }}
|
|
16
|
+
|
|
17
17
|
- uses: actions/setup-node@v4
|
|
18
18
|
with:
|
|
19
19
|
node-version: '24.x'
|
|
20
20
|
registry-url: 'https://registry.npmjs.org'
|
|
21
21
|
|
|
22
22
|
- name: Install Dependencies
|
|
23
|
-
run: npm
|
|
24
|
-
|
|
25
|
-
- run: npm ci
|
|
23
|
+
run: npm ci
|
|
26
24
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
with:
|
|
30
|
-
node-version: '24.x'
|
|
31
|
-
registry-url: 'https://registry.npmjs.org'
|
|
32
|
-
# Defaults to the user or organization that owns the workflow file
|
|
33
|
-
# scope: '@underpostnet'
|
|
34
|
-
- env:
|
|
25
|
+
- name: Publish to npm
|
|
26
|
+
env:
|
|
35
27
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
36
|
-
name: Publish to npm
|
|
37
28
|
run: npm publish --provenance --access public
|
|
38
29
|
|
|
39
30
|
build-and-publish-ghpkg:
|
|
@@ -45,44 +36,33 @@ jobs:
|
|
|
45
36
|
id-token: write
|
|
46
37
|
steps:
|
|
47
38
|
- uses: actions/checkout@v4
|
|
48
|
-
|
|
49
|
-
ref: ${{ github.ref }}
|
|
39
|
+
|
|
50
40
|
- uses: actions/setup-node@v4
|
|
51
41
|
with:
|
|
52
42
|
node-version: '24.x'
|
|
53
43
|
registry-url: 'https://registry.npmjs.org'
|
|
44
|
+
scope: '@underpostnet'
|
|
54
45
|
|
|
55
46
|
- name: Install Dependencies
|
|
56
|
-
run: npm
|
|
57
|
-
|
|
58
|
-
- run: npm ci
|
|
47
|
+
run: npm ci
|
|
59
48
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
with:
|
|
63
|
-
node-version: '24.x'
|
|
64
|
-
registry-url: 'https://registry.npmjs.org'
|
|
65
|
-
# Defaults to the user or organization that owns the workflow file
|
|
66
|
-
scope: '@underpostnet'
|
|
67
|
-
- env:
|
|
49
|
+
- name: Publish to npm
|
|
50
|
+
env:
|
|
68
51
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
69
|
-
|
|
70
|
-
run: |
|
|
71
|
-
npm publish --provenance --access public
|
|
52
|
+
run: npm publish --provenance --access public
|
|
72
53
|
|
|
73
|
-
# Publish to GitHub Packages
|
|
74
54
|
- name: Setup node to publish to GitHub Packages
|
|
75
55
|
uses: actions/setup-node@v4
|
|
76
56
|
with:
|
|
77
|
-
node-version: 24.x
|
|
57
|
+
node-version: '24.x'
|
|
78
58
|
registry-url: 'https://npm.pkg.github.com'
|
|
79
|
-
# Defaults to the user or organization that owns the workflow file
|
|
80
59
|
scope: '@underpostnet'
|
|
81
60
|
|
|
82
|
-
-
|
|
61
|
+
- name: Publish to GitHub Packages
|
|
62
|
+
run: |
|
|
83
63
|
npm config set //npm.pkg.github.com/:_authToken=${{ secrets.GIT_AUTH_TOKEN }}
|
|
84
64
|
echo "//npm.pkg.github.com/:_authToken=${{ secrets.GIT_AUTH_TOKEN }}" > ~/.npmrc
|
|
85
|
-
echo "@
|
|
65
|
+
echo "@underpostnet:registry=https://npm.pkg.github.com" >> ~/.npmrc
|
|
86
66
|
npm publish
|
|
87
67
|
env:
|
|
88
|
-
NODE_AUTH_TOKEN: ${{ secrets.
|
|
68
|
+
NODE_AUTH_TOKEN: ${{ secrets.GIT_AUTH_TOKEN }}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
name: CI | Publish cyberia npm package
|
|
2
2
|
on:
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
push:
|
|
4
|
+
tags:
|
|
5
|
+
- 'v*'
|
|
5
6
|
jobs:
|
|
6
7
|
build-and-publish:
|
|
7
8
|
# prevents this action from running on forks
|
|
@@ -12,28 +13,18 @@ jobs:
|
|
|
12
13
|
id-token: write
|
|
13
14
|
steps:
|
|
14
15
|
- uses: actions/checkout@v4
|
|
15
|
-
|
|
16
|
-
ref: ${{ github.ref }}
|
|
16
|
+
|
|
17
17
|
- uses: actions/setup-node@v4
|
|
18
18
|
with:
|
|
19
19
|
node-version: '24.x'
|
|
20
20
|
registry-url: 'https://registry.npmjs.org'
|
|
21
21
|
|
|
22
22
|
- name: Install Dependencies
|
|
23
|
-
run: npm
|
|
24
|
-
|
|
25
|
-
- run: npm ci
|
|
23
|
+
run: npm ci
|
|
26
24
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
with:
|
|
30
|
-
node-version: '24.x'
|
|
31
|
-
registry-url: 'https://registry.npmjs.org'
|
|
32
|
-
# Defaults to the user or organization that owns the workflow file
|
|
33
|
-
# scope: '@underpostnet'
|
|
34
|
-
- env:
|
|
25
|
+
- name: Publish to npm
|
|
26
|
+
env:
|
|
35
27
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
36
|
-
name: Publish to npm
|
|
37
28
|
run: npm publish --provenance --access public
|
|
38
29
|
|
|
39
30
|
build-and-publish-ghpkg:
|
|
@@ -45,44 +36,33 @@ jobs:
|
|
|
45
36
|
id-token: write
|
|
46
37
|
steps:
|
|
47
38
|
- uses: actions/checkout@v4
|
|
48
|
-
|
|
49
|
-
ref: ${{ github.ref }}
|
|
39
|
+
|
|
50
40
|
- uses: actions/setup-node@v4
|
|
51
41
|
with:
|
|
52
42
|
node-version: '24.x'
|
|
53
43
|
registry-url: 'https://registry.npmjs.org'
|
|
44
|
+
scope: '@underpostnet'
|
|
54
45
|
|
|
55
46
|
- name: Install Dependencies
|
|
56
|
-
run: npm
|
|
57
|
-
|
|
58
|
-
- run: npm ci
|
|
47
|
+
run: npm ci
|
|
59
48
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
with:
|
|
63
|
-
node-version: '24.x'
|
|
64
|
-
registry-url: 'https://registry.npmjs.org'
|
|
65
|
-
# Defaults to the user or organization that owns the workflow file
|
|
66
|
-
scope: '@underpostnet'
|
|
67
|
-
- env:
|
|
49
|
+
- name: Publish to npm
|
|
50
|
+
env:
|
|
68
51
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
69
|
-
|
|
70
|
-
run: |
|
|
71
|
-
npm publish --provenance --access public
|
|
52
|
+
run: npm publish --provenance --access public
|
|
72
53
|
|
|
73
|
-
# Publish to GitHub Packages
|
|
74
54
|
- name: Setup node to publish to GitHub Packages
|
|
75
55
|
uses: actions/setup-node@v4
|
|
76
56
|
with:
|
|
77
|
-
node-version: 24.x
|
|
57
|
+
node-version: '24.x'
|
|
78
58
|
registry-url: 'https://npm.pkg.github.com'
|
|
79
|
-
# Defaults to the user or organization that owns the workflow file
|
|
80
59
|
scope: '@underpostnet'
|
|
81
60
|
|
|
82
|
-
-
|
|
61
|
+
- name: Publish to GitHub Packages
|
|
62
|
+
run: |
|
|
83
63
|
npm config set //npm.pkg.github.com/:_authToken=${{ secrets.GIT_AUTH_TOKEN }}
|
|
84
64
|
echo "//npm.pkg.github.com/:_authToken=${{ secrets.GIT_AUTH_TOKEN }}" > ~/.npmrc
|
|
85
|
-
echo "@
|
|
65
|
+
echo "@underpostnet:registry=https://npm.pkg.github.com" >> ~/.npmrc
|
|
86
66
|
npm publish
|
|
87
67
|
env:
|
|
88
|
-
NODE_AUTH_TOKEN: ${{ secrets.
|
|
68
|
+
NODE_AUTH_TOKEN: ${{ secrets.GIT_AUTH_TOKEN }}
|
package/.vscode/extensions.json
CHANGED
|
@@ -1,51 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"github.vscode-github-actions",
|
|
11
|
-
"golang.go",
|
|
12
|
-
"gruntfuggly.todo-tree",
|
|
13
|
-
"mechatroner.rainbow-csv",
|
|
14
|
-
"mindaro-dev.file-downloader",
|
|
15
|
-
"ms-azuretools.vscode-containers",
|
|
16
|
-
"ms-azuretools.vscode-docker",
|
|
17
|
-
"ms-kubernetes-tools.vscode-kubernetes-tools",
|
|
18
|
-
"ms-python.black-formatter",
|
|
19
|
-
"ms-python.debugpy",
|
|
20
|
-
"ms-python.python",
|
|
21
|
-
"ms-python.vscode-pylance",
|
|
22
|
-
"ms-vscode-remote.remote-containers",
|
|
23
|
-
"oderwat.indent-rainbow",
|
|
24
|
-
"pleiades.java-extension-pack-jdk",
|
|
25
|
-
"ravioshankar.scala-gurus",
|
|
26
|
-
"redhat.java",
|
|
27
|
-
"redhat.vscode-xml",
|
|
28
|
-
"redhat.vscode-yaml",
|
|
29
|
-
"ritwickdey.liveserver",
|
|
30
|
-
"scala-lang.scala",
|
|
31
|
-
"scala-lang.scala-snippets",
|
|
32
|
-
"scalameta.metals",
|
|
33
|
-
"shakram02.bash-beautify",
|
|
34
|
-
"shardulm94.trailing-spaces",
|
|
35
|
-
"streetsidesoftware.code-spell-checker",
|
|
36
|
-
"tamasfe.even-better-toml",
|
|
37
|
-
"tobermory.es6-string-html",
|
|
38
|
-
"visualstudioexptteam.intellicode-api-usage-examples",
|
|
39
|
-
"visualstudioexptteam.vscodeintellicode",
|
|
40
|
-
"vmware.vscode-boot-dev-pack",
|
|
41
|
-
"vmware.vscode-spring-boot",
|
|
42
|
-
"vscjava.vscode-gradle",
|
|
43
|
-
"vscjava.vscode-java-debug",
|
|
44
|
-
"vscjava.vscode-java-dependency",
|
|
45
|
-
"vscjava.vscode-java-pack",
|
|
46
|
-
"vscjava.vscode-java-test",
|
|
47
|
-
"vscjava.vscode-maven",
|
|
48
|
-
"vscjava.vscode-spring-boot-dashboard",
|
|
49
|
-
"vscjava.vscode-spring-initializr"
|
|
50
|
-
]
|
|
51
|
-
}
|
|
2
|
+
"recommendations": [
|
|
3
|
+
"antiantisepticeye.vscode-color-picker",
|
|
4
|
+
"bashmish.es6-string-css",
|
|
5
|
+
"eamodio.gitlens",
|
|
6
|
+
"esbenp.prettier-vscode",
|
|
7
|
+
"tobermory.es6-string-html",
|
|
8
|
+
],
|
|
9
|
+
}
|
package/.vscode/settings.json
CHANGED
|
@@ -6,81 +6,4 @@
|
|
|
6
6
|
"[javascript]": {
|
|
7
7
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
8
8
|
},
|
|
9
|
-
"[python]": {
|
|
10
|
-
"editor.defaultFormatter": "ms-python.python",
|
|
11
|
-
},
|
|
12
|
-
"cSpell.words": [
|
|
13
|
-
"adminer",
|
|
14
|
-
"ANAME",
|
|
15
|
-
"browserconfig",
|
|
16
|
-
"Bymyelectrics",
|
|
17
|
-
"certbot",
|
|
18
|
-
"certonly",
|
|
19
|
-
"changefreq",
|
|
20
|
-
"chebyshev",
|
|
21
|
-
"Cids",
|
|
22
|
-
"Contracultura",
|
|
23
|
-
"cooldown",
|
|
24
|
-
"cryptokoyn",
|
|
25
|
-
"cyberia",
|
|
26
|
-
"cyberiaonline",
|
|
27
|
-
"dbname",
|
|
28
|
-
"dists",
|
|
29
|
-
"DNSSEC",
|
|
30
|
-
"DOGMADUAL",
|
|
31
|
-
"dondominio",
|
|
32
|
-
"dont",
|
|
33
|
-
"fileupload",
|
|
34
|
-
"fontawesome",
|
|
35
|
-
"fortawesome",
|
|
36
|
-
"gameplay",
|
|
37
|
-
"googlebot",
|
|
38
|
-
"Hexa",
|
|
39
|
-
"htdocs",
|
|
40
|
-
"htmls",
|
|
41
|
-
"inet",
|
|
42
|
-
"inlt",
|
|
43
|
-
"Itemledger",
|
|
44
|
-
"jsonld",
|
|
45
|
-
"lampp",
|
|
46
|
-
"letsencrypt",
|
|
47
|
-
"loadingio",
|
|
48
|
-
"Longname",
|
|
49
|
-
"metanarrative",
|
|
50
|
-
"Microdata",
|
|
51
|
-
"minami",
|
|
52
|
-
"MMORPG",
|
|
53
|
-
"mongosh",
|
|
54
|
-
"mysqldump",
|
|
55
|
-
"neodrag",
|
|
56
|
-
"nexodev",
|
|
57
|
-
"pathfinding",
|
|
58
|
-
"Pixi",
|
|
59
|
-
"privkey",
|
|
60
|
-
"runas",
|
|
61
|
-
"Scatterplot",
|
|
62
|
-
"sortablejs",
|
|
63
|
-
"statefulset",
|
|
64
|
-
"supervisord",
|
|
65
|
-
"Tokenomics",
|
|
66
|
-
"underpost",
|
|
67
|
-
"underpostnet",
|
|
68
|
-
"Unequip",
|
|
69
|
-
"uuidv",
|
|
70
|
-
"Valkey",
|
|
71
|
-
"webroot",
|
|
72
|
-
"xampp",
|
|
73
|
-
"xfwd",
|
|
74
|
-
"youtu",
|
|
75
|
-
],
|
|
76
|
-
"[php]": {
|
|
77
|
-
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client",
|
|
78
|
-
},
|
|
79
|
-
"[xml]": {
|
|
80
|
-
"editor.defaultFormatter": "redhat.vscode-xml",
|
|
81
|
-
},
|
|
82
|
-
|
|
83
|
-
"files.watcherExclude": {
|
|
84
|
-
"**/target": true,
|
|
85
|
-
},
|
|
86
9
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,176 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 2026-02
|
|
3
|
+
## 2026-03-02
|
|
4
|
+
|
|
5
|
+
### engine-cyberia
|
|
6
|
+
|
|
7
|
+
- Add test in engine-cyberia cd workflow ([642d7e36](https://github.com/underpostnet/engine/commit/642d7e36155b6db5dbd36e19767dd95f146ceaf5))
|
|
8
|
+
- Add build dd-cyberia shape generator exclusive module files ([188f563a](https://github.com/underpostnet/engine/commit/188f563a61d7f6bf36bef93cdd18d4e1304f9747))
|
|
9
|
+
- Fix ObjectLayerEngineViewer return to list button click ([aeaead6f](https://github.com/underpostnet/engine/commit/aeaead6f5c67a03449c63c584976e9a73ccc953d))
|
|
10
|
+
- Improve static generations assets in object layer generation CLI ([06694d92](https://github.com/underpostnet/engine/commit/06694d92ea1ad849e745f561b8ec9a48bfa66056))
|
|
11
|
+
- Implements deterministic object layer generation CLI ([f70c9841](https://github.com/underpostnet/engine/commit/f70c9841ef2efc9187c87427cc465505487766db))
|
|
12
|
+
- Implement shape generator module ([5741a38b](https://github.com/underpostnet/engine/commit/5741a38bcfb8c1c4e0ef5053a2a6a73ff50a3879))
|
|
13
|
+
- Fix remove of ag grid table delete object layer delete logic ([e98953cd](https://github.com/underpostnet/engine/commit/e98953cd29767ca44c2362997f0af40cd538371b))
|
|
14
|
+
- Centralize Object Layer Logic and add js docs ([ff8eefed](https://github.com/underpostnet/engine/commit/ff8eefed08349a1e3390379f760c0d9eb20aecca))
|
|
15
|
+
- ObjectLayer Engine Viewer Enhancements ([0ee052e5](https://github.com/underpostnet/engine/commit/0ee052e5231f7b55576595a817742970c90cd056))
|
|
16
|
+
- Add metada json editor of object layers ([abe7448f](https://github.com/underpostnet/engine/commit/abe7448f5ed7429ba1f5c5d01ed94c5c70323638))
|
|
17
|
+
- Remove helia pyntype logic ([2b443d1c](https://github.com/underpostnet/engine/commit/2b443d1c0ed2261e27d5be54903c9a37cff29dd5))
|
|
18
|
+
- Object Layer Deletion Cleanup IPFS ([a2dcdf23](https://github.com/underpostnet/engine/commit/a2dcdf238c32d5b5237f0650232aca0c0823f044))
|
|
19
|
+
- Add Public GET Access for File Object Atlas ([826317fe](https://github.com/underpostnet/engine/commit/826317fe21dfd0b77196ef343b31461c45b5eb72))
|
|
20
|
+
- Allow Cross-Origin on GET methods file, object-layer, and atlas-sprite-sheet api. ([6801839c](https://github.com/underpostnet/engine/commit/6801839cc461dbec6ca205b035ea844415779e85))
|
|
21
|
+
- Add DISABLE_API_RATE_LIMIT env option ([ae72885c](https://github.com/underpostnet/engine/commit/ae72885c1178846067db52b62455d804dbe4eeba))
|
|
22
|
+
|
|
23
|
+
### client-core
|
|
24
|
+
|
|
25
|
+
- Fix main-body-btn-container hide logic ([221f8bfc](https://github.com/underpostnet/engine/commit/221f8bfc262048e1ca226f66f0dfab9891db3fd5))
|
|
26
|
+
|
|
27
|
+
### runtime-express
|
|
28
|
+
|
|
29
|
+
- Fix express rate limit trust proxy ([ed19e729](https://github.com/underpostnet/engine/commit/ed19e729eafb59d46504fb1ebe89e4bd91c05d7e))
|
|
30
|
+
|
|
31
|
+
### cli-cluster
|
|
32
|
+
|
|
33
|
+
- Remove unused full flag ([13df39f5](https://github.com/underpostnet/engine/commit/13df39f508d65b61378ccfca4f7bfc427dcf5fa5))
|
|
34
|
+
|
|
35
|
+
### ipfs
|
|
36
|
+
|
|
37
|
+
- Add ipfs client stable json stringify in addJsonToIpfs method ([c2aaf56a](https://github.com/underpostnet/engine/commit/c2aaf56a4bfc4f06147818ec5681567e27967f41))
|
|
38
|
+
- Fix config map IPFS Cluster daemon bind ([7e6df963](https://github.com/underpostnet/engine/commit/7e6df963ba6da1fdc96ac5b6ab844a789901f61b))
|
|
39
|
+
- server ipfs client and object layer atlas sprite sheet ipfs integration ([781e35c4](https://github.com/underpostnet/engine/commit/781e35c4903380df9e7dce7cf5d9275387a46029))
|
|
40
|
+
- Implement ipfs api user-pin and client component service ([1b12e8df](https://github.com/underpostnet/engine/commit/1b12e8df6af21e1dd2edc156e176072f25c9a433))
|
|
41
|
+
|
|
42
|
+
### cli-run
|
|
43
|
+
|
|
44
|
+
- Implements expose-ipfs runner ([765772b8](https://github.com/underpostnet/engine/commit/765772b8fb1e7b397560464d1dc6dea0b70a9b7f))
|
|
45
|
+
|
|
46
|
+
### engine-core
|
|
47
|
+
|
|
48
|
+
- Clean up legacy logic and json file model ref ([b4c62a2c](https://github.com/underpostnet/engine/commit/b4c62a2cfe4fea0212be644ce333464a81056f6f))
|
|
49
|
+
|
|
50
|
+
### bin-build
|
|
51
|
+
|
|
52
|
+
- Add missing packagejson overrides on dd-cyberia build repository workflow ([7ece9ed5](https://github.com/underpostnet/engine/commit/7ece9ed5500e83a1baedc4d78fd889bca6ecac3c))
|
|
53
|
+
|
|
54
|
+
## New release v:3.0.1 (2026-02-22)
|
|
55
|
+
|
|
56
|
+
### engine-core
|
|
57
|
+
|
|
58
|
+
- Remove ENABLE_FILE_LOGS to default dev adn test env ([727486dc](https://github.com/underpostnet/engine/commit/727486dc4030921c9d1f6a7035eb1a240569fa74))
|
|
59
|
+
|
|
60
|
+
### gitlab
|
|
61
|
+
|
|
62
|
+
- Fix package json lock template build ([e674ec6b](https://github.com/underpostnet/engine/commit/e674ec6be61d7a170ab468d473d0e545401b765a))
|
|
63
|
+
- Fix mirror push to GitLab ([9585aa50](https://github.com/underpostnet/engine/commit/9585aa50ee481fa49084c0edd44cc28b4b2561e8))
|
|
64
|
+
|
|
65
|
+
### bin-file
|
|
66
|
+
|
|
67
|
+
- Add missing gitlab.ci.yml build to pwa-microservices-template ([ec49ded0](https://github.com/underpostnet/engine/commit/ec49ded0ac3fbfcba1e7e10b0ed1dcfc13a8da87))
|
|
68
|
+
|
|
69
|
+
### client-core
|
|
70
|
+
|
|
71
|
+
- Add missing keyboard focus search box on iframes docs ([c5b0f86c](https://github.com/underpostnet/engine/commit/c5b0f86c7acc0d2c964cc1ef80625693241e6d62))
|
|
72
|
+
- Add VanillaJs get selector in iframe ([e37fa340](https://github.com/underpostnet/engine/commit/e37fa34037cff9924bc747f1ee11190ee2e1164b))
|
|
73
|
+
|
|
74
|
+
### giblab
|
|
75
|
+
|
|
76
|
+
- Add .gitlab-ci.yml ([a795bd5f](https://github.com/underpostnet/engine/commit/a795bd5f3526257c858ec70ee27feb8bfd793baf))
|
|
77
|
+
|
|
78
|
+
### docs
|
|
79
|
+
|
|
80
|
+
- Add VanillaJs get selector in iframe sync darkTheme in docs component. ([5b2ba08f](https://github.com/underpostnet/engine/commit/5b2ba08f3b0df3a6072aa49ca55efd223f72a95c))
|
|
81
|
+
|
|
82
|
+
### server-client-build-docs
|
|
83
|
+
|
|
84
|
+
- Enable Swagger UI Dark Light Mode ([eaadad70](https://github.com/underpostnet/engine/commit/eaadad70cd74bcd9f7990dd63834bbd69bffcbae))
|
|
85
|
+
|
|
86
|
+
### github-actions
|
|
87
|
+
|
|
88
|
+
- Add gitlab mirror CI repository integration ([3d6acdef](https://github.com/underpostnet/engine/commit/3d6acdefeea72f26a733975e822dbcf2b4e793e3))
|
|
89
|
+
- Fix GitHub Actions npm provenance ([cd31b8f0](https://github.com/underpostnet/engine/commit/cd31b8f0ed202ed376016d3fc4b9fc63152f5186))
|
|
90
|
+
|
|
91
|
+
### cli-run
|
|
92
|
+
|
|
93
|
+
- Fix missing cluster type on runners id cluster and gpu env ([ddd72d2e](https://github.com/underpostnet/engine/commit/ddd72d2e32e448b8956862f0719d5ab2d2ea7606))
|
|
94
|
+
|
|
95
|
+
### package
|
|
96
|
+
|
|
97
|
+
- Resolve npm ci lock mismatch ([357b4e81](https://github.com/underpostnet/engine/commit/357b4e81611541a0d979bc95cb587343bf540604))
|
|
98
|
+
|
|
99
|
+
### cli-repo
|
|
100
|
+
|
|
101
|
+
- Fix Changelog error due to type integration message ([750656e1](https://github.com/underpostnet/engine/commit/750656e1cbee5dbb3e73d9d5cdd4d94ed049a4f1))
|
|
102
|
+
|
|
103
|
+
### cli-ipfs
|
|
104
|
+
|
|
105
|
+
- Fix underpost ipfs syntax import in main src index ([f7bebb65](https://github.com/underpostnet/engine/commit/f7bebb6555a85df35aed3e248dd0b304c00fd008))
|
|
106
|
+
|
|
107
|
+
## New release v:3.0.0 (2026-02-22)
|
|
108
|
+
|
|
109
|
+
### engine-core
|
|
110
|
+
|
|
111
|
+
- Add ENABLE_FILE_LOGS env ([8657e35f](https://github.com/underpostnet/engine/commit/8657e35f2dab6cf1507a9b3f9146df45ab07d0dd))
|
|
112
|
+
|
|
113
|
+
### docs
|
|
114
|
+
|
|
115
|
+
- Rename cli.md -> CLI-HELP.md ([18e18689](https://github.com/underpostnet/engine/commit/18e18689349227b2c8769eec9f4e1ebeb85b8cf0))
|
|
116
|
+
- Apply fix in swagger-autogen@2.9.2 bug: getResponsesTag missing __¬¬¬__ decode ([2b0d27db](https://github.com/underpostnet/engine/commit/2b0d27db38307d9276b14651083b0ac0c20ecaed))
|
|
117
|
+
- Remove unused jsdocs sections ([ec06f338](https://github.com/underpostnet/engine/commit/ec06f338cca5d656f46629b8957e3ded183ecff7))
|
|
118
|
+
|
|
119
|
+
### bin-zed
|
|
120
|
+
|
|
121
|
+
- Move zed settings file tod zed js bin module ([ba32abea](https://github.com/underpostnet/engine/commit/ba32abeaff4d198c79bcd92ab0fc0120bb41d9d5))
|
|
122
|
+
|
|
123
|
+
### client-core
|
|
124
|
+
|
|
125
|
+
- Fix clear filter user management ([a1d79661](https://github.com/underpostnet/engine/commit/a1d796612654f0e03a4d64ad16dfed403ad0a771))
|
|
126
|
+
|
|
127
|
+
### package
|
|
128
|
+
|
|
129
|
+
- Fix resolve npm minimatch ReDoS vulnerability ([4739fea1](https://github.com/underpostnet/engine/commit/4739fea18407b88e407f7b4be109f2ecc3a3435e))
|
|
130
|
+
- Apply npm audit fix ([9496c5c7](https://github.com/underpostnet/engine/commit/9496c5c77980102fcb402aae29de3f72337adcc4))
|
|
131
|
+
- Apply npm audit fix versions packages ([a1ed004e](https://github.com/underpostnet/engine/commit/a1ed004eecc1219e612027e9bc1f2fab4c717517))
|
|
132
|
+
|
|
133
|
+
### server-client-build-docs
|
|
134
|
+
|
|
135
|
+
- Apply Swagger autogen syntax error fix of version v2.9.2 ([7c8da2ff](https://github.com/underpostnet/engine/commit/7c8da2ff7ffd55e7b0492f019a2b44294137ab39))
|
|
136
|
+
|
|
137
|
+
### vscode
|
|
138
|
+
|
|
139
|
+
- 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))
|
|
140
|
+
|
|
141
|
+
### cli-ipfs
|
|
142
|
+
|
|
143
|
+
- Implements base ipfs underpost dedicated module ([7f4f27f9](https://github.com/underpostnet/engine/commit/7f4f27f9c63ff149c5dd4de57952961a2b3498d0))
|
|
144
|
+
|
|
145
|
+
### cli-cluster
|
|
146
|
+
|
|
147
|
+
- Add Main IPFS Cluster StatefulSet Integration ([53dd0903](https://github.com/underpostnet/engine/commit/53dd09038b47d1a8330ff1e72b0087d2600c93b9))
|
|
148
|
+
- Add --exposePort custom flag ([a29185fe](https://github.com/underpostnet/engine/commit/a29185fe6f48c3babaa66d142d042909ca8b0889))
|
|
149
|
+
- Refactor pullImage load docker pull images to kind nodes ([3bdd5e78](https://github.com/underpostnet/engine/commit/3bdd5e787c242318cbab032816adf0008e9ab9dd))
|
|
150
|
+
- Add --replicas custom option ([70bdc6cd](https://github.com/underpostnet/engine/commit/70bdc6cdc0cf2aa3b2025133a5438f55d7e1ad18))
|
|
151
|
+
- Centralize pullImage for k3s kubeadm kind ([873b20d5](https://github.com/underpostnet/engine/commit/873b20d5a24b07afea39a95e0f705d1f8f01050b))
|
|
152
|
+
- Add snap install on init host workflow and cluster safeReset refactor ([48b4c33d](https://github.com/underpostnet/engine/commit/48b4c33d59166d54042fc5f96b5b524eccbdf1ec))
|
|
153
|
+
|
|
154
|
+
### server-logger
|
|
155
|
+
|
|
156
|
+
- Add optional file logging to logger factory ([ef18a29e](https://github.com/underpostnet/engine/commit/ef18a29e6e31e24e0e705446ca3cdf8804bda6ef))
|
|
157
|
+
|
|
158
|
+
### cli-lxd
|
|
159
|
+
|
|
160
|
+
- Refactor lxd module and workflows to vm cluster with k3s control and worker node integration ([812d5cdd](https://github.com/underpostnet/engine/commit/812d5cdd86f3055c448b594c218ae6e99c365e38))
|
|
161
|
+
|
|
162
|
+
### bin-deploy
|
|
163
|
+
|
|
164
|
+
- Clean up legacy logic ([d3cb1139](https://github.com/underpostnet/engine/commit/d3cb1139b3670915f6c612fd127541debb717d86))
|
|
165
|
+
|
|
166
|
+
### github-actions
|
|
167
|
+
|
|
168
|
+
- Add ref to checkout for provenance in cyberia publish workflow package ([6e0f9b59](https://github.com/underpostnet/engine/commit/6e0f9b5939103a366d28c4940e859d545cabdc34))
|
|
169
|
+
- Add ref to checkout for provenance ([0512ebec](https://github.com/underpostnet/engine/commit/0512ebecf65d1379d29c2c0e2377733a4265c06f))
|
|
170
|
+
- Remove copying of MariaDB.js to underpost directory. ([d64c64ee](https://github.com/underpostnet/engine/commit/d64c64ee99b015dd1e956f6ccc9055fcb73057f9))
|
|
171
|
+
- Fix package-pwa-microservices-template-ghpkg commit message propagation logic ([c8ef2ea8](https://github.com/underpostnet/engine/commit/c8ef2ea8d89d1a37c4dacef4d2538304605369fc))
|
|
172
|
+
|
|
173
|
+
## New release v:2.99.8 (2026-02-18)
|
|
4
174
|
|
|
5
175
|
### github-actions
|
|
6
176
|
|