Skip to content

v0.9 (Beta) Changelog

Released: February 2026

The initial beta release of EOS Hub. This version introduced the core EOS tools and established the platform foundation.

Features

Core EOS Tools

  • Scorecard -- Weekly measurables with basic goal tracking and trailing view.
  • Rocks -- Quarterly priorities with On Track / Off Track status.
  • Issues -- Issues list with IDS workflow (Open, Solving, Solved).
  • To-Dos -- Task management with owner and due date.
  • L10 Meetings -- Basic meeting flow with 7 segments.

Dashboard

  • KPI summary cards for Scorecard, Rocks, and To-Do completion.
  • Basic scorecard trend chart.

V/TO

  • Initial V/TO implementation with Core Values, Core Focus, 10-Year Target, and 1-Year Plan sections.

Administration

  • User creation and management.
  • Basic team management.
  • System roles: SUPERADMIN and USER.

Platform

Authentication

  • NextAuth with credentials provider (email/password).
  • Session management.

Tech Stack

  • Next.js 15 with App Router
  • Prisma 6 with PostgreSQL
  • shadcn/ui v3
  • TypeScript

Known Issues (Addressed in v1.0)

  • Google OAuth was not yet supported.
  • Color scheme options were limited to Default only.
  • Slovak translations were incomplete.
  • People Analyzer was not yet implemented.
  • Accountability Chart was not yet implemented.
  • Documents & Links feature was not available.
  • Meeting rating trend chart was not on the dashboard.
  • Rock milestones were not supported.
  • Table view for Rocks was not available.

Upgrade Notes

WARNING

v0.9 is no longer supported. Please upgrade to v1.0 for the latest features and bug fixes.

To upgrade from v0.9 to v1.0:

  1. Update your dependencies:

    bash
    git pull origin main
    npm install
  2. Run database migrations:

    bash
    npx prisma migrate deploy
  3. Update environment variables -- see Configuration for new variables added in v1.0 (Google OAuth, theme settings).

  4. Rebuild the application:

    bash
    npm run build

Built with VitePress