Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

API conformance references by category and OGC Best Practices #420

Merged
merged 2 commits into from
Mar 31, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,18 @@ Changes:
- Add ``mutable`` field to ``Process`` summary listing and detailed descriptions for conformance
(resolves `#180 <https://github.com/crim-ca/weaver/issues/180>`_).
- Improve ``Process`` undeployment to consider running ``Job`` to block its removal while in use.
- Add ``category`` query parameter to ``/conformance`` endpoint allowing to filter items
by ``conf`` (conformance), ``rec`` (recommendation), ``req`` (requirement), ``per`` (permission) or ``all``
references. By default, return the ``conf`` representation which is the expected definitions by `OGC API`
conformance validators.
- Add multiple conformance items related to `CWL`
and `OGC Best Practice for Earth Observation Application Package <https://docs.ogc.org/bp/20-089r1.html>`_
definitions (relates to
`#56 <https://github.com/crim-ca/weaver/issues/56>`_,
`#103 <https://github.com/crim-ca/weaver/issues/103>`_,
`#105 <https://github.com/crim-ca/weaver/issues/105>`_,
`#294 <https://github.com/crim-ca/weaver/issues/294>`_,
`#399 <https://github.com/crim-ca/weaver/issues/399>`_).

Fixes:
------
Expand Down
1 change: 0 additions & 1 deletion weaver/typedefs.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,6 @@ class UpdateStatusPartialFunction(Protocol):
def __call__(self, message: str, progress: Number, status: AnyStatusType, *args: Any, **kwargs: Any) -> None:
pass

# others
DatetimeIntervalType = TypedDict("DatetimeIntervalType", {
"before": datetime,
"after": datetime,
Expand Down
Loading