From 36b3cef99cd093d92b43f207eb91dc9e2931874a Mon Sep 17 00:00:00 2001 From: Neil Shen Date: Fri, 2 Apr 2021 17:08:53 +0800 Subject: [PATCH 1/5] Update release-4.0.12.md --- releases/release-4.0.12.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/releases/release-4.0.12.md b/releases/release-4.0.12.md index 1b4887fff2fe2..ae0fda941ed06 100644 --- a/releases/release-4.0.12.md +++ b/releases/release-4.0.12.md @@ -52,6 +52,7 @@ TiDB version: 4.0.12 + TiCDC - Add a double confirmation when users create or resume the changefeed with the `start-ts` or `checkpoint-ts` 1 day before the current timestamp [#1497](https://github.com/pingcap/ticdc/pull/1497) + - Add grafana panels for old value [#1571](https://github.com/pingcap/ticdc/pull/1571) + Backup & Restore (BR) @@ -119,6 +120,9 @@ TiDB version: 4.0.12 - Fix a disorder issue of the `resolved ts` event [#1464](https://github.com/pingcap/ticdc/pull/1464) - Fix a data loss issue caused by wrong table scheduling due to the network problem [#1508](https://github.com/pingcap/ticdc/pull/1508) + - Fix a bug of untimely release of resources when stopping a processor [#1547](https://github.com/pingcap/ticdc/pull/1547) + - Fix a bug that txn counter is not correctly updated which may cause database connection leak [#1524](https://github.com/pingcap/ticdc/pull/1524) + - Fix multiple owner could co-exist when pd has jitter, which may lead to table missing [#1540](https://github.com/pingcap/ticdc/pull/1540) + Backup & Restore (BR) From 8416f4430d37e739d53830b06ca75ebf6f5b789e Mon Sep 17 00:00:00 2001 From: Neil Shen Date: Fri, 2 Apr 2021 17:26:35 +0800 Subject: [PATCH 2/5] Update releases/release-4.0.12.md Co-authored-by: TomShawn <41534398+TomShawn@users.noreply.github.com> --- releases/release-4.0.12.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releases/release-4.0.12.md b/releases/release-4.0.12.md index ae0fda941ed06..5a19339b1b243 100644 --- a/releases/release-4.0.12.md +++ b/releases/release-4.0.12.md @@ -52,7 +52,7 @@ TiDB version: 4.0.12 + TiCDC - Add a double confirmation when users create or resume the changefeed with the `start-ts` or `checkpoint-ts` 1 day before the current timestamp [#1497](https://github.com/pingcap/ticdc/pull/1497) - - Add grafana panels for old value [#1571](https://github.com/pingcap/ticdc/pull/1571) + - Add Grafana panels for the Old Value feature [#1571](https://github.com/pingcap/ticdc/pull/1571) + Backup & Restore (BR) From c25eaa480f4f3539be2b5b97da73126c1a279e68 Mon Sep 17 00:00:00 2001 From: Neil Shen Date: Fri, 2 Apr 2021 17:26:41 +0800 Subject: [PATCH 3/5] Update releases/release-4.0.12.md Co-authored-by: TomShawn <41534398+TomShawn@users.noreply.github.com> --- releases/release-4.0.12.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releases/release-4.0.12.md b/releases/release-4.0.12.md index 5a19339b1b243..2c7b991da3670 100644 --- a/releases/release-4.0.12.md +++ b/releases/release-4.0.12.md @@ -122,7 +122,7 @@ TiDB version: 4.0.12 - Fix a data loss issue caused by wrong table scheduling due to the network problem [#1508](https://github.com/pingcap/ticdc/pull/1508) - Fix a bug of untimely release of resources when stopping a processor [#1547](https://github.com/pingcap/ticdc/pull/1547) - Fix a bug that txn counter is not correctly updated which may cause database connection leak [#1524](https://github.com/pingcap/ticdc/pull/1524) - - Fix multiple owner could co-exist when pd has jitter, which may lead to table missing [#1540](https://github.com/pingcap/ticdc/pull/1540) + - Fix the issue that multiple owners can co-exist when PD has jitter, which might lead to table missing [#1540](https://github.com/pingcap/ticdc/pull/1540) + Backup & Restore (BR) From 7d39cb17bd84be05e1a95033170c1d964f821b4c Mon Sep 17 00:00:00 2001 From: Neil Shen Date: Fri, 2 Apr 2021 17:27:00 +0800 Subject: [PATCH 4/5] Apply suggestions from code review Co-authored-by: TomShawn <41534398+TomShawn@users.noreply.github.com> --- releases/release-4.0.12.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releases/release-4.0.12.md b/releases/release-4.0.12.md index 2c7b991da3670..1467bc2e57026 100644 --- a/releases/release-4.0.12.md +++ b/releases/release-4.0.12.md @@ -121,7 +121,7 @@ TiDB version: 4.0.12 - Fix a disorder issue of the `resolved ts` event [#1464](https://github.com/pingcap/ticdc/pull/1464) - Fix a data loss issue caused by wrong table scheduling due to the network problem [#1508](https://github.com/pingcap/ticdc/pull/1508) - Fix a bug of untimely release of resources when stopping a processor [#1547](https://github.com/pingcap/ticdc/pull/1547) - - Fix a bug that txn counter is not correctly updated which may cause database connection leak [#1524](https://github.com/pingcap/ticdc/pull/1524) + - Fix a bug that the transaction counter is not correctly updated, which might cause database connection leak [#1524](https://github.com/pingcap/ticdc/pull/1524) - Fix the issue that multiple owners can co-exist when PD has jitter, which might lead to table missing [#1540](https://github.com/pingcap/ticdc/pull/1540) + Backup & Restore (BR) From 7c3315e04674334b74428a00c751f0505a57b1d8 Mon Sep 17 00:00:00 2001 From: Coco Yee <40977455+yikeke@users.noreply.github.com> Date: Fri, 2 Apr 2021 18:19:53 +0800 Subject: [PATCH 5/5] Apply suggestions from code review Co-authored-by: Grace Cai --- releases/release-4.0.12.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releases/release-4.0.12.md b/releases/release-4.0.12.md index 1467bc2e57026..60d5e8344d25b 100644 --- a/releases/release-4.0.12.md +++ b/releases/release-4.0.12.md @@ -120,7 +120,7 @@ TiDB version: 4.0.12 - Fix a disorder issue of the `resolved ts` event [#1464](https://github.com/pingcap/ticdc/pull/1464) - Fix a data loss issue caused by wrong table scheduling due to the network problem [#1508](https://github.com/pingcap/ticdc/pull/1508) - - Fix a bug of untimely release of resources when stopping a processor [#1547](https://github.com/pingcap/ticdc/pull/1547) + - Fix a bug of untimely release of resources after a processor is stopped [#1547](https://github.com/pingcap/ticdc/pull/1547) - Fix a bug that the transaction counter is not correctly updated, which might cause database connection leak [#1524](https://github.com/pingcap/ticdc/pull/1524) - Fix the issue that multiple owners can co-exist when PD has jitter, which might lead to table missing [#1540](https://github.com/pingcap/ticdc/pull/1540)