| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2026-07-14 | Server-validated X-Real-IP proxy handling, publicPort lifecycle fix, ↵ | Michael Peter Christen | |
| peer-statistic iam parameter, transfer-IP fallback, and matching tests/docs | |||
| 2026-07-12 | proper IP recognition using header X-Real-IP when YaCy is behind a | Michael Peter Christen | |
| reverse proxy | |||
| 2026-07-12 | Downgraded YaCy to Jetty 12.0.37 | Michael Peter Christen | |
| 2026-07-12 | Migration to Jetty 12.1.11 | Michael Peter Christen | |
| 2026-07-12 | towards a Jetty 9 decoupling baseline for the Jetty 12 migration | Michael Peter Christen | |
| 2026-07-11 | isolate Solr 9.0 Jetty client dependencies in a relocated bridge | Michael Peter Christen | |
| 2026-07-11 | de-coupling of security functions from jetty | Michael Peter Christen | |
| 2026-07-11 | cleaned up user authentication | Michael Peter Christen | |
| this removes the userDB-exception in the normal authentication process which affected mostly wiki and blog which are not required any more. We also cleaned up translation messages as this function was not used at all. This is a required step forward a renovation of the jetty server. | |||
| 2026-07-10 | migrated jcifs, mime4j to latest | Michael Peter Christen | |
| 2026-07-09 | enhanced Network Graph Caching | Michael Peter Christen | |
| 2026-07-07 | Major fix for localization: finalizing German, French, Spanish, Italian, | Michael Peter Christen | |
| Greek, Slovak, Ukrainian, Turkish and Russian. Also added full support for Polish language. All servlets are now fully supported by those languages. | |||
| 2026-07-05 | removed the snapshot feature and all dependencies from non-java code | Michael Peter Christen | |
| 2026-07-05 | IPv6-aware fixes | Michael Peter Christen | |
| not a full IPv6 support fix, but changes towards | |||
| 2026-02-17 | Remove suspicious JavaScript code fragments from snippet lines. | Michael Peter Christen | |
| 2026-02-17 | fixed parsing of x-data-elements in <div> | Michael Peter Christen | |
| 2025-10-04 | fix test after the lastest changes | Henschi | |
| 2025-08-25 | support for /date search to be sorted by date published - ↵ | Roman Szarowski | |
| https://github.com/yacy/yacy_search_server/issues/622 | |||
| 2025-04-04 | adapt test, but I don't think that's right (extra space) | Henschi | |
| 2025-04-04 | adapt test to commit 0689f4f0ae2907c35c080ea15b5ad406ea9402e7 | Henschi | |
| 2025-04-04 | fix test and test the input values from document | Henschi | |
| 2025-04-03 | fix test values because title in windows and mac PPT is not empty or null | Henschi | |
| 2025-04-03 | fix tests | Henschi | |
| 2025-03-28 | fix compile test | Henschi | |
| 2024-07-21 | replaced http links with https | Michael Peter Christen | |
| 2022-02-03 | changed link to new forum location | Michael Peter Christen | |
| 2021-08-03 | fixed doku link | Michael Peter Christen | |
| 2020-08-03 | removes some warning and unused objects | sgaebel | |
| 2020-07-31 | removes some deprecation-warnings | sgaebel | |
| 2020-07-28 | replace org.junit.Assert.assertThat by | sgaebel | |
| org.hamcrest.MatcherAssert.assertThat from hamcrest 2.2 to avoid deprecation-warning | |||
| 2020-07-27 | removes some warnings: unused imports, params | sgaebel | |
| 2020-07-12 | added debug code to parser test to investigate why this fails in travis | Michael Peter Christen | |
| build | |||
| 2019-06-15 | fixed many links to old forum, now https://searchlab.eu | Michael Christen | |
| 2019-04-09 | Support parsing audio URLs without file extension | luccioman | |
| Added also a Junit for the audio tag parser | |||
| 2018-12-06 | Properly resolve relative URLs against document URL in html base tags | luccioman | |
| Fixes issue #256 | |||
| 2018-11-10 | Fixed concurrency issue on cache used for circles rendering | luccioman | |
| Without synchronization lock, concurrent rendering of images including circles could lead to glitches as reported in issue #248 | |||
| 2018-10-04 | Decode blacklist entries for easier edition of non ascii chars | luccioman | |
| Not using the JDK URLDecoder.decode() function, as it strips '+' characters when they occur after '?' (both characters having regular expression semantics when used in blacklist path patterns) | |||
| 2018-10-02 | Improved normalization of blacklist path patterns having non ascii chars | luccioman | |
| Normalize blacklist path patterns using percent-encoding, at pattern edition in web interface and at loading from configuration files. Fixes issue #237 | |||
| 2018-08-15 | Added a parser for XZ compressed archives. | luccioman | |
| As suggested by LA_FORGE on mantis 781 (http://mantis.tokeek.de/view.php?id=781) | |||
| 2018-07-08 | Suppress compilation warning on unit testing intentional failure | luccioman | |
| 2018-06-29 | Removed more unsafe concurrent accesses to SimpleDateFormat instances. | luccioman | |
| SimpleDateFormat must not be used by concurrent threads without synchronization for parsing or formating dates as it is not thread-safe (internally holds a calendar instance that is not synchronized). Prefer now DateTimeFormatter when possible as it is thread-safe without concurrent access performance bottleneck (does not internally use synchronization locks). | |||
| 2018-06-28 | Fixed unsafe conccurent access to generic SimpleDateFormat instances | luccioman | |
| SimpleDateFormat must not be used by concurrent threads without synchronization for parsing or formating dates as it is not thread-safe (internally holds a calendar instance that is not synchronized). Prefer now DateTimeFormatter when possible as it is thread-safe without concurrent access performance bottleneck (does not internally use synchronization locks). | |||
| 2018-06-19 | Added a new crawler document filter type using Solr syntax | luccioman | |
| This makes possbile to set up much more advanced document crawl filters, by filtering on one or more document indexed fields before inserting in the index. | |||
| 2018-06-19 | Fixed JUnit test after removal of unused Transformer | luccioman | |
| 2018-05-13 | Reduced memory footprint of text snippet extraction | luccioman | |
| By not parsing and storing at first all sentences of a document, but only on the fly the ones necessary to compute the snippet. | |||
| 2018-05-11 | Reduced text snippet extraction processing time. | luccioman | |
| By not generating MD5 hashes on all words of indexed texts, processing time is reduced by 30 to 50% on indexed documents with more than 1Mbytes of plain text. | |||
| 2018-05-01 | Easier tracking of longest text snippets initializations | luccioman | |
| When text snippets statistics are enabled and FINE log level is enabled on the TextSnippetStatistics class. | |||
| 2018-02-10 | Fixed issue #158 : completed div CSS class ignore in crawl | luccioman | |
| 2018-02-06 | Fixed loss of other modifiers on keywords/tags search navigation links | luccioman | |
| 2018-02-06 | Added basic support for autotagging microdata annotated item types. | luccioman | |
| With the appropriate vocabulary settings in Vocabulary_p.html page, this can produce Vocabulary search facets displaying item types referenced in html documents by microdata annotation. Tested notably, but not limited to, vocabulary classes/types defined by Schema.org and Dublin Core. | |||
| 2018-02-02 | Refactoring : documented and extracted autotagging processing functions. | luccioman | |
