update simplexmq (fixes v2 connecting to v1 contact link)

This commit is contained in:
Evgeny Poberezkin
2022-06-29 09:04:53 +01:00
parent 043005d186
commit 13603f009b
4 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ constraints: zip +disable-bzip2 +disable-zstd
source-repository-package
type: git
location: https://github.com/simplex-chat/simplexmq.git
tag: 09b51dc44ffa2a55e441d5664fab0777f8dbbfb9
tag: c9501a23a0626bf441756c4342acf08a5900aad8
source-repository-package
type: git
+1 -1
View File
@@ -1,5 +1,5 @@
{
"https://github.com/simplex-chat/simplexmq.git"."09b51dc44ffa2a55e441d5664fab0777f8dbbfb9" = "19y3d5iwc6hwphiiyxdlxkvi651cmfnabfss694samjgr55pfxq3";
"https://github.com/simplex-chat/simplexmq.git"."c9501a23a0626bf441756c4342acf08a5900aad8" = "0rra32hd86yawr6k8vqv86jq97lffyyaqxr2n8gq34vz7c8kmg4d";
"https://github.com/simplex-chat/aeson.git"."3eb66f9a68f103b5f1489382aad89f5712a64db7" = "0kilkx59fl6c3qy3kjczqvm8c3f4n3p0bdk9biyflf51ljnzp4yp";
"https://github.com/simplex-chat/haskell-terminal.git"."f708b00009b54890172068f168bf98508ffcd495" = "0zmq7lmfsk8m340g47g5963yba7i88n4afa6z93sg9px5jv1mijj";
"https://github.com/zw3rk/android-support.git"."3c3a5ab0b8b137a072c98d3d0937cbdc96918ddb" = "1r6jyxbim3dsvrmakqfyxbd6ms6miaghpbwyl0sr6dzwpgaprz97";
+1 -1
View File
@@ -49,7 +49,7 @@ extra-deps:
# - simplexmq-1.0.0@sha256:34b2004728ae396e3ae449cd090ba7410781e2b3cefc59259915f4ca5daa9ea8,8561
# - ../simplexmq
- github: simplex-chat/simplexmq
commit: 09b51dc44ffa2a55e441d5664fab0777f8dbbfb9
commit: c9501a23a0626bf441756c4342acf08a5900aad8
# - terminal-0.2.0.0@sha256:de6770ecaae3197c66ac1f0db5a80cf5a5b1d3b64a66a05b50f442de5ad39570,2977
- github: simplex-chat/aeson
commit: 3eb66f9a68f103b5f1489382aad89f5712a64db7
+3 -1
View File
@@ -27,6 +27,7 @@ import Simplex.Chat.Terminal.Output (newChatTerminal)
import Simplex.Chat.Types (Profile, User (..))
import Simplex.Messaging.Agent.Env.SQLite
import Simplex.Messaging.Agent.RetryInterval
import Simplex.Messaging.Client (ProtocolClientConfig (..))
import Simplex.Messaging.Server (runSMPServerBlocking)
import Simplex.Messaging.Server.Env.STM
import Simplex.Messaging.Transport
@@ -90,7 +91,8 @@ testAgentCfgV1 :: AgentConfig
testAgentCfgV1 =
testAgentCfg
{ smpAgentVersion = 1,
smpAgentVRange = mkVersionRange 1 1
smpAgentVRange = mkVersionRange 1 1,
smpCfg = (smpCfg testAgentCfg) {smpServerVRange = mkVersionRange 1 1}
}
testCfgV1 :: ChatConfig