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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,20 @@

## [Unreleased]

## [1.7.2] - 2026-09-25

### Client

- Support ISO 8601 duration parsing and formatting for `Interval`

### Testcontainers

- Accept `grpc_options.tls` in the TQE gRPC configuration

### Bug fixes

- Make `IProtoResponseImpl.toString()` idempotent — repeated calls no longer duplicate
the output
- Handle `ER_AUTH_REQUIRED` for watcher registration. Watchers (including the automatic
`box.shutdown` watcher created when `gracefulShutdown` is enabled) are now deferred when
the server rejects their registration before authentication and re-registered after
Expand Down
6 changes: 3 additions & 3 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Add the following dependency to your `pom.xml`:
<dependency>
<groupId>io.tarantool</groupId>
<artifactId>tarantool-client</artifactId>
<version>1.7.1</version>
<version>1.7.2</version>
</dependency>
```

Expand All @@ -32,15 +32,15 @@ Add the following to your `build.gradle`:

```gradle
dependencies {
implementation 'io.tarantool:tarantool-client:1.7.1'
implementation 'io.tarantool:tarantool-client:1.7.2'
}
```

Or for Gradle Kotlin DSL (`build.gradle.kts`):

```kotlin
dependencies {
implementation("io.tarantool:tarantool-client:1.7.1")
implementation("io.tarantool:tarantool-client:1.7.2")
}
```

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ You need to download and install the library according to the [instructions](INS
<dependency>
<groupId>io.tarantool</groupId>
<artifactId>tarantool-client</artifactId>
<version>1.7.1</version>
<version>1.7.2</version>
</dependency>
```

**Gradle:**
```kotlin
dependencies {
implementation("io.tarantool:tarantool-client:1.7.1")
implementation("io.tarantool:tarantool-client:1.7.2")
}
```

Expand Down