underpost 2.8.1 → 2.8.6

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 (108) hide show
  1. package/.dockerignore +1 -0
  2. package/.github/workflows/ghpkg.yml +19 -49
  3. package/.github/workflows/npmpkg.yml +67 -0
  4. package/.github/workflows/publish.yml +5 -5
  5. package/.github/workflows/pwa-microservices-template.page.yml +12 -4
  6. package/.github/workflows/pwa-microservices-template.test.yml +2 -2
  7. package/.vscode/extensions.json +17 -71
  8. package/.vscode/settings.json +18 -3
  9. package/AUTHORS.md +16 -5
  10. package/CHANGELOG.md +103 -3
  11. package/Dockerfile +24 -66
  12. package/README.md +1 -28
  13. package/bin/build.js +186 -0
  14. package/bin/db.js +2 -24
  15. package/bin/deploy.js +169 -144
  16. package/bin/file.js +59 -16
  17. package/bin/hwt.js +0 -10
  18. package/bin/index.js +201 -60
  19. package/bin/ssl.js +19 -11
  20. package/bin/util.js +9 -104
  21. package/bin/vs.js +26 -2
  22. package/conf.js +29 -138
  23. package/docker-compose.yml +1 -1
  24. package/manifests/deployment/mongo-express/deployment.yaml +60 -0
  25. package/manifests/deployment/phpmyadmin/deployment.yaml +54 -0
  26. package/manifests/kind-config-dev.yaml +12 -0
  27. package/manifests/kind-config.yaml +12 -0
  28. package/manifests/letsencrypt-prod.yaml +15 -0
  29. package/manifests/mariadb/config.yaml +10 -0
  30. package/manifests/mariadb/kustomization.yaml +9 -0
  31. package/manifests/mariadb/pv.yaml +12 -0
  32. package/manifests/mariadb/pvc.yaml +10 -0
  33. package/manifests/mariadb/secret.yaml +8 -0
  34. package/manifests/mariadb/service.yaml +10 -0
  35. package/manifests/mariadb/statefulset.yaml +55 -0
  36. package/manifests/mongodb/backup-access.yaml +16 -0
  37. package/manifests/mongodb/backup-cronjob.yaml +42 -0
  38. package/manifests/mongodb/backup-pv-pvc.yaml +22 -0
  39. package/manifests/mongodb/configmap.yaml +26 -0
  40. package/manifests/mongodb/headless-service.yaml +10 -0
  41. package/manifests/mongodb/kustomization.yaml +11 -0
  42. package/manifests/mongodb/pv-pvc.yaml +23 -0
  43. package/manifests/mongodb/statefulset.yaml +125 -0
  44. package/manifests/mongodb-4.4/kustomization.yaml +7 -0
  45. package/manifests/mongodb-4.4/pv-pvc.yaml +23 -0
  46. package/manifests/mongodb-4.4/service-deployment.yaml +63 -0
  47. package/manifests/valkey/kustomization.yaml +7 -0
  48. package/manifests/valkey/service.yaml +17 -0
  49. package/manifests/valkey/statefulset.yaml +39 -0
  50. package/package.json +133 -136
  51. package/src/api/core/core.service.js +1 -1
  52. package/src/api/user/user.model.js +16 -3
  53. package/src/api/user/user.service.js +1 -1
  54. package/src/cli/cluster.js +202 -0
  55. package/src/cli/cron.js +90 -0
  56. package/src/cli/db.js +212 -0
  57. package/src/cli/deploy.js +318 -0
  58. package/src/cli/env.js +52 -0
  59. package/src/cli/fs.js +149 -0
  60. package/src/cli/image.js +148 -0
  61. package/src/cli/repository.js +125 -0
  62. package/src/cli/script.js +53 -0
  63. package/src/cli/secrets.js +37 -0
  64. package/src/cli/test.js +118 -0
  65. package/src/client/components/core/Auth.js +22 -4
  66. package/src/client/components/core/CalendarCore.js +127 -50
  67. package/src/client/components/core/CommonJs.js +282 -19
  68. package/src/client/components/core/Css.js +1 -0
  69. package/src/client/components/core/CssCore.js +8 -4
  70. package/src/client/components/core/Docs.js +1 -2
  71. package/src/client/components/core/DropDown.js +5 -1
  72. package/src/client/components/core/Input.js +22 -6
  73. package/src/client/components/core/LoadingAnimation.js +8 -1
  74. package/src/client/components/core/Modal.js +40 -12
  75. package/src/client/components/core/Panel.js +92 -31
  76. package/src/client/components/core/PanelForm.js +25 -23
  77. package/src/client/components/core/Scroll.js +1 -0
  78. package/src/client/components/core/Translate.js +47 -9
  79. package/src/client/components/core/Validator.js +9 -1
  80. package/src/client/components/core/VanillaJs.js +0 -9
  81. package/src/client/components/core/Worker.js +34 -31
  82. package/src/client/services/core/core.service.js +15 -10
  83. package/src/client/services/default/default.management.js +4 -2
  84. package/src/client/ssr/Render.js +4 -1
  85. package/src/client/ssr/body/CacheControl.js +2 -3
  86. package/src/client/sw/default.sw.js +3 -3
  87. package/src/db/mongo/MongooseDB.js +29 -1
  88. package/src/index.js +85 -19
  89. package/src/runtime/lampp/Lampp.js +1 -13
  90. package/src/runtime/xampp/Xampp.js +0 -13
  91. package/src/server/auth.js +3 -3
  92. package/src/server/backup.js +49 -93
  93. package/src/server/client-build.js +36 -46
  94. package/src/server/client-formatted.js +6 -3
  95. package/src/server/conf.js +204 -54
  96. package/src/server/dns.js +30 -55
  97. package/src/server/downloader.js +0 -8
  98. package/src/server/logger.js +15 -10
  99. package/src/server/network.js +17 -43
  100. package/src/server/process.js +25 -2
  101. package/src/server/proxy.js +4 -26
  102. package/src/server/runtime.js +30 -30
  103. package/src/server/ssl.js +1 -1
  104. package/src/server/valkey.js +2 -0
  105. package/test/api.test.js +0 -8
  106. package/src/dns.js +0 -22
  107. package/src/server/prompt-optimizer.js +0 -28
  108. package/startup.js +0 -11
