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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.3.0] - 2026-07-08

### Added
- Added SHA256 checksum verification for downloaded update assets (`AssetVerifier`, `SHA256SUMS.txt` generated by CI).
- Added `HttpRetryPolicy` with exponential backoff for transient HTTP failures during update checks and downloads.
- Added input validation and distinct exit codes to `KeePassAutoReload.Updater.exe`.
- Added `SECURITY.md`, `CONTRIBUTING.md`, and expanded `README.md` updater-usage documentation.

### Changed
- Replaced regex-based GitHub releases JSON parsing with `DataContractJsonSerializer`.
- Cached KeePass download in CI using `actions/cache` to reduce SourceForge dependency and improve reliability.
- Hardened `PluginUpdater.TryScheduleUpdate` with extension and process-ID validation.

### Removed
- Removed dead PLGX-related code; only the DLL package format is supported.

## [1.2.3] - 2026-07-08

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions src/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("7a6f71d0-35d2-4d98-9b73-3d8f3f9473aa")]
[assembly: AssemblyVersion("1.2.3.0")]
[assembly: AssemblyFileVersion("1.2.3.0")]
[assembly: AssemblyInformationalVersion("1.2.3")]
[assembly: AssemblyVersion("1.3.0.0")]
[assembly: AssemblyFileVersion("1.3.0.0")]
[assembly: AssemblyInformationalVersion("1.3.0")]
Loading