Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@
- **BREAKING**: In cases where there is no document base (for instance, when
using a string as input), 'http://example.org/base/' is used as the base IRI
when `@base` is absent or explicitely set to `null`.
- **BREAKING**: Some internal parameters were renamed from camelCase to pythonic:
- `requestProfile` to `request_profile` in `load_document()`
- `rdfDirection` to `rdf_direction` in `_list_to_rdf()` and `_object_to_rdf()`

## 2.0.4 - 2024-02-16

Expand Down
2 changes: 1 addition & 1 deletion lib/pyld/context_resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def _fetch_context(self, active_ctx, url, cycles):
remote_doc = jsonld.load_document(
url,
{'documentLoader': self.document_loader},
requestProfile='http://www.w3.org/ns/json-ld#context',
request_profile='http://www.w3.org/ns/json-ld#context',
)
context = remote_doc.get('document', url)
except Exception as cause:
Expand Down
Loading