Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
claude/adoring-hopper-5x74bqclaude/affectionate-feynman-ykrf1hclaude/architecture-audit-design-wxprenclaude/build-status-update-3MXsfclaude/charming-meitner-mllb5rclaude/compare-gate-gluecron-s4mFQclaude/confident-faraday-tikcwbclaude/continue-work-XMTlIclaude/crontech-gluecron-deploy-7MIECclaude/crontech-platform-setup-SeKfwclaude/design-2026claude/ecstatic-ptolemy-jMdigclaude/enhance-github-integration-QNHdGclaude/fix-aa-loop-issue-PonMQclaude/fix-actions-and-processclaude/fix-desktop-errors-XqoW8claude/fix-red-workflowsclaude/fix-website-access-6FKJNclaude/gatetest-integration-hardeningclaude/github-audit-improvements-bDFr9claude/gluecron-launch-status-FoMRlclaude/hopeful-lamport-olfCTclaude/issue-to-pr-and-protectionsclaude/jolly-heisenberg-2sg1Qclaude/launch-preparation-QmTb6claude/new-session-xk1l7claude/plan-platform-architecture-kkN4yclaude/platform-analysis-roadmap-1nUGLclaude/platform-launch-assessment-8dWV8claude/polish-platform-release-AeDrUclaude/resume-previous-work-KzyLwclaude/review-crontech-handoff-qYEVqclaude/review-project-completeness-lHhS2claude/review-readme-docs-ulqPKclaude/serene-edison-rj87weclaude/setup-multi-repo-dev-BCwNQclaude/ship-fixes-and-tests-Jvz1cclaude/site-audit-competitive-pctlwgclaude/site-migration-vercel-XstpKclaude/standalone-product-repos-XHFTDcopilot/feat-smart-empty-states-keyboard-first-enhancementcopilot/feat-smart-morning-digest-review-context-restorecopilot/fix-and-process-workflowscopilot/update-ai-powered-code-reviewfeat/debt-mapfeat/push-policy-codeowners-hardeningfeat/smart-digest-contextfeat/stage-impactfeat/t1-secret-migrationfeat/u-polishfeat/w-self-hostfeat/w2-claude-configfix/agent-journey-orphan-sweepgatetest/auto-fix-1776586424172gatetest/auto-fix-1776586534814gatetest/auto-fix-1776590685143gatetest/auto-fix-1776590808199mainops/redeploy-retriggerstyle/dxt-cta-themeworktree-agent-a3377aad30d55da26worktree-agent-a7ef607b7ee1d6c74
changelog.tsx6.8 KB · 262 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
/**
 * /changelog — manually curated list of recent platform releases.
 * Public, no auth required.
 */

import { Hono } from "hono";
import type { FC } from "hono/jsx";
import { Layout } from "../views/layout";
import { softAuth } from "../middleware/auth";
import type { AuthEnv } from "../middleware/auth";

const changelog = new Hono<AuthEnv>();
changelog.use("*", softAuth);

changelog.get("/changelog", (c) => {
  const user = c.get("user");
  return c.html(
    <Layout
      title="Changelog — gluecron"
      description="What's new in gluecron — recent feature releases, improvements, and platform updates."
      user={user}
    >
      <ChangelogPage />
    </Layout>,
  );
});

// ---------------------------------------------------------------------------
// Data
// ---------------------------------------------------------------------------

interface ChangelogEntry {
  title: string;
  description: string;
}

interface ChangelogMonth {
  month: string;
  entries: ChangelogEntry[];
}

