mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-22 08:13:49 +00:00
fill CHANGELOG
This commit is contained in:
parent
712ed06b69
commit
82b39baada
28
CHANGELOG.md
28
CHANGELOG.md
@ -2,6 +2,34 @@
|
||||
|
||||
## 0.2.0
|
||||
|
||||
* `Repos`
|
||||
* `Exposed`
|
||||
* Now this project depend on `micro_utils.coroutines`
|
||||
* Typealias `ColumnAllocator` has been replaced to root exposed package
|
||||
* Interface `ExposedRepo` has been added
|
||||
* `ExposedCRUDRepo` now extends `ExposedRepo` instead of simple `Repo`
|
||||
* New extension `initTable` for classes which are `Table` and `ExposedRepo` at the same time
|
||||
* `KeyValue`:
|
||||
* Class `AbstractExposedReadKeyValueRepo`
|
||||
* Renamed to `ExposedReadKeyValueRepo`
|
||||
* Changed incoming types to `ColumnAllocator`
|
||||
* `open` instead of `abstract`
|
||||
* Implements `ExposedRepo`
|
||||
* Class `AbstractExposedKeyValueRepo`
|
||||
* Renamed to `ExposedKeyValueRepo`
|
||||
* Changed incoming types to `ColumnAllocator`
|
||||
* `open` instead of `abstract`
|
||||
* `OneToMany`:
|
||||
* Class `AbstractExposedReadOneToManyKeyValueRepo`
|
||||
* Renamed to `ExposedReadOneToManyKeyValueRepo`
|
||||
* Changed incoming arguments order
|
||||
* Implements `ExposedRepo`
|
||||
* Class `AbstractExposedOneToManyKeyValueRepo`
|
||||
* Renamed to `ExposedKeyValueRepo`
|
||||
* Changed incoming arguments order
|
||||
* `open` instead of `abstract`
|
||||
* Release for every `Flow` in parent interfaces
|
||||
|
||||
## 0.1.1
|
||||
|
||||
* `Versions`:
|
||||
|
@ -13,7 +13,7 @@ open class ExposedKeyValueRepo<Key, Value>(
|
||||
database: Database,
|
||||
keyColumnAllocator: ColumnAllocator<Key>,
|
||||
valueColumnAllocator: ColumnAllocator<Value>
|
||||
) : StandardKeyValueRepo<Key, Value>, ExposedRepo, ExposedReadKeyValueRepo<Key, Value>(
|
||||
) : StandardKeyValueRepo<Key, Value>, ExposedReadKeyValueRepo<Key, Value>(
|
||||
database,
|
||||
keyColumnAllocator,
|
||||
valueColumnAllocator
|
||||
|
Loading…
Reference in New Issue
Block a user