Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/four-ads-occur.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/happy-points-fail.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hungry-parents-work.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nasty-dolphins-train.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/remove-jti-claim.md

This file was deleted.

38 changes: 0 additions & 38 deletions .changeset/slow-hotels-float.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spicy-frogs-tease.md

This file was deleted.

53 changes: 53 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,58 @@
# server-sdk-kotlin

## 0.10.0

### Minor Changes

- RoomService: MoveParticipant API - [#120](https://github.com/livekit/server-sdk-kotlin/pull/120) ([@anunaym14](https://github.com/anunaym14))

- SIP Update APIs, Sync mode, Egress audio mixing - [#117](https://github.com/livekit/server-sdk-kotlin/pull/117) ([@anunaym14](https://github.com/anunaym14))

- RoomService: implement forward participant api - [#115](https://github.com/livekit/server-sdk-kotlin/pull/115) ([@anunaym14](https://github.com/anunaym14))

### Patch Changes

- Add support for destination_country in outbound trunks - [#123](https://github.com/livekit/server-sdk-kotlin/pull/123) ([@biglittlebigben](https://github.com/biglittlebigben))

- Support array values in AccessToken's roomConfiguration - [#121](https://github.com/livekit/server-sdk-kotlin/pull/121) ([@bcherry](https://github.com/bcherry))

- 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))
`AccessToken.toJwt()` to align with the LiveKit CLI and other Server SDKs.

- ### Kotlin - [#119](https://github.com/livekit/server-sdk-kotlin/pull/119) ([@ericsanjaya](https://github.com/ericsanjaya))

- **Update to Kotlin 1.9.25**
Upgraded to the latest patch version for better stability and compatibility with newer tools.
_Reference_: [Kotlin 1.9.25 Release Notes](https://kotlinlang.org/docs/whatsnew1920.html)

***

### Protobuf

- **Update `protobufVersion` to 4.29.4**
Ensures compatibility with the MySQL JDBC connector.
_Note_: Previous versions had compatibility issues when working with certain database drivers.

***

### Retrofit

- **Update `com.squareup.retrofit2:retrofit` to 2.11.0**
- **Update `com.squareup.retrofit2:converter-protobuf` to 2.11.0**
Fixes vulnerabilities reported in older versions of Retrofit.
_Reference_: [Retrofit 2.11.0 Changelog](https://github.com/square/retrofit/blob/master/CHANGELOG.md)
_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)

***

### Auth0 Java JWT

- **Update `com.auth0:java-jwt` to 4.5.0**
Addresses security issues in earlier releases and includes bug fixes.
_Reference_: [java-jwt GitHub Releases](https://github.com/auth0/java-jwt/releases)

***

## 0.9.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This SDK is available as a Maven package through [Maven Central](https://search.
<dependency>
<groupId>io.livekit</groupId>
<artifactId>livekit-server</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
</dependency>
</dependencies>
```
Expand All @@ -35,7 +35,7 @@ This SDK is available as a Maven package through [Maven Central](https://search.

```groovy title="build.gradle"
dependencies {
implementation 'io.livekit:livekit-server:0.9.0'
implementation 'io.livekit:livekit-server:0.10.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kotlin.code.style=official
###############################################################

GROUP=io.livekit
VERSION_NAME=0.9.1-SNAPSHOT
VERSION_NAME=0.10.0

POM_NAME=LiveKit Server SDK
POM_ARTIFACT_ID=livekit-server
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "server-sdk-kotlin",
"version": "0.9.0",
"version": "0.10.0",
"main": "index.js",
"repository": "https://github.com/livekit/server-sdk-kotlin.git",
"license": "Apache License 2.0",
Expand Down