Skip to content

Releases: FluidifyAI/Regen

v0.15.0

24 May 10:10
68d7f95

Choose a tag to compare

What's new

Pro extension points

Adds the enterprise hook system so a private Pro binary can extend the OSS server without any Pro code shipping in this repo:

  • enterprise.Hooks.CustomFieldsHandler — Pro binary registers custom field routes; OSS returns 402
  • enterprise.Hooks.UIProvider — Pro binary serves its own embedded frontend; OSS binary behaviour unchanged
  • commands.SetEnterpriseHooks() — called by the Pro binary before Execute() to inject all hooks

No behaviour change for self-hosted OSS users.

Fixes & housekeeping

  • Fix Helm chart publishing to charts.fluidify.ai on each release
  • Fix Helm install URL in README

v0.13.0

19 May 09:25
d2bc6c8

Choose a tag to compare

What's new

Public status page
Every Regen instance now has a built-in status page at /status — no login required. It shows active incidents with live severity indicators and incidents resolved in the last 7 days with duration. Share it with your team or link it from your internal docs. The URL is shown in Settings → System.

Incident detail and properties panel redesign
The incident detail page has been fully redesigned:

  • Severity-tinted header (subtle colour wash calibrated to incident urgency)
  • Left severity stripe on the title for instant visual context
  • Sticky compact bar appears when you scroll past the title
  • Properties panel with collapsible sections, richer field editing, and save-flash feedback

Getting started

```bash
git clone https://github.com/FluidifyAI/Regen.git
cd Regen
docker compose up
```

Or with Docker directly:

```bash
docker pull ghcr.io/fluidifyai/regen:0.13.0
```

Kubernetes (Helm):

```bash
helm repo add fluidify https://charts.fluidify.ai/charts
helm install regen fluidify/fluidify-regen
```

What Regen includes

  • Alert ingestion — Prometheus, Grafana, CloudWatch, generic webhooks
  • Incident management — full lifecycle, immutable timeline, public status page
  • Slack & Teams — auto channel creation, bidirectional sync, bot commands
  • On-call scheduling — rotations, overrides, escalation policies, public holidays, individual leave
  • 1-click migration — import schedules and escalation policies from PagerDuty and Opsgenie
  • AI assistance — summaries and post-mortems via OpenAI, Anthropic, or Ollama (BYO key)
  • SSO/SAML — Okta, Azure AD, Google Workspace (free, not gated)
  • Kubernetes — production Helm chart with HPA, ingress, migration job

Upgrading from v0.12.x

Run database migrations before starting the new version:

```bash
docker compose run --rm backend migrate
```

Or with the binary:

```bash
./regen migrate
```

v0.12.0

19 May 09:25
399ea71

Choose a tag to compare

What's new

Multi-provider AI connector — BYO Claude, Ollama, or OpenAI
Regen now supports three AI providers out of the box. Pick the one that fits your infra — no lock-in, no data leaving your environment unless you choose a cloud provider.

  • Anthropic Claude — connect with your own API key (Claude 3.5 Sonnet by default)
  • Ollama — fully local LLM inference; point Regen at your Ollama endpoint and model
  • OpenAI — existing OpenAI users continue to work with no config changes

Switch providers at any time in Settings → System → AI Provider. All three power the same features: incident summarization, post-mortem drafts, and the handoff digest.

Getting started

git clone https://github.com/FluidifyAI/Regen.git
cd Regen
docker compose up

Or with Docker directly:

docker pull ghcr.io/fluidifyai/regen:0.12.0

Kubernetes (Helm):

helm repo add fluidify https://charts.fluidify.ai/charts
helm install regen fluidify/fluidify-regen

What Regen includes

  • Alert ingestion — Prometheus, Grafana, CloudWatch, generic webhooks
  • Incident management — full lifecycle, immutable timeline, severity/status workflow
  • Slack & Teams — auto channel creation, bidirectional sync, bot commands
  • On-call scheduling — rotations, overrides, escalation policies, public holidays, individual leave
  • 1-click migration — import schedules and escalation policies from PagerDuty and Opsgenie
  • AI assistance — summaries and post-mortems via OpenAI, Anthropic, or Ollama (BYO key)
  • SSO/SAML — Okta, Azure AD, Google Workspace (free, not gated)
  • Kubernetes — production Helm chart with HPA, ingress, migration job

Upgrading from v0.11.x

No database migrations required. Pull the new image and restart.

If you were using OPENAI_API_KEY, it continues to work — the new provider selector defaults to OpenAI when that env var is set.

v0.11.0

01 May 03:56

Choose a tag to compare

What's new

In-app announcements
Regen now displays a dismissible banner for admins when there are release notes or important updates. No action needed — announcements are fetched automatically in the background.

Self-hosted from day one
This release is designed to be cloned and run immediately:

git clone https://github.com/FluidifyAI/Regen.git
cd Regen
docker compose up

Or with Docker directly:

docker pull ghcr.io/fluidifyai/regen:0.11.0

Kubernetes (Helm):

helm repo add fluidify https://charts.fluidify.ai/charts
helm install regen fluidify/fluidify-regen

What Regen includes

  • Alert ingestion — Prometheus, Grafana, CloudWatch, generic webhooks
  • Incident management — full lifecycle, immutable timeline, severity/status workflow
  • Slack & Teams — auto channel creation, bidirectional sync, bot commands
  • On-call scheduling — rotations, overrides, escalation policies
  • AI assistance — incident summaries and post-mortem drafts (BYO OpenAI key)
  • SSO/SAML — Okta, Azure AD, Google Workspace (free, not gated)
  • Kubernetes — production Helm chart with HPA, ingress, migration job

Privacy

Regen collects anonymous aggregate statistics (incident counts, features enabled, instance size) to understand adoption. No incident content, hostnames, or user data is collected. Opt out at any time with REGEN_NO_TELEMETRY=1 or via Settings → System.

Upgrading from v0.10.x

No database migrations required. Pull the new image and restart.

v0.10.0 — Initial Release

04 Apr 08:53

Choose a tag to compare

Fluidify Regen v0.10.0

Open-source incident management — self-hosted, agent-native, free forever.

What's included

  • Alert ingestion — Prometheus, Grafana, CloudWatch, generic webhooks
  • Incident lifecycle — triggered → acknowledged → resolved, immutable timeline
  • Slack & Teams integration — auto channel creation, bidirectional sync, bot commands
  • On-call scheduling — rotations, layers, overrides, escalation policies
  • AI assistance — incident summaries, post-mortem drafts (BYO OpenAI key)
  • SAML SSO — Okta, Azure AD, Google Workspace (free, not paywalled)
  • Kubernetes-ready — Helm chart, HPA, HA Postgres + Redis Sentinel docs
  • Sample data seeder — new installs start with example incidents and alerts

Self-host in one command

docker-compose up -d

Docs: https://regen.fluidify.ai
Security: https://github.com/FluidifyAI/Regen/blob/main/SECURITY.md