Skip to content

Commit e9d5ad1

Browse files
committed
BUMP 0.56.0
1 parent 8813c20 commit e9d5ad1

File tree

15 files changed

+85
-24
lines changed

15 files changed

+85
-24
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
`# 0.56.0-public [2026-01-30]
2+
### Features
3+
- Added `set region` command to support setting Region ID
4+
- Added new configuration options: `region_id`, `signature_v4_corporation`, `quota_name`, and `LABEL` for configuring Region ID, signature corporation, quota name, and test environment label in the configuration file
5+
- Support temporary quotas (quota names starting with `temp_`) with automatic 1-day cache expiration
6+
- Added `odps.console.http.submit.headers` configuration option to support custom HTTP request headers
7+
- Support subquery LogView generation in interactive query mode
8+
9+
### Enhancements
10+
- In MCQA V2 mode, support asynchronous retrieval of Summary information with a maximum wait time of 30 seconds
11+
- Improved LogView generation logic with support for LogView version number control
12+
- Quota caching mechanism optimization with expiration time checking, default cache duration of 1 day
13+
- Enhanced `use quota` command to support quota switching in MCQA V2 mode, automatically setting related Session variables and HTTP request headers
14+
15+
### Dependency Updates
16+
- Upgraded odps-sdk from `0.53.0-public` to `0.56.0-public`
17+
- Upgraded `credentials-java` from `0.3.12` to `1.0.2`
18+
- Added `arrow-memory-netty` dependency (with exclusions for netty-buffer and netty-common)
19+
- Upgraded `mockito-core` from `1.10.8` to `4.11.0`
20+
- Upgraded `junit` from `4.11` to `4.12`, added JUnit 5 support (junit-jupiter-api, junit-jupiter-engine, junit-jupiter-params, junit-vintage-engine)
21+
22+
### Build & Test
23+
- Added Maven profile to support JDK 21 compilation and testing
24+
- Optimized Maven surefire plugin configuration with parallel test support (20 threads, 3 forks)
25+
- Added necessary JVM parameters in JDK 21 mode to support Arrow memory access
26+
27+
### Other Changes
28+
- Updated copyright year to 2026
29+
- `ExternalCredentialsProvider` implements `getProviderName()` and `close()` methods
30+
- Removed `sts_token` configuration option, now handled internally by the SDK
31+
132
# 0.48.0-public [2024-07-22]
233
### Features
334
- The odps-sdk version has been upgraded from `0.47.0-public` to `0.48.6-public`. For the enhancements and fixes included, please refer to [odps-sdk change log](https://github.com/aliyun/aliyun-odps-java-sdk/blob/release/0.48.x/CHANGELOG.md)

CHANGELOG_CN.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,34 @@
11
# 更新日志
2+
# 0.56.0-public [2026-01-30]
3+
### 新功能
4+
- 新增 `set region` 命令,支持设置 Region ID
5+
- 新增配置项 `region_id``signature_v4_corporation``quota_name``LABEL`,支持在配置文件中配置 Region ID、签名主体、配额名称和测试环境标签
6+
- 支持临时配额(以 `temp_` 开头的配额名称),自动设置 1 天缓存过期时间
7+
- 新增 `odps.console.http.submit.headers` 配置项,支持设置 HTTP 提交时的自定义请求头
8+
- 支持交互式查询模式下的子查询 LogView 生成
9+
10+
### 增强功能
11+
- MaxQA 模式下,支持异步获取 Summary 信息,最多等待 30 秒
12+
- 改进 LogView 生成逻辑,支持通过 LogView 版本号控制生成方式
13+
- 配额缓存机制优化,支持过期时间检查,默认缓存 1 天
14+
- `use quota` 命令增强,支持 MaxQA 模式下的配额切换,自动设置相关 Session 变量和 HTTP 请求头
15+
16+
### 依赖更新
17+
- odps-sdk 版本从 `0.53.0-public` 升级至 `0.56.0-public`
18+
- 升级 `credentials-java``0.3.12``1.0.2`
19+
- 新增 `arrow-memory-netty` 依赖(排除了 netty-buffer 和 netty-common)
20+
- 升级 `mockito-core``1.10.8``4.11.0`
21+
- 升级 `junit``4.11``4.12`,新增 JUnit 5 支持(junit-jupiter-api、junit-jupiter-engine、junit-jupiter-params、junit-vintage-engine)
22+
23+
### 构建与测试
24+
- 新增 Maven profile 支持 JDK 21 编译和测试
25+
- 优化 Maven surefire 插件配置,支持并行测试(20 个线程,3 个 fork)
26+
- JDK 21 模式下添加必要的 JVM 参数以支持 Arrow 内存访问
27+
28+
### 其他变更
29+
- 更新版权年份至 2026
30+
- 移除 `sts_token` 配置项,改由 SDK 内部处理
31+
232
# 0.48.0-public [2024-07-22]
333
### 新功能
434
- odps-sdk 版本从 `0.47.0-public` 升级至 `0.48.6-public`, 包含的增强和修复参阅 [odps-sdk 变更日志](https://github.com/aliyun/aliyun-odps-java-sdk/blob/release/0.48.x/CHANGELOG_CN.md)

odps-console-auth/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>com.aliyun.openservices.odps</groupId>
88
<artifactId>odps-console</artifactId>
9-
<version>0.52.3-public</version>
9+
<version>0.56.0-public</version>
1010
</parent>
1111
<groupId>com.aliyun.openservices.odps</groupId>
1212
<artifactId>odps-console-auth</artifactId>
13-
<version>0.52.3-public</version>
13+
<version>0.56.0-public</version>
1414
<name>odps-console-auth</name>
1515

1616
<properties>

odps-console-basic/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>com.aliyun.openservices.odps</groupId>
88
<artifactId>odps-console</artifactId>
9-
<version>0.52.3-public</version>
9+
<version>0.56.0-public</version>
1010
</parent>
1111
<groupId>com.aliyun.openservices.odps</groupId>
1212
<artifactId>odps-console-basic</artifactId>
13-
<version>0.52.3-public</version>
13+
<version>0.56.0-public</version>
1414
<name>odps-console-basic</name>
1515
<url>http://odps.aliyun.com</url>
1616

odps-console-cupid-public/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@
3333
<parent>
3434
<groupId>com.aliyun.openservices.odps</groupId>
3535
<artifactId>odps-console</artifactId>
36-
<version>0.52.3-public</version>
36+
<version>0.56.0-public</version>
3737
</parent>
3838
<groupId>com.aliyun.openservices.odps</groupId>
3939
<artifactId>odps-console-cupid-public</artifactId>
40-
<version>0.52.3-public</version>
40+
<version>0.56.0-public</version>
4141
<name>odps-console-cupid-public</name>
4242

4343
<dependencies>

odps-console-dist-public/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>odps-console</artifactId>
77
<groupId>com.aliyun.openservices.odps</groupId>
8-
<version>0.52.3-public</version>
8+
<version>0.56.0-public</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

odps-console-dship/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>com.aliyun.openservices.odps</groupId>
88
<artifactId>odps-console</artifactId>
9-
<version>0.52.3-public</version>
9+
<version>0.56.0-public</version>
1010
</parent>
1111
<groupId>com.aliyun.openservices.odps</groupId>
1212
<artifactId>odps-console-dship</artifactId>
13-
<version>0.52.3-public</version>
13+
<version>0.56.0-public</version>
1414
<name>odps-console-dship</name>
1515

1616
<dependencies>

odps-console-mr/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<parent>
66
<groupId>com.aliyun.openservices.odps</groupId>
77
<artifactId>odps-console</artifactId>
8-
<version>0.52.3-public</version>
8+
<version>0.56.0-public</version>
99
</parent>
1010
<groupId>com.aliyun.openservices.odps</groupId>
1111
<artifactId>odps-console-mr</artifactId>
12-
<version>0.52.3-public</version>
12+
<version>0.56.0-public</version>
1313
<name>odps-console-mr</name>
1414

1515
<properties>

odps-console-public/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<parent>
66
<groupId>com.aliyun.openservices.odps</groupId>
77
<artifactId>odps-console</artifactId>
8-
<version>0.52.3-public</version>
8+
<version>0.56.0-public</version>
99
</parent>
1010
<groupId>com.aliyun.openservices.odps</groupId>
1111
<artifactId>odps-console-public</artifactId>
12-
<version>0.52.3-public</version>
12+
<version>0.56.0-public</version>
1313
<name>odps-console-public</name>
1414

1515
<dependencies>

odps-console-resource/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<parent>
66
<groupId>com.aliyun.openservices.odps</groupId>
77
<artifactId>odps-console</artifactId>
8-
<version>0.52.3-public</version>
8+
<version>0.56.0-public</version>
99
</parent>
1010
<groupId>com.aliyun.openservices.odps</groupId>
1111
<artifactId>odps-console-resource</artifactId>
12-
<version>0.52.3-public</version>
12+
<version>0.56.0-public</version>
1313
<name>odps-console-resource</name>
1414

1515
<dependencies>

0 commit comments

Comments
 (0)