Skip to content

Commit 8f92afa

Browse files
committed
add changelog
1 parent a566e46 commit 8f92afa

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
11
# Changelog
2+
3+
## [0.48.6-public] - 2024-07-17
4+
5+
### Added
6+
- **Serializable Support**:
7+
- Key data types like `ArrayRecord`, `Column`, `TableSchema`, and `TypeInfo` now support serialization and deserialization, enabling caching and inter-process communication.
8+
- **Predicate Pushdown**:
9+
- Introduced `Attribute` type predicates to specify column names.
10+
11+
### Changed
12+
- **Tunnel Interface Refactoring**:
13+
- Refactored Tunnel-related interfaces to include seamless retry logic, greatly enhancing stability and robustness.
14+
- Removed `TunnelRetryStrategy` and `ConfigurationImpl` classes, which are now replaced by `TunnelRetryHandler` and `Configuration` respectively.
15+
16+
### Improve
17+
- **SQLExecutor Optimization**:
18+
- Improved performance when executing offline SQL jobs through the `SQLExecutor` interface, reducing one network request per job to fetch results, thereby decreasing end-to-end latency.
19+
20+
### Fixed
21+
- **Decimal Read in Table.read**:
22+
- Fixed issue where trailing zeroes in the `decimal` type were not as expected in the `Table.read` interface.
23+
24+
225
## [0.48.5-public] - 2024-06-17
326
### Added
427
- Added the `getPartitionSpecs` method to the `Table` interface. Compared to the `getPartitions` method, this method does not require fetching detailed partition information, resulting in faster execution.

CHANGELOG_CN.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# 更新日志
22

3+
## [0.48.6-public] - 2024-07-17
4+
5+
### 新增
6+
- **支持序列化**
7+
- 主要数据类型如 `ArrayRecord``Column``TableSchema``TypeInfo` 现在支持序列化和反序列化,能够进行缓存和进程间通信。
8+
- **谓词下推**
9+
- 新增 `Attribute` 类型的谓词,用于指定列名。
10+
11+
### 变更
12+
- **Tunnel 接口重构**
13+
- 重构了 Tunnel 相关接口,加入了无感知的重试逻辑,大大增强了稳定性和鲁棒性。
14+
- 删除了 `TunnelRetryStrategy``ConfigurationImpl` 类,分别被 `TunnelRetryHandler``Configuration` 所取代。
15+
16+
### 优化
17+
- **SQLExecutor 优化**
18+
- 在使用 `SQLExecutor` 接口执行离线 SQL 作业时进行优化,减少每个作业获取结果时的一次网络请求,从而减少端到端延时。
19+
20+
### 修复
21+
- **Table.read Decimal 读取**
22+
- 修复了 `Table.read` 接口在读取 `decimal` 类型时,后面补零不符合预期的问题。
23+
324
## [0.48.5-public] - 2024-06-17
425

526
### 新增

0 commit comments

Comments
 (0)