From 17944554e65b36ad9ec6133a3e687b30faa83241 Mon Sep 17 00:00:00 2001 From: Smittix Date: Fri, 13 Mar 2026 14:31:01 +0000 Subject: [PATCH] v2.26.1: fix default admin credentials (admin:admin) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Patch release for #186 — default ADMIN_PASSWORD now matches README, and credential changes in config.py sync to DB on restart. Co-Authored-By: Claude Opus 4.6 --- CHANGELOG.md | 8 ++++++++ config.py | 10 +++++++++- pyproject.toml | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df84e1a..9932283 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to iNTERCEPT will be documented in this file. +## [2.26.1] - 2026-03-13 + +### Fixed +- **Default admin credentials** — Default `ADMIN_PASSWORD` changed from empty string to `admin`, matching the README documentation (`admin:admin`) +- **Config credential sync** — Admin password changes in `config.py` or via `INTERCEPT_ADMIN_PASSWORD` env var now sync to the database on restart, without needing to delete the DB + +--- + ## [2.26.0] - 2026-03-13 ### Fixed diff --git a/config.py b/config.py index b9260c3..f570824 100644 --- a/config.py +++ b/config.py @@ -7,10 +7,18 @@ import os import sys # Application version -VERSION = "2.26.0" +VERSION = "2.26.1" # Changelog - latest release notes (shown on welcome screen) CHANGELOG = [ + { + "version": "2.26.1", + "date": "March 2026", + "highlights": [ + "Fix default admin credentials — now matches README (admin:admin)", + "Admin password changes in config.py / env vars now sync to DB on restart", + ] + }, { "version": "2.26.0", "date": "March 2026", diff --git a/pyproject.toml b/pyproject.toml index dbbe184..c25f199 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "intercept" -version = "2.26.0" +version = "2.26.1" description = "Signal Intelligence Platform - Pager/433MHz/ADS-B/Satellite/WiFi/Bluetooth" readme = "README.md" requires-python = ">=3.9"