Current section

Files

Jump to
ets CHANGELOG.md
Raw

CHANGELOG.md

# Changelog
## 0.7.2
* Handle and return :write_protected error when inserting into a non-public set from a different process
* Handle and return :invalid_select_spec error
## 0.7.1
* Handle and return :record_too_small when size of inserted record is smaller than keypos
## 0.7.0
* Add `Access` protocol for `KeyValueSet` - Thanks @am-kantox
* Fix return issue in `KeyValueSet` delete/delete_all - Thanks @am-kantox
* Add documentation for choosing which table to use
## 0.6.0
* Add `Ets.Set.KeyValueSet`
## 0.5.0
* Handle and return `:table_already_exists` on `new`
* Fix spec for `Set.get` to reflect possible nil return
* Implemented `delete_all` for `Set` and `Bag`
* Implemented `select` for `Set` and `Bag`
* Implemented `select_delete` for `Set` and `Bag`
* Implemented `get_element`/`lookup_element` for `Set` and `Bag`
* Add `Bag`s to `Ets.all`
* Add list default option values in `new` documentation
## 0.4.0
* Implement `Ets.Bag`
## 0.3.0
* Combined `put_multi` into `put` and `put_multi_new` into `put_new`
* `put_new` with existing key(s) is no longer an error condition
* Catch list of non-tuples passed to `put` or `put_new`
## 0.2.2
* Fix issue with docs
## 0.2.1
* Add `get_table` to access underlying ets table reference (to directly access not-yet-implemented functions of `:ets`)
## 0.2.0
* Redesign from ground up to use module/struct based approach
* Implemented `Ets.Set` and `Ets.Base`
* Set up CI and Readme badges