Skip to content

Releases: signalapp/libsignal

v0.16.0

06 Apr 18:18
Compare
Choose a tag to compare
The format of the zkgroup credential presentations has changed
(AuthCredentialPresentation, ProfileKeyCredentialPresentation,
PniCredentialPresentation). The server will accept v1 or v2
presentations, but clients will always produce v2.

Other changes:

- zkgroup: Several operations sped up through caching the "system
  params".

- Java: A ProGuard file is included in the jars for libsignal-client
  and libsignal-server to ensure that ProGuard and R8 do not strip
  declarations used via JNI.

- Java: InvalidSenderKeySessionException is now correctly packaged
  in the jar.

- Java: The published artifacts for libsignal-client and
  libsignal-server will now include native M1 Mac support.

v0.15.1

25 Mar 00:07
Compare
Choose a tag to compare
- Java: update reproducible build to Debian Buster (from Stretch),
  and ensure compatibility with glibc 2.28

v0.15.0

23 Mar 18:41
Compare
Choose a tag to compare
A reorganizational release with many breaking changes.

Swift:
- **Renamed the CocoaPod to LibSignalClient**
- Removed SignalError.invalidCiphertext in favor of 'invalidMessage'
- Added SignalError.invalidSession and
  SignalError.invalidSenderKeySession
- Removed SenderKeyRecord.init()

Node:
- **Renamed the NPM package to @signalapp/libsignal-client**
- Removed SenderKeyRecord.new()
- Renamed SignalClientError* to LibSignalError*
- Added InvalidSessionError and InvalidSenderKeySessionError

Java:
- **Renamed the artifacts on Sonatype** under org.signal
  - org.whispersystems:signal-client-java ->
      org.signal:libsignal-client
  - org.whispersystems:signal-client-android ->
      org.signal:libsignal-android
  - org.whispersystems:libsignal-server ->
      org.signal:libsignal-server
- **Renamed several packages** so everything is org.signal.libsignal:
  - org.whispersystems.libsignal ->
      org.signal.libsignal.protocol
  - org.whispersystems.libsignal.protocol ->
      org.signal.libsignal.protocol.message
  - org.whispersystems.libsignal.util.AndroidSignalProtocolLogger ->
      org.signal.libsignal.logging.AndroidSignalProtocolLogger
  - org.signal.zkgroup ->
      org.signal.libsignal.zkgroup
- Re-enabled support for building the non-Android jars with JDK 8
- Fixed several incorrect exception specifications
- Added InvalidSessionException and InvalidSenderKeySessionException
- Removed SenderKeyRecord's no-argument constructor
- 64-bit Android: Enabled run-time detection of CPU support for
  cryptographic operations

Rust:
- Overhaul of SignalProtocolError:
  - Removed ProtobufDecodingError, ProtobufEncodingError,
    InvalidCiphertext, and InternalError cases
  - Added InvalidSenderKeySession
  - Added a message to InvalidSessionStructure
  - Added distribution ID to NoSenderKeyState
  - Changed SessionNotFound's payload to a ProtocolAddress rather than
    a String
  - Added the message type to InvalidMessage

v0.14.0

11 Mar 19:15
Compare
Choose a tag to compare
New: the Java build produces an additional 'libsignal-server'
artifact, intended for use with the Signal chat and storage servers.
At this time this is mostly an updated delivery vehicle for the
ZKGroup APIs, but may include additional APIs in the future.

Breaking changes

- Java: Removed local copies of Guava library classes in favor of
  standard Java classes, specifically java.util.Optional.
- Java: SignalMessage::verifyMac can now throw InvalidKeyException
  if the provided MAC key is invalid. (In general users of
  SignalMessage should not need to call this directly.)

Other changes

- Java: Published signal-client-java artifacts now include Mac and
  Windows JNI libraries as well. Previously only the "testable"
  variant included these libraries.
- Java: update to Gradle 7.4
- Node: update to Neon 0.10.0
- Node: update to node-gyp 8.4.1 for MSVS 2022 support

v0.13.0

19 Feb 00:00
Compare
Choose a tag to compare
- Swift and Node now take a buffer for HsmEnclaveClient's public key
  instead of a public key object, matching the Java API.
- Swift: Fix HsmEnclaveClient's decryption to actually decrypt.
- Node: Build the NPM package for arm64 Linux as well.

No changes for Java compared to the 0.12.x series.

v0.12.4

10 Feb 18:52
Compare
Choose a tag to compare
- Node: Improve compatibility with plain JavaScript and esbuild

v0.12.3

09 Feb 19:39
Compare
Choose a tag to compare
- Java: Expose message type in SealedSessionCipher's DecryptionResult

v0.12.2

01 Feb 02:08
Compare
Choose a tag to compare
- Update curve25519-dalek for faster deserialization

v0.12.1

27 Jan 22:42
Compare
Choose a tag to compare
- Java: Add PlaintextContent(byte[]) constructor
- Node: Include ARM64 Windows in NPM package

v0.12.0: 0.12.0

20 Dec 19:27
Compare
Choose a tag to compare
- Exposes needsPniSignature and signAlternateIdentity operations for
  handling messages sent to a phone number rather than an account
  UUID.

- Cleans up some crate-internal error handling, leading to some public
  error cases/types being removed. This is the only breaking change in
  this release.