Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM node:22-bookworm-slim

ARG STARTOS_VERSION
ARG GH_VERSION=2.93.0
ARG OPENCLAW_VERSION=2026.5.28
ARG OPENCLAW_VERSION=2026.6.1

# Install dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
Expand Down
4 changes: 2 additions & 2 deletions startos/versions/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { VersionGraph } from '@start9labs/start-sdk'
import { v_2026_5_28_0 } from './v2026.5.28.0'
import { v_2026_6_1_0 } from './v2026.6.1.0'

export const versionGraph = VersionGraph.of({
current: v_2026_5_28_0,
current: v_2026_6_1_0,
other: [],
})
16 changes: 0 additions & 16 deletions startos/versions/v2026.5.28.0.ts

This file was deleted.

16 changes: 16 additions & 0 deletions startos/versions/v2026.6.1.0.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { VersionInfo } from '@start9labs/start-sdk'

export const v_2026_6_1_0 = VersionInfo.of({
version: '2026.6.1:0',
releaseNotes: {
en_US: 'Update to upstream 2026.6.1',
es_ES: 'Actualización a upstream 2026.6.1',
de_DE: 'Update auf Upstream 2026.6.1',
pl_PL: 'Aktualizacja do upstream 2026.6.1',
fr_FR: 'Mise à jour vers upstream 2026.6.1',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})
Loading