Skip to content

Commit

Permalink
Document changes for inmemory backend with Janusgraph 0.5.0 upgrade
Browse files Browse the repository at this point in the history
Fixes #4532

Signed-off-by: Fiete Ostkamp <[email protected]>
(cherry picked from commit 56aa0d0)
  • Loading branch information
FieteO authored and porunov committed Aug 16, 2024
1 parent ab4d9e2 commit ab422d7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -1153,6 +1153,28 @@ BerkeleyDB storage configured with [SHARED_CACHE](https://docs.oracle.com/cd/E17

If you are using `janusgraph.sh` to start your instance, the default logging has been changed from `log` to `logs`

##### In-Memory backend moved into dedicated module

The built-in in-memory backend has been moved into a dedicated module.
Users who use it for instance in tests, have to explicitly declare it as a dependency:

/// tab | Maven
```xml
<dependency>
<groupId>org.janusgraph</groupId>
<artifactId>janusgraph-inmemory</artifactId>
<scope>test</scope>
<version>0.5.0</version>
</dependency>
```
///

/// tab | Gradle
```groovy
implementation 'org.janusgraph:janusgraph-inmemory:0.5.0'
```
///

### Version 0.4.1 (Release Date: January 14, 2020)

/// tab | Maven
Expand Down

0 comments on commit ab422d7

Please sign in to comment.