Releases: geirolz/advxml
Releases · geirolz/advxml
v2.1.0
This release introduce some syntax breaking changes so please check the documentation.
This release fix bug #63
Major changes:
- XmlZoom is no more a type alias but it is a case class now, so for example
val z : XmlZoom = _ \ "firstNodeUnderRoot"
Has been replaced by
val z : XmlZoom = root \ "firstNodeUnderRoot"
$(XmlZoom)
wrapping is no more required
v2.0.0
Changes
- Refactor packages
- Improve XmlRule with Cats
- Improve SetAttrs
- Improve RemoveAttrs
- Improve Predicate
- Transform Converters to Kleisli in order to avoid implict conversions.
- Refactor ValidateEx, add ValidatedEx tests.
- Improve XmlTraverserSyntax.
Updates
- Update scala-xml to 2.0.0-M1
- Update Sbt to 1.3.4
- Update cats-core from 2.0.0 to 2.1.0
- Update sbt-ci-release from 1.4.31 to 1.5.0
- Update scalatest from 3.0.8 to 3.1.0
News
- NestedMapSyntax
- Prepend action modifier
- Add mapAs and flatMapAs to Converter Ops.
Bugfix
- Fix bug, inverse order of modifiers.
v2.0.0-RC3
Changes:
- Improve root transformation.
- Create CODE_OF_CONDUCT
Bug Fixed
- Bug #46 reported by @erickneverson
v2.0.0-RC2
Changes
- Converters syntax simplified
- Tests improvements
Updates
- Update Sbt to 1.3.6
v2.0.0-RC1
Changes
- Refactor packages
- Improve XmlRule with Cats
- Improve SetAttrs
- Improve RemoveAttrs
- Improve Predicate
- Change transform Converters to Kleisli in order to avoid implict conversions.
- Refactor ValidateEx, add ValidatedEx tests.
- Improve docs
- Improve XmlTraverserSyntax.
Updates
- Update Sbt to 1.3.4
- Update cats-core 2.0.0 -> 2.1.0
News
- Prepend action modifier
- Add mapAs and flatMapAs to Converter Ops.
- NestedMapSyntax(provides nMap and nFlatmap)
Bugfix
- Fix bug, inverse order of modifiers.