Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
## Release notes

### 1.7.0

* [#49](https://github.com/FoundationDB/fdb-document-layer/issues/49) Slow query logging
* [#145](https://github.com/FoundationDB/fdb-document-layer/pull/145) Added `connectionStatus` command
* [#150](https://github.com/FoundationDB/fdb-document-layer/pull/150) Removed explicit transactions. They will be added back with MongoDB v4.0 compatibility
* [#151](https://github.com/FoundationDB/fdb-document-layer/issues/151) Fixed `$addToSet` update operator to return `None` values properly with arrays
* [#154](https://github.com/FoundationDB/fdb-document-layer/pull/154) Better `update` command testing
* [#161](https://github.com/FoundationDB/fdb-document-layer/pull/161) Added more metrics
* [#165](https://github.com/FoundationDB/fdb-document-layer/pull/165) Fix `FlowLock` usage, which is causing transaction timeouts.
* [#168](https://github.com/FoundationDB/fdb-document-layer/pull/168) Deleted document count returned with correct type, `int` instead of `string`
* [#169](https://github.com/FoundationDB/fdb-document-layer/pull/169) DocLayer now returns error as `$err` as the drivers except


### 1.6.4

* [#84](https://github.com/FoundationDB/fdb-document-layer/issues/84) Fix for `getIndexes()`
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.11)
project(fdb_doc_layer VERSION 1.6.5 LANGUAGES C CXX)
project(fdb_doc_layer VERSION 1.7.0 LANGUAGES C CXX)

set(default_build_type "RelWithDbgInfo")
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
Expand Down