Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
804f1f3b12 | |||
f0144fdd5b | |||
81f286cb2f | |||
1f12cb9f94 | |||
26490e8ddd | |||
38d2120c35 | |||
f80b8decbc | |||
28cd6d1b49 | |||
899e5b0a7d | |||
0eff7c7510 | |||
7789348f4e | |||
66a23a515b |
@ -13,6 +13,7 @@ env:
|
|||||||
NPMCI_GIT_GITHUBTOKEN: ${{secrets.NPMCI_GIT_GITHUBTOKEN}}
|
NPMCI_GIT_GITHUBTOKEN: ${{secrets.NPMCI_GIT_GITHUBTOKEN}}
|
||||||
NPMCI_LOGIN_DOCKER_GITEA: ${{ github.server_url }}|${{ gitea.repository_owner }}|${{ secrets.GITEA_TOKEN }}
|
NPMCI_LOGIN_DOCKER_GITEA: ${{ github.server_url }}|${{ gitea.repository_owner }}|${{ secrets.GITEA_TOKEN }}
|
||||||
NPMCI_LOGIN_DOCKER_DOCKERREGISTRY: ${{ secrets.NPMCI_LOGIN_DOCKER_DOCKERREGISTRY }}
|
NPMCI_LOGIN_DOCKER_DOCKERREGISTRY: ${{ secrets.NPMCI_LOGIN_DOCKER_DOCKERREGISTRY }}
|
||||||
|
NPMCI_SECRET01: ${{ secrets.NPMCI_SECRET01 }}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
security:
|
security:
|
||||||
|
35
changelog.md
35
changelog.md
@ -1,5 +1,40 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-11-06 - 4.3.10 - fix(dependencies)
|
||||||
|
Updated dependencies and fixed Docker Alpine image retrieval issue in tests
|
||||||
|
|
||||||
|
- Updated @push.rocks/tapbundle to version ^5.5.0 in devDependencies.
|
||||||
|
- Updated @push.rocks/smartrequest to version ^2.0.23 in dependencies.
|
||||||
|
- Ensured the Docker Alpine image is retrieved as a local tarball in cloudlyfactory.ts test helper.
|
||||||
|
|
||||||
|
## 2024-11-06 - 4.3.9 - fix(test and dependencies)
|
||||||
|
Corrected cloudlyUrl in test.apiclient and updated tapbundle dependency.
|
||||||
|
|
||||||
|
- Fixed cloudlyUrl assignment in the test.apiclient to use the correct helper method.
|
||||||
|
- Updated tapbundle dependency version from ^5.4.3 to ^5.4.4.
|
||||||
|
|
||||||
|
## 2024-11-06 - 4.3.8 - fix(api client)
|
||||||
|
Fixed localhost URL issue in test.client.ts
|
||||||
|
|
||||||
|
- Changed the cloudlyUrl in test.client.ts from 'localhost' to '127.0.0.1' to ensure consistency in network requests.
|
||||||
|
|
||||||
|
## 2024-11-06 - 4.3.7 - fix(tests)
|
||||||
|
Refactored test setup for consistency and isolated config initialization.
|
||||||
|
|
||||||
|
- test/helpers/cloudlyfactory.ts: Test configuration setup was refactored to ensure consistent initialization of cloudly configuration across tests.
|
||||||
|
- test/test.apiclient.ts: Updated cloudlyApiClient test setup to use testCloudlyConfig for dynamic port allocation.
|
||||||
|
|
||||||
|
## 2024-11-06 - 4.3.6 - fix(test)
|
||||||
|
Enhance test helpers with dynamic Hetzner token retrieval.
|
||||||
|
|
||||||
|
- Updated test/helpers/cloudlyfactory.ts to retrieve Hetzner token from environment variables.
|
||||||
|
- Expanded docker_tags workflow to securely handle and pass new environment secrets.
|
||||||
|
|
||||||
|
## 2024-11-06 - 4.3.5 - fix(helpers)
|
||||||
|
Add missing sslMode configuration to Cloudly config.
|
||||||
|
|
||||||
|
- Added the sslMode key with a value of 'none' to the Cloudly configuration object in test/helpers/cloudlyfactory.ts.
|
||||||
|
|
||||||
## 2024-11-06 - 4.3.4 - fix(testing)
|
## 2024-11-06 - 4.3.4 - fix(testing)
|
||||||
Fixed Cloudly testing setup and dependencies
|
Fixed Cloudly testing setup and dependencies
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@serve.zone/cloudly",
|
"name": "@serve.zone/cloudly",
|
||||||
"version": "4.3.4",
|
"version": "4.3.10",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.",
|
"description": "A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
@ -28,7 +28,7 @@
|
|||||||
"@git.zone/tspublish": "^1.7.7",
|
"@git.zone/tspublish": "^1.7.7",
|
||||||
"@git.zone/tstest": "^1.0.90",
|
"@git.zone/tstest": "^1.0.90",
|
||||||
"@git.zone/tswatch": "^2.0.25",
|
"@git.zone/tswatch": "^2.0.25",
|
||||||
"@push.rocks/tapbundle": "^5.4.3",
|
"@push.rocks/tapbundle": "^5.5.0",
|
||||||
"@types/node": "^22.9.0"
|
"@types/node": "^22.9.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -65,7 +65,7 @@
|
|||||||
"@push.rocks/smartlog-interfaces": "^3.0.2",
|
"@push.rocks/smartlog-interfaces": "^3.0.2",
|
||||||
"@push.rocks/smartpath": "^5.0.18",
|
"@push.rocks/smartpath": "^5.0.18",
|
||||||
"@push.rocks/smartpromise": "^4.0.4",
|
"@push.rocks/smartpromise": "^4.0.4",
|
||||||
"@push.rocks/smartrequest": "^2.0.22",
|
"@push.rocks/smartrequest": "^2.0.23",
|
||||||
"@push.rocks/smartrx": "^3.0.7",
|
"@push.rocks/smartrx": "^3.0.7",
|
||||||
"@push.rocks/smartssh": "^2.0.1",
|
"@push.rocks/smartssh": "^2.0.1",
|
||||||
"@push.rocks/smartstate": "^2.0.19",
|
"@push.rocks/smartstate": "^2.0.19",
|
||||||
|
159
pnpm-lock.yaml
generated
159
pnpm-lock.yaml
generated
@ -105,8 +105,8 @@ dependencies:
|
|||||||
specifier: ^4.0.4
|
specifier: ^4.0.4
|
||||||
version: 4.0.4
|
version: 4.0.4
|
||||||
'@push.rocks/smartrequest':
|
'@push.rocks/smartrequest':
|
||||||
specifier: ^2.0.22
|
specifier: ^2.0.23
|
||||||
version: 2.0.22
|
version: 2.0.23
|
||||||
'@push.rocks/smartrx':
|
'@push.rocks/smartrx':
|
||||||
specifier: ^3.0.7
|
specifier: ^3.0.7
|
||||||
version: 3.0.7
|
version: 3.0.7
|
||||||
@ -155,8 +155,8 @@ devDependencies:
|
|||||||
specifier: ^2.0.25
|
specifier: ^2.0.25
|
||||||
version: 2.0.25
|
version: 2.0.25
|
||||||
'@push.rocks/tapbundle':
|
'@push.rocks/tapbundle':
|
||||||
specifier: ^5.4.3
|
specifier: ^5.5.0
|
||||||
version: 5.4.3(@aws-sdk/client-sso-oidc@3.682.0)
|
version: 5.5.0(@aws-sdk/client-sso-oidc@3.682.0)
|
||||||
'@types/node':
|
'@types/node':
|
||||||
specifier: ^22.9.0
|
specifier: ^22.9.0
|
||||||
version: 22.9.0
|
version: 22.9.0
|
||||||
@ -222,7 +222,7 @@ packages:
|
|||||||
'@push.rocks/smartopen': 2.0.0
|
'@push.rocks/smartopen': 2.0.0
|
||||||
'@push.rocks/smartpath': 5.0.18
|
'@push.rocks/smartpath': 5.0.18
|
||||||
'@push.rocks/smartpromise': 4.0.4
|
'@push.rocks/smartpromise': 4.0.4
|
||||||
'@push.rocks/smartrequest': 2.0.22
|
'@push.rocks/smartrequest': 2.0.23
|
||||||
'@push.rocks/smartrx': 3.0.7
|
'@push.rocks/smartrx': 3.0.7
|
||||||
'@push.rocks/smartsitemap': 2.0.3
|
'@push.rocks/smartsitemap': 2.0.3
|
||||||
'@push.rocks/smartstream': 3.2.4
|
'@push.rocks/smartstream': 3.2.4
|
||||||
@ -281,7 +281,7 @@ packages:
|
|||||||
'@push.rocks/smartnetwork': 3.0.2
|
'@push.rocks/smartnetwork': 3.0.2
|
||||||
'@push.rocks/smartpath': 5.0.18
|
'@push.rocks/smartpath': 5.0.18
|
||||||
'@push.rocks/smartpromise': 4.0.4
|
'@push.rocks/smartpromise': 4.0.4
|
||||||
'@push.rocks/smartrequest': 2.0.22
|
'@push.rocks/smartrequest': 2.0.23
|
||||||
'@push.rocks/smartstream': 3.2.4
|
'@push.rocks/smartstream': 3.2.4
|
||||||
'@push.rocks/smartstring': 4.0.15
|
'@push.rocks/smartstring': 4.0.15
|
||||||
'@push.rocks/smartunique': 3.0.9
|
'@push.rocks/smartunique': 3.0.9
|
||||||
@ -295,7 +295,7 @@ packages:
|
|||||||
/@apiclient.xyz/hetznercloud@1.2.0:
|
/@apiclient.xyz/hetznercloud@1.2.0:
|
||||||
resolution: {integrity: sha512-j/3oVAZiMK2CkcdfgspHfviP9oBIcmvGOgO37AdOhvYC7IVsArBRVCysSKwAvWhIeiKhFRcKGylENM7jGNqLyQ==}
|
resolution: {integrity: sha512-j/3oVAZiMK2CkcdfgspHfviP9oBIcmvGOgO37AdOhvYC7IVsArBRVCysSKwAvWhIeiKhFRcKGylENM7jGNqLyQ==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@push.rocks/smartrequest': 2.0.22
|
'@push.rocks/smartrequest': 2.0.23
|
||||||
'@tsclass/tsclass': 4.1.2
|
'@tsclass/tsclass': 4.1.2
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
@ -303,7 +303,7 @@ packages:
|
|||||||
resolution: {integrity: sha512-2rUbLNvXwQLxxA0tm26BFk1+jyrukZmw/Fbc3dbQ1lpsaVp+8XoASeEyqrkAWCLxrHJEsJsyMJogRZZzVHqdjw==}
|
resolution: {integrity: sha512-2rUbLNvXwQLxxA0tm26BFk1+jyrukZmw/Fbc3dbQ1lpsaVp+8XoASeEyqrkAWCLxrHJEsJsyMJogRZZzVHqdjw==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@push.rocks/smartpromise': 4.0.4
|
'@push.rocks/smartpromise': 4.0.4
|
||||||
'@push.rocks/smartrequest': 2.0.22
|
'@push.rocks/smartrequest': 2.0.23
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@apiglobal/typedrequest-interfaces@2.0.1:
|
/@apiglobal/typedrequest-interfaces@2.0.1:
|
||||||
@ -530,56 +530,6 @@ packages:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- aws-crt
|
- aws-crt
|
||||||
|
|
||||||
/@aws-sdk/client-sso-oidc@3.682.0(@aws-sdk/client-sts@3.679.0):
|
|
||||||
resolution: {integrity: sha512-ZPZ7Y/r/w3nx/xpPzGSqSQsB090Xk5aZZOH+WBhTDn/pBEuim09BYXCLzvvxb7R7NnuoQdrTJiwimdJAhHl7ZQ==}
|
|
||||||
engines: {node: '>=16.0.0'}
|
|
||||||
peerDependencies:
|
|
||||||
'@aws-sdk/client-sts': ^3.682.0
|
|
||||||
dependencies:
|
|
||||||
'@aws-crypto/sha256-browser': 5.2.0
|
|
||||||
'@aws-crypto/sha256-js': 5.2.0
|
|
||||||
'@aws-sdk/client-sts': 3.679.0
|
|
||||||
'@aws-sdk/core': 3.679.0
|
|
||||||
'@aws-sdk/credential-provider-node': 3.682.0(@aws-sdk/client-sso-oidc@3.682.0)(@aws-sdk/client-sts@3.679.0)
|
|
||||||
'@aws-sdk/middleware-host-header': 3.679.0
|
|
||||||
'@aws-sdk/middleware-logger': 3.679.0
|
|
||||||
'@aws-sdk/middleware-recursion-detection': 3.679.0
|
|
||||||
'@aws-sdk/middleware-user-agent': 3.682.0
|
|
||||||
'@aws-sdk/region-config-resolver': 3.679.0
|
|
||||||
'@aws-sdk/types': 3.679.0
|
|
||||||
'@aws-sdk/util-endpoints': 3.679.0
|
|
||||||
'@aws-sdk/util-user-agent-browser': 3.679.0
|
|
||||||
'@aws-sdk/util-user-agent-node': 3.682.0
|
|
||||||
'@smithy/config-resolver': 3.0.10
|
|
||||||
'@smithy/core': 2.5.1
|
|
||||||
'@smithy/fetch-http-handler': 3.2.9
|
|
||||||
'@smithy/hash-node': 3.0.8
|
|
||||||
'@smithy/invalid-dependency': 3.0.8
|
|
||||||
'@smithy/middleware-content-length': 3.0.10
|
|
||||||
'@smithy/middleware-endpoint': 3.2.1
|
|
||||||
'@smithy/middleware-retry': 3.0.25
|
|
||||||
'@smithy/middleware-serde': 3.0.8
|
|
||||||
'@smithy/middleware-stack': 3.0.8
|
|
||||||
'@smithy/node-config-provider': 3.1.9
|
|
||||||
'@smithy/node-http-handler': 3.2.5
|
|
||||||
'@smithy/protocol-http': 4.1.5
|
|
||||||
'@smithy/smithy-client': 3.4.2
|
|
||||||
'@smithy/types': 3.6.0
|
|
||||||
'@smithy/url-parser': 3.0.8
|
|
||||||
'@smithy/util-base64': 3.0.0
|
|
||||||
'@smithy/util-body-length-browser': 3.0.0
|
|
||||||
'@smithy/util-body-length-node': 3.0.0
|
|
||||||
'@smithy/util-defaults-mode-browser': 3.0.25
|
|
||||||
'@smithy/util-defaults-mode-node': 3.0.25
|
|
||||||
'@smithy/util-endpoints': 2.1.4
|
|
||||||
'@smithy/util-middleware': 3.0.8
|
|
||||||
'@smithy/util-retry': 3.0.8
|
|
||||||
'@smithy/util-utf8': 3.0.0
|
|
||||||
tslib: 2.8.0
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- aws-crt
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
/@aws-sdk/client-sso-oidc@3.682.0(@aws-sdk/client-sts@3.682.0):
|
/@aws-sdk/client-sso-oidc@3.682.0(@aws-sdk/client-sts@3.682.0):
|
||||||
resolution: {integrity: sha512-ZPZ7Y/r/w3nx/xpPzGSqSQsB090Xk5aZZOH+WBhTDn/pBEuim09BYXCLzvvxb7R7NnuoQdrTJiwimdJAhHl7ZQ==}
|
resolution: {integrity: sha512-ZPZ7Y/r/w3nx/xpPzGSqSQsB090Xk5aZZOH+WBhTDn/pBEuim09BYXCLzvvxb7R7NnuoQdrTJiwimdJAhHl7ZQ==}
|
||||||
engines: {node: '>=16.0.0'}
|
engines: {node: '>=16.0.0'}
|
||||||
@ -895,31 +845,6 @@ packages:
|
|||||||
- '@aws-sdk/client-sso-oidc'
|
- '@aws-sdk/client-sso-oidc'
|
||||||
- aws-crt
|
- aws-crt
|
||||||
|
|
||||||
/@aws-sdk/credential-provider-ini@3.682.0(@aws-sdk/client-sso-oidc@3.682.0)(@aws-sdk/client-sts@3.679.0):
|
|
||||||
resolution: {integrity: sha512-6eqWeHdK6EegAxqDdiCi215nT3QZPwukgWAYuVxNfJ/5m0/P7fAzF+D5kKVgByUvGJEbq/FEL8Fw7OBe64AA+g==}
|
|
||||||
engines: {node: '>=16.0.0'}
|
|
||||||
requiresBuild: true
|
|
||||||
peerDependencies:
|
|
||||||
'@aws-sdk/client-sts': ^3.682.0
|
|
||||||
dependencies:
|
|
||||||
'@aws-sdk/client-sts': 3.679.0
|
|
||||||
'@aws-sdk/core': 3.679.0
|
|
||||||
'@aws-sdk/credential-provider-env': 3.679.0
|
|
||||||
'@aws-sdk/credential-provider-http': 3.679.0
|
|
||||||
'@aws-sdk/credential-provider-process': 3.679.0
|
|
||||||
'@aws-sdk/credential-provider-sso': 3.682.0(@aws-sdk/client-sso-oidc@3.682.0)
|
|
||||||
'@aws-sdk/credential-provider-web-identity': 3.679.0(@aws-sdk/client-sts@3.679.0)
|
|
||||||
'@aws-sdk/types': 3.679.0
|
|
||||||
'@smithy/credential-provider-imds': 3.2.5
|
|
||||||
'@smithy/property-provider': 3.1.8
|
|
||||||
'@smithy/shared-ini-file-loader': 3.1.9
|
|
||||||
'@smithy/types': 3.6.0
|
|
||||||
tslib: 2.8.0
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- '@aws-sdk/client-sso-oidc'
|
|
||||||
- aws-crt
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
/@aws-sdk/credential-provider-ini@3.682.0(@aws-sdk/client-sso-oidc@3.682.0)(@aws-sdk/client-sts@3.682.0):
|
/@aws-sdk/credential-provider-ini@3.682.0(@aws-sdk/client-sso-oidc@3.682.0)(@aws-sdk/client-sts@3.682.0):
|
||||||
resolution: {integrity: sha512-6eqWeHdK6EegAxqDdiCi215nT3QZPwukgWAYuVxNfJ/5m0/P7fAzF+D5kKVgByUvGJEbq/FEL8Fw7OBe64AA+g==}
|
resolution: {integrity: sha512-6eqWeHdK6EegAxqDdiCi215nT3QZPwukgWAYuVxNfJ/5m0/P7fAzF+D5kKVgByUvGJEbq/FEL8Fw7OBe64AA+g==}
|
||||||
engines: {node: '>=16.0.0'}
|
engines: {node: '>=16.0.0'}
|
||||||
@ -966,29 +891,6 @@ packages:
|
|||||||
- '@aws-sdk/client-sts'
|
- '@aws-sdk/client-sts'
|
||||||
- aws-crt
|
- aws-crt
|
||||||
|
|
||||||
/@aws-sdk/credential-provider-node@3.682.0(@aws-sdk/client-sso-oidc@3.682.0)(@aws-sdk/client-sts@3.679.0):
|
|
||||||
resolution: {integrity: sha512-HSmDqZcBVZrTctHCT9m++vdlDfJ1ARI218qmZa+TZzzOFNpKWy6QyHMEra45GB9GnkkMmV6unoDSPMuN0AqcMg==}
|
|
||||||
engines: {node: '>=16.0.0'}
|
|
||||||
requiresBuild: true
|
|
||||||
dependencies:
|
|
||||||
'@aws-sdk/credential-provider-env': 3.679.0
|
|
||||||
'@aws-sdk/credential-provider-http': 3.679.0
|
|
||||||
'@aws-sdk/credential-provider-ini': 3.682.0(@aws-sdk/client-sso-oidc@3.682.0)(@aws-sdk/client-sts@3.679.0)
|
|
||||||
'@aws-sdk/credential-provider-process': 3.679.0
|
|
||||||
'@aws-sdk/credential-provider-sso': 3.682.0(@aws-sdk/client-sso-oidc@3.682.0)
|
|
||||||
'@aws-sdk/credential-provider-web-identity': 3.679.0(@aws-sdk/client-sts@3.679.0)
|
|
||||||
'@aws-sdk/types': 3.679.0
|
|
||||||
'@smithy/credential-provider-imds': 3.2.5
|
|
||||||
'@smithy/property-provider': 3.1.8
|
|
||||||
'@smithy/shared-ini-file-loader': 3.1.9
|
|
||||||
'@smithy/types': 3.6.0
|
|
||||||
tslib: 2.8.0
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- '@aws-sdk/client-sso-oidc'
|
|
||||||
- '@aws-sdk/client-sts'
|
|
||||||
- aws-crt
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
/@aws-sdk/credential-provider-node@3.682.0(@aws-sdk/client-sso-oidc@3.682.0)(@aws-sdk/client-sts@3.682.0):
|
/@aws-sdk/credential-provider-node@3.682.0(@aws-sdk/client-sso-oidc@3.682.0)(@aws-sdk/client-sts@3.682.0):
|
||||||
resolution: {integrity: sha512-HSmDqZcBVZrTctHCT9m++vdlDfJ1ARI218qmZa+TZzzOFNpKWy6QyHMEra45GB9GnkkMmV6unoDSPMuN0AqcMg==}
|
resolution: {integrity: sha512-HSmDqZcBVZrTctHCT9m++vdlDfJ1ARI218qmZa+TZzzOFNpKWy6QyHMEra45GB9GnkkMmV6unoDSPMuN0AqcMg==}
|
||||||
engines: {node: '>=16.0.0'}
|
engines: {node: '>=16.0.0'}
|
||||||
@ -1276,7 +1178,7 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@aws-sdk/client-sso-oidc': ^3.679.0
|
'@aws-sdk/client-sso-oidc': ^3.679.0
|
||||||
dependencies:
|
dependencies:
|
||||||
'@aws-sdk/client-sso-oidc': 3.682.0(@aws-sdk/client-sts@3.679.0)
|
'@aws-sdk/client-sso-oidc': 3.682.0(@aws-sdk/client-sts@3.682.0)
|
||||||
'@aws-sdk/types': 3.679.0
|
'@aws-sdk/types': 3.679.0
|
||||||
'@smithy/property-provider': 3.1.8
|
'@smithy/property-provider': 3.1.8
|
||||||
'@smithy/shared-ini-file-loader': 3.1.9
|
'@smithy/shared-ini-file-loader': 3.1.9
|
||||||
@ -2026,7 +1928,7 @@ packages:
|
|||||||
'@push.rocks/smartlog': 3.0.7
|
'@push.rocks/smartlog': 3.0.7
|
||||||
'@push.rocks/smartpromise': 4.0.4
|
'@push.rocks/smartpromise': 4.0.4
|
||||||
'@push.rocks/smartshell': 3.0.6
|
'@push.rocks/smartshell': 3.0.6
|
||||||
'@push.rocks/tapbundle': 5.4.3(@aws-sdk/client-sso-oidc@3.682.0)
|
'@push.rocks/tapbundle': 5.5.0(@aws-sdk/client-sso-oidc@3.682.0)
|
||||||
'@types/ws': 8.5.12
|
'@types/ws': 8.5.12
|
||||||
figures: 6.1.0
|
figures: 6.1.0
|
||||||
ws: 8.18.0
|
ws: 8.18.0
|
||||||
@ -2063,9 +1965,7 @@ packages:
|
|||||||
'@push.rocks/smartshell': 3.0.6
|
'@push.rocks/smartshell': 3.0.6
|
||||||
'@push.rocks/taskbuffer': 3.1.7
|
'@push.rocks/taskbuffer': 3.1.7
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- bufferutil
|
|
||||||
- supports-color
|
- supports-color
|
||||||
- utf-8-validate
|
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@hapi/bourne@3.0.0:
|
/@hapi/bourne@3.0.0:
|
||||||
@ -2489,7 +2389,7 @@ packages:
|
|||||||
'@push.rocks/smartdns': 5.0.4
|
'@push.rocks/smartdns': 5.0.4
|
||||||
'@push.rocks/smartlog': 3.0.7
|
'@push.rocks/smartlog': 3.0.7
|
||||||
'@push.rocks/smartpromise': 4.0.4
|
'@push.rocks/smartpromise': 4.0.4
|
||||||
'@push.rocks/smartrequest': 2.0.22
|
'@push.rocks/smartrequest': 2.0.23
|
||||||
'@push.rocks/smartstring': 4.0.15
|
'@push.rocks/smartstring': 4.0.15
|
||||||
'@push.rocks/smarttime': 4.0.8
|
'@push.rocks/smarttime': 4.0.8
|
||||||
'@push.rocks/smartunique': 3.0.9
|
'@push.rocks/smartunique': 3.0.9
|
||||||
@ -2517,7 +2417,7 @@ packages:
|
|||||||
'@push.rocks/smartpath': 5.0.18
|
'@push.rocks/smartpath': 5.0.18
|
||||||
'@push.rocks/smartpdf': 3.1.7
|
'@push.rocks/smartpdf': 3.1.7
|
||||||
'@push.rocks/smartpromise': 4.0.4
|
'@push.rocks/smartpromise': 4.0.4
|
||||||
'@push.rocks/smartrequest': 2.0.22
|
'@push.rocks/smartrequest': 2.0.23
|
||||||
'@push.rocks/webstream': 1.0.10
|
'@push.rocks/webstream': 1.0.10
|
||||||
openai: 4.68.4
|
openai: 4.68.4
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
@ -2534,7 +2434,7 @@ packages:
|
|||||||
'@push.rocks/smartfile': 10.0.41
|
'@push.rocks/smartfile': 10.0.41
|
||||||
'@push.rocks/smartpath': 5.0.18
|
'@push.rocks/smartpath': 5.0.18
|
||||||
'@push.rocks/smartpromise': 4.0.4
|
'@push.rocks/smartpromise': 4.0.4
|
||||||
'@push.rocks/smartrequest': 2.0.22
|
'@push.rocks/smartrequest': 2.0.23
|
||||||
'@push.rocks/smartrx': 3.0.7
|
'@push.rocks/smartrx': 3.0.7
|
||||||
'@push.rocks/smartstream': 2.0.8
|
'@push.rocks/smartstream': 2.0.8
|
||||||
'@push.rocks/smartunique': 3.0.9
|
'@push.rocks/smartunique': 3.0.9
|
||||||
@ -2552,7 +2452,7 @@ packages:
|
|||||||
'@push.rocks/smartfile': 11.0.21
|
'@push.rocks/smartfile': 11.0.21
|
||||||
'@push.rocks/smartpath': 5.0.18
|
'@push.rocks/smartpath': 5.0.18
|
||||||
'@push.rocks/smartpromise': 4.0.4
|
'@push.rocks/smartpromise': 4.0.4
|
||||||
'@push.rocks/smartrequest': 2.0.22
|
'@push.rocks/smartrequest': 2.0.23
|
||||||
'@push.rocks/smartrx': 3.0.7
|
'@push.rocks/smartrx': 3.0.7
|
||||||
'@push.rocks/smartstream': 3.2.4
|
'@push.rocks/smartstream': 3.2.4
|
||||||
'@push.rocks/smartunique': 3.0.9
|
'@push.rocks/smartunique': 3.0.9
|
||||||
@ -2743,7 +2643,7 @@ packages:
|
|||||||
'@push.rocks/smartmime': 1.0.6
|
'@push.rocks/smartmime': 1.0.6
|
||||||
'@push.rocks/smartpath': 5.0.18
|
'@push.rocks/smartpath': 5.0.18
|
||||||
'@push.rocks/smartpromise': 4.0.4
|
'@push.rocks/smartpromise': 4.0.4
|
||||||
'@push.rocks/smartrequest': 2.0.22
|
'@push.rocks/smartrequest': 2.0.23
|
||||||
'@push.rocks/smartstream': 2.0.8
|
'@push.rocks/smartstream': 2.0.8
|
||||||
'@types/fs-extra': 11.0.4
|
'@types/fs-extra': 11.0.4
|
||||||
'@types/glob': 8.1.0
|
'@types/glob': 8.1.0
|
||||||
@ -2763,7 +2663,7 @@ packages:
|
|||||||
'@push.rocks/smartmime': 2.0.2
|
'@push.rocks/smartmime': 2.0.2
|
||||||
'@push.rocks/smartpath': 5.0.18
|
'@push.rocks/smartpath': 5.0.18
|
||||||
'@push.rocks/smartpromise': 4.0.4
|
'@push.rocks/smartpromise': 4.0.4
|
||||||
'@push.rocks/smartrequest': 2.0.22
|
'@push.rocks/smartrequest': 2.0.23
|
||||||
'@push.rocks/smartstream': 3.2.4
|
'@push.rocks/smartstream': 3.2.4
|
||||||
'@types/fs-extra': 11.0.4
|
'@types/fs-extra': 11.0.4
|
||||||
'@types/glob': 8.1.0
|
'@types/glob': 8.1.0
|
||||||
@ -2792,7 +2692,7 @@ packages:
|
|||||||
resolution: {integrity: sha512-J23q84f1O+TwFGmd4lrO9XLHUh2DaLXo9PN/9VmTWYzTkQDv5JehmifXVI0esophXcCIfbdIu6hbt7/aHlDF4A==}
|
resolution: {integrity: sha512-J23q84f1O+TwFGmd4lrO9XLHUh2DaLXo9PN/9VmTWYzTkQDv5JehmifXVI0esophXcCIfbdIu6hbt7/aHlDF4A==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@push.rocks/smartpromise': 4.0.4
|
'@push.rocks/smartpromise': 4.0.4
|
||||||
'@push.rocks/smartrequest': 2.0.22
|
'@push.rocks/smartrequest': 2.0.23
|
||||||
|
|
||||||
/@push.rocks/smarthash@3.0.4:
|
/@push.rocks/smarthash@3.0.4:
|
||||||
resolution: {integrity: sha512-HJ/fSx41jm0CvSaqMLa6b2nuNK5rHAqAeAq3dAB7Sq9BCPm2M0J5ZVDTzEAH8pS91XYniUiwuE0jwPERNn9hmw==}
|
resolution: {integrity: sha512-HJ/fSx41jm0CvSaqMLa6b2nuNK5rHAqAeAq3dAB7Sq9BCPm2M0J5ZVDTzEAH8pS91XYniUiwuE0jwPERNn9hmw==}
|
||||||
@ -2943,7 +2843,7 @@ packages:
|
|||||||
'@push.rocks/smartfile': 10.0.41
|
'@push.rocks/smartfile': 10.0.41
|
||||||
'@push.rocks/smartpath': 5.0.18
|
'@push.rocks/smartpath': 5.0.18
|
||||||
'@push.rocks/smartpromise': 4.0.4
|
'@push.rocks/smartpromise': 4.0.4
|
||||||
'@push.rocks/smartrequest': 2.0.22
|
'@push.rocks/smartrequest': 2.0.23
|
||||||
'@push.rocks/smarttime': 4.0.8
|
'@push.rocks/smarttime': 4.0.8
|
||||||
'@push.rocks/smartversion': 3.0.5
|
'@push.rocks/smartversion': 3.0.5
|
||||||
package-json: 8.1.1
|
package-json: 8.1.1
|
||||||
@ -3014,8 +2914,8 @@ packages:
|
|||||||
- utf-8-validate
|
- utf-8-validate
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@push.rocks/smartrequest@2.0.22:
|
/@push.rocks/smartrequest@2.0.23:
|
||||||
resolution: {integrity: sha512-EfgmdEsLtDJ8aNOLOh59ca1NMsiiFz54aoHRigQFQ0cuoUs6phxejIY2FdMoPFn68ubTpkztdL2P4L1/cRYyHg==}
|
resolution: {integrity: sha512-y+gtOwXFpmPL+mIQblYPdFuHufxHi5lMV0LKm5bPYgGdMq3/+QlnEqNEAumeMHjvXgxur7x30QiHSwpJGK5g9w==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@push.rocks/smartpromise': 4.0.4
|
'@push.rocks/smartpromise': 4.0.4
|
||||||
'@push.rocks/smarturl': 3.1.0
|
'@push.rocks/smarturl': 3.1.0
|
||||||
@ -3035,8 +2935,8 @@ packages:
|
|||||||
'@push.rocks/smartpromise': 4.0.4
|
'@push.rocks/smartpromise': 4.0.4
|
||||||
rxjs: 7.8.1
|
rxjs: 7.8.1
|
||||||
|
|
||||||
/@push.rocks/smarts3@2.2.2:
|
/@push.rocks/smarts3@2.2.5:
|
||||||
resolution: {integrity: sha512-H1dou6JrSkrwx6Y/szuOlnARGSSuZTSL2rLnJqg93/vp6GjLPQqI4+zEkuIO+3fAoQH0hRYvc0/DPhalKWJA2A==}
|
resolution: {integrity: sha512-OZjD0jBCUTJCLnwraxBcyZ3he5buXf2OEM1zipiTBChA2EcKUZWKk/a6KR5WT+NlFCIIuB23UG+U+cxsIWM91Q==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@push.rocks/smartbucket': 3.0.23
|
'@push.rocks/smartbucket': 3.0.23
|
||||||
'@push.rocks/smartfile': 11.0.21
|
'@push.rocks/smartfile': 11.0.21
|
||||||
@ -3194,8 +3094,8 @@ packages:
|
|||||||
'@types/js-yaml': 3.12.10
|
'@types/js-yaml': 3.12.10
|
||||||
js-yaml: 3.14.1
|
js-yaml: 3.14.1
|
||||||
|
|
||||||
/@push.rocks/tapbundle@5.4.3(@aws-sdk/client-sso-oidc@3.682.0):
|
/@push.rocks/tapbundle@5.5.0(@aws-sdk/client-sso-oidc@3.682.0):
|
||||||
resolution: {integrity: sha512-8s8UMHW6gmhVGp4wucnPOiPEegaVZBcKQb+dQ8rclRm2qxipsshfKvsYw48R6ZxAFllwSicMm+xaPlpP31/mJg==}
|
resolution: {integrity: sha512-B+pr/bGOe2R+OGq206syf8bG//WBX0OjbcQ10Td5jUgAOrb5km/ERyqe3Y2BfjbRq4Q4JuWJAZttbU9xfATosg==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@open-wc/testing': 4.0.0
|
'@open-wc/testing': 4.0.0
|
||||||
'@push.rocks/consolecolor': 2.0.2
|
'@push.rocks/consolecolor': 2.0.2
|
||||||
@ -3204,10 +3104,13 @@ packages:
|
|||||||
'@push.rocks/smartdelay': 3.0.5
|
'@push.rocks/smartdelay': 3.0.5
|
||||||
'@push.rocks/smartenv': 5.0.12
|
'@push.rocks/smartenv': 5.0.12
|
||||||
'@push.rocks/smartexpect': 1.2.1
|
'@push.rocks/smartexpect': 1.2.1
|
||||||
|
'@push.rocks/smartfile': 11.0.21
|
||||||
'@push.rocks/smartjson': 5.0.20
|
'@push.rocks/smartjson': 5.0.20
|
||||||
'@push.rocks/smartmongo': 2.0.10(@aws-sdk/client-sso-oidc@3.682.0)
|
'@push.rocks/smartmongo': 2.0.10(@aws-sdk/client-sso-oidc@3.682.0)
|
||||||
|
'@push.rocks/smartpath': 5.0.18
|
||||||
'@push.rocks/smartpromise': 4.0.4
|
'@push.rocks/smartpromise': 4.0.4
|
||||||
'@push.rocks/smarts3': 2.2.2
|
'@push.rocks/smartrequest': 2.0.23
|
||||||
|
'@push.rocks/smarts3': 2.2.5
|
||||||
'@push.rocks/smartshell': 3.0.6
|
'@push.rocks/smartshell': 3.0.6
|
||||||
'@push.rocks/smarttime': 4.0.8
|
'@push.rocks/smarttime': 4.0.8
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
@ -4541,8 +4444,8 @@ packages:
|
|||||||
errorstacks: 2.4.1
|
errorstacks: 2.4.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@web/dev-server-core@0.7.3:
|
/@web/dev-server-core@0.7.4:
|
||||||
resolution: {integrity: sha512-GS+Ok6HiqNZOsw2oEv5V2OISZ2s/6icJodyGjUuD3RChr0G5HiESbKf2K8mZV4shTz9sRC9KSQf8qvno2gPKrQ==}
|
resolution: {integrity: sha512-nHSNrJ1J9GjmSceKNHpWRMjvpfE2NTV9EYUffPIr7j0sIV59gK7NI/4+9slotJ/ODXw0+e1gSeJshTOhjjVNxQ==}
|
||||||
engines: {node: '>=18.0.0'}
|
engines: {node: '>=18.0.0'}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/koa': 2.15.0
|
'@types/koa': 2.15.0
|
||||||
@ -4601,7 +4504,7 @@ packages:
|
|||||||
'@types/istanbul-lib-coverage': 2.0.6
|
'@types/istanbul-lib-coverage': 2.0.6
|
||||||
'@types/istanbul-reports': 3.0.4
|
'@types/istanbul-reports': 3.0.4
|
||||||
'@web/browser-logs': 0.4.0
|
'@web/browser-logs': 0.4.0
|
||||||
'@web/dev-server-core': 0.7.3
|
'@web/dev-server-core': 0.7.4
|
||||||
chokidar: 4.0.1
|
chokidar: 4.0.1
|
||||||
cli-cursor: 3.1.0
|
cli-cursor: 3.1.0
|
||||||
co-body: 6.2.0
|
co-body: 6.2.0
|
||||||
|
@ -5,7 +5,6 @@ import * as cloudly from '../../ts/index.js';
|
|||||||
|
|
||||||
const stopFunctions: Array<() => Promise<void>> = [];
|
const stopFunctions: Array<() => Promise<void>> = [];
|
||||||
|
|
||||||
export const createCloudly = async () => {
|
|
||||||
const tapToolsNodeMod = await import('@push.rocks/tapbundle/node');
|
const tapToolsNodeMod = await import('@push.rocks/tapbundle/node');
|
||||||
const smartmongo = await tapToolsNodeMod.tapNodeTools.createSmartmongo();
|
const smartmongo = await tapToolsNodeMod.tapNodeTools.createSmartmongo();
|
||||||
stopFunctions.push(async () => {
|
stopFunctions.push(async () => {
|
||||||
@ -16,18 +15,31 @@ export const createCloudly = async () => {
|
|||||||
stopFunctions.push(async () => {
|
stopFunctions.push(async () => {
|
||||||
await smarts3.stop();
|
await smarts3.stop();
|
||||||
});
|
});
|
||||||
const cloudlyConfig: cloudly.ICloudlyConfig = {
|
|
||||||
|
export const testCloudlyConfig: cloudly.ICloudlyConfig = {
|
||||||
cfToken: await testQenv.getEnvVarOnDemand('CF_TOKEN'),
|
cfToken: await testQenv.getEnvVarOnDemand('CF_TOKEN'),
|
||||||
environment: 'integration',
|
environment: 'integration',
|
||||||
letsEncryptEmail: 'test@serve.zone',
|
letsEncryptEmail: 'test@serve.zone',
|
||||||
publicUrl: 'localhost',
|
publicUrl: '127.0.0.1',
|
||||||
publicPort: '8080',
|
publicPort: '8080',
|
||||||
mongoDescriptor: await smartmongo.getMongoDescriptor(),
|
mongoDescriptor: await smartmongo.getMongoDescriptor(),
|
||||||
s3Descriptor: await smarts3.getS3Descriptor(),
|
s3Descriptor: await smarts3.getS3Descriptor(),
|
||||||
|
sslMode: 'none',
|
||||||
|
...(() => {
|
||||||
|
if (process.env.NPMCI_SECRET01) {
|
||||||
|
return {
|
||||||
|
hetznerToken: process.env.NPMCI_SECRET01,
|
||||||
};
|
};
|
||||||
const cloudlyInstance = new cloudly.Cloudly(cloudlyConfig);
|
|
||||||
return cloudlyInstance;
|
|
||||||
}
|
}
|
||||||
|
})(),
|
||||||
|
};
|
||||||
|
|
||||||
|
await tapToolsNodeMod.tapNodeTools.testFileProvider.getDockerAlpineImageAsLocalTarball();
|
||||||
|
|
||||||
|
export const createCloudly = async () => {
|
||||||
|
const cloudlyInstance = new cloudly.Cloudly(testCloudlyConfig);
|
||||||
|
return cloudlyInstance;
|
||||||
|
};
|
||||||
|
|
||||||
export const stopCloudly = async () => {
|
export const stopCloudly = async () => {
|
||||||
await Promise.all(stopFunctions.map((stopFunction) => stopFunction()));
|
await Promise.all(stopFunctions.map((stopFunction) => stopFunction()));
|
||||||
@ -35,5 +47,4 @@ export const stopCloudly = async () => {
|
|||||||
|
|
||||||
export const getEnvVarOnDemand = async (envVarName: string) => {
|
export const getEnvVarOnDemand = async (envVarName: string) => {
|
||||||
return testQenv.getEnvVarOnDemand(envVarName);
|
return testQenv.getEnvVarOnDemand(envVarName);
|
||||||
}
|
};
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ tap.preTask('should create a new machine user for testing', async () => {
|
|||||||
tap.test('should create a new cloudlyApiClient', async () => {
|
tap.test('should create a new cloudlyApiClient', async () => {
|
||||||
testClient = new cloudlyApiClient.CloudlyApiClient({
|
testClient = new cloudlyApiClient.CloudlyApiClient({
|
||||||
registerAs: 'api',
|
registerAs: 'api',
|
||||||
cloudlyUrl: `http://localhost:${await helpers.getEnvVarOnDemand('SERVEZONE_PORT')}`,
|
cloudlyUrl: `http://${helpers.testCloudlyConfig.publicUrl}:${helpers.testCloudlyConfig.publicPort}`,
|
||||||
});
|
});
|
||||||
await testClient.start();
|
await testClient.start();
|
||||||
expect(testClient).toBeTruthy();
|
expect(testClient).toBeTruthy();
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@serve.zone/cloudly',
|
name: '@serve.zone/cloudly',
|
||||||
version: '4.3.4',
|
version: '4.3.10',
|
||||||
description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.'
|
description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.'
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@serve.zone/cloudly',
|
name: '@serve.zone/cloudly',
|
||||||
version: '4.3.4',
|
version: '4.3.10',
|
||||||
description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.'
|
description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.'
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user