Skip to content

Commit

Permalink
version bump to 2.1.3 (#128)
Browse files Browse the repository at this point in the history
* version bump to 2.1.3

* Fix integration tests

Co-authored-by: Kline <[email protected]>
Co-authored-by: Michael Chin <[email protected]>
  • Loading branch information
3 people authored Jun 22, 2021
1 parent f361f5e commit acf2187
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Starting with v1.31.6, this file will contain a record of major features and updates made in each release of graph-notebook.

## Upcoming


## Release 2.1.3 (June 18, 2021)

- Support dictionary value access in variable injection([Link to PR](https://github.com/aws/graph-notebook/pull/126))

## Release 2.1.2 (May 10, 2021)
Expand Down
2 changes: 1 addition & 1 deletion src/graph_notebook/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
SPDX-License-Identifier: Apache-2.0
"""

__version__ = '2.1.2'
__version__ = '2.1.3'
2 changes: 1 addition & 1 deletion src/graph_notebook/widgets/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graph_notebook_widgets",
"version": "2.1.2",
"version": "2.1.3",
"author": "amazon",
"description": "A Custom Jupyter Library for rendering NetworkX MultiDiGraphs using vis-network",
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions test/integration/iam/sparql/test_sparql_status_with_iam.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ def test_do_sparql_status_nonexistent(self):
def test_do_sparql_cancel_nonexistent(self):
query_id = "invalid-guid"
cancel_res = self.client.sparql_cancel(query_id)
assert cancel_res.status_code == 200
assert cancel_res.content == b''
assert cancel_res.status_code == 400
assert cancel_res.content == b'Invalid queryId (not a UUID): invalid-guid'

@pytest.mark.iam
@pytest.mark.neptune
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ def test_do_sparql_status_nonexistent(self):
def test_do_sparql_cancel_nonexistent(self):
query_id = "invalid-guid"
cancel_res = self.client.sparql_cancel(query_id)
assert cancel_res.status_code == 200
assert cancel_res.content == b''
assert cancel_res.status_code == 400
assert cancel_res.content == b'Invalid queryId (not a UUID): invalid-guid'

@pytest.mark.neptune
def test_do_sparql_cancel_empty_query_id(self):
Expand Down

0 comments on commit acf2187

Please sign in to comment.