diff --git a/CHANGELOG.md b/CHANGELOG.md index 574671dd0..0c77ca351 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [2.0.1] - 2022-05-23 + +### Fixed + - Fix members leaving the group after not being assigned any partitions #1362 + - Make `REPLICA_NOT_AVAILABLE` retriable #1351 + - Document `admin.createTopics` respecting cluster default partitions number and replication factor #1360 + ## [2.0.0] - 2022-05-06 This is the first major version released in 4 years, and contains a few important breaking changes. **A [migration guide](https://kafka.js.org/docs/migration-guide-v2.0.0) has been prepared to help with the migration process.** Be sure to read it before upgrading from older versions of KafkaJS. diff --git a/package.json b/package.json index 2f30d4dd9..b1cdb5686 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kafkajs", - "version": "2.0.0", + "version": "2.0.1", "description": "A modern Apache Kafka client for node.js", "author": "Tulio Ornelas ", "main": "index.js", diff --git a/website/versioned_docs/version-2.0.0/MigrationGuide-2-0-0.md b/website/versioned_docs/version-2.0.0/MigrationGuide-2-0-0.md index fc25129ee..8b8b764d4 100644 --- a/website/versioned_docs/version-2.0.0/MigrationGuide-2-0-0.md +++ b/website/versioned_docs/version-2.0.0/MigrationGuide-2-0-0.md @@ -1,6 +1,7 @@ --- -id: migration-guide-v2.0.0 +id: version-2.0.0-migration-guide-v2.0.0 title: Migrating to v2.0.0 +original_id: migration-guide-v2.0.0 --- v2.0.0 is the first major version of KafkaJS released since 2018. For most users, the required changes in order to upgrade from 1.x.x are very minor, but it is still important to read through the list of changes to know what, if any, changes need to be made.