mirror of
https://github.com/itplr-kosit/validator.git
synced 2026-05-25 16:55:39 +00:00
Resolve "Allow more than 3 customLevel elements in scenarios"
This commit is contained in:
parent
34a109d8e6
commit
705d31fdc8
3 changed files with 12 additions and 5 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -38,6 +38,6 @@ src/generated
|
||||||
.settings
|
.settings
|
||||||
.vscode
|
.vscode
|
||||||
*.code-workspace
|
*.code-workspace
|
||||||
|
*.xpr
|
||||||
# Testing stuff
|
# Testing stuff
|
||||||
xrechnung
|
xrechnung
|
||||||
|
|
|
||||||
|
|
@ -5,16 +5,23 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Allow more than 3 customLevel elements in scenarios
|
||||||
|
|
||||||
## 1.4.0
|
## 1.4.0
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- date conversion when using [ConfigurationBuilder#date(Date)](https://github.com/itplr-kosit/validator/blob/d7beb1040418ae5cbeb9427532fd87482f55756c/src/main/java/de/kosit/validationtool/config/ConfigurationBuilder.java#L109)
|
|
||||||
|
- date conversion when
|
||||||
|
using [ConfigurationBuilder#date(Date)](https://github.com/itplr-kosit/validator/blob/d7beb1040418ae5cbeb9427532fd87482f55756c/src/main/java/de/kosit/validationtool/config/ConfigurationBuilder.java#L109)
|
||||||
- [CLI] [#51](https://github.com/itplr-kosit/validator/issues/51) Suffix of report xml is missing
|
- [CLI] [#51](https://github.com/itplr-kosit/validator/issues/51) Suffix of report xml is missing
|
||||||
- [#53](https://github.com/itplr-kosit/validator/issues/53) Fix copyright and licensing information
|
- [#53](https://github.com/itplr-kosit/validator/issues/53) Fix copyright and licensing information
|
||||||
- [#56](https://github.com/itplr-kosit/validator/issues/56) `namespace` element content needs trimming
|
- [#56](https://github.com/itplr-kosit/validator/issues/56) `namespace` element content needs trimming
|
||||||
- [DAEMON] [#57](https://github.com/itplr-kosit/validator/issues/57) Reading large inputs correctly
|
- [DAEMON] [#57](https://github.com/itplr-kosit/validator/issues/57) Reading large inputs correctly
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- read saxon XdmNode with InputFactory
|
- read saxon XdmNode with InputFactory
|
||||||
- [CLI] custom output without the various log messages
|
- [CLI] custom output without the various log messages
|
||||||
- [CLI] options to set the log level (`-X` = full debug output, `-l <level>` set a specific level)
|
- [CLI] options to set the log level (`-X` = full debug output, `-l <level>` set a specific level)
|
||||||
|
|
|
||||||
|
|
@ -126,7 +126,7 @@
|
||||||
<xs:complexType name="CreateReportType">
|
<xs:complexType name="CreateReportType">
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element ref="s:resource" />
|
<xs:element ref="s:resource" />
|
||||||
<xs:element maxOccurs="3" minOccurs="0" name="customLevel" type="s:CustomErrorLevel" />
|
<xs:element maxOccurs="unbounded" minOccurs="0" name="customLevel" type="s:CustomErrorLevel" />
|
||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue