Skip to content

Commit c133cb7

Browse files
committed
Doc: add change-log 0.9.15
1 parent 4c06e82 commit c133cb7

2 files changed

Lines changed: 33 additions & 1 deletion

File tree

change-log.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
## v0.9.14
1+
## v0.9.15
22

33
Summary:
44

55
- Fixed:
66
- [0b1293f3](https://github.com/datafuselabs/openraft/commit/0b1293f3499de8d2e3dfb7b0d06f37e08c8ac759) Should not update `vote` when seeing higher vote in `RequestVote` response.
7+
- [94b1e843](https://github.com/datafuselabs/openraft/commit/94b1e84374e52bdc2e317d7abf5cfa9fb1970254) Clarify that receiving an equal vote does not grant leadership.
78
- Added:
89
- [5f5d7e9f](https://github.com/datafuselabs/openraft/commit/5f5d7e9f60ff2e86af078d2c20401636de2c19f7) Add `TypeConfigExt` to simplify `RaftTypeConfig` Access.
910

@@ -32,6 +33,21 @@ Detail:
3233

3334
This bug is introduced in: f0a9e34b12bc937170803dc60a4e2c12de9212ef
3435

36+
- Fixed: [94b1e843](https://github.com/datafuselabs/openraft/commit/94b1e84374e52bdc2e317d7abf5cfa9fb1970254) Clarify that receiving an equal vote does not grant leadership.; by 张炎泼; 2024-08-28
37+
38+
A node's `vote` may be updated when a leader observes a higher vote.
39+
In such cases, the leader updates its local vote and steps down.
40+
However, this vote update does not imply that the node accepts the
41+
higher vote as valid for leadership, as it has not yet compared their
42+
logs.
43+
44+
In this commit, re-enable `VoteResponse.vote_granted` to indicate a vote
45+
is granted.
46+
47+
This commit also fix:
48+
49+
- Fix: #1236
50+
3551
### Added:
3652

3753
- Added: [5f5d7e9f](https://github.com/datafuselabs/openraft/commit/5f5d7e9f60ff2e86af078d2c20401636de2c19f7) Add `TypeConfigExt` to simplify `RaftTypeConfig` Access; by 张炎泼; 2024-07-03
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ Summary:
22

33
- Fixed:
44
- [0b1293f3](https://github.com/datafuselabs/openraft/commit/0b1293f3499de8d2e3dfb7b0d06f37e08c8ac759) Should not update `vote` when seeing higher vote in `RequestVote` response.
5+
- [94b1e843](https://github.com/datafuselabs/openraft/commit/94b1e84374e52bdc2e317d7abf5cfa9fb1970254) Clarify that receiving an equal vote does not grant leadership.
56
- Added:
67
- [5f5d7e9f](https://github.com/datafuselabs/openraft/commit/5f5d7e9f60ff2e86af078d2c20401636de2c19f7) Add `TypeConfigExt` to simplify `RaftTypeConfig` Access.
78

@@ -30,6 +31,21 @@ Detail:
3031

3132
This bug is introduced in: f0a9e34b12bc937170803dc60a4e2c12de9212ef
3233

34+
- Fixed: [94b1e843](https://github.com/datafuselabs/openraft/commit/94b1e84374e52bdc2e317d7abf5cfa9fb1970254) Clarify that receiving an equal vote does not grant leadership.; by 张炎泼; 2024-08-28
35+
36+
A node's `vote` may be updated when a leader observes a higher vote.
37+
In such cases, the leader updates its local vote and steps down.
38+
However, this vote update does not imply that the node accepts the
39+
higher vote as valid for leadership, as it has not yet compared their
40+
logs.
41+
42+
In this commit, re-enable `VoteResponse.vote_granted` to indicate a vote
43+
is granted.
44+
45+
This commit also fix:
46+
47+
- Fix: #1236
48+
3349
### Added:
3450

3551
- Added: [5f5d7e9f](https://github.com/datafuselabs/openraft/commit/5f5d7e9f60ff2e86af078d2c20401636de2c19f7) Add `TypeConfigExt` to simplify `RaftTypeConfig` Access; by 张炎泼; 2024-07-03

0 commit comments

Comments
 (0)