Skip to content

Commit

Permalink
Update version to 1.3.33 with new Bouncy Castle 1.77
Browse files Browse the repository at this point in the history
  • Loading branch information
mondain committed Apr 2, 2024
1 parent c5b5dc4 commit 82708a5
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 21 deletions.
2 changes: 1 addition & 1 deletion client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.red5</groupId>
<artifactId>red5-parent</artifactId>
<version>1.3.32</version>
<version>1.3.33</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>red5-client</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion client/src/main/java/org/red5/client/Red5Client.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public final class Red5Client {
/**
* Current server version with revision
*/
public static final String VERSION = "Red5 Client 1.3.32";
public static final String VERSION = "Red5 Client 1.3.33";

/**
* Create a new Red5Client object using the connection local to the current thread A bit of magic that lets you access the red5 scope
Expand Down
9 changes: 2 additions & 7 deletions common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.red5</groupId>
<artifactId>red5-parent</artifactId>
<version>1.3.32</version>
<version>1.3.33</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>red5-server-common</artifactId>
Expand Down Expand Up @@ -56,11 +56,6 @@
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>${bc.version}</version>
</dependency>
<dependency>
<groupId>org.apache.mina</groupId>
<artifactId>mina-core</artifactId>
Expand Down Expand Up @@ -110,7 +105,7 @@
<dependency>
<groupId>net.engio</groupId>
<artifactId>mbassador</artifactId>
<version>1.3.32</version>
<version>1.3.33</version>
</dependency> -->
<dependency>
<groupId>junit</groupId>
Expand Down
4 changes: 2 additions & 2 deletions common/src/main/java/org/red5/server/api/Red5.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ public final class Red5 {
/**
* Server version with revision
*/
public static final String VERSION = "Red5 Server 1.3.32";
public static final String VERSION = "Red5 Server 1.3.33";

/**
* Server version for fmsVer requests
*/
public static final String FMS_VERSION = "RED5/1,3,32,0";
public static final String FMS_VERSION = "RED5/1,3,33,0";

/**
* Server capabilities
Expand Down
2 changes: 1 addition & 1 deletion io/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.red5</groupId>
<artifactId>red5-parent</artifactId>
<version>1.3.32</version>
<version>1.3.33</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>red5-io</artifactId>
Expand Down
13 changes: 8 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<name>Red5</name>
<description>The Red5 server</description>
<groupId>org.red5</groupId>
<version>1.3.32</version>
<version>1.3.33</version>
<url>https://github.com/Red5/red5-server</url>
<inceptionYear>2005</inceptionYear>
<organization>
Expand Down Expand Up @@ -102,14 +102,13 @@
<red5-service.version>${project.version}</red5-service.version>
<slf4j.version>2.0.11</slf4j.version>
<logback.version>1.4.14</logback.version>
<bc.version>1.62</bc.version>
<bc.version>1.77</bc.version>
<mina.version>2.0.23</mina.version>
<!-- Can no longer open-end spring, 6.0 forces jdk 17 -->
<spring.version>5.3.33</spring.version>
<tomcat.version>8.5.95</tomcat.version>
<junit.version>[4.13.1,)</junit.version>
<isoparser.version>1.9.59</isoparser.version>
<tika.version>1.28.5</tika.version>
<ehcache.version>2.10.6</ehcache.version>
<commons-beanutils.version>1.9.4</commons-beanutils.version>
<commons-codec.version>1.13</commons-codec.version>
Expand Down Expand Up @@ -492,6 +491,11 @@
<version>${mina.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>${bc.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down Expand Up @@ -524,8 +528,7 @@
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>${bc.version}</version>
<artifactId>bcprov-jdk18on</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Expand Down
2 changes: 1 addition & 1 deletion server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.red5</groupId>
<artifactId>red5-parent</artifactId>
<version>1.3.32</version>
<version>1.3.33</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>red5-server</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,9 @@ public void testExtendedTimestamp() {
@Test
public void testNullJsonKV() {
log.debug("\n testNullJsonKV");
@SuppressWarnings("unused")
RTMPProtocolEncoder enc = new RTMPProtocolEncoder();
RTMPProtocolDecoder dec = new RTMPProtocolDecoder();
//RTMPMinaConnection conn = new RTMPMinaConnection();
RTMPMinaConnection conn = new RTMPMinaConnection() {
@Override
public Encoding getEncoding() {
Expand Down
2 changes: 1 addition & 1 deletion service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.red5</groupId>
<artifactId>red5-parent</artifactId>
<version>1.3.32</version>
<version>1.3.33</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>red5-service</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion servlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.red5</groupId>
<artifactId>red5-parent</artifactId>
<version>1.3.32</version>
<version>1.3.33</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>red5-servlet</artifactId>
Expand Down

0 comments on commit 82708a5

Please sign in to comment.