Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Changelog

## v8.1.0-SNAPSHOT
## v8.1.0

- Add `CachedKey`, which fetches then holds a cached DEK (Document Encryption Key) for repeated encrypt and decrypt operations without making additional TSP wrap/unwrap calls.
This is useful for many cryptographic operations using the same key in quick succession, such as inside a database transaction. Note that this key automatically expires after a short period of time.
- Add `connectTimeoutMs` to the `TenantSecurityClient.Builder` to allow setting the connect timeout separately from the request timeout.

## v8.0.1

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<groupId>com.ironcorelabs</groupId>
<artifactId>tenant-security-java</artifactId>
<packaging>jar</packaging>
<version>8.1.0-SNAPSHOT</version>
<version>8.1.0</version>
<name>tenant-security-java</name>
<url>https://ironcorelabs.com/docs</url>
<description>Java client library for the IronCore Labs Tenant Security Proxy.</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ private static String stripTrailingSlash(String s) {
private final int connectTimeout;

// TSC version that will be sent to the TSP.
static final String sdkVersion = "8.1.0-SNAPSHOT";
static final String sdkVersion = "8.1.0";

TenantSecurityRequest(String tspDomain, String apiKey, int requestThreadSize, int timeout) {
this(tspDomain, apiKey, requestThreadSize, timeout, timeout);
Expand Down
Loading