-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Actually don't report duplication for all arrays without IDs
OpenDataServices/cove#1246 Previous attempt to fix this used uniq() instead of not uniq(), so always got the errors incorrect — reporting duplicates when there are none, and not reporting when there are.
- Loading branch information
Showing
6 changed files
with
146 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
setup( | ||
name="libcove", | ||
version="0.12.1", | ||
version="0.12.2", | ||
author="Open Data Services", | ||
author_email="[email protected]", | ||
url="https://github.com/OpenDataServices/lib-cove", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"version": "1.1", | ||
"publishedDate": "2019-09-18T17:56:21.078Z", | ||
"publisher": { | ||
"name": "A Publisher Name" | ||
}, | ||
"uri": "http://example.org", | ||
"packages": ["http://example.org/1", "http://example.org/2"], | ||
"records": [ | ||
{ | ||
"releases": [{ | ||
"url": "http://example.org/1#1", | ||
"date": "2019-09-18T17:56:21.078Z" | ||
}] | ||
}, | ||
{ | ||
"releases": [{ | ||
"url": "http://example.org/2#1", | ||
"date": "2019-09-18T17:56:21.078Z" | ||
}] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"version": "1.1", | ||
"publishedDate": "2019-09-18T17:56:21.078Z", | ||
"publisher": { | ||
"name": "A Publisher Name" | ||
}, | ||
"uri": "http://example.org", | ||
"releases": [ | ||
{ | ||
"ocid": "EXAMPLE-1", | ||
"date": "2019-09-18T17:56:21.078Z", | ||
"initiationType": "tender", | ||
"tag": ["planning"] | ||
}, | ||
{ | ||
"ocid": "EXAMPLE-1", | ||
"date": "2019-09-19T17:56:21.078Z", | ||
"initiationType": "tender", | ||
"tag": ["tender"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters