Skip to content

Commit 5b643ee

Browse files
authored
fix: Expect 204 when patching Broadcast and Archive streams (#248)
* Bump dependency versions * Fix patch archive / broadcast * Bump version: v4.13.1 → v4.13.2 * Bump copyright year * Bump Gradle version * Fix license headers
1 parent d9b15ac commit 5b643ee

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+118
-120
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = True
33
tag = False
4-
current_version = v4.13.1
4+
current_version = v4.13.2
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
66
serialize =
77
{major}.{minor}.{patch}-{release}{build}

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014-2023 Vonage.
3+
Copyright (c) 2014-2024 Vonage.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ When you use Maven as your build tool, you can manage dependencies in the `pom.x
3434
<dependency>
3535
<groupId>com.tokbox</groupId>
3636
<artifactId>opentok-server-sdk</artifactId>
37-
<version>4.13.1</version>
37+
<version>4.13.2</version>
3838
</dependency>
3939
```
4040

@@ -44,7 +44,7 @@ When you use Gradle as your build tool, you can manage dependencies in the `buil
4444

4545
```groovy
4646
dependencies {
47-
compile group: 'com.tokbox', name: 'opentok-server-sdk', version: '4.13.1'
47+
compile group: 'com.tokbox', name: 'opentok-server-sdk', version: '4.13.2'
4848
}
4949
```
5050

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ plugins {
1111

1212
group = 'com.tokbox'
1313
archivesBaseName = 'opentok-server-sdk'
14-
version = '4.13.1'
14+
version = '4.13.2'
1515
sourceCompatibility = "1.8"
1616
targetCompatibility = "1.8"
1717

@@ -23,18 +23,18 @@ repositories {
2323

2424
dependencies {
2525
testImplementation 'junit:junit:4.13.2'
26-
testImplementation 'com.github.tomakehurst:wiremock-jre8:2.35.0'
26+
testImplementation 'com.github.tomakehurst:wiremock-jre8:2.35.1'
2727
testImplementation 'commons-fileupload:commons-fileupload:1.5'
2828
testImplementation 'net.minidev:json-smart:2.4.11'
2929
testImplementation 'com.google.guava:guava:32.0.1-jre'
3030

3131
implementation 'commons-lang:commons-lang:2.6'
3232
implementation 'commons-codec:commons-codec:1.16.0'
33-
implementation 'io.netty:netty-codec-http:4.1.100.Final'
34-
implementation 'io.netty:netty-handler:4.1.100.Final'
33+
implementation 'io.netty:netty-codec-http:4.1.104.Final'
34+
implementation 'io.netty:netty-handler:4.1.104.Final'
3535
implementation 'org.asynchttpclient:async-http-client:2.12.3'
36-
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.3'
37-
implementation 'org.bitbucket.b_c:jose4j:0.9.3'
36+
implementation 'com.fasterxml.jackson.core:jackson-databind:2.16.1'
37+
implementation 'org.bitbucket.b_c:jose4j:0.9.4'
3838
}
3939

4040
task sourcesJar(type: Jar) {

bumpversion.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#
22
# OpenTok Java SDK
3-
# Copyright (C) 2023 Vonage.
3+
# Copyright (C) 2024 Vonage.
44
# http://www.tokbox.com
55
#
66
# Licensed under The MIT License (MIT). See LICENSE file for more information.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#Mon Apr 05 14:22:26 EDT 2021
2-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-all.zip
1+
#Thu Jan 04 09:44:51 GMT 2024
2+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-all.zip
33
distributionBase=GRADLE_USER_HOME
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists

src/main/java/com/opentok/Archive.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/ArchiveLayout.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/ArchiveList.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/ArchiveMode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/ArchiveProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/AudioConnector.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/AudioConnectorProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/Broadcast.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/BroadcastLayout.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/BroadcastProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/Caption.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/CaptionProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/CreatedSession.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/Hls.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/MediaMode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/MuteAllProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/OpenTok.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/Render.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/RenderProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/RenderStatus.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/Resolution.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/Role.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/Rtmp.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/RtmpProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/ScreenShareLayoutType.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/Session.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/SessionProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

src/main/java/com/opentok/SignalProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2023 Vonage.
3+
* Copyright (C) 2024 Vonage.
44
* http://www.tokbox.com
5-
*
5+
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
package com.opentok;

0 commit comments

Comments
 (0)