diff --git a/ChangeLog.md b/ChangeLog.md index 2e5912bd..e9ff12fb 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,7 @@ Starting with v1.31.6, this file will contain a record of major features and updates made in each release of graph-notebook. ## Upcoming + - New Neptune Database notebook - Games Industry Graphs ([Link to PR](https://github.com/aws/graph-notebook/pull/566)) - Path: 01-Neptune-Database > 03-Sample-Applications > 07-Games-Industry-Graphs - Added `--connected-table` option to magics with table widget output ([Link to PR](https://github.com/aws/graph-notebook/pull/634)) @@ -13,8 +14,10 @@ Starting with v1.31.6, this file will contain a record of major features and upd - Fixed `%%graph_notebook_config` error when excluding optional Gremlin section ([Link to PR](https://github.com/aws/graph-notebook/pull/633)) - Fixed `--mode` argument for Neptune DB bulk loader requests via `%load` ([Link to PR](https://github.com/aws/graph-notebook/pull/637)) - Switched to generating Jinja2 templates in sandboxed environment ([Link to PR](https://github.com/aws/graph-notebook/pull/639)) +- Removed unnecessarily verbose output from `get_config` function ([Link to PR](https://github.com/aws/graph-notebook/pull/642)) ## Release 4.4.2 (June 18, 2024) + - Set Gremlin `connection_protocol` defaults based on Neptune service when generating configuration via arguments ([Link to PR](https://github.com/aws/graph-notebook/pull/626)) ## Release 4.4.1 (June 17, 2024) diff --git a/src/graph_notebook/configuration/get_config.py b/src/graph_notebook/configuration/get_config.py index e45de9e3..7bcbc142 100644 --- a/src/graph_notebook/configuration/get_config.py +++ b/src/graph_notebook/configuration/get_config.py @@ -78,5 +78,4 @@ def get_config(path: str = DEFAULT_CONFIG_LOCATION, neptune_hosts: list = NEPTUNE_CONFIG_HOST_IDENTIFIERS) -> Configuration: with open(path) as config_file: data = json.load(config_file) - print(data) return get_config_from_dict(data=data, neptune_hosts=neptune_hosts)