All Versions
9
Latest Version
Avg Release Cycle
207 days
Latest Release
1854 days ago

Changelog History

  • v1.21 Changes

    March 29, 2019
    • ๐Ÿ”€ Switched to using Copybara for project synchronization.
    • Minor cleanup in ports.
    • โš  Silence unused argument warnings in MSVC.
    • โž• Add tests for empty keys and values.
    • โœ… Switch corruption_test to use InMemEnv.
    • Replace AtomicPointer with std::atomic.
    • ๐Ÿ‘‰ Make InMemoryEnv more consistent with filesystem based Env's.
    • Align windows_logger with posix_logger.
    • ๐Ÿ‘Œ Improve CI configuration and added AppVeyor (Windows CI) badge to README.
    • ๐Ÿ Added native support for Windows.
    • ๐Ÿ‘‰ Make WriteBatch::ApproximateSize() const.
    • ๐Ÿ›  Fix PosixWritableFile::Sync() on Apple systems.
    • ๐Ÿ›  Fix fdatasync() feature detection in opensource build.
    • C++11 cleanup for util/mutexlock.h.
    • Rework threading in env_posix.cc.
    • โœ‚ Remove InitOnce from the port API.
    • ๐Ÿ”ฆ Expose WriteBatch::Append().
    • ๐Ÿ›  Fix documentation for log file growth.
    • โž• Add move constructor to Status.
    • Replace port_posix with port_stdcxx.
    • Reimplement ConsumeDecimalNumber.
    • ๐Ÿ— Document the building process.
    • Replace NULL with nullptr in C++ files.
    • Remove PLATFORM_IS_LITTLE_ENDIAN from port/posix.h.
    • โž• Add more thread safety annotations.
    • Require C++11.
    • Replace SIZE_MAX with std::numeric_limits.
    • โž• Add CMake build support.
    • Enable thread safety annotations.
    • leveldb::DestroyDB will now delete empty directories.
    • โšก๏ธ Replace SSE-optimized CRC32C in POSIX port with external library.
    • ๐Ÿ›  Fix file writing bug in CL 170738066.
    • ๐Ÿ›  Fix use of uninitialized value in LRUHandle.
    • Fix issue #474: a race between the f*_unlocked() STDIO calls in env_posix.cc and concurrent application calls to fflush(NULL).
    • Use __APPLE__ instead of OS_MACOS. The former is compiler-provided.
    • Report missing CURRENT manifest file as database corruption.
    • LevelDB: Add WriteBatch::ApproximateSize().
    • ๐Ÿ“š Other minor fixes, code cleanup, and documentation improvements.
  • v1.20 Changes

    March 02, 2017
    • ๐Ÿ“š Convert documentation to markdown.
    • ๐Ÿ‘ Implement support for Intel crc32 instruction (SSE 4.2).
      Based on #309.
    • Limit the number of read-only files the POSIX Env will have open.
    • โž• Add option for maximum file size.
  • v1.19 Changes

    August 11, 2016
    • โœ… A snappy change broke test assumptions about the size of compressed output. Fixed.
    • ๐Ÿ›  Fix problems in LevelDB's caching code.
    • ๐Ÿ›  Fix LevelDB build when asserts are enabled in release builds. (#367).
    • Change std::uint64_t to uint64_t (#354).
    • ๐Ÿ›  Fixes a bug encountered when reading records from leveldb files that have been split, as in a [] input task split.
    • โœ‚ Deleted redundant null ptr check prior to delete. (#338).
    • ๐Ÿ›  Fix signed/unsigned mismatch on VC++ builds.
    • ๐Ÿ— Putting build artifacts in subdirectory.
    • โž• Added continuous build integration via Travis CI.
    • ๐ŸŒฒ log compaction output file's level along with number.
    • Misc. improvements to README file.
    • ๐Ÿ›  Fix Android/MIPS build (#115).
    • ๐Ÿง Only compiling TrimSpace on linux (#310).
    • ๐Ÿ‘‰ Use xcrun to determine Xcode.app path instead of using a hardcoded path.
    • โž• Add "approximate-memory-usage" property to leveldb::DB::GetProperty.
    • โž• Add leveldb::Cache::Prune.
    • ๐Ÿ›  Fix size_t/int comparison/conversion issues.
    • โž• Added leveldb::Status::IsInvalidArgument() method.
    • ๐Ÿ‘€ Suppress error reporting after seeking but before a valid First or Full record is encountered.
    • #include -> (#280).
    • ๐ŸŒฒ Now attempts to reuse the preceding MANIFEST and log file when re-opened.
    • โž• Add benchmark that measures cost of repeatedly opening the database.
    • โž• Added a new fault injection test.
    • โž• Add arm64 support to leveldb.
  • v1.18 Changes

    September 16, 2014
    • โšก๏ธ Update version number to 1.18
    • ๐Ÿ–จ Replace the basic fprintf call with a call to fwrite in order to
      โ†ช work around the apparent compiler optimization/rewrite failure that we are
      ๐Ÿ‘€ seeing with the new toolchain/iOS SDKs provided with Xcode6 and iOS8.
    • ๐Ÿ›  Fix ALL the header guards.
    • Createed a README.md with the LevelDB project description.
    • A new CONTRIBUTING file.
    • Don't implicitly convert uint64_t to size_t or int. Either preserve it as
      โš  uint64_t, or explicitly cast. This fixes MSVC warnings about possible value
      truncation when compiling this code in Chromium.
    • โž• Added a DumpFile() library function that encapsulates the guts of the
      "leveldbutil dump" command. This will allow clients to dump
      ๐ŸŒฒ data to their log files instead of stdout. It will also allow clients to
      supply their own environment.
    • ๐Ÿšš leveldb: Remove unused function 'ConsumeChar'.
    • ๐Ÿšš leveldbutil: Remove unused member variables from WriteBatchItemPrinter.
    • OpenBSD, NetBSD and DragonflyBSD have _LITTLE_ENDIAN, so define
      PLATFORM_IS_LITTLE_ENDIAN like on FreeBSD. This fixes:
    • Switch from <cstdatomic> to <atomic>. The former never made it into the
      standard and doesn't exist in modern gcc versions at all. The later contains
      everything that leveldb was using from the former.
      This problem was noticed when porting to Portable Native Client where no memory
      barrier is defined. The fact that <cstdatomic> is missing normally goes
      unnoticed since memory barriers are defined for most architectures.
    • ๐Ÿ‘‰ Make Hash() treat its input as unsigned. Before this change LevelDB files
      from platforms with different signedness of char were not compatible. This
      ๐Ÿ”„ change fixes: issue #243
    • ๐Ÿ‘Œ Verify checksums of index/meta/filter blocks when paranoid_checks set.
    • Invoke all tools for iOS with xcrun. (This was causing problems with the new
      XCode 5.1.1 image on pulse.)
    • ๐Ÿ‘• include <sys/stat.h> only once, and fix the following linter warning:
      "Found C system header after C++ system header"
    • When encountering a corrupted table file, return Status::Corruption instead of
      Status::InvalidArgument.
    • ๐Ÿ‘Œ Support cygwin as build platform, patch is from https://code.google.com/p/leveldb/issues/detail?id=188
    • ๐Ÿ›  Fix typo, merge patch from https://code.google.com/p/leveldb/issues/detail?id=159
    • ๐Ÿ›  Fix typos and comments, and address the following two issues:
    • โž• Add missing db synchronize after "fillseq" in the benchmark.
    • โœ‚ Removed unused variable in SeekRandom: value (issue #201)
  • v1.17 Changes

    September 15, 2014

    Cleanup: delete unused IntSetToString

    It was added in http://cr/19491949 (and was referenced at the time).
    ๐Ÿšš The last reference was removed in http://cr/19507363.

    ๐Ÿš€ This fixes warning/error with pre-release crosstoolv18:

    'std::string leveldb::{anonymous}::IntSetToString(const std::set<long unsigned int>&)' defined but not used [-Werror=unused-function]
    

    โž• Added arm64 and and armv7s to IOS build as suggested on leveldb mailing list.

    ๐Ÿ”„ Changed local variable type from int to size_t

    โš  This eliminates compiler warning/error and resolves issue #146

  • v1.16 Changes

    September 15, 2014
    • ๐ŸŒฒ Make Log::Reader not report a corruption when the last record in a log file is truncated.
    • ๐Ÿ›  Fix issue #230: variable created but not utilized.
    • โœ‚ Remove comment that referenced a removed feature.
  • v1.15 Changes

    September 15, 2014
    • ๐Ÿง switched from mmap based writing to simpler stdio based writing. Has a minor impact (0.5 microseconds) on microbenchmarks for asynchronous writes. Synchronous writes speed up from 30ms to 10ms on linux/ext4.
      Should be much more reliable on diverse platforms.
    • compaction errors now immediately put the database into a read-only mode (until it is re-opened). As a downside, a disk going out of space and then space being created will require a re-open to recover from, whereas previously that would happen automatically. On the plus side, many corruption possibilities go away.
    • ๐Ÿ”€ force the DB to enter an error-state so that all future writes fail when a synchronous log write succeeds but the sync fails.
    • repair now regenerates sstables that exhibit problems
    • ๐Ÿ›  fix issue #224 - Use native memory barriers on OSX
    • ๐Ÿ›  fix issue #218 - QNX build is broken
    • ๐Ÿ›  fix build on iOS with xcode 5
    • ๐Ÿ make tests compile and pass on windows
  • v1.14 Changes

    September 15, 2014

    ๐Ÿ›  Fix issues #206, #207

    Also,

    • ๐Ÿ›  Fix link to bigtable paper in docs.
    • ๐Ÿ†• New sstables will have the file extension .ldb. .sst files will continue to be recognized.
    • ๐Ÿ— When building for iOS, use xcrun to execute the compiler. This may affect issue #183.
  • v1.13 Changes

    September 15, 2014

    ๐Ÿ›  Fix issues #83, #93, #188, #196.

    โž• Additionally, fix the bug described in https://groups.google.com/d/msg/leveldb/yL6h1mAOc20/vLU64RylIdMJ where a large contiguous keyspace of deleted data was not getting compacted.

    Also fix a bug where options.max_open_files was not getting clamped properly.