underpost 2.8.886 → 2.81.1
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/.github/workflows/release.cd.yml +1 -1
- package/.vscode/zed.keymap.json +17 -0
- package/.vscode/zed.settings.json +20 -0
- package/Dockerfile +19 -2
- package/README.md +5 -5
- package/bin/deploy.js +38 -10
- package/bin/zed.js +20 -0
- package/cli.md +13 -7
- package/manifests/deployment/dd-default-development/deployment.yaml +2 -2
- package/manifests/deployment/dd-test-development/deployment.yaml +6 -6
- package/package.json +3 -5
- package/scripts/ssh-cluster-info.sh +1 -1
- package/src/cli/baremetal.js +1 -1
- package/src/cli/cluster.js +5 -1
- package/src/cli/db.js +1 -0
- package/src/cli/deploy.js +33 -16
- package/src/cli/image.js +12 -2
- package/src/cli/index.js +11 -4
- package/src/cli/monitor.js +1 -0
- package/src/cli/repository.js +47 -1
- package/src/cli/run.js +85 -39
- package/src/index.js +1 -1
- package/src/runtime/express/Dockerfile +41 -0
- package/src/server/conf.js +40 -34
- package/src/server/dns.js +25 -44
- package/CHANGELOG.md +0 -349
package/src/server/dns.js
CHANGED
|
@@ -8,7 +8,6 @@ import axios from 'axios';
|
|
|
8
8
|
import dotenv from 'dotenv';
|
|
9
9
|
import fs from 'fs';
|
|
10
10
|
import validator from 'validator';
|
|
11
|
-
import { publicIp, publicIpv4, publicIpv6 } from 'public-ip';
|
|
12
11
|
import { loggerFactory } from './logger.js';
|
|
13
12
|
import UnderpostRootEnv from '../cli/env.js';
|
|
14
13
|
import dns from 'node:dns';
|
|
@@ -35,40 +34,41 @@ class Dns {
|
|
|
35
34
|
* @returns {Promise<string>} The public IP address.
|
|
36
35
|
*/
|
|
37
36
|
static async getPublicIp() {
|
|
38
|
-
return await
|
|
37
|
+
return await new Promise(async (resolve) => {
|
|
38
|
+
try {
|
|
39
|
+
return axios.get('https://api.ipify.org').then((response) => resolve(response.data));
|
|
40
|
+
} catch (error) {
|
|
41
|
+
logger.error('Error fetching public IP:', { error: error.message, stack: error.stack });
|
|
42
|
+
return resolve(null);
|
|
43
|
+
}
|
|
44
|
+
});
|
|
39
45
|
}
|
|
40
46
|
|
|
41
47
|
/**
|
|
42
|
-
*
|
|
43
|
-
* @async
|
|
48
|
+
* Checks for active internet connection by performing a DNS lookup on a specified domain.
|
|
44
49
|
* @static
|
|
45
50
|
* @memberof DnsManager
|
|
46
|
-
* @
|
|
51
|
+
* @param {string} [domain='google.com'] The domain to check the connection against.
|
|
52
|
+
* @returns {Promise<boolean>} True if connected, false otherwise.
|
|
47
53
|
*/
|
|
48
|
-
static
|
|
49
|
-
return
|
|
54
|
+
static isInternetConnection(domain = 'google.com') {
|
|
55
|
+
return new Promise((resolve) => dns.lookup(domain, {}, (err) => resolve(err ? false : true)));
|
|
50
56
|
}
|
|
51
57
|
|
|
52
58
|
/**
|
|
53
|
-
*
|
|
54
|
-
*
|
|
59
|
+
* Determines the default network interface name using shell command.
|
|
60
|
+
* This method is primarily intended for Linux environments.
|
|
55
61
|
* @static
|
|
56
62
|
* @memberof DnsManager
|
|
57
|
-
* @returns {
|
|
58
|
-
*/
|
|
59
|
-
static async getPublicIpv6() {
|
|
60
|
-
return await publicIpv6();
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
/**
|
|
64
|
-
* Checks for active internet connection by performing a DNS lookup on a specified domain.
|
|
65
|
-
* @static
|
|
63
|
+
* @returns {string} The default network interface name.
|
|
66
64
|
* @memberof DnsManager
|
|
67
|
-
* @param {string} [domain='google.com'] The domain to check the connection against.
|
|
68
|
-
* @returns {Promise<boolean>} True if connected, false otherwise.
|
|
69
65
|
*/
|
|
70
|
-
static
|
|
71
|
-
return
|
|
66
|
+
static getDefaultNetworkInterface() {
|
|
67
|
+
return shellExec(`ip route | grep default | cut -d ' ' -f 5`, {
|
|
68
|
+
stdout: true,
|
|
69
|
+
silent: true,
|
|
70
|
+
disableLog: true,
|
|
71
|
+
}).trim();
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
/**
|
|
@@ -80,11 +80,7 @@ class Dns {
|
|
|
80
80
|
*/
|
|
81
81
|
static getLocalIPv4Address() {
|
|
82
82
|
// Determine the default network interface name using shell command
|
|
83
|
-
const interfaceName =
|
|
84
|
-
stdout: true,
|
|
85
|
-
silent: true,
|
|
86
|
-
disableLog: true,
|
|
87
|
-
}).trim();
|
|
83
|
+
const interfaceName = Dns.getDefaultNetworkInterface();
|
|
88
84
|
|
|
89
85
|
// Find the IPv4 address associated with the determined interface
|
|
90
86
|
const networkInfo = os.networkInterfaces()[interfaceName];
|
|
@@ -121,7 +117,7 @@ class Dns {
|
|
|
121
117
|
let testIp;
|
|
122
118
|
|
|
123
119
|
try {
|
|
124
|
-
testIp = await Dns.
|
|
120
|
+
testIp = await Dns.getPublicIp();
|
|
125
121
|
} catch (error) {
|
|
126
122
|
logger.error(error, { testIp, stack: error.stack });
|
|
127
123
|
}
|
|
@@ -238,21 +234,6 @@ class Dns {
|
|
|
238
234
|
};
|
|
239
235
|
}
|
|
240
236
|
|
|
241
|
-
/**
|
|
242
|
-
* @namespace Dns
|
|
243
|
-
* @description Exported IP object for backward compatibility, mapping to Dns static methods.
|
|
244
|
-
*/
|
|
245
|
-
const ip = {
|
|
246
|
-
public: {
|
|
247
|
-
/** @type {function(): Promise<string>} */
|
|
248
|
-
get: Dns.getPublicIp,
|
|
249
|
-
/** @type {function(): Promise<string>} */
|
|
250
|
-
ipv4: Dns.getPublicIpv4,
|
|
251
|
-
/** @type {function(): Promise<string>} */
|
|
252
|
-
ipv6: Dns.getPublicIpv6,
|
|
253
|
-
},
|
|
254
|
-
};
|
|
255
|
-
|
|
256
237
|
/**
|
|
257
238
|
* @function isInternetConnection
|
|
258
239
|
* @memberof DnsManager
|
|
@@ -273,4 +254,4 @@ const getLocalIPv4Address = Dns.getLocalIPv4Address;
|
|
|
273
254
|
// Export the class as default and all original identifiers for backward compatibility.
|
|
274
255
|
export default Dns;
|
|
275
256
|
|
|
276
|
-
export { Dns,
|
|
257
|
+
export { Dns, isInternetConnection, getLocalIPv4Address };
|
package/CHANGELOG.md
DELETED
|
@@ -1,349 +0,0 @@
|
|
|
1
|
-
### Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
|
|
4
|
-
|
|
5
|
-
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
|
-
|
|
7
|
-
#### [v2.8.885](https://github.com/underpostnet/engine/compare/v2.8.883...v2.8.885)
|
|
8
|
-
|
|
9
|
-
> 13 October 2025
|
|
10
|
-
|
|
11
|
-
- cd(ssh-engine-cyberia): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`db3ba50`](https://github.com/underpostnet/engine/commit/db3ba504236a49acd8a6f6873ea039fd0f615224)
|
|
12
|
-
- cd(ssh-engine-lampp): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`ffa8f17`](https://github.com/underpostnet/engine/commit/ffa8f17e795d8cff886e84948dfadfc55b546df3)
|
|
13
|
-
- cd(ssh-engine-core): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`3c26a8f`](https://github.com/underpostnet/engine/commit/3c26a8ff88d199066f1447d91126b206ffbd8fe9)
|
|
14
|
-
|
|
15
|
-
#### [v2.8.883](https://github.com/underpostnet/engine/compare/v2.8.881...v2.8.883)
|
|
16
|
-
|
|
17
|
-
> 10 October 2025
|
|
18
|
-
|
|
19
|
-
- cd(ssh-engine-cyberia): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`a7a6211`](https://github.com/underpostnet/engine/commit/a7a6211216378d4359f17fac9fa89a19b522c331)
|
|
20
|
-
- cd(ssh-engine-core): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`7c57945`](https://github.com/underpostnet/engine/commit/7c5794585698836bfa638a229ce6c36ffcaf69e2)
|
|
21
|
-
- cd(ssh-engine-test): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`08ee147`](https://github.com/underpostnet/engine/commit/08ee1476e76f6b7d996cf824edfd3a00f94e0b82)
|
|
22
|
-
|
|
23
|
-
#### [v2.8.881](https://github.com/underpostnet/engine/compare/v2.8.878...v2.8.881)
|
|
24
|
-
|
|
25
|
-
> 3 October 2025
|
|
26
|
-
|
|
27
|
-
- cd(ssh-engine-core): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`8c9a193`](https://github.com/underpostnet/engine/commit/8c9a19381f373fbcbcc98065fff805ea14ab9fd8)
|
|
28
|
-
- cd(ssh-engine-test): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`fd6d81b`](https://github.com/underpostnet/engine/commit/fd6d81b8f2a21a81a675f85ae134b95873edf6ce)
|
|
29
|
-
- ci(docker-image-engine): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`ef3e8d9`](https://github.com/underpostnet/engine/commit/ef3e8d945704c6c64c07c4ad886c2a12e24e1a27)
|
|
30
|
-
|
|
31
|
-
#### [v2.8.878](https://github.com/underpostnet/engine/compare/v2.8.871...v2.8.878)
|
|
32
|
-
|
|
33
|
-
> 29 September 2025
|
|
34
|
-
|
|
35
|
-
- cd(ssh-engine-cyberia): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`3d46c7b`](https://github.com/underpostnet/engine/commit/3d46c7b68b5b8af269d738a35cc92b69d74f5c41)
|
|
36
|
-
- cd(ssh-engine-core): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`82c8960`](https://github.com/underpostnet/engine/commit/82c8960b8e898891d3b496ff6797638d97be8cc2)
|
|
37
|
-
- cd(ssh-engine-test): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`054fda8`](https://github.com/underpostnet/engine/commit/054fda835fffcaaaf84f1b56eab93a82ba077f2d)
|
|
38
|
-
|
|
39
|
-
#### [v2.8.871](https://github.com/underpostnet/engine/compare/v2.8.866...v2.8.871)
|
|
40
|
-
|
|
41
|
-
> 22 September 2025
|
|
42
|
-
|
|
43
|
-
- Clean dependencies and refactor getDefaultProfileImageId [`450a9ef`](https://github.com/underpostnet/engine/commit/450a9effc2f30a342bdc9a3d02ec148c02c182e8)
|
|
44
|
-
- ci(package-pwa-microservices-template): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`ff6d44b`](https://github.com/underpostnet/engine/commit/ff6d44b805afe7d03c1a49cab85353b18d01fee2)
|
|
45
|
-
- ci(package-pwa-microservices-template): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`4e7ad66`](https://github.com/underpostnet/engine/commit/4e7ad6610b4c6b7c62aab5ec1ed5f46c7193fe10)
|
|
46
|
-
|
|
47
|
-
#### [v2.8.866](https://github.com/underpostnet/engine/compare/v2.8.853...v2.8.866)
|
|
48
|
-
|
|
49
|
-
> 12 September 2025
|
|
50
|
-
|
|
51
|
-
- ci(package-pwa-microservices-template): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`0a4e1f8`](https://github.com/underpostnet/engine/commit/0a4e1f83d93a3014e0871ad3f703811125bd04cc)
|
|
52
|
-
- ci(package-pwa-microservices-template): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`31279b0`](https://github.com/underpostnet/engine/commit/31279b09af9ae3c9fda2d410b701ff69c3435dbe)
|
|
53
|
-
- ci(package-pwa-microservices-template): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`c66fb17`](https://github.com/underpostnet/engine/commit/c66fb17b3a2e8a0dad5dc0c1649ac68dcbd78c81)
|
|
54
|
-
|
|
55
|
-
#### [v2.8.853](https://github.com/underpostnet/engine/compare/v2.8.852...v2.8.853)
|
|
56
|
-
|
|
57
|
-
> 4 September 2025
|
|
58
|
-
|
|
59
|
-
- cd(ssh-engine-cyberia): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`333345b`](https://github.com/underpostnet/engine/commit/333345ba751939c790c8280fa90aea6b2faafd74)
|
|
60
|
-
- cd(ssh-engine-core): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`7e98622`](https://github.com/underpostnet/engine/commit/7e98622c5d2706e686384456a0c77005842704f5)
|
|
61
|
-
- ci(package-pwa-microservices-template): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`60b7e97`](https://github.com/underpostnet/engine/commit/60b7e9711244192dc978442e99db1eb99d7f4fd1)
|
|
62
|
-
|
|
63
|
-
#### [v2.8.852](https://github.com/underpostnet/engine/compare/v2.8.845...v2.8.852)
|
|
64
|
-
|
|
65
|
-
> 3 September 2025
|
|
66
|
-
|
|
67
|
-
- cd(ssh-engine-cyberia): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`19db862`](https://github.com/underpostnet/engine/commit/19db862aeb61a0f551f8b4d0a0f42a82dc3b9d97)
|
|
68
|
-
- cd(ssh-engine-core): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`ad2a17a`](https://github.com/underpostnet/engine/commit/ad2a17a053dd09d204e589dab4c3d32b7036522e)
|
|
69
|
-
- ci(package-pwa-microservices-template): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`765057f`](https://github.com/underpostnet/engine/commit/765057f4112cd2f662836d0b69475212c778b516)
|
|
70
|
-
|
|
71
|
-
#### [v2.8.845](https://github.com/underpostnet/engine/compare/v2.8.844...v2.8.845)
|
|
72
|
-
|
|
73
|
-
> 30 August 2025
|
|
74
|
-
|
|
75
|
-
- cd(ssh-engine-core): 🚀 Changes to our Continuous Delivery configuration files and scripts (example scopes: Jenkins, Spinnaker, ArgoCD) [`1a9262a`](https://github.com/underpostnet/engine/commit/1a9262ac5604b3b63e50b169bf40730a767914a0)
|
|
76
|
-
- Add src/server/client-build-docs.js module [`0abd837`](https://github.com/underpostnet/engine/commit/0abd837fa33ab59e91945d6738463bf5cd613502)
|
|
77
|
-
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`09f0681`](https://github.com/underpostnet/engine/commit/09f0681b10236d471ab6d9e5fbe0bf98ec0b1cb0)
|
|
78
|
-
|
|
79
|
-
#### [v2.8.844](https://github.com/underpostnet/engine/compare/v2.8.843...v2.8.844)
|
|
80
|
-
|
|
81
|
-
> 29 August 2025
|
|
82
|
-
|
|
83
|
-
- cd(ssh-engine-core): 🚀 Changes to our Continuous Delivery configuration files and scripts (example scopes: Jenkins, Spinnaker, ArgoCD) [`fe2f1fd`](https://github.com/underpostnet/engine/commit/fe2f1fdf2dc3a10f62b69363c2fb3a15c53d641a)
|
|
84
|
-
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`e793cbe`](https://github.com/underpostnet/engine/commit/e793cbed1af8a8bbecd5bf971ae1bb74c32347ae)
|
|
85
|
-
- Remove plantuml logic [`f037ac7`](https://github.com/underpostnet/engine/commit/f037ac75fc37c5791fa1c7bbe7c0b506dd3b2e3d)
|
|
86
|
-
|
|
87
|
-
#### [v2.8.843](https://github.com/underpostnet/engine/compare/v2.8.837...v2.8.843)
|
|
88
|
-
|
|
89
|
-
> 24 August 2025
|
|
90
|
-
|
|
91
|
-
- Add oi to image logic cyberia cli [`e56d9e0`](https://github.com/underpostnet/engine/commit/e56d9e030de0c5071e9a86474dbf9ea6d53b71e6)
|
|
92
|
-
- Add src main monitor entry point [`1e95554`](https://github.com/underpostnet/engine/commit/1e95554a8a694ef00d1963cc42c1631713222082)
|
|
93
|
-
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`fd89c81`](https://github.com/underpostnet/engine/commit/fd89c81e2a68f21ab355b10a86f36e2ae01a2a3f)
|
|
94
|
-
|
|
95
|
-
#### [v2.8.837](https://github.com/underpostnet/engine/compare/v2.8.836...v2.8.837)
|
|
96
|
-
|
|
97
|
-
> 2 August 2025
|
|
98
|
-
|
|
99
|
-
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`b2447be`](https://github.com/underpostnet/engine/commit/b2447bec90756aa41caf40eac02a7fd5bf195165)
|
|
100
|
-
- Refactor run job runner [`102692d`](https://github.com/underpostnet/engine/commit/102692db1944a6f1538b833b9616ce75105c0786)
|
|
101
|
-
- Add tf-vae-test job run cli [`6c0514e`](https://github.com/underpostnet/engine/commit/6c0514e844bedc7bba0a2bdafcf30a1aa144f63c)
|
|
102
|
-
|
|
103
|
-
#### [v2.8.836](https://github.com/underpostnet/engine/compare/v2.8.832...v2.8.836)
|
|
104
|
-
|
|
105
|
-
> 2 August 2025
|
|
106
|
-
|
|
107
|
-
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`ee9bb27`](https://github.com/underpostnet/engine/commit/ee9bb272c14be41e74111fa3557e30c9ff68efa6)
|
|
108
|
-
- Refactor underpost runner cli [`5d8fee5`](https://github.com/underpostnet/engine/commit/5d8fee50756890cb3a3e3533dfe8e60f5d6ac09a)
|
|
109
|
-
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`a8ee2ad`](https://github.com/underpostnet/engine/commit/a8ee2ad94deb26eb3b22e0d2f0207d0046638581)
|
|
110
|
-
|
|
111
|
-
#### [v2.8.832](https://github.com/underpostnet/engine/compare/v2.8.821...v2.8.832)
|
|
112
|
-
|
|
113
|
-
> 1 August 2025
|
|
114
|
-
|
|
115
|
-
- Reset cluster refactor [`9ce891f`](https://github.com/underpostnet/engine/commit/9ce891f299be17bd28166e84a7676a7794385d37)
|
|
116
|
-
- Refactor reset [`a19d123`](https://github.com/underpostnet/engine/commit/a19d1231814bb8689450cf8ae914eb8ef4509379)
|
|
117
|
-
- Add gpu tf test script [`1d45b7f`](https://github.com/underpostnet/engine/commit/1d45b7febd05c66d14d4d2afd75692244db8a8c6)
|
|
118
|
-
|
|
119
|
-
#### [v2.8.821](https://github.com/underpostnet/engine/compare/v2.8.646...v2.8.821)
|
|
120
|
-
|
|
121
|
-
> 27 July 2025
|
|
122
|
-
|
|
123
|
-
- Add commissionMonitor refactor logic [`0160207`](https://github.com/underpostnet/engine/commit/016020783a5e87cef0e9252b1807c94b4e14b70c)
|
|
124
|
-
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`cd5aaeb`](https://github.com/underpostnet/engine/commit/cd5aaeb3f22f04d4fe03fb3f4687a9e8adf08834)
|
|
125
|
-
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`9369ecf`](https://github.com/underpostnet/engine/commit/9369ecf85933f52837402104215d453a3f7108fb)
|
|
126
|
-
|
|
127
|
-
#### [v2.8.646](https://github.com/underpostnet/engine/compare/v2.8.532...v2.8.646)
|
|
128
|
-
|
|
129
|
-
> 28 March 2025
|
|
130
|
-
|
|
131
|
-
- refactor(engine-core): 📦 start deploy refactor [`4c4ebdb`](https://github.com/underpostnet/engine/commit/4c4ebdb8ebd57b77420451cc8a1022c3d63444b1)
|
|
132
|
-
- refactor(engine-core): 📦 monitor and image build logic [`fd8f7ee`](https://github.com/underpostnet/engine/commit/fd8f7eeed054d3c591961e03c3a15029a7dfb380)
|
|
133
|
-
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`25e4097`](https://github.com/underpostnet/engine/commit/25e4097a9bde35ee7d0b5e5c2fb9546e80f50aee)
|
|
134
|
-
|
|
135
|
-
#### [v2.8.532](https://github.com/underpostnet/engine/compare/v2.8.521...v2.8.532)
|
|
136
|
-
|
|
137
|
-
> 6 March 2025
|
|
138
|
-
|
|
139
|
-
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`09b2e9a`](https://github.com/underpostnet/engine/commit/09b2e9a5e16092415f553566643d70e5ae81951f)
|
|
140
|
-
- refactor(cli): 📦 it script methods [`8a16e17`](https://github.com/underpostnet/engine/commit/8a16e17db6d3b70198a6d435624572d8807feb46)
|
|
141
|
-
- feat(mongo): ✨ advance support mongo 4.4 [`2bb5bf9`](https://github.com/underpostnet/engine/commit/2bb5bf9f32162207f01a6a57effb514ae36e9ebc)
|
|
142
|
-
|
|
143
|
-
#### [v2.8.521](https://github.com/underpostnet/engine/compare/v2.8.87...v2.8.521)
|
|
144
|
-
|
|
145
|
-
> 4 March 2025
|
|
146
|
-
|
|
147
|
-
#### [v2.8.87](https://github.com/underpostnet/engine/compare/v2.8.85...v2.8.87)
|
|
148
|
-
|
|
149
|
-
> 21 September 2025
|
|
150
|
-
|
|
151
|
-
- ci(package-pwa-microservices-template): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`f8f0c33`](https://github.com/underpostnet/engine/commit/f8f0c33b1ff607aaa16914176d4b6b6a7a176273)
|
|
152
|
-
- Clean dependencies and refactor getDefaultProfileImageId [`450a9ef`](https://github.com/underpostnet/engine/commit/450a9effc2f30a342bdc9a3d02ec148c02c182e8)
|
|
153
|
-
- ci(package-pwa-microservices-template): ⚙️ CI pipeline changes (GitHub Actions, runners, caching) [`4e7ad66`](https://github.com/underpostnet/engine/commit/4e7ad6610b4c6b7c62aab5ec1ed5f46c7193fe10)
|
|
154
|
-
|
|
155
|
-
#### [v2.8.85](https://github.com/underpostnet/engine/compare/v2.8.82...v2.8.85)
|
|
156
|
-
|
|
157
|
-
> 2 September 2025
|
|
158
|
-
|
|
159
|
-
- cd(ssh-engine-core): 🚀 CD / deployment changes (Remote ssh deployment scripts) [`7560d10`](https://github.com/underpostnet/engine/commit/7560d10cf41d8478539852f32308722c5d9a5ad6)
|
|
160
|
-
- Update nexodev lading page [`8cbe924`](https://github.com/underpostnet/engine/commit/8cbe924784ebd44640a9c95588188fb59796cc8d)
|
|
161
|
-
- Clean nexodev landing styles colors [`3e58d70`](https://github.com/underpostnet/engine/commit/3e58d701d380ebc339524a3796d5613847ef3fb4)
|
|
162
|
-
|
|
163
|
-
#### [v2.8.82](https://github.com/underpostnet/engine/compare/v2.8.56...v2.8.82)
|
|
164
|
-
|
|
165
|
-
> 26 July 2025
|
|
166
|
-
|
|
167
|
-
- Add commissionMonitor refactor logic [`0160207`](https://github.com/underpostnet/engine/commit/016020783a5e87cef0e9252b1807c94b4e14b70c)
|
|
168
|
-
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`cd5aaeb`](https://github.com/underpostnet/engine/commit/cd5aaeb3f22f04d4fe03fb3f4687a9e8adf08834)
|
|
169
|
-
- Refactor cluster and lxd vm setup [`1e5af95`](https://github.com/underpostnet/engine/commit/1e5af95bbd65bb3ac7612496f919894da07e9bd8)
|
|
170
|
-
|
|
171
|
-
#### [v2.8.56](https://github.com/underpostnet/engine/compare/v2.8.51...v2.8.56)
|
|
172
|
-
|
|
173
|
-
> 11 March 2025
|
|
174
|
-
|
|
175
|
-
- ci(package-pwa-microservices-template): ⚙️ Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) [`2d03419`](https://github.com/underpostnet/engine/commit/2d034191f73adad4091e25a2d01e3fb3df5e697a)
|
|
176
|
-
- revert(remove cyberia assets): 🗑 Reverts a previous commit [`b7dc5bd`](https://github.com/underpostnet/engine/commit/b7dc5bd5f02d601cac04ffd699c704667cb9c22b)
|
|
177
|
-
- feat(cyberia-cli): ✨ media generator adbvance [`61bbdb3`](https://github.com/underpostnet/engine/commit/61bbdb32b2a99cf54af9f69640e7aa15066f0f7d)
|
|
178
|
-
|
|
179
|
-
#### [v2.8.51](https://github.com/underpostnet/engine/compare/v2.8.46...v2.8.51)
|
|
180
|
-
|
|
181
|
-
> 4 March 2025
|
|
182
|
-
|
|
183
|
-
- ci: ⚙️ add dd-core-development yamls [`a236466`](https://github.com/underpostnet/engine/commit/a2364666f5ddc0e824fa8b68b203bb9e021cca0c)
|
|
184
|
-
- refactor(cli): 📦 cron jobs management refactor [`8c28689`](https://github.com/underpostnet/engine/commit/8c28689cd514ee0e30a38be22ca3dbd292aa3a8a)
|
|
185
|
-
- 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)
|
|
186
|
-
|
|
187
|
-
#### [v2.8.46](https://github.com/underpostnet/engine/compare/v2.8.44...v2.8.46)
|
|
188
|
-
|
|
189
|
-
> 28 February 2025
|
|
190
|
-
|
|
191
|
-
- 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)
|
|
192
|
-
- refactor(bin): 📦 static API method access [`dcac59e`](https://github.com/underpostnet/engine/commit/dcac59e0cc3fb3e7eeef490d7ded3adb921f4e7a)
|
|
193
|
-
- ci(package-pwa-microservices-template): ⚙️ update version 2.8.45 [`11795eb`](https://github.com/underpostnet/engine/commit/11795eb2b57243530bfd027774005a83edbdee3b)
|
|
194
|
-
|
|
195
|
-
#### [v2.8.44](https://github.com/underpostnet/engine/compare/v2.8.42...v2.8.44)
|
|
196
|
-
|
|
197
|
-
> 18 February 2025
|
|
198
|
-
|
|
199
|
-
- ci(package-pwa-microservices-template): ⚙️ update version 2.8.44 [`1d1731d`](https://github.com/underpostnet/engine/commit/1d1731d8c81389f9ba6a308af9a66e455baa8fad)
|
|
200
|
-
- 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)
|
|
201
|
-
- ci(package-pwa-microservices-template): ⚙️ add underpost cli root env management [`1923fb6`](https://github.com/underpostnet/engine/commit/1923fb6b32c1d2df1564fb94d3475b4ef0400f99)
|
|
202
|
-
|
|
203
|
-
#### [v2.8.42](https://github.com/underpostnet/engine/compare/v2.8.31...v2.8.42)
|
|
204
|
-
|
|
205
|
-
> 18 February 2025
|
|
206
|
-
|
|
207
|
-
- 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)
|
|
208
|
-
- 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)
|
|
209
|
-
- 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)
|
|
210
|
-
|
|
211
|
-
#### [v2.8.31](https://github.com/underpostnet/engine/compare/v2.8.1...v2.8.31)
|
|
212
|
-
|
|
213
|
-
> 5 February 2025
|
|
214
|
-
|
|
215
|
-
- build(clipboardy): 🛠 add cli copy paste [`18acbde`](https://github.com/underpostnet/engine/commit/18acbded151da88499a3a0f1c1bfdbdef2abfc6b)
|
|
216
|
-
- HealthcareAppointmentService advance [`228257c`](https://github.com/underpostnet/engine/commit/228257c0aa2d875014e72f2550bb44aa6b009bed)
|
|
217
|
-
- healthcare appoiment service advance [`207a299`](https://github.com/underpostnet/engine/commit/207a299ffc815870a574524907d5b6b3d9924f1a)
|
|
218
|
-
|
|
219
|
-
#### [v2.8.1](https://github.com/underpostnet/engine/compare/v2.8.0...v2.8.1)
|
|
220
|
-
|
|
221
|
-
> 20 January 2025
|
|
222
|
-
|
|
223
|
-
- [ci][docker-image][engine] v2.8.1 [`1c44f4c`](https://github.com/underpostnet/engine/commit/1c44f4cb53d1e197866e6ef768287f618fbe79b4)
|
|
224
|
-
- version refactor [`1aeaca2`](https://github.com/underpostnet/engine/commit/1aeaca200c8003915d3ef422f2bb2818e7438b8d)
|
|
225
|
-
- add bymyelectrics client components [`f2d3e8c`](https://github.com/underpostnet/engine/commit/f2d3e8c888b2b8573b25965b549fcb8e6b2e86e7)
|
|
226
|
-
|
|
227
|
-
#### [v2.8.0](https://github.com/underpostnet/engine/compare/v2.7.94...v2.8.0)
|
|
228
|
-
|
|
229
|
-
> 31 December 2024
|
|
230
|
-
|
|
231
|
-
- add vectorized lore cyberia [`166e021`](https://github.com/underpostnet/engine/commit/166e0210470e6a0fbaf755320c56105932138e28)
|
|
232
|
-
- cyberia biome engine advance [`e8bbce7`](https://github.com/underpostnet/engine/commit/e8bbce7cf2154c6de67840132cebc50349b1ab67)
|
|
233
|
-
- update src v2.8.0 [`3fa3aa1`](https://github.com/underpostnet/engine/commit/3fa3aa12db3609bd14ac526626707a152d69bd32)
|
|
234
|
-
|
|
235
|
-
#### [v2.7.94](https://github.com/underpostnet/engine/compare/v2.7.93...v2.7.94)
|
|
236
|
-
|
|
237
|
-
> 17 December 2024
|
|
238
|
-
|
|
239
|
-
- cyberia server character server transport refactor [`d302a5a`](https://github.com/underpostnet/engine/commit/d302a5ab02d789226d9ef84bf00c19358f83b5cb)
|
|
240
|
-
- healthcare nutrition-tips advance [`f97ca58`](https://github.com/underpostnet/engine/commit/f97ca58344d9d9da656155deaaac54c621e927f8)
|
|
241
|
-
- scroll top refresh refactor [`b9fc99f`](https://github.com/underpostnet/engine/commit/b9fc99f413b8a177242c9e6538eb70c73f97747e)
|
|
242
|
-
|
|
243
|
-
#### [v2.7.93](https://github.com/underpostnet/engine/compare/v2.7.92...v2.7.93)
|
|
244
|
-
|
|
245
|
-
> 12 December 2024
|
|
246
|
-
|
|
247
|
-
- [ci][docker-image][engine] [`0d209f7`](https://github.com/underpostnet/engine/commit/0d209f7336b33d56db290e6816152a29194f224f)
|
|
248
|
-
- add pul refresh reload [`93c2929`](https://github.com/underpostnet/engine/commit/93c29298e322181ef320644a97731b90efed1811)
|
|
249
|
-
- update get lang function [`895df49`](https://github.com/underpostnet/engine/commit/895df49c150c09f3f2c0d96921f3529a097f5f83)
|
|
250
|
-
|
|
251
|
-
#### [v2.7.92](https://github.com/underpostnet/engine/compare/v2.7.91...v2.7.92)
|
|
252
|
-
|
|
253
|
-
> 12 December 2024
|
|
254
|
-
|
|
255
|
-
- ssr refactor advance [`9c1be61`](https://github.com/underpostnet/engine/commit/9c1be61a48c7fe343c38008fc81854713c239388)
|
|
256
|
-
- [ci][docker-image][engine] v2.7.92 [`719efb7`](https://github.com/underpostnet/engine/commit/719efb7486c2651450ad698f9d5770042ed4c060)
|
|
257
|
-
- cyberia biome instance refactor [`44e56ed`](https://github.com/underpostnet/engine/commit/44e56ed7cebccacbf7439ffb6857f12afa52edeb)
|
|
258
|
-
|
|
259
|
-
#### [v2.7.91](https://github.com/underpostnet/engine/compare/v2.7.83...v2.7.91)
|
|
260
|
-
|
|
261
|
-
> 7 December 2024
|
|
262
|
-
|
|
263
|
-
- [ci][docker-image][engine] v2.7.91 [`9616635`](https://github.com/underpostnet/engine/commit/9616635c12d4eba7e7597a81f6ff6760fc9fb937)
|
|
264
|
-
- add gemini creator quest [`5f1bbec`](https://github.com/underpostnet/engine/commit/5f1bbeca4698879043c7d4abb1341c8ac08b859c)
|
|
265
|
-
- update to version 2.7.9 [`41b96b6`](https://github.com/underpostnet/engine/commit/41b96b63e48759a3bb8ab54c0573536db8ef4143)
|
|
266
|
-
|
|
267
|
-
#### [v2.7.83](https://github.com/underpostnet/engine/compare/v2.7.9...v2.7.83)
|
|
268
|
-
|
|
269
|
-
> 28 October 2024
|
|
270
|
-
|
|
271
|
-
#### [v2.7.9](https://github.com/underpostnet/engine/compare/v2.7.7...v2.7.9)
|
|
272
|
-
|
|
273
|
-
> 14 November 2024
|
|
274
|
-
|
|
275
|
-
- update version 2.7.83 [`3d22671`](https://github.com/underpostnet/engine/commit/3d22671a23f25767cc01c244090e237ab3a300da)
|
|
276
|
-
- remove unnecesary packages [`4c0e029`](https://github.com/underpostnet/engine/commit/4c0e029509331fb718554d595d7de9e042eb2b54)
|
|
277
|
-
- add item-skin-08 tile engine logic [`b72c64f`](https://github.com/underpostnet/engine/commit/b72c64f218d013653c1c800473f768dc38fe5607)
|
|
278
|
-
|
|
279
|
-
#### [v2.7.7](https://github.com/underpostnet/engine/compare/v2.7.6...v2.7.7)
|
|
280
|
-
|
|
281
|
-
> 25 October 2024
|
|
282
|
-
|
|
283
|
-
- update version 2.7.7 [`df31617`](https://github.com/underpostnet/engine/commit/df316174ca563251fbaca62a6717771f3056e59b)
|
|
284
|
-
- cyberia ssr lore advance [`ad1f214`](https://github.com/underpostnet/engine/commit/ad1f2144bdd2f3b5b1f2ebc4b9f6b83716df800a)
|
|
285
|
-
- advance ssr lore cyberia [`03b2292`](https://github.com/underpostnet/engine/commit/03b2292f6e092fc9b98cfb6aba9eee6eb0f21a06)
|
|
286
|
-
|
|
287
|
-
#### [v2.7.6](https://github.com/underpostnet/engine/compare/v2.7.5...v2.7.6)
|
|
288
|
-
|
|
289
|
-
> 17 October 2024
|
|
290
|
-
|
|
291
|
-
- update version v2.7.6 [`ddbc2c4`](https://github.com/underpostnet/engine/commit/ddbc2c4bd366e75b580be288c28c68830ed390d5)
|
|
292
|
-
- update node version 22.9.0 and hardhat refactor [`8ba9281`](https://github.com/underpostnet/engine/commit/8ba92818cd67438359dd1aa0938fd33bb932e718)
|
|
293
|
-
- remove pinata [`e231b00`](https://github.com/underpostnet/engine/commit/e231b00919d9d0e31c9718d4dc512384779cf2bb)
|
|
294
|
-
|
|
295
|
-
#### [v2.7.5](https://github.com/underpostnet/engine/compare/v2.7.2...v2.7.5)
|
|
296
|
-
|
|
297
|
-
> 10 October 2024
|
|
298
|
-
|
|
299
|
-
- remove os switchs [`78f7c17`](https://github.com/underpostnet/engine/commit/78f7c17bdaa1789101bf3038544d105b51f25309)
|
|
300
|
-
- update version 2.7.5 [`ca059d9`](https://github.com/underpostnet/engine/commit/ca059d99f95121cbd51f4582c60458734e21b70d)
|
|
301
|
-
- add mondo db server daemon [`b3bab7e`](https://github.com/underpostnet/engine/commit/b3bab7e8ba4204da459660d5fdba25c076c6cd33)
|
|
302
|
-
|
|
303
|
-
#### [v2.7.2](https://github.com/underpostnet/engine/compare/v2.7.1...v2.7.2)
|
|
304
|
-
|
|
305
|
-
> 8 October 2024
|
|
306
|
-
|
|
307
|
-
- underpost panel advance [`60087d5`](https://github.com/underpostnet/engine/commit/60087d55920ae9ddf7d7a3396606088d028cc996)
|
|
308
|
-
- file explorer content ui ux refactor [`38e87a0`](https://github.com/underpostnet/engine/commit/38e87a0f0bd222e1d8c9d76904d086aa9d2125ea)
|
|
309
|
-
- add macro db restore logic [`9cfd41c`](https://github.com/underpostnet/engine/commit/9cfd41c5d7adcd309976e7d327af800ffcf92dac)
|
|
310
|
-
|
|
311
|
-
#### [v2.7.1](https://github.com/underpostnet/engine/compare/v2.6.3...v2.7.1)
|
|
312
|
-
|
|
313
|
-
> 19 September 2024
|
|
314
|
-
|
|
315
|
-
- update version 2.7.0 [`03c5c35`](https://github.com/underpostnet/engine/commit/03c5c35a71e7ffb35203a668bfa2f8e2f86125e0)
|
|
316
|
-
- update [`d410da6`](https://github.com/underpostnet/engine/commit/d410da62fadbbb841eb9dcfa5922f105d35ad81d)
|
|
317
|
-
- add changelog generator [`28b3256`](https://github.com/underpostnet/engine/commit/28b3256ab9cebaa9caf2b52426e48f0b3105c8b7)
|
|
318
|
-
|
|
319
|
-
#### [v2.6.3](https://github.com/underpostnet/engine/compare/v2.6.2...v2.6.3)
|
|
320
|
-
|
|
321
|
-
> 14 September 2024
|
|
322
|
-
|
|
323
|
-
- update version 2.6.3 [`85c585d`](https://github.com/underpostnet/engine/commit/85c585d1cce30de4389772605cf56e774e2b7d3c)
|
|
324
|
-
- update refactor docs and coverage [`b455016`](https://github.com/underpostnet/engine/commit/b455016f5f2b2bdc142aacb4dfd66ab890125662)
|
|
325
|
-
- update [`b8f01f2`](https://github.com/underpostnet/engine/commit/b8f01f258999c9ebc1173b0616f0f7b8f7171048)
|
|
326
|
-
|
|
327
|
-
#### [v2.6.2](https://github.com/underpostnet/engine/compare/v2.5.1...v2.6.2)
|
|
328
|
-
|
|
329
|
-
> 13 September 2024
|
|
330
|
-
|
|
331
|
-
- update version 2.6.2 [`0895afb`](https://github.com/underpostnet/engine/commit/0895afbde42dd5a573507ccfcb07c328648b4eb0)
|
|
332
|
-
- update version 2.5.6 [`ca57b87`](https://github.com/underpostnet/engine/commit/ca57b87c56a544e7b7e53baa5a6e15415e16b99b)
|
|
333
|
-
- update [`eec4943`](https://github.com/underpostnet/engine/commit/eec49433f50b4dfa7b7bbff48891a60f5be25545)
|
|
334
|
-
|
|
335
|
-
#### [v2.5.1](https://github.com/underpostnet/engine/compare/v2.0.0...v2.5.1)
|
|
336
|
-
|
|
337
|
-
> 27 August 2024
|
|
338
|
-
|
|
339
|
-
- css refactor [`49b1904`](https://github.com/underpostnet/engine/commit/49b1904e83162f9066fbf843ced37d4e87db5581)
|
|
340
|
-
- refactor [`dad4f95`](https://github.com/underpostnet/engine/commit/dad4f9567629b737254702ce8be6b243e68fb01e)
|
|
341
|
-
- add sitemap builder [`53d05a6`](https://github.com/underpostnet/engine/commit/53d05a62d03ea327df3d37181a4b5c272d417289)
|
|
342
|
-
|
|
343
|
-
#### v2.0.0
|
|
344
|
-
|
|
345
|
-
> 30 March 2024
|
|
346
|
-
|
|
347
|
-
- seed-city assets [`6d9decb`](https://github.com/underpostnet/engine/commit/6d9decbae96b828aa001777f96dd75aab3fc71d1)
|
|
348
|
-
- update [`1069fc5`](https://github.com/underpostnet/engine/commit/1069fc5268aa5ef7c101695393de59edfc14daf8)
|
|
349
|
-
- update [`41ae7d4`](https://github.com/underpostnet/engine/commit/41ae7d4c969cce0608171c820e05ebab42610a7f)
|