mirror of
https://github.com/simplex-chat/simplexmq.git
synced 2026-05-25 20:44:49 +00:00
33de5f6fec
* include migrations in the package, update versions * update DigitalOcean version
2.6 KiB
2.6 KiB
0.4.1
- Include migrations in the package
0.4.0
- SMP server implementation and SMP protocol changes:
- support 3072 bit RSA key size
- add SMP queue quotas
- set default transport block size to 4096 bits
- allow SMP client to change transport block size during transport connection handshake
- SMP agent implementation and protocol changes:
- additional connection confirmation step for initiating party
- automatically resume subscribed duplex connections once transport connection is resumed
- passing an arbitrary binary information between parties during the duplex connection handshake - can be used to identify parties
- asynchronous duplex connection handshake - the parties do not have to be online at the same time
- asynchronous message delivery - the agent does not need transport connection to accept client messages for delivery
- additional confirmation of message reception from the client to prevent message loss in case of process termination
- set transport block size to 8192 bits (in the future the agent protocol can allow to have different block sizes for different duplex connections)
- added client commands and notifications (see agent protocol):
REQ- the notification about joining party establishing connectionACPT- the command to accept connection with the joining partyINFO- the notification with the information from the initiating partyDOWN/UP- the notifications about losing/resuming the connectionACK- the command to confirm that the message reception/processing is completeMID- the response toSENDconfirming that the message is accepted by the agentMERR- the notification about permanent message delivery error (e.g.,ERR AUTHindicating that the queue was removed)
0.3.2
- Support websockets
- SMP server CLI commands
0.3.1
- Released to hackage.org
- SMP agent protocol changes:
- move SMP server from agent commands NEW/JOIN to agent config
- send CON to user only when the 1st party responds HELLO
- Fix REPLY vulnerability
- Fix transaction busy error
0.3.0
- SMP encrypted transport over TCP
- Standard X509/PKCS8 encoding for RSA keys
- Sign and verify agent messages
- Verify message integrity based on previous message hash and ID
- Prevent timing attack allowing to determine if queue exists
- Only allow correct RSA keys and signature sizes
0.2.0
- SMP client library
- SMP agent with E2E encryption
0.1.0
- SMP protocol server implementation without encryption