Skip to content

mix(deps): bump rocksdb from 2.6.2 to 3.1.1#210

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/hex/rocksdb-3.1.1
Open

mix(deps): bump rocksdb from 2.6.2 to 3.1.1#210
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/hex/rocksdb-3.1.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 11, 2026

Copy link
Copy Markdown

Bumps rocksdb from 2.6.2 to 3.1.1.

Release notes

Sourced from rocksdb's releases.

erlang-rocksdb 3.1.1

Upgrades

  • update vendored RocksDB to 11.1.2 (from 11.1.1)

Bug Fixes

  • fix the blob_file_size column family option: it was wrongly assigned to min_blob_size (#15)

erlang-rocksdb 3.1.0

New Features

  • add an AES-256-CTR encrypted env: new_env({encrypted, Key}) or new_env(#{encrypted => Key}) with a 32-byte key encrypts all on-disk data transparently (requires OpenSSL). See the Encrypted Env guide.

Bug Fixes

  • fix a use-after-free in column-family and transaction iterators: iterators now keep the borrowed column family or transaction alive for their lifetime
  • harden compaction filter tests against a compaction race

erlang-rocksdb 3.0.0, released on 2026/06/13

Breaking Changes

  • update vendored RocksDB to 11.1.1 (from 10.10.1)
  • remove deprecated functions. Migrate as follows:
    • write/3: use the batch API (batch/0, batch_put/3,4, write_batch/3)
    • fold/4,5, fold_keys/4,5, count/1,2: use the iterator API
    • new_lru_cache/1, new_clock_cache/1: use new_cache/2
    • get_usage/1, get_pinned_usage/1, get_capacity/1: use cache_info/1,2
    • default_env/0, mem_env/0: use new_env/1
    • updates_iterator/2, close_updates_iterator/1, next_binary_update/1, next_update/1: use the tlog_* functions
    • drop_column_family/1, destroy_column_family/1: use the /2 arities
    • open_with_cf/3: use open/3
  • block_based_table_options format_version below 2 is no longer supported by RocksDB 11.0 (default is now 7)

New Features

  • add abort_all_compactions/1 and resume_all_compactions/1 (RocksDB 11.0)
  • FIFO compaction options (RocksDB 11.0): max_data_files_size, use_kv_ratio_compaction
  • block_based_table_options (RocksDB 11.0/11.1):
    • index_block_search_type: binary_search | interpolation | auto
    • uniform_cv_threshold
    • prepopulate_block_cache: disable | flush_only | flush_and_compaction
  • DB options (RocksDB 11.1):
    • open_files_async (requires skip_stats_update_on_db_open = true)
    • enforce_write_buffer_manager_during_recovery
    • verify_manifest_content_on_close
  • column family option (RocksDB 11.1): memtable_batch_lookup_optimization
  • wide-column entity column values are stored in blob files when min_blob_size is set (RocksDB 11.0)

... (truncated)

Changelog

Sourced from rocksdb's changelog.

erlang-rocksdb 3.1.1, released on 2026/07/03

Upgrades

  • update vendored RocksDB to 11.1.2 (from 11.1.1)

Bug Fixes

  • fix the blob_file_size column family option: it was wrongly assigned to min_blob_size (#15)

erlang-rocksdb 3.1.0, released on 2026/06/15

New Features

  • add an AES-256-CTR encrypted env: new_env({encrypted, Key}) or new_env(#{encrypted => Key}) with a 32-byte key encrypts all on-disk data transparently (requires OpenSSL). See the Encrypted Env guide.

Bug Fixes

  • fix a use-after-free in column-family and transaction iterators: iterators now keep the borrowed column family or transaction alive for their lifetime
  • harden compaction filter tests against a compaction race

erlang-rocksdb 3.0.0, released on 2026/06/13

Breaking Changes

  • update vendored RocksDB to 11.1.1 (from 10.10.1)
  • remove deprecated functions. Migrate as follows:
    • write/3: use the batch API (batch/0, batch_put/3,4, write_batch/3)
    • fold/4,5, fold_keys/4,5, count/1,2: use the iterator API
    • new_lru_cache/1, new_clock_cache/1: use new_cache/2
    • get_usage/1, get_pinned_usage/1, get_capacity/1: use cache_info/1,2
    • default_env/0, mem_env/0: use new_env/1
    • updates_iterator/2, close_updates_iterator/1, next_binary_update/1, next_update/1: use the tlog_* functions
    • drop_column_family/1, destroy_column_family/1: use the /2 arities
    • open_with_cf/3: use open/3
  • block_based_table_options format_version below 2 is no longer supported by RocksDB 11.0 (default is now 7)

New Features

  • add abort_all_compactions/1 and resume_all_compactions/1 (RocksDB 11.0)
  • FIFO compaction options (RocksDB 11.0): max_data_files_size, use_kv_ratio_compaction
  • block_based_table_options (RocksDB 11.0/11.1):
    • index_block_search_type: binary_search | interpolation | auto
    • uniform_cv_threshold
    • prepopulate_block_cache: disable | flush_only | flush_and_compaction
  • DB options (RocksDB 11.1):
    • open_files_async (requires skip_stats_update_on_db_open = true)
    • enforce_write_buffer_manager_during_recovery
    • verify_manifest_content_on_close
  • column family option (RocksDB 11.1): memtable_batch_lookup_optimization

... (truncated)

Commits
  • 1b96c24 Merge pull request #16 from EnkiMultimedia/update-rocksdb-11.1.2
  • 7d3f186 Bump version to 3.1.1
  • e9965df Update vendored RocksDB to 11.1.2
  • f2ab999 Squashed 'deps/rocksdb/' changes from 0501555a9..9eacf114a
  • 320d54d Merge pull request #15 from jonasplaum/jonasplaum-patch-1
  • 215640f Fix blob file size option assignment
  • 0c2ea92 Bump version to 3.1.0
  • ccfc947 Merge pull request #14 from EnkiMultimedia/encrypted-env
  • 491cf5e Document the encrypted env
  • c588d99 Add AES-256-CTR encrypted env
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [rocksdb](https://github.com/EnkiMultimedia/erlang-rocksdb) from 2.6.2 to 3.1.1.
- [Release notes](https://github.com/EnkiMultimedia/erlang-rocksdb/releases)
- [Changelog](https://github.com/EnkiMultimedia/erlang-rocksdb/blob/master/CHANGELOG.md)
- [Commits](EnkiMultimedia/erlang-rocksdb@2.6.2...3.1.1)

---
updated-dependencies:
- dependency-name: rocksdb
  dependency-version: 3.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Jul 11, 2026

Copy link
Copy Markdown
Author

Labels

The following labels could not be found: elixir. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot Bot added the dependencies Dependency updates label Jul 11, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependency updates

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants