File tree 4 files changed +4
-149
lines changed 4 files changed +4
-149
lines changed Original file line number Diff line number Diff line change 34
34
- ** BREAKING** : Remove deprecated ` loadDocument ` API and obsolete
35
35
` DocumentCache ` .
36
36
- ** BREAKING** : Remove deprecated support for parsing legacy dataset format.
37
+ - ** BREAKING** : RDFa parser moved to ` jsonld-rdfa ` package.
37
38
38
39
## 1.8.1 - 2019-10-24
39
40
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ const util = require('./util');
38
38
const IdentifierIssuer = util . IdentifierIssuer ;
39
39
const JsonLdError = require ( './JsonLdError' ) ;
40
40
const NQuads = require ( './NQuads' ) ;
41
- const Rdfa = require ( './Rdfa' ) ;
42
41
43
42
const { expand : _expand } = require ( './expand' ) ;
44
43
const { flatten : _flatten } = require ( './flatten' ) ;
@@ -950,9 +949,6 @@ jsonld.unregisterRDFParser = function(contentType) {
950
949
jsonld . registerRDFParser ( 'application/n-quads' , NQuads . parse ) ;
951
950
jsonld . registerRDFParser ( 'application/nquads' , NQuads . parse ) ;
952
951
953
- // register the RDFa API RDF parser
954
- jsonld . registerRDFParser ( 'rdfa-api' , Rdfa . parse ) ;
955
-
956
952
/* URL API */
957
953
jsonld . url = require ( './url' ) ;
958
954
Original file line number Diff line number Diff line change 33
33
"canonicalize" : " ^1.0.1" ,
34
34
"rdf-canonize" : " ^1.0.2" ,
35
35
"request" : " ^2.88.0" ,
36
- "semver" : " ^6.3.0" ,
37
- "xmldom" : " 0.1.19"
36
+ "semver" : " ^6.3.0"
38
37
},
39
38
"devDependencies" : {
40
39
"@babel/cli" : " ^7.7.5" ,
84
83
},
85
84
"keywords" : [
86
85
" JSON" ,
87
- " Linked Data" ,
88
86
" JSON-LD" ,
87
+ " Linked Data" ,
89
88
" RDF" ,
90
89
" Semantic Web" ,
91
90
" jsonld"
120
119
"jsonld-request" : false ,
121
120
"request" : false ,
122
121
"url" : false ,
123
- "util" : false ,
124
- "xmldom" : false
122
+ "util" : false
125
123
}
126
124
}
You can’t perform that action at this time.
0 commit comments