File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name : java
2- version : 6.3.3
2+ version : 6.3.4
33schema : 1
44scm : github.com/pubnub/java
55files :
6- - build/libs/pubnub-gson-6.3.3 -all.jar
6+ - build/libs/pubnub-gson-6.3.4 -all.jar
77sdks :
88 -
99 type : library
2323 -
2424 distribution-type : library
2525 distribution-repository : GitHub
26- package-name : pubnub-gson-6.3.3
27- location : https://github.com/pubnub/java/releases/download/v6.3.3 /pubnub-gson-6.3.3 -all.jar
26+ package-name : pubnub-gson-6.3.4
27+ location : https://github.com/pubnub/java/releases/download/v6.3.4 /pubnub-gson-6.3.4 -all.jar
2828 supported-platforms :
2929 supported-operating-systems :
3030 Android :
@@ -135,8 +135,8 @@ sdks:
135135 -
136136 distribution-type : library
137137 distribution-repository : maven
138- package-name : pubnub-gson-6.3.3
139- location : https://repo.maven.apache.org/maven2/com/pubnub/pubnub-gson/6.3.3 /pubnub-gson-6.3.3 .jar
138+ package-name : pubnub-gson-6.3.4
139+ location : https://repo.maven.apache.org/maven2/com/pubnub/pubnub-gson/6.3.4 /pubnub-gson-6.3.4 .jar
140140 supported-platforms :
141141 supported-operating-systems :
142142 Android :
@@ -234,6 +234,11 @@ sdks:
234234 is-required : Required
235235
236236changelog :
237+ - date : 2023-03-06
238+ version : v6.3.4
239+ changes :
240+ - type : bug
241+ text : " Upgraded json lib."
237242 - date : 2023-03-06
238243 version : v6.3.3
239244 changes :
Original file line number Diff line number Diff line change 1+ ## v6.3.4
2+ March 06 2023
3+
4+ #### Fixed
5+ - Upgraded json lib.
6+
17## v6.3.3
28March 06 2023
39
Original file line number Diff line number Diff line change @@ -22,13 +22,13 @@ You will need the publish and subscribe keys to authenticate your app. Get your
2222 <dependency >
2323 <groupId >com.pubnub</groupId >
2424 <artifactId >pubnub-gson</artifactId >
25- <version >6.3.3 </version >
25+ <version >6.3.4 </version >
2626 </dependency >
2727 ```
2828
2929 * for Gradle, add the following dependency in your `gradle.build`:
3030 ```groovy
31- implementation 'com.pubnub:pubnub-gson:6.3.3 '
31+ implementation 'com.pubnub:pubnub-gson:6.3.4 '
3232 ```
3333
34342. Configure your keys:
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ plugins {
1010}
1111group = ' com.pubnub'
1212
13- version = ' 6.3.3 '
13+ version = ' 6.3.4 '
1414
1515description = """ """
1616
@@ -70,7 +70,7 @@ dependencies {
7070 testImplementation group : ' org.awaitility' , name : ' awaitility' , version : ' 4.0.1'
7171 testImplementation group : ' org.mockito' , name : ' mockito-core' , version : ' 4.8.1'
7272 integrationTestImplementation group : ' org.aeonbits.owner' , name : ' owner' , version : ' 1.0.8'
73- implementation group : ' org.json' , name : ' json' , version : ' 20200518 '
73+ implementation group : ' org.json' , name : ' json' , version : ' 20230227 '
7474 testImplementation group : ' io.cucumber' , name : ' cucumber-java' , version : ' 6.10.4'
7575 testImplementation group : ' io.cucumber' , name : ' cucumber-junit' , version : ' 6.10.4'
7676 testImplementation group : ' io.cucumber' , name : ' cucumber-picocontainer' , version : ' 6.10.4'
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ SONATYPE_HOST=DEFAULT
33SONATYPE_AUTOMATIC_RELEASE =true
44GROUP =com.pubnub
55POM_ARTIFACT_ID =pubnub-gson
6- VERSION_NAME =6.3.3
6+ VERSION_NAME =6.3.4
77POM_PACKAGING =jar
88
99POM_NAME =PubNub Java SDK
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ public class PubNub {
105105 private static final int TIMESTAMP_DIVIDER = 1000 ;
106106 private static final int MAX_SEQUENCE = 65535 ;
107107
108- private static final String SDK_VERSION = "6.3.3 " ;
108+ private static final String SDK_VERSION = "6.3.4 " ;
109109 private final ListenerManager listenerManager ;
110110 private final StateManager stateManager ;
111111
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ public void getVersionAndTimeStamp() {
100100 pubnub = new PubNub (pnConfiguration );
101101 String version = pubnub .getVersion ();
102102 int timeStamp = pubnub .getTimestamp ();
103- Assert .assertEquals ("6.3.3 " , version );
103+ Assert .assertEquals ("6.3.4 " , version );
104104 Assert .assertTrue (timeStamp > 0 );
105105 }
106106
You can’t perform that action at this time.
0 commit comments