package/.dockerignore CHANGED
@@ -10,5 +10,6 @@
10
10
  /coverage
11
11
  /prometheus_data
12
12
  /grafana_data
13
+ /manifests
13
14
  .nyc_output
14
15
  .cache
@@ -9,48 +9,8 @@ permissions:
9
9
  packages: write
10
10
  id-token: write
11
11
  jobs:
12
- pwa-microservices-template:
13
- if: github.repository == 'underpostnet/engine' && startsWith(github.event.head_commit.message, '[ci][package][pwa-microservices-template]')
14
- name: Update github repo package Jobs
15
- runs-on: ubuntu-latest
16
- permissions:
17
- contents: write
18
- packages: write
19
- id-token: write
20
- steps:
21
- - uses: actions/checkout@v3
22
- - uses: actions/setup-node@v4
23
- with:
24
- node-version: '22.x'
25
-
26
- - name: Install dependencies
27
- run: |
28
- npm install
29
-
30
- - name: Set git credentials
31
- run: |
32
- git config --global credential.helper ""
33
- git config credential.helper ""
34
- git config --global user.name 'underpostnet'
35
- git config --global user.email 'fcoverdugoa@underpost.net'
36
- git config --global credential.interactive always
37
- git config user.name 'underpostnet'
38
- git config user.email 'fcoverdugoa@underpost.net'
39
- git config credential.interactive always
40
-
41
- - name: Clone github package repository
42
- run: |
43
- cd .. && git clone https://github.com/underpostnet/pwa-microservices-template.git
44
- cd engine
45
- npm run update-template
46
- cd ../pwa-microservices-template
47
- git remote set-url origin git@github.com:underpostnet/pwa-microservices-template.git
48
- git add .
49
- git commit -m "Update github repo package"
50
- git push https://${{ secrets.GIT_AUTH_TOKEN }}@github.com/underpostnet/pwa-microservices-template.git
51
-
52
12
  pwa-microservices-template-ghpk:
53
- if: github.repository == 'underpostnet/pwa-microservices-template'
13
+ if: github.repository == 'underpostnet/pwa-microservices-template' && startsWith(github.event.head_commit.message, 'ci(package-pwa-microservices-template-ghpkg)')
54
14
  name: Update github repo package Jobs
55
15
  runs-on: ubuntu-latest
56
16
  permissions:
@@ -59,9 +19,10 @@ jobs:
59
19
  id-token: write
60
20
  steps:
61
21
  - uses: actions/checkout@v3
22
+
62
23
  - uses: actions/setup-node@v4
63
24
  with:
64
- node-version: '22.x'
25
+ node-version: '23.x'
65
26
 
66
27
  # - name: Get npm root
67
28
  # run: sudo npm root -g
@@ -80,36 +41,45 @@ jobs:
80
41
 
