Skip to content

Commit

Permalink
update changelog - fix #53, #58, #86
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Mar 3, 2021
1 parent fc3ef47 commit 34efadb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -396,9 +396,17 @@ Changes:
unnecessary failures during edge case connexion problems.
- Add support of ``title`` and ``version`` field of ``builtin`` processes.

- Provide HTTP links to corresponding items of job in status JSON body (#58).
- Provide OGC compliance of ``<job-uri>/results`` response schema as well as some expected ``code``/``description``
fields in case where the request fails.
- Add ``<job-uri>/outputs`` providing the 'old' format of the job results as well as ``<job-uri>/inputs`` to retrieve
the inputs that were provided during job submission (#86).
- Add more reference/documentation links to `WPS-1/2` and update conformance references (#53).

Fixes:
------

<<<<<<< 8b37e0af5db9f2071f2f51ffc1ab571ceb072161
- Patch ``builtin`` process execution failing since ``cwltool 2.x`` update.
- Avoid long fetch operation using streamed request that defaulted to chuck size of 1.
Now, we use an appropriate size according to available memory.
Expand All @@ -420,6 +428,9 @@ Changes:

- Provide a way to override the external URL reported by `WPS-1/2` and `WPS-REST` via configuration settings allowing
for more advanced server-side results in response bodies.
=======
- Handle additional trailing slash resulting in ``NotFound`` that corresponds to a valid route without the slash.
>>>>>>> update changelog - fix #53, #58, #86

`1.2.0 <https://github.com/crim-ca/weaver/tree/1.2.0>`_ (2020-03-06)
========================================================================
Expand Down
6 changes: 5 additions & 1 deletion weaver/wps_restapi/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ def api_frontpage_body(settings):
weaver_api_ref = settings.get("weaver.wps_restapi_ref", None) if weaver_api else None
weaver_wps = asbool(settings.get("weaver.wps"))
weaver_wps_url = get_wps_url(settings) if weaver_wps else None
weaver_wps_doc = settings.get("weaver.wps_doc", None) if weaver_wps else None
weaver_wps_ref = settings.get("weaver.wps_ref", None) if weaver_wps else None
weaver_conform_url = weaver_url + sd.api_conformance_service.path
weaver_process_url = weaver_url + sd.processes_service.path
weaver_links = [
Expand Down Expand Up @@ -127,7 +129,9 @@ def api_frontpage_body(settings):
"url": weaver_api_url,
"api": weaver_api_def},
{"name": "wps", "enabled": weaver_wps,
"url": weaver_wps_url},
"url": weaver_wps_url,
"doc": weaver_wps_doc,
"ref": weaver_wps_ref},
],
"links": weaver_links,
}
Expand Down

0 comments on commit 34efadb

Please sign in to comment.