Skip to content

Commit

Permalink
Doc: add change-log 0.9.16
Browse files Browse the repository at this point in the history
  • Loading branch information
drmingdrmer committed Sep 5, 2024
1 parent d96218e commit 25bed35
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
19 changes: 19 additions & 0 deletions change-log.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## v0.9.16

Summary:

- Fixed:
- [2d6441a1](https://github.com/datafuselabs/openraft/commit/2d6441a1a5dbfad0261df1794d2ebbe0eea0f715) Prevent panic when calling `Raft::change_membership()` on uninitialized node.

Detail:

### Fixed:

- Fixed: [2d6441a1](https://github.com/datafuselabs/openraft/commit/2d6441a1a5dbfad0261df1794d2ebbe0eea0f715) Prevent panic when calling `Raft::change_membership()` on uninitialized node; by 张炎泼; 2024-09-05

Previously, `change_membership()` assumed the current membership config was
always non-empty and used the last config entry. However, uninitialized
nodes lack a membership config, leading to panics.

This commit adds checks to prevent `change_membership()` from panicking

## v0.9.15

Summary:
Expand Down
16 changes: 16 additions & 0 deletions change-log/v0.9.16.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Summary:

- Fixed:
- [2d6441a1](https://github.com/datafuselabs/openraft/commit/2d6441a1a5dbfad0261df1794d2ebbe0eea0f715) Prevent panic when calling `Raft::change_membership()` on uninitialized node.

Detail:

### Fixed:

- Fixed: [2d6441a1](https://github.com/datafuselabs/openraft/commit/2d6441a1a5dbfad0261df1794d2ebbe0eea0f715) Prevent panic when calling `Raft::change_membership()` on uninitialized node; by 张炎泼; 2024-09-05

Previously, `change_membership()` assumed the current membership config was
always non-empty and used the last config entry. However, uninitialized
nodes lack a membership config, leading to panics.

This commit adds checks to prevent `change_membership()` from panicking

0 comments on commit 25bed35

Please sign in to comment.