81
42
  - name: Install dependencies and set repo configuration
82
43
  run: |
44
+ npm install -g underpost
45
+ underpost config set GITHUB_TOKEN ${{ secrets.GIT_AUTH_TOKEN }}
83
46
  npm install
84
47
  node ./bin/deploy rename-package @underpostnet/underpost
85
48
  node ./bin/deploy set-repo underpostnet/pwa-microservices-template-ghpkg
86
49
 
87
50
  - name: Clone github package repository
88
51
  run: |
89
- git clone https://github.com/underpostnet/pwa-microservices-template-ghpkg.git
52
+ underpost clone --bare underpostnet/pwa-microservices-template-ghpkg
90
53
  rm -rf ./.git
91
- cp -a ./pwa-microservices-template-ghpkg/.git ./.git
92
- rm -rf ./pwa-microservices-template-ghpkg
54
+ cp -rf -a ./pwa-microservices-template-ghpkg.git ./.git
55
+ rm -rf ./pwa-microservices-template-ghpkg.git
93
56
 
94
57
  - name: Set git credentials
95
58
  run: |
96
59
  git config --global credential.helper ""
97
60
  git config credential.helper ""
98
61
  git config --global user.name 'underpostnet'
99
- git config --global user.email 'fcoverdugoa@underpost.net'
62
+ git config --global user.email 'development@underpost.net'
100
63
  git config --global credential.interactive always
101
64
  git config user.name 'underpostnet'
102
- git config user.email 'fcoverdugoa@underpost.net'
65
+ git config user.email 'development@underpost.net'
103
66
  git config credential.interactive always
104
67
 
105
68
  - name: Push to github package repository
106
69
  run: |
107
70
  pwd
71
+ git init
108
72
  git status
109
73
  git remote set-url origin git@github.com:underpostnet/pwa-microservices-template-ghpkg.git
110
74
  git add .
111
- git commit -m "Update github repo package"
112
- git push https://${{ secrets.GIT_AUTH_TOKEN }}@github.com/underpostnet/pwa-microservices-template-ghpkg.git
75
+ underpost cmt . ci package-pwa-microservices-template-ghpkg 'Update github repo package'
76
+ underpost push . underpostnet/pwa-microservices-template-ghpkg
77
+
78
+ # git clone --bare https://github.com/underpostnet/engine.git
79
+ # mkdir engine
80
+ # mv ./engine.git ./engine/.git
81
+ # cd engine
82
+ # git init
113
83
 
114
84
  # git push -u origin https://${{ secrets.GIT_AUTH_TOKEN }}@github.com/underpostnet/pwa-microservices-template-ghpkg.git
115
85
  # git push -u origin master
@@ -0,0 +1,67 @@
1
+ name: Update npm repo package
2
+ on:
3
+ push:
4
+ branches: ['master']
5
+ pull_request:
6
+ branches: ['master']
7
+ permissions:
8
+ contents: write
9
+ packages: write
10
+ id-token: write
11
+ jobs:
12
+ pwa-microservices-template:
13
+ if: github.repository == 'underpostnet/engine' && startsWith(github.event.head_commit.message, 'ci(package-pwa-microservices-template)')
14
+ name: Update npm repo package Jobs
15
+ runs-on: ubuntu-latest
16
+ permissions:
17
+ contents: write
18
+ packages: write
19
+ id-token: write
20
+ steps:
21
+ - uses: actions/checkout@v3
22
+
23
+ - uses: actions/setup-node@v4
24
+ with:
25
+ node-version: '23.x'
26
+
27
+ - name: Install dependencies
28
+ run: |
29
+ npm install -g underpost
30
+ underpost config set GITHUB_TOKEN ${{ secrets.GIT_AUTH_TOKEN }}
31
+ npm install
32
+
33
+ - name: Set git credentials
34
+ run: |
35
+ git config --global credential.helper ""
36
+ git config credential.helper ""
37
+ git config --global user.name 'underpostnet'
38
+ git config --global user.email 'development@underpost.net'
39
+ git config --global credential.interactive always
40
+ git config user.name 'underpostnet'
41
+ git config user.email 'development@underpost.net'
42
+ git config credential.interactive always
43
+
44
+ - name: Clone github package repository
45
+ run: |
46
+ cd .. && underpost clone underpostnet/pwa-microservices-template
47
+ cd engine
48
+ npm run update-template
49
+ cd ../pwa-microservices-template
50
+ git remote set-url origin git@github.com:underpostnet/pwa-microservices-template.git
51
+ git add .
52
+ underpost cmt . ci package-pwa-microservices-template-ghpkg 'Update npm repo package'
53
+ underpost push . underpostnet/pwa-microservices-template
54
+ # cd ../engine
55
+ # git commit --allow-empty -m "ci(engine-core-repo-build): ⚙️ Update engine core repository"
56
+ # git commit --allow-empty -m "ci(engine-cyberia-repo-build): ⚙️ Update engine cyberia repository"
57
+ # git commit --allow-empty -m "ci(engine-lampp-repo-build): ⚙️ Update engine lampp repository"
58
+ # git push https://${{ secrets.GIT_AUTH_TOKEN }}@github.com/underpostnet/engine.git
59
+
60
+ # git clone --bare https://github.com/underpostnet/engine.git
61
+ # mkdir engine
62
+ # mv ./engine.git ./engine/.git
63
+ # cd engine
64
+ # git init
65
+
66
+ # git push -u origin https://${{ secrets.GIT_AUTH_TOKEN }}@github.com/underpostnet/pwa-microservices-template-ghpkg.git
67
+ # git push -u origin master
@@ -14,7 +14,7 @@ jobs:
14
14
  - uses: actions/checkout@v4
