Skip to content

Commit

Permalink
Upstream v6.0.3 update
Browse files Browse the repository at this point in the history
  • Loading branch information
k0gen committed Sep 6, 2024
1 parent 8c49ac5 commit 04e3809
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
id: simplex
title: "SimpleX Server"
version: 5.8.2
version: 6.0.3
release-notes: |
- SMP upstream update to 5.8.2
- Added XFTP Server
- Instructions update
- ALl upstream code update to 6.0.3
- More changes can be found in the [6.0.3 changelog](https://github.com/simplex-chat/simplexmq/blob/master/CHANGELOG.md#603)
license: MIT
wrapper-repo: "https://github.com/Start9Labs/simplex-startos"
upstream-repo: "https://github.com/simplex-chat/simplexmq/"
Expand Down
2 changes: 1 addition & 1 deletion scripts/procedures/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ export const migration: T.ExpectedExports.migration =
),
},
},
"5.8.2"
"6.0.3"
);
2 changes: 1 addition & 1 deletion simplexmq
Submodule simplexmq updated 81 files
+58 −0 CHANGELOG.md
+1 −1 README.md
+92 −18 install.sh
+2 −2 package.yaml
+8 −4 scripts/main/simplex-servers-uninstall
+104 −51 scripts/main/simplex-servers-update
+8 −8 simplexmq.cabal
+43 −26 src/Simplex/FileTransfer/Agent.hs
+4 −0 src/Simplex/FileTransfer/Chunks.hs
+3 −2 src/Simplex/FileTransfer/Client.hs
+2 −2 src/Simplex/FileTransfer/Client/Agent.hs
+5 −5 src/Simplex/FileTransfer/Client/Main.hs
+6 −11 src/Simplex/FileTransfer/Description.hs
+4 −3 src/Simplex/FileTransfer/Protocol.hs
+37 −39 src/Simplex/FileTransfer/Server.hs
+2 −2 src/Simplex/FileTransfer/Server/Control.hs
+6 −7 src/Simplex/FileTransfer/Server/Env.hs
+45 −44 src/Simplex/FileTransfer/Server/Stats.hs
+4 −4 src/Simplex/FileTransfer/Server/Store.hs
+2 −2 src/Simplex/FileTransfer/Types.hs
+287 −184 src/Simplex/Messaging/Agent.hs
+322 −214 src/Simplex/Messaging/Agent/Client.hs
+68 −26 src/Simplex/Messaging/Agent/Env/SQLite.hs
+57 −55 src/Simplex/Messaging/Agent/NtfSubSupervisor.hs
+17 −5 src/Simplex/Messaging/Agent/Protocol.hs
+24 −1 src/Simplex/Messaging/Agent/RetryInterval.hs
+342 −12 src/Simplex/Messaging/Agent/Stats.hs
+6 −0 src/Simplex/Messaging/Agent/Store.hs
+72 −30 src/Simplex/Messaging/Agent/Store/SQLite.hs
+24 −18 src/Simplex/Messaging/Agent/Store/SQLite/Common.hs
+21 −8 src/Simplex/Messaging/Agent/Store/SQLite/DB.hs
+4 −2 src/Simplex/Messaging/Agent/Store/SQLite/Migrations.hs
+5 −5 src/Simplex/Messaging/Agent/Store/SQLite/Migrations/M20240702_servers_stats.hs
+7 −0 src/Simplex/Messaging/Agent/Store/SQLite/Migrations/agent_schema.sql
+38 −22 src/Simplex/Messaging/Agent/TRcvQueues.hs
+52 −40 src/Simplex/Messaging/Client.hs
+119 −116 src/Simplex/Messaging/Client/Agent.hs
+2 −0 src/Simplex/Messaging/Encoding.hs
+6 −0 src/Simplex/Messaging/Encoding/String.hs
+4 −3 src/Simplex/Messaging/Notifications/Client.hs
+3 −3 src/Simplex/Messaging/Notifications/Protocol.hs
+42 −54 src/Simplex/Messaging/Notifications/Server.hs
+25 −26 src/Simplex/Messaging/Notifications/Server/Env.hs
+24 −1 src/Simplex/Messaging/Notifications/Server/Main.hs
+37 −36 src/Simplex/Messaging/Notifications/Server/Stats.hs
+9 −6 src/Simplex/Messaging/Notifications/Server/Store.hs
+11 −8 src/Simplex/Messaging/Notifications/Types.hs
+24 −12 src/Simplex/Messaging/Protocol.hs
+562 −283 src/Simplex/Messaging/Server.hs
+6 −3 src/Simplex/Messaging/Server/Control.hs
+65 −45 src/Simplex/Messaging/Server/Env/STM.hs
+2 −7 src/Simplex/Messaging/Server/Main.hs
+16 −21 src/Simplex/Messaging/Server/MsgStore/STM.hs
+4 −4 src/Simplex/Messaging/Server/QueueStore/STM.hs
+337 −153 src/Simplex/Messaging/Server/Stats.hs
+4 −2 src/Simplex/Messaging/Server/StoreLog.hs
+3 −10 src/Simplex/Messaging/Session.hs
+14 −4 src/Simplex/Messaging/TMap.hs
+6 −5 src/Simplex/Messaging/Transport.hs
+3 −3 src/Simplex/Messaging/Transport/Buffer.hs
+1 −1 src/Simplex/Messaging/Transport/HTTP2.hs
+4 −4 src/Simplex/Messaging/Transport/HTTP2/Client.hs
+5 −5 src/Simplex/Messaging/Transport/Server.hs
+7 −4 src/Simplex/Messaging/Transport/WebSockets.hs
+9 −3 src/Simplex/Messaging/Util.hs
+1 −1 src/Simplex/RemoteControl/Client.hs
+17 −17 tests/AgentTests/ConnectionRequestTests.hs
+387 −185 tests/AgentTests/FunctionalAPITests.hs
+162 −28 tests/AgentTests/NotificationTests.hs
+36 −19 tests/AgentTests/SQLiteTests.hs
+28 −6 tests/CoreTests/BatchingTests.hs
+76 −6 tests/CoreTests/RetryIntervalTests.hs
+63 −49 tests/CoreTests/TRcvQueuesTests.hs
+2 −1 tests/FileDescriptionTests.hs
+1 −1 tests/NtfClient.hs
+4 −4 tests/NtfServerTests.hs
+13 −8 tests/SMPAgentClient.hs
+2 −2 tests/SMPClient.hs
+55 −25 tests/SMPProxyTests.hs
+41 −39 tests/ServerTests.hs
+8 −7 tests/XFTPServerTests.hs

0 comments on commit 04e3809

Please sign in to comment.