diff --git a/README-CN.md b/README-CN.md index ca470a5..9ebdaf6 100644 --- a/README-CN.md +++ b/README-CN.md @@ -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 压缩和优化消息订阅性能 | @@ -353,6 +354,7 @@ DSN 格式为: - `disableCompression` 是否接受压缩数据,默认为 `true` 不接受压缩数据,如果传输数据使用 gzip 压缩设置为 `false`。 - `readBufferSize` 读取数据的缓存区大小默认为 4K (4096),当查询结果数据量多时可以适当调大该值。 +- `skipVerify` 是否跳过 ssl 证书检查,默认为 `false` 不跳过,如果使用 https 连接可以设置为 `true`。 ### 使用限制 diff --git a/README.md b/README.md index dd56f11..da3218f 100644 --- a/README.md +++ b/README.md @@ -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 | @@ -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