1
0
Fork 0
mirror of https://github.com/crawler-commons/crawler-commons synced 2024-05-12 00:26:03 +02:00

Released 0.9

This commit is contained in:
Julien Nioche 2017-10-31 09:42:57 +00:00
parent 535f96236c
commit af0a013776
2 changed files with 11 additions and 0 deletions

View File

@ -1,5 +1,7 @@
Crawler-Commons Change Log
Current Development 0.10-SNAPSHOT (yyyy-mm-dd)
Release 0.9 (2017-10-27)
- [Sitemaps] Removed DOM-based sitemap parser (jnioche) #177
- Incorrect domains returned by EffectiveTldFinder (sebastian-nagel) #172

View File

@ -9,6 +9,7 @@ Crawler-Commons is a set of reusable Java components that implement functionalit
## Javadocs
* [0.9](http://crawler-commons.github.io/crawler-commons/0.9/)
* [0.8](http://crawler-commons.github.io/crawler-commons/0.8/)
* [0.7](http://crawler-commons.github.io/crawler-commons/0.7/)
* [0.6](http://crawler-commons.github.io/crawler-commons/0.6/apidocs/)
@ -23,6 +24,14 @@ If you find an issue, please file a report [here](https://github.com/crawler-com
# Crawler-Commons News
## 31st October 2017 - crawler-commons 0.9 released
We are glad to announce the 0.9 release of Crawler-Commons. See the [CHANGES.txt](https://github.com/crawler-commons/crawler-commons/blob/crawler-commons-0.9/CHANGES.txt) file included with the release for a full list of details.
The main changes are the removal of DOM-based sitemap parser as the SAX equivalent introduced in the previous version has better performance and is also more robust. You might need to change your code to replace `SiteMapParserSAX` with `SiteMapParser`.
The parser is now aware of namespaces, and by default does not force the namespace to be the one recommended in the specification (`http://www.sitemaps.org/schemas/sitemap/0.9`) as variants can be found in the wild. You can set the behaviour using the method _setStrictNamespace(boolean)_.
As usual, the version 0.9 contains numerous improvements and bugfixes and all users are invited to upgrade to this version.
## 9th June 2017 - crawler-commons 0.8 released
We are glad to announce the 0.8 release of Crawler-Commons. See the [CHANGES.txt](https://github.com/crawler-commons/crawler-commons/blob/crawler-commons-0.8/CHANGES.txt) file included with the release for a full list of details.