diff --git a/ChangeLog.md b/ChangeLog.md index ae25bc1e..30b13f53 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -8,7 +8,8 @@ Starting with v1.31.6, this file will contain a record of major features and upd - Upgraded Neo4j Bolt driver to v5.x ([Link to PR](https://github.com/aws/graph-notebook/pull/682)) - Added `%get_import_task` line magic ([Link to PR](https://github.com/aws/graph-notebook/pull/668)) - Added `--export-to` JSON file option to `%%graph_notebook_config` ([Link to PR](https://github.com/aws/graph-notebook/pull/684)) -- Fix ipython config dir logic ([Link to PR](https://github.com/aws/graph-notebook/pull/687)) +- Improved iPython config directory retrieval logic ([Link to PR](https://github.com/aws/graph-notebook/pull/687)) +- Fixed `%db_reset` output for token modes ([Link to PR](https://github.com/aws/graph-notebook/pull/691)) ## Release 4.5.2 (August 15, 2024) diff --git a/src/graph_notebook/magics/graph_magic.py b/src/graph_notebook/magics/graph_magic.py index ac7dfb2c..bff554df 100644 --- a/src/graph_notebook/magics/graph_magic.py +++ b/src/graph_notebook/magics/graph_magic.py @@ -1967,7 +1967,7 @@ def on_button_cancel_clicked(b): @display_exceptions @neptune_db_only def db_reset(self, line, local_ns: dict = None): - self.reset(line, local_ns, service=NEPTUNE_DB_SERVICE_NAME) + return self.reset(line, local_ns, service=NEPTUNE_DB_SERVICE_NAME) @line_magic @needs_local_scope