Skip to content

Commit

Permalink
Merge branch 'release/2.11.10'
Browse files Browse the repository at this point in the history
  • Loading branch information
yostyle committed Jun 18, 2024
2 parents 7b64683 + 5074f7e commit 95c640c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
11 changes: 11 additions & 0 deletions TCHAP_CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Changes in Tchap 2.11.10 (2024-06-18)
=====================================

In development 🚧
----------------
- Fix webrtc SSL connection ([#1071](https://github.com/tchapgouv/tchap-android/issues/1071))

Changes in Tchap 2.11.10 (2024-06-18)
=====================================

No significant changes.
Changes in Tchap 2.11.9 (2024-06-18)
====================================

Expand Down
2 changes: 1 addition & 1 deletion towncrier.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.towncrier]
version = "2.11.9"
version = "2.11.10"
directory = "changelog.d"
filename = "TCHAP_CHANGES.md"
name = "Changes in Tchap"
Expand Down
2 changes: 1 addition & 1 deletion vector-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ ext.versionMinor = 11
// Note: even values are reserved for regular release, odd values for hotfix release.
// When creating a hotfix, you should decrease the value, since the current value
// is the value for the next regular release.
ext.versionPatch = 9
ext.versionPatch = 10

static def getGitTimestamp() {
def cmd = 'git show -s --format=%ct'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,8 @@ class WebRtcCall(
.builder(uri)
.setUsername(server.username)
.setPassword(server.password)
// TCHAP bypass SSL verification. See https://groups.google.com/g/discuss-webrtc/c/4MmARU0XYqc/m/QppVNJiEAAAJ
.setTlsCertPolicy(PeerConnection.TlsCertPolicy.TLS_CERT_POLICY_INSECURE_NO_CHECK)
.createIceServer()
)
}
Expand Down

0 comments on commit 95c640c

Please sign in to comment.