const RELEASES: ChangelogMonth[] = [
  {
    month: "June 2026",
    entries: [
      {
        title: "AI Trio Review",
        description:
          "Three-model parallel PR review running Security, Correctness, and Style passes simultaneously — faster feedback, broader coverage.",
      },
      {
        title: "Spec-to-Live progress UI",
        description:
          "Watch your spec become a merged PR in real time: a live progress stream shows each agent step from spec parse to gate green to merge.",
      },
      {
        title: "Pack-content ruleset enforcement",
        description:
          "Block bad commits at push time with pack-content rulesets — enforce file-size limits, banned extensions, and content patterns before the push lands.",
      },
      {
        title: "Customer deploy targets",
        description:
          "SSH deploy to your own server directly from a merge. Register a server target in repo settings and autopilot handles the rsync.",
      },
      {
        title: "Workflow cache SAVE",
        description:
          "CI runs warm from the second run. Workflow jobs can now persist dependency caches between runs, cutting install time on hot paths by up to 80%.",
      },
      {
        title: "Push Watch",
        description:
          "A pulsing Live indicator appears in the repo header whenever a push is in flight — gate runs, AI review, and deploy status update without a page reload.",
      },
    ],
  },
  {
    month: "May 2026",
    entries: [
      {
        title: "Branch preview URLs with auto-expiry cleanup",
        description:
          "Every PR branch gets an isolated preview URL. Autopilot tears down stale previews 24 hours after the branch is merged or closed.",
      },
      {
        title: "Dashboard AI activity widget",
        description:
          "A compact widget on /dashboard surfaces the last hour of autopilot actions across all your repos — repairs, reviews, deploys, and digest sends at a glance.",
      },
      {
        title: "Health score badge on repo header",
        description:
          "A colour-coded health score (0–100) appears in the repo header, computed from gate pass rate, stale PR count, and recent deploy success.",
      },
    ],
  },
];

// ---------------------------------------------------------------------------
// View
// ---------------------------------------------------------------------------

const ChangelogPage: FC = () => (
  <>
    <style dangerouslySetInnerHTML={{ __html: changelogCss }} />
    <div class="cl-root">
      <header class="cl-hero">
        <div class="cl-hero-inner">
          <p class="cl-eyebrow">Platform updates</p>
          <h1 class="cl-title">What's New in Gluecron</h1>
          <p class="cl-subtitle">
            Recent features, fixes, and improvements shipped to the platform.
          </p>
          <a href="/settings/notifications" class="cl-cta">
            Subscribe to updates &rarr;
          </a>
        </div>
      </header>

      <div class="cl-content">
        {RELEASES.map((rel) => (
          <section class="cl-month" key={rel.month}>
            <h2 class="cl-month-heading">{rel.month}</h2>
            <ul class="cl-entries">
              {rel.entries.map((entry) => (
                <li class="cl-entry" key={entry.title}>
                  <span class="cl-entry-dot" aria-hidden="true" />
                  <div class="cl-entry-body">
                    <strong class="cl-entry-title">{entry.title}</strong>
                    <p class="cl-entry-desc">{entry.description}</p>
                  </div>
                </li>
              ))}
            </ul>
          </section>
        ))}
      </div>
    </div>
  </>
);

// ---------------------------------------------------------------------------
// Styles (dark-theme aware, uses CSS custom properties from layout.tsx)
// ---------------------------------------------------------------------------

const changelogCss = `
.cl-root {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* Hero */
.cl-hero {
  margin-bottom: 56px;
  text-align: center;
}
.cl-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cl-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.cl-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: var(--text-strong);
  margin: 0;
  line-height: 1.2;
}
.cl-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
  max-width: 520px;
  line-height: 1.6;
}
.cl-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s;
}
.cl-cta:hover { opacity: 0.85; text-decoration: none; }

/* Month groups */
.cl-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.cl-month {}
.cl-month-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle, rgba(255,255,255,0.08));
}

/* Entry list */
.cl-entries {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cl-entry {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cl-entry-dot {
  flex-shrink: 0;
  margin-top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(140,109,255,0.5);
}
.cl-entry-body {
  flex: 1;
}
.cl-entry-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 4px;
}
.cl-entry-desc {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .cl-root { padding: 32px 16px 64px; }
}
`;

export default changelog;