From 3024a725c67db83307657b079effb686adcaf162 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Thu, 26 Jan 2023 13:34:31 -0800 Subject: [PATCH 1/3] add Leonid to maintainers --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b3b9e1cd..99c58094 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ How to documentation is available in the [wiki](https://github.com/scala/scala-x ## Maintenance status -This library is community-maintained. The lead maintainer is [@aaron_s_hawley](https://github.com/ashawley). +This library is community-maintained. Maintainers with merge rights include [@aaron_s_hawley](https://github.com/ashawley) and [@dubinsky](https://github.com/dubinsky). Contributors are welcome, and should read the [contributor guide](https://github.com/scala/scala-xml/wiki/Contributor-guide) on the wiki. From 30fc3ad1c1a9434b8ad14718b84b10eb1882f059 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Thu, 26 Jan 2023 13:35:09 -0800 Subject: [PATCH 2/3] remove security section from readme since #17 is considered fixed, we have more secure defaults now --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index 99c58094..d4886907 100644 --- a/README.md +++ b/README.md @@ -26,10 +26,6 @@ here, but not all of them. Community assistance identifying and migrating still-relevant issues is welcome. See [this page](https://github.com/scala/scala-xml/issues/62) for details. -## Security best practices - -The XML spec has some features that are best turned off, to avoid unsavory things like file system access, DoS attacks,... Issue [#17](https://github.com/scala/scala-xml/issues/17) tracks the recommended way of configuring the XML parser used by scala-xml to avoid these. This is by no means an exhaustive list. We'll be happy to incorporate your suggestions -- just comment on the ticket! - ## Related projects - [Advxml](https://github.com/geirolz/advxml) - Functional library combining scala-xml with cats-core From dbb1aa8172fd787530fe0f26b5e7191925e4d0f6 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Thu, 26 Jan 2023 13:37:52 -0800 Subject: [PATCH 3/3] minor readme tweaks --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d4886907..10f310d2 100644 --- a/README.md +++ b/README.md @@ -5,23 +5,23 @@ scala-xml [![Gitter](https://badges.gitter.im/Join+Chat.svg)](https://gitter.im/scala/scala-xml) ========= -The standard Scala XML library. Please file XML issues here, not at https://github.com/scala/bug/issues. +The standard Scala XML library. Please file XML issues here, not at https://github.com/scala/bug/issues or http://github.com/lampepfl/dotty/issues. -The decoupling of scala-xml from the Scala compiler and standard library is possible because the compiler desugars XML literals in Scala source code into a set of method calls. Alternative implementations of these calls are welcome! (The calls are unfortunately only defined by the [implementation](https://github.com/scala/scala/blob/2.11.x/src/compiler/scala/tools/nsc/ast/parser/SymbolicXMLBuilder.scala).) +The decoupling of scala-xml from the Scala compiler and standard library is possible because the compiler desugars XML literals in Scala source code into a set of method calls. Alternative implementations of these calls are welcome! (This [implementation](https://github.com/scala/scala/blob/2.11.x/src/compiler/scala/tools/nsc/ast/parser/SymbolicXMLBuilder.scala) shows the calls needed.) API documentation is available [here](https://javadoc.io/doc/org.scala-lang.modules/scala-xml_2.13/). -How to documentation is available in the [wiki](https://github.com/scala/scala-xml/wiki) +How-to documentation is available in the [wiki](https://github.com/scala/scala-xml/wiki) ## Maintenance status This library is community-maintained. Maintainers with merge rights include [@aaron_s_hawley](https://github.com/ashawley) and [@dubinsky](https://github.com/dubinsky). -Contributors are welcome, and should read the [contributor guide](https://github.com/scala/scala-xml/wiki/Contributor-guide) on the wiki. +Contributors are welcome. Please consult the [contributor guide](https://github.com/scala/scala-xml/wiki/Contributor-guide) on the wiki. ## Issues -Many old issues from the Scala JIRA issue tracker have been migrated +Some old issues from the Scala issue tracker have been migrated here, but not all of them. Community assistance identifying and migrating still-relevant issues is welcome. See [this page](https://github.com/scala/scala-xml/issues/62) for details.