Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: release 3.5.5 #268

Merged
merged 1 commit into from
May 22, 2024
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
2 changes: 2 additions & 0 deletions README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ v2 与 v3 版本不兼容,与 TDengine 版本对应如下:

| **driver-go 版本** | **TDengine 版本** | **主要功能** |
|------------------|----------------------|----------------------------------|
| v3.5.5 | 3.2.3.0+ / 3.1.1.27+ | restful 支持跳过 ssl 证书检查 |
| v3.5.4 | 3.2.3.0+ / 3.1.1.27+ | 兼容 TDengine 3.3.0.0 tmq raw data |
| v3.5.3 | 3.2.3.0+ / 3.1.1.27+ | 重构 taosWS |
| v3.5.2 | 3.2.3.0+ / 3.1.1.27+ | websocket 压缩和优化消息订阅性能 |
Expand Down Expand Up @@ -353,6 +354,7 @@ DSN 格式为:

- `disableCompression` 是否接受压缩数据,默认为 `true` 不接受压缩数据,如果传输数据使用 gzip 压缩设置为 `false`。
- `readBufferSize` 读取数据的缓存区大小默认为 4K (4096),当查询结果数据量多时可以适当调大该值。
- `skipVerify` 是否跳过 ssl 证书检查,默认为 `false` 不跳过,如果使用 https 连接可以设置为 `true`。

### 使用限制

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ v2 is not compatible with v3 version and corresponds to the TDengine version as

| **driver-go version** | **TDengine version** | **major features** |
|-----------------------|----------------------|-----------------------------------------------|
| v3.5.5 | 3.2.3.0+ / 3.1.1.27+ | support skip http ssl check |
| v3.5.4 | 3.2.3.0+ / 3.1.1.27+ | compatible with TDengine 3.3.0.0 tmq raw data |
| v3.5.3 | 3.2.3.0+ / 3.1.1.27+ | refactor taosWS |
| v3.5.2 | 3.2.3.0+ / 3.1.1.27+ | websocket compression and optimize tmq poll |
Expand Down Expand Up @@ -352,6 +353,7 @@ Parameters:

- `disableCompression` Whether to accept compressed data, default is `true` Do not accept compressed data, set to `false` if the transferred data is compressed using gzip.
- `readBufferSize` The default size of the buffer for reading data is 4K (4096), which can be adjusted upwards when there is a lot of data in the query result.
- `skipVerify` Whether to skip the verification of the server certificate, the default is `false`, and the server certificate is verified by default. If the server certificate is not verified, set to `true`.

### Usage restrictions

Expand Down
Loading