-
Notifications
You must be signed in to change notification settings - Fork 93
@lrytz
lrytz
released this
27 May 09:27
·
25 commits
to main
since this release
c2c76c8
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Notable Changes
Use immutable.Seq
: for Scala 3 and 2.13, the result type of Node.child
/ Node.nonEmptyChildren
/ Node.attribute
is changed from collection.Seq
to immutable.Seq
(#760)
- Scala 2.13 changed the default
scala.Seq
alias toimmutable.Seq
, but the scala-xml library continued to usecollection.Seq
. This often results in.toSeq
conversions when using scala-xml in Scala 3 or 2.13. - scala-xml was always immutable in spirit,
NodeSeq
extendsimmutable.Seq
- A related change to the Scala compiler is under review to encode XML literals as
Vector[Node]
Other Changes
Full Changelog: v2.3.0...v2.4.0
Assets 2
2 people reacted