Bump version to 0.1.18

Fix Settings modal failing to open for licensed users.
This commit is contained in:
Keysat
2026-05-08 13:00:29 -05:00
parent 8a519ee25d
commit 1aaa7a453a
2 changed files with 15 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_1_18 = VersionInfo.of({
version: '0.1.18:0',
releaseNotes: {
en_US: 'Fix Settings modal failing to open for licensed users — server was sending licenseId as a Uint8Array instead of the canonical UUID string, which crashed the render. Now uses payload.licenseUuid.',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})