@wireapp/core 28.2.0 → 28.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [28.2.1](https://github.com/wireapp/wire-web-packages/tree/main/packages/core/compare/@wireapp/core@28.2.0...@wireapp/core@28.2.1) (2022-07-04)
7
+
8
+ **Note:** Version bump only for package @wireapp/core
9
+
10
+
11
+
12
+
13
+
6
14
  # [28.2.0](https://github.com/wireapp/wire-web-packages/tree/main/packages/core/compare/@wireapp/core@28.1.0...@wireapp/core@28.2.0) (2022-07-04)
7
15
 
8
16
 
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "@otak/core-crypto": "0.3.0-beta-1",
8
8
  "@types/long": "4.0.1",
9
9
  "@types/node": "~14",
10
- "@wireapp/api-client": "19.9.0",
10
+ "@wireapp/api-client": "19.9.1",
11
11
  "@wireapp/cryptobox": "12.8.0",
12
12
  "bazinga64": "5.10.0",
13
13
  "hash.js": "1.1.7",
@@ -73,6 +73,6 @@
73
73
  "test:project": "yarn dist && yarn test",
74
74
  "test:node": "nyc jasmine --config=jasmine.json"
75
75
  },
76
- "version": "28.2.0",
77
- "gitHead": "5fb6aacf6f616c92d73593ec24cefb50a5a0f7f0"
76
+ "version": "28.2.1",
77
+ "gitHead": "f53fe4e7d2ac55134c8cad96a2c1eee8b45e835e"
78
78
  }
@@ -678,7 +678,8 @@ class ConversationService {
678
678
  sendingPromises.push(this.apiClient.api.conversation.postMlsMessage(Uint8Array.from(memberAddedMessages.message)));
679
679
  }
680
680
  await Promise.all(sendingPromises);
681
- return newConversation;
681
+ // We fetch the fresh version of the conversation created on backend with the newly added users
682
+ return this.getConversations(newConversation.id);
682
683
  }
683
684
  async getConversations(conversationIds) {
684
685
  if (!conversationIds || !conversationIds.length) {