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 @@ -5,6 +5,22 @@ All notable changes to rustvncserver 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).

## [2.1.0] - 2025-12-17

### Fixed

- **Critical ZRLE encoding bug:** Fixed buffer overflow on non-standard dimensions
- Root cause: Hardcoded `bytes_per_pixel = 4` instead of using `PixelFormat::bytes_per_pixel()`
- Affected screen resolutions not divisible by 64 (e.g., 960x540)
- Fixed CPIXEL size calculation per RFC 6143
- Fixed input buffer validation to use correct bytes per pixel

### Changed

- Updated `rfb-encodings` dependency from `0.1.5` to `0.1.6`
- Includes comprehensive test suite with 44 automated tests
- All 10 encodings now have test coverage (golden, round-trip, or smoke tests)

## [2.0.0] - 2025-10-27

**Stable Release** - This marks the official 2.0.0 release, graduating from beta status.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustvncserver"
version = "2.0.0"
version = "2.1.0"
edition = "2021"
rust-version = "1.90"
authors = ["Dustin McAfee"]
Expand Down
Loading