Skip to content

Commit

Permalink
Merge pull request #845 from korpling/feature/update-graphannis
Browse files Browse the repository at this point in the history
Update to graphANNIS 3.1.1
  • Loading branch information
thomaskrause authored Feb 9, 2024
2 parents f9bf402 + cf6d5e9 commit 9343cef
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Added the possibility to log user search interactions of the `QueryController`.
- Added the possibility to log user search interactions of the `QueryController`
anonymously. You have to set the logging level for the component
`org.corpus_tools.annis.gui.QueryController` to the value `DEBUG`, e.g. by
adding the following lines to the
[`application.properties`](http://korpling.github.io/ANNIS/4.10/user-guide/configuration/index.html)
file:
```
# Set general log level for ANNIS
logging.level.org.corpus_tools.annis=WARN
# Log user interactions
logging.level.org.corpus_tools.annis.gui.QueryController=DEBUG
```

### Fixed

- Updated to graphANNIS bugfix version 3.1.1, which fixes issues with token
searches when the result order is randomized or not sorted and the corpus is
not loaded yet (<https://github.com/korpling/graphANNIS/pull/280>).

## [4.10.6] - 2024-01-16

Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<vaadin.version>8.14.3</vaadin.version>
<vaadin.productionMode>true</vaadin.productionMode>
<start-class>org.corpus_tools.annis.gui.AnnisUiApplication</start-class>
<graphannis.version>3.1.0</graphannis.version>
<graphannis.version>3.1.1</graphannis.version>
<antlr4.version>4.7.2</antlr4.version>
<spring.profiles.active>server</spring.profiles.active>
<swagger-core-version>1.5.24</swagger-core-version>
Expand Down Expand Up @@ -261,7 +261,7 @@
https://github.com/korpling/graphANNIS/releases/download/v${graphannis.version}/graphannis-webservice-x86_64-unknown-linux-gnu.tar.xz</url>
<outputDirectory>
${project.build.directory}/native/</outputDirectory>
<sha256>3985bc9385697f0e12f839b69bc9c6bcd7abe5cd453f64b0b93f00524e236338</sha256>
<sha256>8c1265d164d919c998773bb6aa095ac5f931182d0c2f6296e860cbfecd1dc58c</sha256>
<unpack>true</unpack>
</configuration>
</execution>
Expand All @@ -276,7 +276,7 @@
https://github.com/korpling/graphANNIS/releases/download/v${graphannis.version}/graphannis-webservice-x86_64-pc-windows-msvc.zip</url>
<outputDirectory>
${project.build.directory}/native/win32-x86-64/</outputDirectory>
<sha256>32575f626c7806dbb391a8f7ffdab79ae713a27a4dd5833730906cea8f215dac</sha256>
<sha256>1d4b583bca79633d307673288295ec2eae70539ce145ba619f055792f2f874af</sha256>
<unpack>true</unpack>
</configuration>
</execution>
Expand All @@ -291,7 +291,7 @@
https://github.com/korpling/graphANNIS/releases/download/v${graphannis.version}/graphannis-webservice-x86_64-apple-darwin.tar.xz</url>
<outputDirectory>
${project.build.directory}/native/</outputDirectory>
<sha256>3e6419750a91161542059eb2fbcae219ebc75f30bc6431f24d3448681e75b0a7</sha256>
<sha256>f1b56d73069546f2e55542a4bf6aba6dfeac179a8c6d17fbd736450d602eb72e</sha256>
<unpack>true</unpack>
</configuration>
</execution>
Expand Down

0 comments on commit 9343cef

Please sign in to comment.