Skip to content

Commit

Permalink
Update Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
NSeydoux committed Mar 27, 2024
1 parent 4283bba commit f552370
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,30 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html

The following changes are pending, and will be applied on the next major release:

## Unreleased changes

### Patch changes

- `getThingAll(dataset, { allowacceptBlankNodes: true })` now returns all Blank Nodes
subjects in the Dataset, in particular including those part of a single chain of
predicates. For instance, given the following dataset:

```
@prefix ex: <https://example.org/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
ex:camille
foaf:knows [
foaf:name "Dominique"@en ;
] .
;
```

`getThingAll(dataset, { allowacceptBlankNodes: true })` would have previously returned
a single element for the Named Node (`ex:camille`), it will now also include a second
element for the Blank Node. Blank Node identifiers are by definition unstable and shouldn't
be relied upon beyond local resolution.

## [2.0.1]

The following changes have been implemented but not released yet:
Expand Down

0 comments on commit f552370

Please sign in to comment.