This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 45f0ce455c1929eb704d5cce9877141aad90766b Author: Benoit Tellier <[email protected]> AuthorDate: Fri Mar 6 11:22:28 2020 +0700 JAMES-3044 Upgrade JSOUP to 1.13.1 - Many performance enhancement are shipped in 1.13.1 ``` memory optimizations, reducing the retained size of a Document by ~ 39%, and allocations by ~ 9% ``` Ships: * Bugfix: in CharacterReader when parsing an input stream, could throw a Mark Invalid exception if the reader was marked, a bufferUp occurred, and then the reader was rewound. <https://github.com/jhy/jsoup/issues/1324> Which we noticed in production, even after a 1.12.2 upgrade. Other bug fixes and enhancements are documented. CF https://github.com/jhy/jsoup/blob/master/CHANGES --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7bee095..f83608b 100644 --- a/pom.xml +++ b/pom.xml @@ -2543,7 +2543,7 @@ <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> - <version>1.12.2</version> + <version>1.13.1</version> </dependency> <dependency> <groupId>org.mockito</groupId> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
