Summary:
Update HISTORY.md for https://github.com/facebook/rocksdb/issues/10114: write batch checksum verification before writing to WAL.
Pull Request resolved: https://github.com/facebook/rocksdb/pull/10189
Reviewed By: ajkr
Differential Revision:
D37226366
Pulled By: cbi42
fbshipit-source-id:
cd2f076961abc35f35783e0f2cc3beda68cdb446
### Behavior changes
* DB::Open(), DB::OpenAsSecondary() will fail if a Logger cannot be created (#9984)
* Removed support for reading Bloom filters using obsolete block-based filter format. (Support for writing such filters was dropped in 7.0.) For good read performance on old DBs using these filters, a full compaction is required.
+* Per KV checksum in write batch is verified before a write batch is written to WAL to detect any corruption to the write batch (#10114).
## 7.3.0 (05/20/2022)
### Bug Fixes