|
4 | 4 |
|
5 | 5 | ### Bug Fixes
|
6 | 6 |
|
7 |
| -* add terminationDrainDuration config ([#4](https://github.com/cectc/dbpack/issues/4)) ([6604ce8](https://github.com/cectc/dbpack/commit/5c607d48d1149218cff3988dcb00d83da571a561)) |
8 |
| -* should use db connection rather than tx connection exec sql request ([#8](https://github.com/cectc/dbpack/pull/8)) ([7e2b42d](https://github.com/cectc/dbpack/commit/52d78cab0bc414d92a5c59230f2827c8332c2bde)) |
9 |
| -* when receive ComQuit request, should return connection ([#51](https://github.com/cectc/dbpack/pull/51)) ([627adc2](https://github.com/cectc/dbpack/commit/e8f07086ccf76a7112f00512e3ed3f6e94aff410)) |
10 |
| -* close statement after read result from conn ([#71](https://github.com/cectc/dbpack/pull/71)) ([f924e10](https://github.com/cectc/dbpack/commit/4c9a29271d73df0ff8daf92c3faebf1540b0cf01)) |
11 |
| -* ping should put resource back to the pool ([#74](https://github.com/cectc/dbpack/pull/74)) ([07de56e](https://github.com/cectc/dbpack/commit/c1c77710398ad58d7d3809ad66312550b0931236)) |
12 |
| -* process global session after timeout should refresh global session status ([#86](https://github.com/cectc/dbpack/pull/86)) ([3046e17](https://github.com/cectc/dbpack/commit/6bf4090fbe897c60c229ac172fdb0c14720066ee)) |
13 |
| -* release tx when undologs doesn't exists ([#93](https://github.com/cectc/dbpack/pull/93)) ([7aeaa4e](https://github.com/cectc/dbpack/commit/99df0361ca1cf7876daa66151cf6bb462d0fd3bb)) |
| 7 | +* add terminationDrainDuration config ([#4](https://github.com/cectc/dbpack/issues/4)) ([5c607d4](https://github.com/cectc/dbpack/commit/5c607d48d1149218cff3988dcb00d83da571a561)) |
| 8 | +* should use db connection rather than tx connection exec sql request ([#8](https://github.com/cectc/dbpack/pull/8)) ([52d78ca](https://github.com/cectc/dbpack/commit/52d78cab0bc414d92a5c59230f2827c8332c2bde)) |
| 9 | +* when receive ComQuit request, should return connection ([#51](https://github.com/cectc/dbpack/pull/51)) ([e8f0708](https://github.com/cectc/dbpack/commit/e8f07086ccf76a7112f00512e3ed3f6e94aff410)) |
| 10 | +* close statement after read result from conn ([#71](https://github.com/cectc/dbpack/pull/71)) ([4c9a292](https://github.com/cectc/dbpack/commit/4c9a29271d73df0ff8daf92c3faebf1540b0cf01)) |
| 11 | +* ping should put resource back to the pool ([#74](https://github.com/cectc/dbpack/pull/74)) ([c1c7771](https://github.com/cectc/dbpack/commit/c1c77710398ad58d7d3809ad66312550b0931236)) |
| 12 | +* process global session after timeout should refresh global session status ([#86](https://github.com/cectc/dbpack/pull/86)) ([6bf4090](https://github.com/cectc/dbpack/commit/6bf4090fbe897c60c229ac172fdb0c14720066ee)) |
| 13 | +* release tx when undologs doesn't exists ([#93](https://github.com/cectc/dbpack/pull/93)) ([99df036](https://github.com/cectc/dbpack/commit/99df0361ca1cf7876daa66151cf6bb462d0fd3bb)) |
14 | 14 |
|
15 | 15 | ### Features
|
16 | 16 |
|
17 |
| -* distributed transaction support etcd watch ([#11](https://github.com/cectc/dbpack/pull/11)) ([ce10990](https://github.com/cectc/dbpack/commit/e9910501e32d23741f99f5fe9ece1077ba1b348c)) |
18 |
| -* support tcc branch commit & rollback ([#12](https://github.com/cectc/dbpack/issues/12)) ([c0bfdf9](https://github.com/cectc/dbpack/commit/feab7aefe819bf3217363994c67515b887f8adb9)) |
19 |
| -* support GlobalLock hint ([#14](https://github.com/cectc/dbpack/issues/14)) ([8369f8f](https://github.com/cectc/dbpack/commit/5c7c96797539943ed75495d1cfa92f6094ff548e)) |
20 |
| -* support leader election, only leader can commit and rollback ([#19](https://github.com/cectc/dbpack/pull/19)) ([b89c672](https://github.com/cectc/dbpack/commit/d7ab60b6ed5547f1bc9a6c426e1fb9ee21d6f4f3)) |
| 17 | +* distributed transaction support etcd watch ([#11](https://github.com/cectc/dbpack/pull/11)) ([e991050](https://github.com/cectc/dbpack/commit/e9910501e32d23741f99f5fe9ece1077ba1b348c)) |
| 18 | +* support tcc branch commit & rollback ([#12](https://github.com/cectc/dbpack/issues/12)) ([feab7ae](https://github.com/cectc/dbpack/commit/feab7aefe819bf3217363994c67515b887f8adb9)) |
| 19 | +* support GlobalLock hint ([#14](https://github.com/cectc/dbpack/issues/14)) ([5c7c967](https://github.com/cectc/dbpack/commit/5c7c96797539943ed75495d1cfa92f6094ff548e)) |
| 20 | +* support leader election, only leader can commit and rollback ([#19](https://github.com/cectc/dbpack/pull/19)) ([d7ab60b](https://github.com/cectc/dbpack/commit/d7ab60b6ed5547f1bc9a6c426e1fb9ee21d6f4f3)) |
21 | 21 | * add prometheus metric ([#25](https://github.com/cectc/dbpack/issues/25)) ([627adc2](https://github.com/cectc/dbpack/commit/627adc2ced9da499e6b658f718b23417e7df9903))
|
22 |
| -* add readiness and liveness probe ([#52](https://github.com/cectc/dbpack/issues/52)) ([fd889cc](https://github.com/cectc/dbpack/commit/f43ab5f4ed6eafaf950a73e241c536849a16e4f9)) |
| 22 | +* add readiness and liveness probe ([#52](https://github.com/cectc/dbpack/issues/52)) ([f43ab5f](https://github.com/cectc/dbpack/commit/f43ab5f4ed6eafaf950a73e241c536849a16e4f9)) |
23 | 23 |
|
24 | 24 | ### Changes
|
25 | 25 |
|
26 |
| -* update branch session process logic ([#17](https://github.com/cectc/dbpack/pull/17)) ([c6a6626](https://github.com/cectc/dbpack/commit/06d624511c65a379e73dae91c2be4fb3785b9bf0)) |
| 26 | +* update branch session process logic ([#17](https://github.com/cectc/dbpack/pull/17)) ([06d6245](https://github.com/cectc/dbpack/commit/06d624511c65a379e73dae91c2be4fb3785b9bf0)) |
27 | 27 |
|
28 | 28 | ### New Contributors
|
29 | 29 | * @rocymp made their first contribution in https://github.com/CECTC/dbpack/pull/3
|
|
36 | 36 | * @wybrobin made their first contribution in https://github.com/CECTC/dbpack/pull/72
|
37 | 37 | * @tanryberdi made their first contribution in https://github.com/CECTC/dbpack/pull/75
|
38 | 38 | * @JuwanXu made their first contribution in https://github.com/CECTC/dbpack/pull/81
|
39 |
| -* @hzliangbin made their first contribution in https://github.com/CECTC/dbpack/pull/83 |
| 39 | +* @hzliangbin made their first contribution in https://github.com/CECTC/dbpack/pull/83 |
| 40 | + |
| 41 | +## v0.1.1 |
| 42 | + |
| 43 | +### Bug Fixes |
| 44 | + |
| 45 | +* enhance etcd client config ([112](https://github.com/CECTC/dbpack/pull/112])) ([798f124](https://github.com/cectc/dbpack/commit/798f124a6b33a4f83a734ac9a971ff8760dcffbf)) |
| 46 | +* fix global session timeout calculate ([118](https://github.com/CECTC/dbpack/pull/118)) ([bf3b084](https://github.com/cectc/dbpack/commit/bf3b08418485347da83af5c061a59839c1bace9e)) |
| 47 | +* should sort the columns ([131](https://github.com/CECTC/dbpack/pull/131)) ([f3bc97f](https://github.com/cectc/dbpack/commit/f3bc97fe095c2eaeda0f6d1eb0dabb22a9fc7020)) |
| 48 | + |
| 49 | +### Features |
| 50 | + |
| 51 | +* transaction metric ([54](https://github.com/CECTC/dbpack/issues/54)) ([0ae8c77](https://github.com/cectc/dbpack/commit/0ae8c774106b58f5dbbfa045d4a8591fb913c929)) |
| 52 | +* support com_query update sql request ([104](https://github.com/CECTC/dbpack/issues/104)) ([9eff19f](https://github.com/cectc/dbpack/commit/9eff19fd1e40f6a63722e7e61f84218718c3b956)) |
| 53 | +* support com_query delete sql request ([104](https://github.com/CECTC/dbpack/issues/104)) ([af98362](https://github.com/cectc/dbpack/commit/af983621f0e6249bacc5a7bf6852d884a302c09e)) |
| 54 | +* support com_query insert sql request ([104](https://github.com/CECTC/dbpack/issues/104)) ([1aa20fc](https://github.com/cectc/dbpack/commit/1aa20fcb5853f144ad5044649af9112fdb540b69)) |
| 55 | +* support comQuery request globallock hint ([104](https://github.com/CECTC/dbpack/issues/104)) ([437667e](https://github.com/cectc/dbpack/commit/437667e46b70e4d3ddd91d574495d3a478812204)) |
| 56 | +* add status api ([139](https://github.com/CECTC/dbpack/pull/139)) ([93ceee0](https://github.com/cectc/dbpack/commit/93ceee08d46420b422f5490c4b6e8f2120805370)) |
| 57 | + |
| 58 | +### Changes |
| 59 | + |
| 60 | +* refactor: update global session status, branch session status in txn ([120](https://github.com/CECTC/dbpack/pull/120)) ([9829387](https://github.com/cectc/dbpack/commit/9829387cd519551e9d8c16f1c373712c20a41e6e)) |
0 commit comments