Skip to content

Commit e5433fb

Browse files
committed
Backport #105 in 5.3 branch
1 parent 6c4a0b7 commit e5433fb

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

release-notes/CREDITS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,9 @@ Ioan Marcu (ioanmarcu@github)
99
* Reported #74, suggested fix: Infinite loop in BijectiveNsMap#addGeneratedMapping
1010
when ctxt.getNamespaceURI(prefix) returns an empty String
1111
(5.2.1)
12+
13+
Colm O hEigeartaigh (coheigea@github)
14+
15+
* Reported #105, contributed fix: W3CSchemaFactory constructor incorrectly references
16+
relaxng
17+
(5.3.1)

release-notes/VERSION

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ Project: woodstox
88

99
#78: Shade MSV dependency
1010

11+
5.3.1 (not yet released)
12+
13+
#105: W3CSchemaFactory constructor incorrectly references relaxng
14+
1115
5.3.0 (15-Jul-2019)
1216

1317
#58: Reading comment comments after Root Element closed sometimes throws `NullPointerException`

src/main/java/com/ctc/wstx/msv/W3CSchemaFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class W3CSchemaFactory
4747

4848
public W3CSchemaFactory()
4949
{
50-
super(XMLValidationSchema.SCHEMA_ID_RELAXNG);
50+
super(XMLValidationSchema.SCHEMA_ID_W3C_SCHEMA);
5151
}
5252

5353
/*

0 commit comments

Comments
 (0)