Skip to content

Commit

Permalink
Merge branch 'master' of github.com:sofastack/sofa-rpc into dependabo…
Browse files Browse the repository at this point in the history
…t/maven/bom/commons-fileupload-commons-fileupload-1.5
  • Loading branch information
liujianjun.ljj committed Feb 27, 2023
2 parents 34a9cc6 + 027a09a commit 01e34f9
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.alipay.sofa</groupId>
<artifactId>sofa-rpc-all</artifactId>
<version>5.9.1</version>
<version>5.9.2-SNAPSHOT</version>


<name>${project.groupId}:${project.artifactId}</name>
Expand Down
2 changes: 1 addition & 1 deletion bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<packaging>pom</packaging>

<properties>
<revision>5.9.1</revision>
<revision>5.9.2-SNAPSHOT</revision>
<javassist.version>3.20.0-GA</javassist.version>
<bytebuddy.version>1.9.8</bytebuddy.version>
<netty.version>4.1.77.Final</netty.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
import com.alipay.sofa.rpc.core.response.SofaResponse;
import com.alipay.sofa.rpc.transport.ByteArrayWrapperByteBuf;
import com.caucho.hessian.io.Hessian2Output;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;

import java.io.ByteArrayOutputStream;
Expand All @@ -40,6 +42,12 @@
*/
public class SofaResponseHessianSerializerTest {

@Before
@After
public void clean() {
clearCacheDeserializerMap();
}

@Test
public void testCustomThrowableDeserializer() throws Exception {
GenericMultipleClassLoaderSofaSerializerFactory factory = new GenericMultipleClassLoaderSofaSerializerFactory();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ public final class Version {
/**
* 当前RPC版本,例如:5.6.7
*/
public static final String VERSION = "5.9.1";
public static final String VERSION = "5.9.2";

/**
* 当前RPC版本,例如: 5.6.7 对应 50607
*/
public static final int RPC_VERSION = 50901;
public static final int RPC_VERSION = 50902;

/**
* 当前Build版本,每次发布修改
*/
public static final String BUILD_VERSION = "5.9.1_20230106144430";
public static final String BUILD_VERSION = "5.9.2_20230220172555";

}
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@

<properties>
<!-- Build args -->
<revision>5.9.1</revision>
<revision>5.9.2-SNAPSHOT</revision>
<jmh.version>1.33</jmh.version>
<module.install.skip>true</module.install.skip>
<module.deploy.skip>true</module.deploy.skip>
Expand Down

0 comments on commit 01e34f9

Please sign in to comment.