diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c3a81b4..4e97c888 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 15.2.0 - 2026-01-30 + +## Changed +- Changed so tests on AWS device farm uses https instead of http. #TINY-11924 + # 15.1.1 - 2025-12-19 ## Unreleased diff --git a/modules/server/src/main/ts/bedrock/auto/Tunnel.ts b/modules/server/src/main/ts/bedrock/auto/Tunnel.ts index 368ab574..fb2e3b2b 100644 --- a/modules/server/src/main/ts/bedrock/auto/Tunnel.ts +++ b/modules/server/src/main/ts/bedrock/auto/Tunnel.ts @@ -59,7 +59,7 @@ const createSSH = async (port: number | string, domain: string): Promise try { await waitForReady(tunnelProc); - const urlText = 'http://' + subdomain + '.' + domain; + const urlText = 'https://' + subdomain + '.' + domain; console.log('Tunnel URL: ' + urlText); const url = new URL(urlText); @@ -95,7 +95,7 @@ const createLambda = async (port: number | string, credentials: LambdaCredential key: credentials.key, port: port.toString() }; - + const shutdown = async (): Promise => { console.log('Shutting down tunnel...'); return tunnel.stop(null as unknown as ((_: boolean) => void)); @@ -134,4 +134,4 @@ export const prepareConnection = async (port: number, remote: string | undefined url: new URL('http://localhost:' + port), shutdown: () => Promise.resolve() }); -}; \ No newline at end of file +};