Skip to content

Commit

Permalink
Updated version and CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
dmichaels-harvard committed Sep 8, 2023
1 parent df706bf commit aaba498
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ Change Log
----------


7.11.0
======

* In ``ff_utils``:

* Fix in ``get_schema`` and ``get_schemas`` for the ``portal_vapp`` case needing a leading slash on the URL.
* Fix in ``get_schema`` and ``get_schemas`` for the ``portal_vapp`` returning webtest.response.TestResponse
which has a ``json`` object property rather than a function.

7.10.0
======

Expand Down
2 changes: 1 addition & 1 deletion dcicutils/ff_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1488,7 +1488,7 @@ def get_response_json(res):
it is not present. Used with the metadata functions.
"""
try:
# TODO: Fix for res being from vapp (webtest.response.TestRespons) call, using MockResponse ...
# TODO: Fix for res being from vapp (webtest.response.TestResponse) call, using MockResponse ...
res_json = res.json()
except Exception:
raise Exception('Cannot get json for request to %s. Status'
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dcicutils"
version = "7.10.0"
version = "7.11.0"
description = "Utility package for interacting with the 4DN Data Portal and other 4DN resources"
authors = ["4DN-DCIC Team <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit aaba498

Please sign in to comment.