Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ body:
attributes:
label: Application version
description: Copy the version from the application or release page.
placeholder: 0.1.0-alpha.3
placeholder: 0.1.0-alpha.4
validations:
required: true

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/compatibility_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ body:
id: profiler-version
attributes:
label: Profiler version
placeholder: 0.1.0-alpha.3
placeholder: 0.1.0-alpha.4
validations:
required: true

Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,13 @@ jobs:
- name: Install locked dependencies
run: npm ci

- name: Install and verify pinned Siegfried sidecar
shell: pwsh
run: ./scripts/install-siegfried.ps1

- name: Run Windows Siegfried command-contract regressions
run: cargo test -p profiler-format-siegfried --locked -- --nocapture

- name: Run Windows snapshot pipeline regression
run: cargo test -p profiler-engine --test profile_pipeline --locked -- --nocapture

Expand Down
13 changes: 10 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
tags:
- "v*"
- "!v*-runtime-green"

permissions:
contents: read
Expand Down Expand Up @@ -56,6 +57,10 @@ jobs:
node scripts/check-tag-version.cjs "${{ github.ref_name }}"
npm run check:docs

- name: Install and verify pinned Siegfried sidecar
shell: pwsh
run: ./scripts/install-siegfried.ps1

- name: Run complete Windows quality gate
shell: pwsh
run: ./scripts/quality.ps1
Expand Down Expand Up @@ -149,9 +154,11 @@ jobs:
- name: Generate SHA-256 manifest
shell: pwsh
run: |
$artifacts = Get-ChildItem "target/release/bundle" -Recurse -File |
Where-Object { $_.Extension -in @(".exe", ".msi") } |
Sort-Object Name
$artifacts = @(
Get-ChildItem "target/release/bundle" -Recurse -File |
Where-Object { $_.Extension -in @(".exe", ".msi") }
Get-Item "tools/siegfried/windows-x86_64/tool-manifest.json"
) | Sort-Object Name

if (-not $artifacts) {
throw "No NSIS or MSI artifacts were produced."
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,8 @@ desktop.ini
*.partial
*.bak
*.log

# Generated pinned format-identification sidecar resources
tools/siegfried/windows-x86_64/sf.exe
tools/siegfried/windows-x86_64/default.sig
tools/siegfried/windows-x86_64/tool-manifest.json
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,17 @@ All notable changes to MailVault Collection Profiler are documented here.
The project follows Semantic Versioning once the public API reaches a stable release. Alpha builds
may change local profiler schemas and command contracts through explicit migrations.

## 0.1.0-alpha.3 — 2026-07-20
## 0.1.0-alpha.4 — 2026-07-21

- Added exact format identification with pinned Siegfried `1.11.6` and PRONOM `v124`.
- Added versioned PUID assertions, all-match retention, bounded batches, resume checkpoints and format UI/CLI.
- Added verified sidecar acquisition, Tauri resource bundling and third-party notices.
- Added migration `0006_exact_format_identification.sql`.
- Updated English/Persian documentation and sanitized release screenshots.
- Fixed Windows JSON probing and real-batch execution by resolving the verified signature through
`-home` and passing only `default.sig`, avoiding Siegfried 1.11.6's unescaped header path.
- Added Windows regression coverage for the sidecar command contract.


### Added

Expand All @@ -24,7 +34,7 @@ may change local profiler schemas and command contracts through explicit migrati

### Changed

- Public application version advanced to `0.1.0-alpha.3`; WiX/MSI version maps to `0.1.0.3`.
- Public application version advanced to `0.1.0-alpha.4`; WiX/MSI version maps to `0.1.0.4`.
- Informational filename/content relationships are separated from warnings requiring attention.
- Quality, CI and release commands use locked Cargo resolution and validate alpha.3 release notes.

Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors:
- name: FireXCore
repository-code: https://github.com/FireXCore/mailvault-collection-profiler
url: https://github.com/FireXCore/mailvault-collection-profiler
version: 0.1.0-alpha.3
version: 0.1.0-alpha.4
date-released: 2026-07-19
license: Apache-2.0
abstract: >-
Expand Down
27 changes: 21 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ members = [
"crates/profiler-adapter-mailvault",
"crates/profiler-core",
"crates/profiler-engine",
"crates/profiler-format-siegfried",
"crates/profiler-storage-sqlite",
]
resolver = "3"

[workspace.package]
version = "0.1.0-alpha.3"
version = "0.1.0-alpha.4"
edition = "2024"
rust-version = "1.97.1"
authors = ["FireXCore"]
Expand Down
Loading