15
15
  - uses: actions/setup-node@v4
16
16
  with:
17
- node-version: '22.x'
17
+ node-version: '23.x'
18
18
  registry-url: 'https://registry.npmjs.org'
19
19
 
20
20
  - name: Install Dependencies
@@ -25,7 +25,7 @@ jobs:
25
25
  # Publish to npm
26
26
  - uses: actions/setup-node@v4
27
27
  with:
28
- node-version: '22.x'
28
+ node-version: '23.x'
29
29
  registry-url: 'https://registry.npmjs.org'
30
30
  # Defaults to the user or organization that owns the workflow file
31
31
  # scope: '@underpostnet'
@@ -45,7 +45,7 @@ jobs:
45
45
  - uses: actions/checkout@v4
46
46
  - uses: actions/setup-node@v4
47
47
  with:
48
- node-version: '22.x'
48
+ node-version: '23.x'
49
49
  registry-url: 'https://registry.npmjs.org'
50
50
 
51
51
  - name: Install Dependencies
@@ -56,7 +56,7 @@ jobs:
56
56
  # Publish to npm git hub package
57
57
  - uses: actions/setup-node@v4
58
58
  with:
59
- node-version: '22.x'
59
+ node-version: '23.x'
60
60
  registry-url: 'https://registry.npmjs.org'
61
61
  # Defaults to the user or organization that owns the workflow file
62
62
  scope: '@underpostnet'
@@ -70,7 +70,7 @@ jobs:
70
70
  - name: Setup node to publish to GitHub Packages
71
71
  uses: actions/setup-node@v4
72
72
  with:
73
- node-version: 22.x
73
+ node-version: 23.x
74
74
  registry-url: 'https://npm.pkg.github.com'
75
75
  # Defaults to the user or organization that owns the workflow file
76
76
  scope: '@underpostnet'
@@ -32,16 +32,24 @@ jobs:
32
32
  steps:
33
33
  - name: Checkout
34
34
  uses: actions/checkout@v4
35
+ # with:
36
+ # lfs: true
37
+ # - name: Checkout LFS objects
38
+ # run: git lfs checkout
35
39
  - uses: actions/setup-node@v4
36
40
  with:
37
- node-version: '22.x'
41
+ node-version: '23.x'
38
42
 
39
43
  - name: Build the site
40
44
  run: |
45
+ npm install -g underpost
41
46
  npm install
42
- node bin/deploy update-default-conf
43
- npm run build-production github-pages underpostnet.github.io /pwa-microservices-template-ghpkg
44
-
47
+ node bin/deploy update-default-conf ghpkg
48
+ env-cmd -f .env.production node bin/deploy build-full-client github-pages underpostnet.github.io /pwa-microservices-template-ghpkg
49
+ # git lfs install
50
+ # git lfs track
51
+ # git lfs ls-files
52
+ # git lfs pull
45
53
  - name: Setup Pages
46
54
  uses: actions/configure-pages@v5
47
55
  - name: Upload artifact
@@ -2,12 +2,12 @@ name: Test
2
2
  on: [push]
3
3
  jobs:
4
4
  test:
5
- if: (github.repository == 'underpostnet/pwa-microservices-template') || (github.repository == 'underpostnet/pwa-microservices-template-ghpkg')
5
+ # if: (github.repository == 'underpostnet/pwa-microservices-template') || (github.repository == 'underpostnet/pwa-microservices-template-ghpkg')
6
6
  name: Node ${{ matrix.node }} on ${{ matrix.os }}
