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

Add changelog for 1.26.1 #1600

Merged
merged 2 commits into from
Feb 4, 2020
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
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
# Changelog


#### Unreleased

#### Version 1.26.1 (2020-02-04)

Improvements:
- Add requests-in-flight metric ([1539](https://github.com/Shopify/sarama/pull/1539))
- Fix misleading example for cluster admin ([1595](https://github.com/Shopify/sarama/pull/1595))
- Replace Travis with GitHub Actions, linters housekeeping ([1573](https://github.com/Shopify/sarama/pull/1573))
- Allow BalanceStrategy to provide custom assignment data ([1592](https://github.com/Shopify/sarama/pull/1592))

Bug Fixes:
- Adds back Consumer.Offsets.CommitInterval to fix API ([1590](https://github.com/Shopify/sarama/pull/1590))
- Fix error message s/CommitInterval/AutoCommit.Interval ([1589](https://github.com/Shopify/sarama/pull/1589))

#### Version 1.26.0 (2020-01-24)

New Features:
Expand Down
3 changes: 0 additions & 3 deletions balance_strategy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ func TestBalanceStrategyRange(t *testing.T) {
}

func TestBalanceStrategyRangeAssignmentData(t *testing.T) {

strategy := BalanceStrategyRange

members := make(map[string]ConsumerGroupMemberMetadata, 2)
Expand Down Expand Up @@ -214,7 +213,6 @@ func Test_deserializeTopicPartitionAssignment(t *testing.T) {
}

func TestBalanceStrategyRoundRobinAssignmentData(t *testing.T) {

strategy := BalanceStrategyRoundRobin

members := make(map[string]ConsumerGroupMemberMetadata, 2)
Expand Down Expand Up @@ -1994,7 +1992,6 @@ func Test_stickyBalanceStrategy_Plan_ConflictingPreviousAssignments(t *testing.T
}

func Test_stickyBalanceStrategy_Plan_AssignmentData(t *testing.T) {

s := &stickyBalanceStrategy{}

members := make(map[string]ConsumerGroupMemberMetadata, 2)
Expand Down