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

en,zh: add release notes for v1.2.5 #1532

Merged
merged 3 commits into from
Dec 27, 2021
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
1 change: 1 addition & 0 deletions en/TOC.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@
- [Monitoring and Alert on Kubernetes](monitor-kubernetes.md)
- Release Notes
- v1.2
- [1.2.5](releases/release-1.2.5.md)
- [1.2.4](releases/release-1.2.4.md)
- [1.2.3](releases/release-1.2.3.md)
- [1.2.2](releases/release-1.2.2.md)
Expand Down
23 changes: 23 additions & 0 deletions en/releases/release-1.2.5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
title: TiDB Operator 1.2.5 Release Notes
---

# TiDB Operator 1.2.5 Release Notes

Release date: December 27, 2021

TiDB Operator version: 1.2.5

## Improvements

- Support configuring all fields in `ComponentSpec` for DM to control component behavior more finely ([#4313](https://github.com/pingcap/tidb-operator/pull/4313), [@csuzhangxc](https://github.com/csuzhangxc))
- Support configuring init container `resources` for TiFlash ([#4304](https://github.com/pingcap/tidb-operator/pull/4304), [@KanShiori](https://github.com/KanShiori))
- Support configuring the `ssl-ca` parameter for TiDB via `TiDBTLSClient` to disable client authentication ([#4270](https://github.com/pingcap/tidb-operator/pull/4270), [@just1900](https://github.com/just1900))
- Add a `ready` field to TiCDC captures to show its readiness status ([#4273](https://github.com/pingcap/tidb-operator/pull/4273), [@KanShiori](https://github.com/KanShiori))

## Bug fixes

- Fix the issue that PD, TiKV, and TiDB cannot roll update after the component startup script is updated ([#4248](https://github.com/pingcap/tidb-operator/pull/4248), [@KanShiori](https://github.com/KanShiori))
- Fix the issue that the TidbCluster spec is updated automatically after TLS is enabled ([#4306](https://github.com/pingcap/tidb-operator/pull/4306), [@KanShiori](https://github.com/KanShiori))
- Fix a potential goroutine leak when TiDB Operator checks the Region leader count of TiKV ([#4291](https://github.com/pingcap/tidb-operator/pull/4291), [@DanielZhangQD](https://github.com/DanielZhangQD))
- Fix some high-level security issues ([#4240](https://github.com/pingcap/tidb-operator/pull/4240), [@KanShiori](https://github.com/KanShiori))
1 change: 1 addition & 0 deletions zh/TOC.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@
- [Kubernetes 监控与告警](monitor-kubernetes.md)
- 版本发布历史
- v1.2
- [1.2.5](releases/release-1.2.5.md)
- [1.2.4](releases/release-1.2.4.md)
- [1.2.3](releases/release-1.2.3.md)
- [1.2.2](releases/release-1.2.2.md)
Expand Down
23 changes: 23 additions & 0 deletions zh/releases/release-1.2.5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
title: TiDB Operator 1.2.5 Release Notes
---

# TiDB Operator 1.2.5 Release Notes

发布日期:2021 年 12 月 27 日

TiDB Operator 版本:1.2.5

## 优化提升

- 支持为 DM 配置所有组件级字段以更精细地控制组件行为 ([#4313](https://github.com/pingcap/tidb-operator/pull/4313), [@csuzhangxc](https://github.com/csuzhangxc))
- 支持为 TiFlash init container 配置 `resources` ([#4304](https://github.com/pingcap/tidb-operator/pull/4304), [@KanShiori](https://github.com/KanShiori))
- 支持通过 `TiDBTLSClient` 为 TiDB 配置 `ssl-ca` 参数以禁用客户端认证 ([#4270](https://github.com/pingcap/tidb-operator/pull/4270), [@just1900](https://github.com/just1900))
- 为 TiCDC captures 增加 `ready` 字段展示其就绪状态 ([#4273](https://github.com/pingcap/tidb-operator/pull/4273), [@KanShiori](https://github.com/KanShiori))

## Bug 修复

- 修复组件启动脚本更新后,PD、TiKV 及 TiDB 不会滚动更新的问题 ([#4248](https://github.com/pingcap/tidb-operator/pull/4248), [@KanShiori](https://github.com/KanShiori))
- 修复启用 TLS 后 TidbCluster spec 被自动更新的问题 ([#4306](https://github.com/pingcap/tidb-operator/pull/4306), [@KanShiori](https://github.com/KanShiori))
- 修复 TiDB Operator 计算 TiKV Region leader 数量时可能会造成 goroutine 泄露的问题 ([#4291](https://github.com/pingcap/tidb-operator/pull/4291), [@DanielZhangQD](https://github.com/DanielZhangQD))
- 修复一些高级别的安全问题 ([#4240](https://github.com/pingcap/tidb-operator/pull/4240), [@KanShiori](https://github.com/KanShiori))