7
7
  runs-on: ${{ matrix.os }}
8
8
  strategy:
9
9
  matrix:
10
- node-version: [21.x]
10
+ node-version: [23.x]
11
11
  os: [ubuntu-latest]
12
12
  # os: [ubuntu-latest, windows-latest]
13
13
 
@@ -1,72 +1,18 @@
1
1
  {
2
- "recommendations": [
3
- "adpyke.vscode-sql-formatter",
4
- "angular.ng-template",
5
- "antiantisepticeye.vscode-color-picker",
6
- "bashmish.es6-string-css",
7
- "bierner.lit-html",
8
- "bmewburn.vscode-intelephense-client",
9
- "cschlosser.doxdocgen",
10
- "danielehrhardt.ionic3-vs-ionview-snippets",
11
- "dbaeumer.vscode-eslint",
12
- "eamodio.gitlens",
13
- "esbenp.prettier-vscode",
14
- "fivethree.vscode-ionic-snippets",
15
- "formulahendry.auto-rename-tag",
16
- "golang.go",
17
- "ipedrazas.kubernetes-snippets",
18
- "jannisx11.batch-rename-extension",
19
- "jeff-hykin.better-cpp-syntax",
20
- "jinxdash.prettier-rust",
21
- "johnpapa.vscode-peacock",
22
- "juanblanco.solidity",
23
- "julialang.language-julia",
24
- "kevinrose.vsc-python-indent",
25
- "mechatroner.rainbow-csv",
26
- "mintlify.document",
27
- "ms-azuretools.vscode-docker",
28
- "ms-dotnettools.vscode-dotnet-runtime",
29
- "ms-kubernetes-tools.vscode-kubernetes-tools",
30
- "ms-python.black-formatter",
31
- "ms-python.debugpy",
32
- "ms-python.isort",
33
- "ms-python.python",
34
- "ms-python.vscode-pylance",
35
- "ms-toolsai.jupyter",
36
- "ms-toolsai.jupyter-keymap",
37
- "ms-toolsai.jupyter-renderers",
38
- "ms-toolsai.vscode-jupyter-cell-tags",
39
- "ms-toolsai.vscode-jupyter-slideshow",
40
- "ms-vscode-remote.remote-containers",
41
- "ms-vscode-remote.remote-wsl",
42
- "ms-vscode.cmake-tools",
43
- "ms-vscode.cpptools",
44
- "ms-vscode.cpptools-extension-pack",
45
- "ms-vscode.cpptools-themes",
46
- "ms-vscode.makefile-tools",
47
- "msjsdiag.cordova-tools",
48
- "nicolasvuillamy.vscode-groovy-lint",
49
- "nucllear.vscode-extension-auto-import",
50
- "pinkpotato.ionic-essentials",
51
- "redhat.java",
52
- "redhat.vscode-xml",
53
- "redhat.vscode-yaml",
54
- "rust-lang.rust-analyzer",
55
- "steoates.autoimport",
56
- "streetsidesoftware.code-spell-checker",
57
- "tabnine.tabnine-vscode",
58
- "tamasfe.even-better-toml",
59
- "tobermory.es6-string-html",
60
- "twxs.cmake",
61
- "visualstudioexptteam.intellicode-api-usage-examples",
62
- "visualstudioexptteam.vscodeintellicode",
63
- "vscjava.vscode-gradle",
64
- "vscjava.vscode-java-debug",
65
- "vscjava.vscode-java-dependency",
66
- "vscjava.vscode-java-pack",
67
- "vscjava.vscode-java-test",
68
- "vscjava.vscode-maven",
69
- "vscode-icons-team.vscode-icons",
70
- "xabikos.javascriptsnippets"
71
- ]
72
- }
2
+ "recommendations": [
3
+ "antiantisepticeye.vscode-color-picker",
4
+ "bashmish.es6-string-css",
5
+ "eamodio.gitlens",
6
+ "esbenp.prettier-vscode",
7
+ "foxundermoon.shell-format",
8
+ "github.vscode-github-actions",
9
+ "mintlify.document",
10
+ "ms-python.black-formatter",
11
+ "ms-python.debugpy",
12
+ "ms-python.python",
13
+ "ms-python.vscode-pylance",
14
+ "streetsidesoftware.code-spell-checker",
15
+ "tabnine.tabnine-vscode",
16
+ "tobermory.es6-string-html"
17
+ ]
18
+ }
@@ -42,12 +42,14 @@
42
42
  "Itemledger",
