From 66a23a515b8197856d6e3b96b18476c2ee2c6a5d Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Wed, 6 Nov 2024 16:13:54 +0100 Subject: [PATCH] fix(helpers): Add missing sslMode configuration to Cloudly config. --- changelog.md | 5 +++++ test/helpers/cloudlyfactory.ts | 1 + ts/00_commitinfo_data.ts | 2 +- ts_web/00_commitinfo_data.ts | 2 +- 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index e769d90..3daa862 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 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) Fixed Cloudly testing setup and dependencies diff --git a/test/helpers/cloudlyfactory.ts b/test/helpers/cloudlyfactory.ts index c8d64f9..bbe2e64 100644 --- a/test/helpers/cloudlyfactory.ts +++ b/test/helpers/cloudlyfactory.ts @@ -24,6 +24,7 @@ export const createCloudly = async () => { publicPort: '8080', mongoDescriptor: await smartmongo.getMongoDescriptor(), s3Descriptor: await smarts3.getS3Descriptor(), + sslMode: 'none', }; const cloudlyInstance = new cloudly.Cloudly(cloudlyConfig); return cloudlyInstance; diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 0f38076..d05cfd2 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/cloudly', - version: '4.3.4', + version: '4.3.5', description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.' } diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 0f38076..d05cfd2 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/cloudly', - version: '4.3.4', + version: '4.3.5', description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.' }