Skip to content

Commit d75da26

Browse files
committed
Update HISTORY and version
1 parent 00894a2 commit d75da26

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

HISTORY.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Rocksdb Change Log
2+
## 6.8.1 (03/30/2020)
3+
### Behavior changes
4+
* Since RocksDB 6.8.0, ttl-based FIFO compaction can drop a file whose oldest key becomes older than options.ttl while others have not. This fix reverts this and makes ttl-based FIFO compaction use the file's flush time as the criterion. This fix also requires that max_open_files = -1 and compaction_options_fifo.allow_compaction = false to function properly.
25

36
## 6.8.0 (02/24/2020)
47
### Java API Changes
@@ -27,9 +30,6 @@
2730
* `db_bench` now supports `value_size_distribution_type`, `value_size_min`, `value_size_max` options for generating random variable sized value. Added `blob_db_compression_type` option for BlobDB to enable blob compression.
2831
* Replace RocksDB namespace "rocksdb" with flag "ROCKSDB_NAMESPACE" which if is not defined, defined as "rocksdb" in header file rocksdb_namespace.h.
2932

30-
### Behavior changes
31-
* Since RocksDB 6.8, ttl-based FIFO compaction can drop a file whose oldest key becomes older than options.ttl while others have not. This fix reverts this and makes ttl-based FIFO compaction use the file's flush time as the criterion. This fix also requires that max_open_files = -1 and compaction_options_fifo.allow_compaction = false to function properly.
32-
3333
## 6.7.0 (01/21/2020)
3434
### Public API Change
3535
* Added a rocksdb::FileSystem class in include/rocksdb/file_system.h to encapsulate file creation/read/write operations, and an option DBOptions::file_system to allow a user to pass in an instance of rocksdb::FileSystem. If its a non-null value, this will take precendence over DBOptions::env for file operations. A new API rocksdb::FileSystem::Default() returns a platform default object. The DBOptions::env option and Env::Default() API will continue to be used for threading and other OS related functions, and where DBOptions::file_system is not specified, for file operations. For storage developers who are accustomed to rocksdb::Env, the interface in rocksdb::FileSystem is new and will probably undergo some changes as more storage systems are ported to it from rocksdb::Env. As of now, no env other than Posix has been ported to the new interface.

include/rocksdb/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#define ROCKSDB_MAJOR 6
88
#define ROCKSDB_MINOR 8
9-
#define ROCKSDB_PATCH 0
9+
#define ROCKSDB_PATCH 1
1010

1111
// Do not use these. We made the mistake of declaring macros starting with
1212
// double underscore. Now we have to live with our choice. We'll deprecate these

0 commit comments

Comments
 (0)