Skip to content

Releases: oracle/opengrok

1.12.8

26 May 08:25
Compare
Choose a tag to compare
  • change the order of passages in search results to be based strictly on file offsets
    • i.e. they always reflect the initial part of the search hits

1.12.7

18 May 17:06
Compare
Choose a tag to compare
  • cleanup indexer resources a bit earlier

1.12.6

11 May 09:51
Compare
Choose a tag to compare
  • Lucene 9.6
  • suggester reinit/rebuild progress reporting
  • fix Rust const warning with recent Universal ctags

1.12.5

09 May 20:35
Compare
Choose a tag to compare
  • fix directory listing when path descriptions are present

1.12.4

02 May 14:13
Compare
Choose a tag to compare
  • honor xref timeout in more analyzers, in particular the XMLAnalyzer
    • this speeds up AOSP indexing significantly
  • unify thread naming

1.12.3

28 Apr 08:54
Compare
Choose a tag to compare
  • fix API result codes for configuration endpoints
  • directory listing improvements when dates/descriptions are fetched from history cache
  • give name to ctags error buffer reader threads

1.12.2

24 Apr 16:15
Compare
Choose a tag to compare
  • fix loading of project groups from read-only configuration after merging with runtime configuration

1.12.1

24 Apr 15:58
Compare
Choose a tag to compare
  • project group configuration changed from list to map. In the configuration that would be from:
  <void property="groups">
   <void method="add">
    <object class="org.opengrok.indexer.configuration.Group">
     <void property="name">
      <string>foo</string>
     </void>
     <void property="pattern">
      <string>foo-.*</string>
     </void>
    </object>
   </void>
  </void>

to the following (note the change of structure and also in the method):

  <void property="groups">
   <void method="put">
    <string>foo</string>
    <object class="org.opengrok.indexer.configuration.Group">
     <void property="name">
      <string>foo</string>
     </void>
     <void property="pattern">
      <string>foo-.*</string>
     </void>
    </object>
   </void>
  </void>

1.12.0

21 Apr 10:33
Compare
Choose a tag to compare
  • enable merge changesets by default for all repositories
  • Mercurial repositories now honor the mergeCommitsEnabled tunable

NOTE: this requires reindex from scratch given the impact on the history cache contents.

1.11.7

20 Apr 09:28
Compare
Choose a tag to compare
  • display links to file revisions in diff side view
  • directory listing API
    • see PR #4308 for limitations