> For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see https://buildwithfern.com/learn/llms.txt.

## 0.8.5-rc0

**`(internal):`** 更新 Java SDK 任务运行器的 docker 镜像。

## 0.8.4

**`(fix):`** RequestOptions 对象上指定的超时时间现在设置整个调用的超时时间，而不仅仅是请求的读取超时时间。
作为复习，可以这样为每个请求添加超时时间：

```java
RequestOptions ro = RequestOptions.builder().timeout(90).build(); // 为请求创建 90 秒的超时时间
//  您也可以指定时间单位，类似于直接使用 OkHttp
//  RequestOptions ro = RequestOptions.builder().timeout(2, TimeUnit.MINUTES).build();
client.films.list(ro);
```

## 0.8.3

**`(fix):`** SDK 生成器现在总是为联合判别器包装类创建有效的名称。