From 06fc111e139bba84aec1d80c5d2054339d41816e Mon Sep 17 00:00:00 2001 From: Michael Chin Date: Mon, 8 Jul 2024 12:03:31 -0700 Subject: [PATCH 1/3] Disable output from get_config --- src/graph_notebook/configuration/get_config.py | 1 - 1 file changed, 1 deletion(-) 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) From 84b63dda5d8bec1ba98a5eefc5c565da0620b4e1 Mon Sep 17 00:00:00 2001 From: Michael Chin Date: Mon, 8 Jul 2024 12:10:46 -0700 Subject: [PATCH 2/3] update changelog --- ChangeLog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/ChangeLog.md b/ChangeLog.md index 2e5912bd..7b12457b 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -13,6 +13,7 @@ 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)) From 8601f209ad1232522ba8eae789856525537fabd5 Mon Sep 17 00:00:00 2001 From: Michael Chin Date: Mon, 8 Jul 2024 12:11:45 -0700 Subject: [PATCH 3/3] update changelog --- ChangeLog.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ChangeLog.md b/ChangeLog.md index 7b12457b..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)) @@ -16,6 +17,7 @@ Starting with v1.31.6, this file will contain a record of major features and upd - 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)