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
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [0.4.2][0.4.2]

Changes for library users since `0.4.1`.

### Changed

- Deprecated `SshKeys.ensureEd25519Support()` because Ed25519 support is now
selected automatically without modifying the global JCE provider list.

### Fixed

- Preserved unread session output, error output, extended data, and forwarded
channel data when the remote peer closes a channel.
- Validated JCE providers with raw-key operations before selecting them for
Ed25519, Ed448, ECDSA, RSA, and X25519, avoiding failures from providers such
as AndroidKeyStore that advertise algorithms but reject non-keystore keys.

## [0.4.1][0.4.1]

Changes for library users since `0.4.0`.
Expand Down Expand Up @@ -106,6 +123,7 @@ Changes for library users since `0.2.1`.
- Limited zlib decompression output per packet to reduce decompression-bomb
denial-of-service risk.

[0.4.2]: https://github.com/connectbot/cbssh/compare/v0.4.1...v0.4.2
[0.4.1]: https://github.com/connectbot/cbssh/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/connectbot/cbssh/compare/v0.3.1...v0.4.0
[0.3.1]: https://github.com/connectbot/cbssh/compare/v0.3.0...v0.3.1
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ org.gradle.configuration-cache=false
#org.gradle.configuration-cache.parallel=true

group=org.connectbot.sshlib
version=0.4.2-SNAPSHOT
version=0.4.3-SNAPSHOT
Loading