diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index 2d8539df4..b6ad6bcf1 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,20 @@ +- commits: + - subject: Fix running tests over local worker IP + hash: 0a642b8a0e21f9740ae8982f99da3506d62253a3 + body: > + This has been broken since splitting the core from the worker - fixing + it enables running tests with a local worker without the VPN, much + faster and avoids VPN file transfer issues + footer: + Change-type: patch + change-type: patch + Signed-off-by: Ryan Cooke + signed-off-by: Ryan Cooke + author: Ryan Cooke + nested: [] + version: 2.31.88 + title: "" + date: 2025-02-06T14:35:10.115Z - commits: - subject: Update actions/upload-artifact digest to 65c4c4a hash: 41ecb3c5112bc5b2b6d8e63dabb05fbf558c9df1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c4d0c0fd..ee8d2214c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY! This project adheres to [Semantic Versioning](http://semver.org/). +## 2.31.88 - 2025-02-06 + +* Fix running tests over local worker IP [Ryan Cooke] + ## 2.31.87 - 2025-01-26 * Update actions/upload-artifact digest to 65c4c4a [balena-renovate[bot]] diff --git a/package-lock.json b/package-lock.json index c903416a2..306cb9e8d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "leviathan", - "version": "2.31.87", + "version": "2.31.88", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "leviathan", - "version": "2.31.87", + "version": "2.31.88", "hasInstallScript": true, "license": "Apache-2.0" } diff --git a/package.json b/package.json index e9f21b3ec..6d25fde6c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "leviathan", - "version": "2.31.87", + "version": "2.31.88", "scripts": { "lint:fix": "for component in 'core' 'client'; do npm --prefix $component run lint:fix; done", "lint": "for component in 'core' 'client'; do npm --prefix $component run lint; done", @@ -20,6 +20,6 @@ "homepage": "https://github.com/balena-os/leviathan", "private": true, "versionist": { - "publishedAt": "2025-01-26T14:28:57.336Z" + "publishedAt": "2025-02-06T14:35:10.654Z" } }