Skip to content

Commit 7dd4db0

Browse files
chore(release): prepare for publishing (#1212)
1 parent 059ca90 commit 7dd4db0

71 files changed

Lines changed: 1052 additions & 306 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Cargo.lock

Lines changed: 38 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/iron-remote-desktop/CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,25 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9+
## [[0.7.1](https://github.com/Devolutions/IronRDP/compare/iron-remote-desktop-v0.7.0...iron-remote-desktop-v0.7.1)] - 2026-05-27
10+
11+
### <!-- 1 -->Features
12+
13+
- Expose granular RDCleanPath error details ([#1117](https://github.com/Devolutions/IronRDP/issues/1117)) ([2911124e8f](https://github.com/Devolutions/IronRDP/commit/2911124e8fe6160bc8ba03a574b67077e6d2cca9))
14+
15+
Add RDCleanPathDetails struct to provide detailed error information for
16+
RDCleanPath errors, including HTTP status codes, WSA error codes, and
17+
TLS alert codes.
18+
19+
Allows the web client to distinguish between different types of network
20+
errors (say, WSAEACCES/10013) instead of showing a generic RDCleanpath
21+
error message.
22+
23+
- Implement clipboard file transfer support ([#1166](https://github.com/Devolutions/IronRDP/issues/1166)) ([c98a8fb774](https://github.com/Devolutions/IronRDP/commit/c98a8fb7741986e9afef00cb5615250c963a7fa9))
24+
25+
Add end-to-end clipboard file transfer (upload and download) across the
26+
CLIPRDR channel per MS-RDPECLIP.
27+
928
## [[0.7.0](https://github.com/Devolutions/IronRDP/compare/iron-remote-desktop-v0.6.0...iron-remote-desktop-v0.7.0)] - 2025-09-29
1029

1130
### <!-- 4 -->Bug Fixes
@@ -36,4 +55,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3655

3756
- [**breaking**] Rename extension_call to invoke_extension (#803) ([f68cd06ac3](https://github.com/Devolutions/IronRDP/commit/f68cd06ac3705608e6f2ac6bde684d9ae906ea53))
3857

39-

crates/iron-remote-desktop/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iron-remote-desktop"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
readme = "README.md"
55
description = "Helper crate for building WASM modules compatible with iron-remote-desktop WebComponent"
66
edition.workspace = true

crates/ironrdp-acceptor/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,27 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9+
## [[0.9.0](https://github.com/Devolutions/IronRDP/compare/ironrdp-acceptor-v0.8.0...ironrdp-acceptor-v0.9.0)] - 2026-05-27
10+
11+
### <!-- 4 -->Bug Fixes
12+
13+
- Send RDP_NEG_FAILURE on security protocol mismatch ([#1152](https://github.com/Devolutions/IronRDP/issues/1152)) ([02b9f4efbb](https://github.com/Devolutions/IronRDP/commit/02b9f4efbbe634a50efa0601f30e0a2096a6f78e))
14+
15+
When the client and server have no common security protocol, the
16+
acceptor now sends a proper `RDP_NEG_FAILURE` PDU before returning an
17+
error, instead of dropping the TCP connection.
18+
19+
### <!-- 1 -->Features
20+
21+
- Expose received client credentials in AcceptorResult ([#1155](https://github.com/Devolutions/IronRDP/issues/1155)) ([eda32d8acf](https://github.com/Devolutions/IronRDP/commit/eda32d8acffbb2e37d13c790105ff022067f5efb))
22+
23+
- Skip credential check when server credentials are None ([#1150](https://github.com/Devolutions/IronRDP/issues/1150)) ([84015c9467](https://github.com/Devolutions/IronRDP/commit/84015c946731579dfd7a49294b2e55259e4f8d3f))
24+
25+
### <!-- 7 -->Build
26+
27+
- Upgrade sspi to 0.19, picky to rc.22, fix NTLM fallback ([#1188](https://github.com/Devolutions/IronRDP/issues/1188)) ([c70d38a9f1](https://github.com/Devolutions/IronRDP/commit/c70d38a9f190d6ad6c84bd9027a388b5db3296ba))
28+
29+
930
## [[0.8.0](https://github.com/Devolutions/IronRDP/compare/ironrdp-acceptor-v0.7.0...ironrdp-acceptor-v0.8.0)] - 2025-12-18
1031

1132
### <!-- 4 -->Bug Fixes

0 commit comments

Comments
 (0)