Skip to content

Stable release 2026.08.28.05 - #90

Merged
alexphillips-dev merged 44 commits into
mainfrom
release/2026.08.28.05
Aug 28, 2026
Merged

Stable release 2026.08.28.05#90
alexphillips-dev merged 44 commits into
mainfrom
release/2026.08.28.05

Conversation

@alexphillips-dev

Copy link
Copy Markdown
Owner

Stable release

Publishes FolderView Plus 2026.08.28.05 from the fully validated dev release candidate.

  • Includes the complete curated release notes in docs/releases/2026.08.28.05.md.
  • Stable package, manifest, checksum, SBOM, and provenance metadata were generated by scripts/release_prepare.sh.
  • The isolated stable-release rehearsal and the authoritative release suite passed locally.
  • Package SHA-256: f71ee236840caadc58c6e22630a311670fa39d39f48293d086182cf0bb4dae88.
  • The GitHub Wiki audit and updates were completed before publication.

This PR exists because the protected main ruleset requires CodeQL results for the exact release commit before it can enter main.

github-actions Bot and others added 30 commits August 19, 2026 18:32
# Conflicts:
#	docs/sbom.cdx.json
#	folderview.plus.plg
# Conflicts:
#	docs/sbom.cdx.json
#	folderview.plus.plg

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 292eedce1a

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

function fvplusWebuiProfileCleanString($value, int $maxBytes): string {
$clean = preg_replace('/[\x00-\x1F\x7F]/u', '', (string)$value);
$trimmed = trim(is_string($clean) ? $clean : '');
return strlen($trimmed) <= $maxBytes ? $trimmed : substr($trimmed, 0, $maxBytes);

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Preserve UTF-8 when truncating WebUI profile strings

When a localized profile name exceeds 80 bytes, this byte-based substr can split a multibyte character and return invalid UTF-8; for example, a 27-character CJK name is accepted by the editor's 80-character limit but is cut after 80 of its 81 bytes. The resulting profile then makes json_encode fail in the durable folder writer, so users cannot save the folder. Truncate on Unicode character boundaries or reject the over-limit value without producing malformed text.

Useful? React with 👍 / 👎.

Comment on lines +156 to +157
const pending = Array.from(doc?.querySelectorAll?.(`[${DOCKER_LIFECYCLE_SURFACE_PENDING_ATTRIBUTE}="true"]`) || []);
const surfaces = Array.from(new Set([...matched, ...pending]));

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Clear pending state only for the completed container

When lifecycle operations on two containers overlap, finalizing either request includes every globally pending preview surface here, not just the surfaces matched to that request. Consequently, the still-running operation loses its spinner and aria-busy state before it settles; the per-request match computed immediately above is defeated by unioning it with the global pending set. Cleanup should remain scoped to the completed container while separately handling genuinely stale requests.

Useful? React with 👍 / 👎.

@alexphillips-dev
alexphillips-dev merged commit f1f6adb into main Aug 28, 2026
12 checks passed
@alexphillips-dev
alexphillips-dev deleted the release/2026.08.28.05 branch August 28, 2026 20:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant