Skip to content

Commit b9b739b

Browse files
v0.10.0 (#116)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent c23e8f0 commit b9b739b

11 files changed

+57
-73
lines changed

.changeset/four-ads-occur.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/happy-points-fail.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/hungry-parents-work.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/nasty-dolphins-train.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/remove-jti-claim.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/slow-hotels-float.md

Lines changed: 0 additions & 38 deletions
This file was deleted.

.changeset/spicy-frogs-tease.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,58 @@
11
# server-sdk-kotlin
22

3+
## 0.10.0
4+
5+
### Minor Changes
6+
7+
- RoomService: MoveParticipant API - [#120](https://github.com/livekit/server-sdk-kotlin/pull/120) ([@anunaym14](https://github.com/anunaym14))
8+
9+
- SIP Update APIs, Sync mode, Egress audio mixing - [#117](https://github.com/livekit/server-sdk-kotlin/pull/117) ([@anunaym14](https://github.com/anunaym14))
10+
11+
- RoomService: implement forward participant api - [#115](https://github.com/livekit/server-sdk-kotlin/pull/115) ([@anunaym14](https://github.com/anunaym14))
12+
13+
### Patch Changes
14+
15+
- Add support for destination_country in outbound trunks - [#123](https://github.com/livekit/server-sdk-kotlin/pull/123) ([@biglittlebigben](https://github.com/biglittlebigben))
16+
17+
- Support array values in AccessToken's roomConfiguration - [#121](https://github.com/livekit/server-sdk-kotlin/pull/121) ([@bcherry](https://github.com/bcherry))
18+
19+
- Remove the redundant `jti` claim from JWT tokens generated by - [#124](https://github.com/livekit/server-sdk-kotlin/pull/124) ([@ByeongUkChoi](https://github.com/ByeongUkChoi))
20+
`AccessToken.toJwt()` to align with the LiveKit CLI and other Server SDKs.
21+
22+
- ### Kotlin - [#119](https://github.com/livekit/server-sdk-kotlin/pull/119) ([@ericsanjaya](https://github.com/ericsanjaya))
23+
24+
- **Update to Kotlin 1.9.25**
25+
Upgraded to the latest patch version for better stability and compatibility with newer tools.
26+
_Reference_: [Kotlin 1.9.25 Release Notes](https://kotlinlang.org/docs/whatsnew1920.html)
27+
28+
***
29+
30+
### Protobuf
31+
32+
- **Update `protobufVersion` to 4.29.4**
33+
Ensures compatibility with the MySQL JDBC connector.
34+
_Note_: Previous versions had compatibility issues when working with certain database drivers.
35+
36+
***
37+
38+
### Retrofit
39+
40+
- **Update `com.squareup.retrofit2:retrofit` to 2.11.0**
41+
- **Update `com.squareup.retrofit2:converter-protobuf` to 2.11.0**
42+
Fixes vulnerabilities reported in older versions of Retrofit.
43+
_Reference_: [Retrofit 2.11.0 Changelog](https://github.com/square/retrofit/blob/master/CHANGELOG.md)
44+
_Security Advisory_: - [CVE-2023-2976](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2976) - [CVE-2022-24329](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24329) - [CVE-2020-8908](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-8908) - [CVE-2020-29582](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-29582) - [CVE-2020-15250](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15250)
45+
46+
***
47+
48+
### Auth0 Java JWT
49+
50+
- **Update `com.auth0:java-jwt` to 4.5.0**
51+
Addresses security issues in earlier releases and includes bug fixes.
52+
_Reference_: [java-jwt GitHub Releases](https://github.com/auth0/java-jwt/releases)
53+
54+
***
55+
356
## 0.9.0
457

558
### Minor Changes

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This SDK is available as a Maven package through [Maven Central](https://search.
2626
<dependency>
2727
<groupId>io.livekit</groupId>
2828
<artifactId>livekit-server</artifactId>
29-
<version>0.9.0</version>
29+
<version>0.10.0</version>
3030
</dependency>
3131
</dependencies>
3232
```
@@ -35,7 +35,7 @@ This SDK is available as a Maven package through [Maven Central](https://search.
3535

3636
```groovy title="build.gradle"
3737
dependencies {
38-
implementation 'io.livekit:livekit-server:0.9.0'
38+
implementation 'io.livekit:livekit-server:0.10.0'
3939
}
4040
```
4141

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kotlin.code.style=official
33
###############################################################
44

55
GROUP=io.livekit
6-
VERSION_NAME=0.9.1-SNAPSHOT
6+
VERSION_NAME=0.10.0
77

88
POM_NAME=LiveKit Server SDK
99
POM_ARTIFACT_ID=livekit-server

0 commit comments

Comments
 (0)