Skip to content

Commit

Permalink
Release v7.3.2 (#73)
Browse files Browse the repository at this point in the history
* Release v7.3.2

fix: Upgrade of vulnerable libs: Gson, logback
fix: Removed "create" for space as a valid permission that can be assigned to token.
  • Loading branch information
marcin-cebo authored Jul 21, 2022
1 parent 80d8258 commit 69ff88d
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 10 deletions.
19 changes: 13 additions & 6 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: kotlin
version: 7.3.1
version: 7.3.2
schema: 1
scm: github.com/pubnub/kotlin
files:
- build/libs/pubnub-kotlin-7.3.1-all.jar
- build/libs/pubnub-kotlin-7.3.2-all.jar
sdks:
-
type: library
Expand All @@ -23,8 +23,8 @@ sdks:
-
distribution-type: library
distribution-repository: GitHub
package-name: pubnub-kotlin-7.3.1
location: https://github.com/pubnub/kotlin/releases/download/v7.3.1/pubnub-kotlin-7.3.1-all.jar
package-name: pubnub-kotlin-7.3.2
location: https://github.com/pubnub/kotlin/releases/download/v7.3.2/pubnub-kotlin-7.3.2-all.jar
supported-platforms:
supported-operating-systems:
Android:
Expand Down Expand Up @@ -135,8 +135,8 @@ sdks:
-
distribution-type: library
distribution-repository: maven
package-name: pubnub-kotlin-7.3.1
location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/7.3.1/pubnub-kotlin-7.3.1.jar
package-name: pubnub-kotlin-7.3.2
location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/7.3.2/pubnub-kotlin-7.3.2.jar
supported-platforms:
supported-operating-systems:
Android:
Expand Down Expand Up @@ -233,6 +233,13 @@ sdks:
license-url: https://github.com/stleary/JSON-java/blob/20210307/LICENSE
is-required: Required
changelog:
- date: 2022-07-21
version: v7.3.2
changes:
- type: bug
text: "Gson, logback."
- type: bug
text: "Removed "create" for space as a valid permission that can be assigned to token."
- date: 2022-06-28
version: v7.3.1
changes:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## v7.3.2
July 21 2022

#### Fixed
- Gson, logback.
- Removed "create" for space as a valid permission that can be assigned to token.

## v7.3.1
June 28 2022

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ You will need the publish and subscribe keys to authenticate your app. Get your
<dependency>
<groupId>com.pubnub</groupId>
<artifactId>pubnub-gson</artifactId>
<version>7.3.1</version>
<version>7.3.2</version>
</dependency>
```

* for Gradle, add the following dependency in your `gradle.build`:
```groovy
implementation 'com.pubnub:pubnub-kotlin:7.3.1'
implementation 'com.pubnub:pubnub-kotlin:7.3.2'
```

2. Configure your keys:
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/pubnub/api/PubNub.kt
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class PubNub(val configuration: PNConfiguration) {

companion object {
private const val TIMESTAMP_DIVIDER = 1000
private const val SDK_VERSION = "7.3.1"
private const val SDK_VERSION = "7.3.2"
private const val MAX_SEQUENCE = 65535

/**
Expand Down
2 changes: 1 addition & 1 deletion src/test/kotlin/com/pubnub/api/legacy/PubNubTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class PubNubTest : BaseTest() {
fun getVersionAndTimeStamp() {
val version = pubnub.version
val timeStamp = pubnub.timestamp()
assertEquals("7.3.1", version)
assertEquals("7.3.2", version)
assertTrue(timeStamp > 0)
}
}

0 comments on commit 69ff88d

Please sign in to comment.