Skip to content

Releases: oracle/opengrok

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

1.11.6

17 Apr 12:15
Compare
Choose a tag to compare
  • improved logging
    • Repository objects are now reported in the logs along with all their properties
    • progress reporting for repository scan/invalidation when the indexer is run with --progress

1.11.5

14 Apr 19:10
Compare
Choose a tag to compare
  • restore date display in directory listing (for the case when file dates are not fetched from history cache)

1.11.4

13 Apr 07:25
Compare
Choose a tag to compare
  • display dates from history cache in directory listing
    • only applies for repositories with mergeCommitsEnabled set to True.
    • the dates for directories will not be displayed
    • can be disabled with the useHistoryCacheForDirectoryListing tunable (see webapp tunables)