43
43
  "jsonld",
44
44
  "lampp",
45
+ "letsencrypt",
45
46
  "loadingio",
46
47
  "Longname",
47
48
  "metanarrative",
48
49
  "Microdata",
49
50
  "minami",
50
51
  "MMORPG",
52
+ "mongosh",
51
53
  "mysqldump",
52
54
  "neodrag",
53
55
  "nexodev",
@@ -58,9 +60,11 @@
58
60
  "runas",
59
61
  "Scatterplot",
60
62
  "sortablejs",
63
+ "statefulset",
61
64
  "supervisord",
62
65
  "Tokenomics",
63
66
  "underpost",
67
+ "underpostnet",
64
68
  "Unequip",
65
69
  "uuidv",
66
70
  "Valkey",
@@ -69,9 +73,6 @@
69
73
  "xfwd",
70
74
  "youtu"
71
75
  ],
72
- "[dockerfile]": {
73
- "editor.defaultFormatter": "ms-azuretools.vscode-docker"
74
- },
75
76
  "[php]": {
76
77
  "editor.defaultFormatter": "bmewburn.vscode-intelephense-client"
77
78
  },
@@ -107,5 +108,19 @@
107
108
  },
108
109
  "[solidity]": {
109
110
  "editor.defaultFormatter": "JuanBlanco.solidity"
111
+ },
112
+ "[dockerfile]": {
113
+ "editor.defaultFormatter": "foxundermoon.shell-format"
114
+ },
115
+ "[ignore]": {
116
+ "editor.defaultFormatter": "foxundermoon.shell-format"
117
+ },
118
+ "docwriter.progress.trackTypes": true,
119
+ "docwriter.hotkey.mac": "⌘ + .",
120
+ "[dotenv]": {
121
+ "editor.defaultFormatter": "foxundermoon.shell-format"
122
+ },
123
+ "[shellscript]": {
124
+ "editor.defaultFormatter": "foxundermoon.shell-format"
110
125
  }
111
126
  }
package/AUTHORS.md CHANGED
@@ -1,10 +1,21 @@
1
1
  # Authors
2
2
 
3
- #### Ordered by first contribution.
4
3
 
5
- - fcoverdugo ([fcoverdugoa@underpost.net](mailto:fcoverdugoa@underpost.net))
6
- - underpost.net ([52893447+underpostnet@users.noreply.github.com](mailto:52893447+underpostnet@users.noreply.github.com))
7
- - fcoverdugoa ([52893447+underpostnet@users.noreply.github.com](mailto:52893447+underpostnet@users.noreply.github.com))
8
- - underpostnet ([fcoverdugoa@underpost.net](mailto:fcoverdugoa@underpost.net))
4
+ Author: fcoverdugoa <52893447+underpostnet@users.noreply.github.com>
5
+
6
+
7
+ Author: fcoverdugoa <fcoverdugoa@underpost.net>
8
+
9
+
10
+ Author: fcoverdugo <fcoverdugoa@underpost.net>
11
+
12
+
13
+ Author: underpost.net <52893447+underpostnet@users.noreply.github.com>
14
+
15
+
16
+ Author: underpostnet <fcoverdugoa@underpost.net>
17
+
18
+
19
+
9
20
 
10
21
  #### Generated by [underpost.net](https://underpost.net)
