From af7b920b97d8b04732670ac755784bd679428669 Mon Sep 17 00:00:00 2001 From: "sencho-quartermaster[bot]" <275163604+sencho-quartermaster[bot]@users.noreply.github.com> Date: Tue, 30 Jun 2026 02:08:25 -0400 Subject: [PATCH 01/20] chore(main): release 0.93.2 (#1529) Co-authored-by: sencho-quartermaster[bot] <275163604+sencho-quartermaster[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f11ab39f..38b4129c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.93.1" + ".": "0.93.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a5f68d29..fd190a3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.93.2](https://github.com/Studio-Saelix/sencho/compare/v0.93.1...v0.93.2) (2026-06-30) + + +### Fixed + +* **ci:** correct github-script pin in preview workflow ([#1528](https://github.com/Studio-Saelix/sencho/issues/1528)) ([c9dcc3a](https://github.com/Studio-Saelix/sencho/commit/c9dcc3acf352f5c5cc717dc1d2d6f038832c81cb)) + ## [0.93.1](https://github.com/Studio-Saelix/sencho/compare/v0.93.0...v0.93.1) (2026-06-30) diff --git a/package-lock.json b/package-lock.json index 2c511969..a67c6fd5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "sencho", - "version": "0.93.1", + "version": "0.93.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "sencho", - "version": "0.93.1", + "version": "0.93.2", "license": "SEE LICENSE IN LICENSE", "devDependencies": { "@commitlint/cli": "^21.1.0", diff --git a/package.json b/package.json index fd575bfa..b7fc04fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sencho", - "version": "0.93.1", + "version": "0.93.2", "description": "Self-hosted Docker Compose management dashboard with fleet control, atomic deployments, and self-healing infrastructure.", "main": "index.js", "scripts": { From 7c759ff2b7614b2c26febe33463d38cd3e90fe14 Mon Sep 17 00:00:00 2001 From: Anso Date: Tue, 30 Jun 2026 22:38:10 -0400 Subject: [PATCH 02/20] feat: add GitHub Sponsors alongside Buy Me a Coffee (#1535) Adds the github key to FUNDING.yml and links GitHub Sponsors from README and SUPPORT so both channels are visible; the org still needs to complete GitHub's Sponsors onboarding for the button to render. --- .github/FUNDING.yml | 1 + README.md | 3 ++- SUPPORT.md | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 28470224..0ff6d128 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,2 +1,3 @@ +github: Studio-Saelix custom: - https://buymeacoffee.com/sencho diff --git a/README.md b/README.md index d0f904ca..c9370400 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,8 @@ Docs · Website · Discussions · - Sponsor + Sponsor · + Buy Me a Coffee

[![Latest release](https://img.shields.io/github/v/release/studio-saelix/sencho?label=release)](https://github.com/studio-saelix/sencho/releases) diff --git a/SUPPORT.md b/SUPPORT.md index 8b6c7200..83bcb963 100644 --- a/SUPPORT.md +++ b/SUPPORT.md @@ -10,7 +10,7 @@ Sencho is a solo-maintained project. Here is what to expect. - **Feature requests** → [Feature request](https://github.com/studio-saelix/sencho/issues/new?template=feature_request.yml) - **Security vulnerabilities** → [SECURITY.md](SECURITY.md). Do not open a public issue. - **Licensing, billing, refunds** → licensing@sencho.io -- **Support the project** → [Buy Me a Coffee](https://buymeacoffee.com/sencho). Sponsorship is not required and does not change support response times; it helps fund the work. +- **Support the project** → [GitHub Sponsors](https://github.com/sponsors/Studio-Saelix) or [Buy Me a Coffee](https://buymeacoffee.com/sencho). Sponsorship is not required and does not change support response times; it helps fund the work. ## Response times From ad8d87429409de7d09ff7e53741d42e2fa4c3930 Mon Sep 17 00:00:00 2001 From: Anso Date: Tue, 30 Jun 2026 23:32:38 -0400 Subject: [PATCH 03/20] chore: correct release version after mistagged sponsors PR (#1537) The GitHub Sponsors PR (#1535) was merged as feat, which is not accurate: it only touches FUNDING.yml and README/SUPPORT links, with no codebase changes. This forces the next release back to a patch bump instead of the minor bump release-please computed from that commit. Release-As: 0.93.3 From 90c69b1ea4135077d501399dd1e668b1b5113fa7 Mon Sep 17 00:00:00 2001 From: Anso Date: Wed, 1 Jul 2026 02:42:52 -0400 Subject: [PATCH 04/20] fix: reflect toggle state in scheduled task Enabled/Disabled label (#1533) The New/Edit Scheduled Task modal always showed "Enabled" next to the task toggle regardless of its on/off state. The label now tracks formEnabled, matching the existing Enabled/Disabled label convention used in the Stacks settings section. --- frontend/src/components/ScheduledOperationsView.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/ScheduledOperationsView.tsx b/frontend/src/components/ScheduledOperationsView.tsx index aa6ac329..c7b8672e 100644 --- a/frontend/src/components/ScheduledOperationsView.tsx +++ b/frontend/src/components/ScheduledOperationsView.tsx @@ -937,7 +937,12 @@ export default function ScheduledOperationsView({ filterNodeId, onClearFilter, p
- +