Skip to content

Commit 82708a5

Browse files
committed
Update version to 1.3.33 with new Bouncy Castle 1.77
1 parent c5b5dc4 commit 82708a5

File tree

10 files changed

+19
-21
lines changed

10 files changed

+19
-21
lines changed

client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.red5</groupId>
55
<artifactId>red5-parent</artifactId>
6-
<version>1.3.32</version>
6+
<version>1.3.33</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>red5-client</artifactId>

client/src/main/java/org/red5/client/Red5Client.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public final class Red5Client {
1818
/**
1919
* Current server version with revision
2020
*/
21-
public static final String VERSION = "Red5 Client 1.3.32";
21+
public static final String VERSION = "Red5 Client 1.3.33";
2222

2323
/**
2424
* Create a new Red5Client object using the connection local to the current thread A bit of magic that lets you access the red5 scope

common/pom.xml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.red5</groupId>
55
<artifactId>red5-parent</artifactId>
6-
<version>1.3.32</version>
6+
<version>1.3.33</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>red5-server-common</artifactId>
@@ -56,11 +56,6 @@
5656
<artifactId>logback-classic</artifactId>
5757
<version>${logback.version}</version>
5858
</dependency>
59-
<dependency>
60-
<groupId>org.bouncycastle</groupId>
61-
<artifactId>bcprov-jdk15on</artifactId>
62-
<version>${bc.version}</version>
63-
</dependency>
6459
<dependency>
6560
<groupId>org.apache.mina</groupId>
6661
<artifactId>mina-core</artifactId>
@@ -110,7 +105,7 @@
110105
<dependency>
111106
<groupId>net.engio</groupId>
112107
<artifactId>mbassador</artifactId>
113-
<version>1.3.32</version>
108+
<version>1.3.33</version>
114109
</dependency> -->
115110
<dependency>
116111
<groupId>junit</groupId>

common/src/main/java/org/red5/server/api/Red5.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ public final class Red5 {
5757
/**
5858
* Server version with revision
5959
*/
60-
public static final String VERSION = "Red5 Server 1.3.32";
60+
public static final String VERSION = "Red5 Server 1.3.33";
6161

6262
/**
6363
* Server version for fmsVer requests
6464
*/
65-
public static final String FMS_VERSION = "RED5/1,3,32,0";
65+
public static final String FMS_VERSION = "RED5/1,3,33,0";
6666

6767
/**
6868
* Server capabilities

io/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.red5</groupId>
55
<artifactId>red5-parent</artifactId>
6-
<version>1.3.32</version>
6+
<version>1.3.33</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>red5-io</artifactId>

pom.xml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<name>Red5</name>
2525
<description>The Red5 server</description>
2626
<groupId>org.red5</groupId>
27-
<version>1.3.32</version>
27+
<version>1.3.33</version>
2828
<url>https://github.com/Red5/red5-server</url>
2929
<inceptionYear>2005</inceptionYear>
3030
<organization>
@@ -102,14 +102,13 @@
102102
<red5-service.version>${project.version}</red5-service.version>
103103
<slf4j.version>2.0.11</slf4j.version>
104104
<logback.version>1.4.14</logback.version>
105-
<bc.version>1.62</bc.version>
105+
<bc.version>1.77</bc.version>
106106
<mina.version>2.0.23</mina.version>
107107
<!-- Can no longer open-end spring, 6.0 forces jdk 17 -->
108108
<spring.version>5.3.33</spring.version>
109109
<tomcat.version>8.5.95</tomcat.version>
110110
<junit.version>[4.13.1,)</junit.version>
111111
<isoparser.version>1.9.59</isoparser.version>
112-
<tika.version>1.28.5</tika.version>
113112
<ehcache.version>2.10.6</ehcache.version>
114113
<commons-beanutils.version>1.9.4</commons-beanutils.version>
115114
<commons-codec.version>1.13</commons-codec.version>
@@ -492,6 +491,11 @@
492491
<version>${mina.version}</version>
493492
<type>pom</type>
494493
</dependency>
494+
<dependency>
495+
<groupId>org.bouncycastle</groupId>
496+
<artifactId>bcprov-jdk18on</artifactId>
497+
<version>${bc.version}</version>
498+
</dependency>
495499
<dependency>
496500
<groupId>junit</groupId>
497501
<artifactId>junit</artifactId>
@@ -524,8 +528,7 @@
524528
</dependency>
525529
<dependency>
526530
<groupId>org.bouncycastle</groupId>
527-
<artifactId>bcprov-jdk15on</artifactId>
528-
<version>${bc.version}</version>
531+
<artifactId>bcprov-jdk18on</artifactId>
529532
</dependency>
530533
<dependency>
531534
<groupId>org.springframework</groupId>

server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.red5</groupId>
55
<artifactId>red5-parent</artifactId>
6-
<version>1.3.32</version>
6+
<version>1.3.33</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>red5-server</artifactId>

server/src/test/java/org/red5/server/net/rtmp/codec/TestRTMPProtocolDecoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,9 +253,9 @@ public void testExtendedTimestamp() {
253253
@Test
254254
public void testNullJsonKV() {
255255
log.debug("\n testNullJsonKV");
256+
@SuppressWarnings("unused")
256257
RTMPProtocolEncoder enc = new RTMPProtocolEncoder();
257258
RTMPProtocolDecoder dec = new RTMPProtocolDecoder();
258-
//RTMPMinaConnection conn = new RTMPMinaConnection();
259259
RTMPMinaConnection conn = new RTMPMinaConnection() {
260260
@Override
261261
public Encoding getEncoding() {

service/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.red5</groupId>
55
<artifactId>red5-parent</artifactId>
6-
<version>1.3.32</version>
6+
<version>1.3.33</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>red5-service</artifactId>

servlet/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.red5</groupId>
55
<artifactId>red5-parent</artifactId>
6-
<version>1.3.32</version>
6+
<version>1.3.33</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>red5-servlet</artifactId>

0 commit comments

Comments
 (0)