package/CHANGELOG.md CHANGED
@@ -4,13 +4,113 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
- #### [v2.7.83](https://github.com/underpostnet/engine/compare/v2.7.7...v2.7.83)
7
+ #### [v2.8.521](https://github.com/underpostnet/engine/compare/v2.8.51...v2.8.521)
8
+
9
+ > 4 March 2025
10
+
11
+ - ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`5878342`](https://github.com/underpostnet/engine/commit/587834206f07a508b3e12ff5b5727c5979c06499)
12
+ - ci(package-pwa-microservices-template): ⚙️ update version 2.8.521 [`5fada73`](https://github.com/underpostnet/engine/commit/5fada73abf960567f4ecdc01062a987f4d7b4e79)
13
+ - fix(cli): 🐛 run prod img [`94743ef`](https://github.com/underpostnet/engine/commit/94743efe2cf214f0dbcf4db9f0b83ecf50b396f5)
14
+
15
+ #### [v2.8.51](https://github.com/underpostnet/engine/compare/v2.8.46...v2.8.51)
16
+
17
+ > 4 March 2025
18
+
19
+ - ci: ⚙️ add dd-core-development yamls [`a236466`](https://github.com/underpostnet/engine/commit/a2364666f5ddc0e824fa8b68b203bb9e021cca0c)
20
+ - refactor(cli): 📦 cron jobs management refactor [`8c28689`](https://github.com/underpostnet/engine/commit/8c28689cd514ee0e30a38be22ca3dbd292aa3a8a)
21
+ - ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`dd3557b`](https://github.com/underpostnet/engine/commit/dd3557bc52724d9231a0a13a320108758b6a84d2)
22
+
23
+ #### [v2.8.46](https://github.com/underpostnet/engine/compare/v2.8.44...v2.8.46)
24
+
25
+ > 28 February 2025
26
+
27
+ - refactor(add cli module directory): 📦 A code change that neither fixes a bug nor adds a feature [`56eea01`](https://github.com/underpostnet/engine/commit/56eea0121489998945c1b2040c3fc53cf6ee295c)
28
+ - refactor(bin): 📦 static API method access [`dcac59e`](https://github.com/underpostnet/engine/commit/dcac59e0cc3fb3e7eeef490d7ded3adb921f4e7a)
29
+ - ci(package-pwa-microservices-template): ⚙️ update version 2.8.45 [`11795eb`](https://github.com/underpostnet/engine/commit/11795eb2b57243530bfd027774005a83edbdee3b)
30
+
31
+ #### [v2.8.44](https://github.com/underpostnet/engine/compare/v2.8.42...v2.8.44)
32
+
33
+ > 18 February 2025
34
+
35
+ - ci(package-pwa-microservices-template): ⚙️ update version 2.8.44 [`1d1731d`](https://github.com/underpostnet/engine/commit/1d1731d8c81389f9ba6a308af9a66e455baa8fad)
36
+ - ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`1c2cc3e`](https://github.com/underpostnet/engine/commit/1c2cc3ed8c96c1d7d219f112692397de14aea172)
37
+ - ci(package-pwa-microservices-template): ⚙️ add underpost cli root env management [`1923fb6`](https://github.com/underpostnet/engine/commit/1923fb6b32c1d2df1564fb94d3475b4ef0400f99)
38
+
39
+ #### [v2.8.42](https://github.com/underpostnet/engine/compare/v2.8.31...v2.8.42)
40
+
41
+ > 18 February 2025
42
+
43
+ - ci(engine-lampp-repo-build): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`cd076c0`](https://github.com/underpostnet/engine/commit/cd076c095fde19caf744e5e04e419973670fbc6c)
44
+ - ci(engine-cyberia-repo-build): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`69d55e2`](https://github.com/underpostnet/engine/commit/69d55e2d9f8f93252561c17747472f12c6369e1c)
45
+ - ci(engine-core-repo-build): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`b031b0f`](https://github.com/underpostnet/engine/commit/b031b0f65884d9d908143e2d609ea8b0f30828a0)
46
+
47
+ #### [v2.8.31](https://github.com/underpostnet/engine/compare/v2.8.1...v2.8.31)
48
+
49
+ > 5 February 2025
50
+
51
+ - build(clipboardy): 🛠 add cli copy paste [`18acbde`](https://github.com/underpostnet/engine/commit/18acbded151da88499a3a0f1c1bfdbdef2abfc6b)
52
+ - HealthcareAppointmentService advance [`228257c`](https://github.com/underpostnet/engine/commit/228257c0aa2d875014e72f2550bb44aa6b009bed)
53
+ - healthcare appoiment service advance [`207a299`](https://github.com/underpostnet/engine/commit/207a299ffc815870a574524907d5b6b3d9924f1a)
54
+
55
+ #### [v2.8.1](https://github.com/underpostnet/engine/compare/v2.8.0...v2.8.1)
56
+
57
+ > 20 January 2025
58
+
59
+ - [ci][docker-image][engine] v2.8.1 [`1c44f4c`](https://github.com/underpostnet/engine/commit/1c44f4cb53d1e197866e6ef768287f618fbe79b4)
60
+ - version refactor [`1aeaca2`](https://github.com/underpostnet/engine/commit/1aeaca200c8003915d3ef422f2bb2818e7438b8d)
61
+ - add bymyelectrics client components [`f2d3e8c`](https://github.com/underpostnet/engine/commit/f2d3e8c888b2b8573b25965b549fcb8e6b2e86e7)
62
+
63
+ #### [v2.8.0](https://github.com/underpostnet/engine/compare/v2.7.94...v2.8.0)
64
+
65
+ > 31 December 2024
66
+
67
+ - add vectorized lore cyberia [`166e021`](https://github.com/underpostnet/engine/commit/166e0210470e6a0fbaf755320c56105932138e28)
68
+ - cyberia biome engine advance [`e8bbce7`](https://github.com/underpostnet/engine/commit/e8bbce7cf2154c6de67840132cebc50349b1ab67)
69
+ - update src v2.8.0 [`3fa3aa1`](https://github.com/underpostnet/engine/commit/3fa3aa12db3609bd14ac526626707a152d69bd32)
70
+
71
+ #### [v2.7.94](https://github.com/underpostnet/engine/compare/v2.7.93...v2.7.94)
72
+
73
+ > 17 December 2024
74
+
75
+ - cyberia server character server transport refactor [`d302a5a`](https://github.com/underpostnet/engine/commit/d302a5ab02d789226d9ef84bf00c19358f83b5cb)
76
+ - healthcare nutrition-tips advance [`f97ca58`](https://github.com/underpostnet/engine/commit/f97ca58344d9d9da656155deaaac54c621e927f8)
77
+ - scroll top refresh refactor [`b9fc99f`](https://github.com/underpostnet/engine/commit/b9fc99f413b8a177242c9e6538eb70c73f97747e)
78
+
79
+ #### [v2.7.93](https://github.com/underpostnet/engine/compare/v2.7.92...v2.7.93)
80
+
81
+ > 12 December 2024
82
+
83
+ - [ci][docker-image][engine] [`0d209f7`](https://github.com/underpostnet/engine/commit/0d209f7336b33d56db290e6816152a29194f224f)
84
+ - add pul refresh reload [`93c2929`](https://github.com/underpostnet/engine/commit/93c29298e322181ef320644a97731b90efed1811)
85
+ - update get lang function [`895df49`](https://github.com/underpostnet/engine/commit/895df49c150c09f3f2c0d96921f3529a097f5f83)
86
+
87
+ #### [v2.7.92](https://github.com/underpostnet/engine/compare/v2.7.91...v2.7.92)
88
+
89
+ > 12 December 2024
90
+
91
+ - ssr refactor advance [`9c1be61`](https://github.com/underpostnet/engine/commit/9c1be61a48c7fe343c38008fc81854713c239388)
92
+ - [ci][docker-image][engine] v2.7.92 [`719efb7`](https://github.com/underpostnet/engine/commit/719efb7486c2651450ad698f9d5770042ed4c060)
93
+ - cyberia biome instance refactor [`44e56ed`](https://github.com/underpostnet/engine/commit/44e56ed7cebccacbf7439ffb6857f12afa52edeb)
94
+
95
+ #### [v2.7.91](https://github.com/underpostnet/engine/compare/v2.7.83...v2.7.91)
96
+
97
+ > 7 December 2024
98
+
99
+ - [ci][docker-image][engine] v2.7.91 [`9616635`](https://github.com/underpostnet/engine/commit/9616635c12d4eba7e7597a81f6ff6760fc9fb937)
100
+ - add gemini creator quest [`5f1bbec`](https://github.com/underpostnet/engine/commit/5f1bbeca4698879043c7d4abb1341c8ac08b859c)
101
+ - update to version 2.7.9 [`41b96b6`](https://github.com/underpostnet/engine/commit/41b96b63e48759a3bb8ab54c0573536db8ef4143)
102
+
103
+ #### [v2.7.83](https://github.com/underpostnet/engine/compare/v2.7.9...v2.7.83)
8
104
 
9
105
  > 28 October 2024
10
106
 
107
+ #### [v2.7.9](https://github.com/underpostnet/engine/compare/v2.7.7...v2.7.9)
108
+
109
+ > 14 November 2024
110
+
11
111
  - update version 2.7.83 [`3d22671`](https://github.com/underpostnet/engine/commit/3d22671a23f25767cc01c244090e237ab3a300da)
12
- - ssr refactor [`836b848`](https://github.com/underpostnet/engine/commit/836b8488b8b5156c4c5d376fefd592e25071a212)
13
- - fix pixi js render [`93aaee3`](https://github.com/underpostnet/engine/commit/93aaee3683b070874b65ca2c00d27f2a787a0a5d)
112
+ - remove unnecesary packages [`4c0e029`](https://github.com/underpostnet/engine/commit/4c0e029509331fb718554d595d7de9e042eb2b54)
113
+ - add item-skin-08 tile engine logic [`b72c64f`](https://github.com/underpostnet/engine/commit/b72c64f218d013653c1c800473f768dc38fe5607)
14
114
 
15
115
  #### [v2.7.7](https://github.com/underpostnet/engine/compare/v2.7.6...v2.7.7)
16
116