Releases: oracle/opengrok
Releases · oracle/opengrok
1.14.12
- COBOL language analyzer
- localhost is no longer exempted from API checks
- this means uploading the configuration at the end of the indexing via the
-Uindexer option will no longer work without authentication token - setup the authentication token in the read-only configuration using the
authenticationTokenstunable (optionally set theallowInsecureTokensboolean option to allow plaintext HTTP) and use the Indexer--tokenoption or set theindexerAuthenticationTokenoption in the read-only configuration. For the Python tools, use the-Hoption to supply the Bearer token in the Authorization header. - Docker will automatically create and use the token
- read-only configuration example:
- this means uploading the configuration at the end of the indexing via the
<java version="11.0.8" class="java.beans.XMLDecoder">
<object class="org.opengrok.indexer.configuration.Configuration">
<void property="allowInsecureTokens">
<boolean>true</boolean>
</void>
<void property="authenticationTokens">
<void method="add">
<string>INSERT_TOKEN_HERE</string>
</void>
</void>
<void property="indexerAuthenticationToken">
<string>INSERT_TOKEN_HERE</string>
</void>
</object>
</java>- bump Tomcat in Docker
- add
Content-Typeheader for the/metricsAPI endpoint so that recent versions of Prometheus can scrape it - align
/searchAPI results with the UI
1.14.11
1.14.10
1.14.9
1.14.8
1.14.7
1.14.6
1.14.5
- Add sort argument to the search API
- contributed by Gábor Bernát
- bump Tomcat in Docker to 10.1.50
- /system/indextime no longer restricted
- Lucene upgrade to 9.12.3
- contributed by Lubos Kosco
1.14.4
- bump Tomcat version in Docker to 10.1.48-jdk21
system/indextimeAPI endpoint now allowed from anywhere