File tree Expand file tree Collapse file tree 5 files changed +1013
-1187
lines changed Expand file tree Collapse file tree 5 files changed +1013
-1187
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
All notable changes to this project will be documented in this file.
3
3
4
+ <a name =" v2.2.3 " ></a >
5
+ ## [ v2.2.3] ( https://github.com/rdfjs/rdfxml-streaming-parser.js/compare/v2.2.2...v2.2.3 ) - 2023-06-05
6
+
7
+ ### Fixed
8
+ * [ Migrate to @rubensworks/saxes ] ( https://github.com/rdfjs/rdfxml-streaming-parser.js/commit/620c08c3e3d7560ad9292abc258fd0ff958c67e7 )
9
+ This fixes compilation errors on TypeScript 5
10
+
11
+ <a name =" v2.2.2 " ></a >
12
+ ## [ v2.2.2] ( https://github.com/rdfjs/rdfxml-streaming-parser.js/compare/v2.2.1...v2.2.2 ) - 2023-04-06
13
+
14
+ ### Fixed
15
+ * [ Fix xmlns without prefix being interpreted as property attribute] ( https://github.com/rdfjs/rdfxml-streaming-parser.js/commit/a33f030f78132950b5a87cfaac0c992de05e6c8c )
16
+
4
17
<a name =" v2.2.1 " ></a >
5
18
## [ v2.2.1] ( https://github.com/rdfjs/rdfxml-streaming-parser.js/compare/v2.2.0...v2.2.1 ) - 2022-11-09
6
19
Original file line number Diff line number Diff line change 1
1
import * as RDF from "@rdfjs/types" ;
2
2
import { resolve } from "relative-to-absolute-iri" ;
3
- import { SaxesParser , SaxesTagNS } from "saxes" ;
3
+ import { SaxesParser , SaxesTagNS } from "@rubensworks/ saxes" ;
4
4
import { PassThrough , Transform } from "readable-stream" ;
5
5
import { ParseError } from "./ParseError" ;
6
6
import { DataFactory } from "rdf-data-factory" ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " rdfxml-streaming-parser" ,
3
- "version" : " 2.2.1 " ,
3
+ "version" : " 2.2.3 " ,
4
4
"description" : " Streaming RDF/XML parser" ,
5
5
"keywords" : [
6
6
" rdf/xml" ,
51
51
"ts-loader" : " ^9.3.1" ,
52
52
"tslint" : " ^6.0.0" ,
53
53
"tslint-eslint-rules" : " ^5.3.1" ,
54
- "typescript" : " ^4.3.5 " ,
54
+ "typescript" : " ^5.1.3 " ,
55
55
"webpack" : " ^5.73.0" ,
56
56
"webpack-cli" : " ^4.10.0"
57
57
},
97
97
"rdf-data-factory" : " ^1.1.0" ,
98
98
"relative-to-absolute-iri" : " ^1.0.0" ,
99
99
"readable-stream" : " ^4.0.0" ,
100
- "saxes" : " ^6.0.0 " ,
100
+ "@rubensworks/ saxes" : " ^6.0.1 " ,
101
101
"validate-iri" : " ^1.0.0"
102
102
},
103
103
"sideEffects" : false
Original file line number Diff line number Diff line change 1
1
import "jest-rdf" ;
2
2
import * as RDF from "@rdfjs/types" ;
3
- import { SaxesParser } from "saxes" ;
3
+ import { SaxesParser } from "@rubensworks/ saxes" ;
4
4
import { PassThrough } from "stream" ;
5
5
import { RdfXmlParser } from "../lib/RdfXmlParser" ;
6
6
import { DataFactory } from "rdf-data-factory" ;
You can’t perform that action at this time.
0 commit comments