Skip to content

Commit

Permalink
REL-4060 - KSM Java SDK v16.5.2 (#445)
Browse files Browse the repository at this point in the history
* KSM-386 Removed deprecation from getValue (in use by plugins) (#438)
  • Loading branch information
maksimu authored Mar 28, 2023
1 parent 428239f commit fb4410d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
3 changes: 3 additions & 0 deletions sdk/java/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ For more information see our official documentation page https://docs.keeper.io/

# Change Log

## 16.5.2
- KSM-379 - Remove deprecation from getValue function

## 16.5.1
- KSM-374 - Add support for PAM record types

Expand Down
2 changes: 1 addition & 1 deletion sdk/java/core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import java.util.*
group = "com.keepersecurity.secrets-manager"

// During publishing, If version ends with '-SNAPSHOT' then it will be published to Maven snapshot repository
version = "16.5.1"
version = "16.5.2"

plugins {
`java-library`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import kotlinx.serialization.encodeToString
import kotlinx.serialization.json.Json
import kotlin.reflect.full.memberProperties

@Deprecated(message = "Use getNotationResults instead.")
@ExperimentalSerializationApi
fun getValue(secrets: KeeperSecrets, notation: String): String {
val parsedNotation = parseNotation(notation, true) // prefix, record, selector, footer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import java.util.*
import java.util.concurrent.*
import javax.net.ssl.*

const val KEEPER_CLIENT_VERSION = "mj16.5.1"
const val KEEPER_CLIENT_VERSION = "mj16.5.2"

const val KEY_HOSTNAME = "hostname" // base url for the Secrets Manager service
const val KEY_SERVER_PUBIC_KEY_ID = "serverPublicKeyId"
Expand Down

0 comments on commit fb4410d

Please sign in to comment.