Skip to content

Commit a5c97c0

Browse files
authored
Merge pull request #902 from korpling/update-graphannis
Update to graphANNIS 4.1.3
2 parents ca0e054 + 2379b88 commit a5c97c0

64 files changed

Lines changed: 2158 additions & 4116 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: Deploy ANNIS
66
jobs:
77
deploy_release_binaries:
88
name: Deploy release binaries
9-
runs-on: ubuntu-22.04
9+
runs-on: ubuntu-24.04
1010
steps:
1111
- name: Checkout
1212
uses: actions/checkout@v2
@@ -33,13 +33,13 @@ jobs:
3333
env:
3434
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3535
deploy_documentation:
36-
runs-on: ubuntu-22.04
36+
runs-on: ubuntu-24.04
3737
steps:
3838
- name: Checkout
3939
uses: actions/checkout@v1
4040
- name: Get the release version from the GITHUB_REF variable as new SHORT_VERSION variable
4141
run: echo "SHORT_VERSION=$(echo ${GITHUB_REF} | sed -E 's/^refs\/heads\/.*/develop/' | sed -E 's/^(refs\/tags\/v)?(.*)(\.[0-9]+\.[0-9]+)$/\2/')" >> $GITHUB_ENV
42-
- run: misc/download-mdbook.sh 0.4.17
42+
- run: misc/download-mdbook.sh 0.5.2
4343
env:
4444
OS_NAME: linux
4545
- name: Generate the user documentation

.github/workflows/test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
test_jdk8:
1010
name: Execute all automated tests JDK 8
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v4
@@ -34,7 +34,7 @@ jobs:
3434
run: mvn install
3535
test_jdk11:
3636
name: Execute all automated tests on JDK 11
37-
runs-on: ubuntu-22.04
37+
runs-on: ubuntu-24.04
3838
steps:
3939
- name: Checkout
4040
uses: actions/checkout@v4
@@ -62,8 +62,8 @@ jobs:
6262
- name: Run Maven install (includes tests)
6363
run: mvn install
6464
test_jdk17:
65-
name: Execute all automated tests on JDK 17
66-
runs-on: ubuntu-22.04
65+
name: Execute all automated tests on JDK 21
66+
runs-on: ubuntu-24.04
6767
steps:
6868
- name: Checkout
6969
uses: actions/checkout@v2
@@ -83,24 +83,24 @@ jobs:
8383
path: "*.zip"
8484
key: ${{ runner.os }}-corpora-${{ hashFiles('misc/import-test-corpora.sh') }}
8585
- name: Set JAVA_HOME to included JDK 17
86-
run: echo JAVA_HOME=$JAVA_HOME_17_X64 >> $GITHUB_ENV
86+
run: echo JAVA_HOME=$JAVA_HOME_21_X64 >> $GITHUB_ENV
8787
- run: misc/download-annis-cli.sh
8888
env:
8989
OS_NAME: linux
9090
- run: misc/import-test-corpora.sh
9191
- name: Run Maven Tests with enabled code coverage and upload results to SonarCloud
92-
run: mvn -Pcoverage install sonar:sonar -Dsonar.projectKey=korpling_ANNIS -Dsonar.organization=korpling -Dsonar.host.url=https://sonarcloud.io -Dsonar.login=$SONAR_TOKEN
92+
run: mvn -Pcoverage install sonar:sonar -Dsonar.projectKey=korpling_ANNIS -Dsonar.organization=korpling -Dsonar.host.url=https://sonarcloud.io -Dsonar.token=$SONAR_TOKEN
9393
env:
9494
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9595
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
9696

9797
test_docs:
9898
name: Test documentation
99-
runs-on: ubuntu-22.04
99+
runs-on: ubuntu-24.04
100100
steps:
101101
- name: Checkout
102102
uses: actions/checkout@v2
103-
- run: misc/download-mdbook.sh 0.4.17
103+
- run: misc/download-mdbook.sh 0.5.2
104104
env:
105105
OS_NAME: linux
106106
- run: mdbook build docs/user-guide/

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ ANNIS is a frontend to the graphANNIS webservice, which has its [own changelog](
77

88
## [Unreleased]
99

10+
### Fixed
11+
12+
- Update to graphANNIS 4.1.3 which includes a bugfix for including token in subgraph even if the
13+
token is not covered by a segmentation node
14+
1015
## [4.15.1] - 2025-10-10
1116

1217
### Fixed

docs/developer-guide/book.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[book]
22
authors = ["Thomas Krause"]
3-
multilingual = false
43
src = "src"
54
title = "ANNIS Developer Guide"

docs/online-help/book.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[book]
22
authors = ["Thomas Krause"]
3-
multilingual = false
43
src = "src"
54
title = "ANNIS Help"

docs/user-guide/book.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[book]
22
authors = ["Thomas Krause"]
3-
multilingual = false
43
src = "src"
54
title = "ANNIS User Guide"
65

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<vaadin.version>8.14.3</vaadin.version>
4040
<vaadin.productionMode>true</vaadin.productionMode>
4141
<start-class>org.corpus_tools.annis.gui.AnnisUiApplication</start-class>
42-
<graphannis.version>4.0.1</graphannis.version>
42+
<graphannis.version>4.1.3</graphannis.version>
4343
<antlr4.version>4.7.2</antlr4.version>
4444
<spring.profiles.active>server</spring.profiles.active>
4545
<swagger-core-version>1.5.24</swagger-core-version>
@@ -261,7 +261,7 @@
261261
https://github.com/korpling/graphANNIS/releases/download/v${graphannis.version}/graphannis-webservice-x86_64-unknown-linux-gnu.tar.xz</url>
262262
<outputDirectory>
263263
${project.build.directory}/native/</outputDirectory>
264-
<sha256>bbd0a6456f24c1b6594e569267302f54a142775b86ff63d2d9e4ea3b12f835de</sha256>
264+
<sha256>b64c63cf721ed40c9e59dd7cba464f9ede588a2d3ae544b889e67228b6e9c7a7</sha256>
265265
<unpack>true</unpack>
266266
</configuration>
267267
</execution>
@@ -276,7 +276,7 @@
276276
https://github.com/korpling/graphANNIS/releases/download/v${graphannis.version}/graphannis-webservice-x86_64-pc-windows-msvc.zip</url>
277277
<outputDirectory>
278278
${project.build.directory}/native/win32-x86-64/</outputDirectory>
279-
<sha256>3d553737863c3dabf9fc80cbdec3aa3b909b42616ca75baa93547b24e79672df</sha256>
279+
<sha256>3c3a259999e6b988836ee42f301364fcc4b9da995eeb4e0bab29b05523e3cb81</sha256>
280280
<unpack>true</unpack>
281281
</configuration>
282282
</execution>
@@ -291,7 +291,7 @@
291291
https://github.com/korpling/graphANNIS/releases/download/v${graphannis.version}/graphannis-webservice-aarch64-apple-darwin.tar.xz</url>
292292
<outputDirectory>
293293
${project.build.directory}/native/</outputDirectory>
294-
<sha256>9c7a7bb65b3467a77330fa04856bc1169213b0c34584db6bd52ef9bc4f12d990</sha256>
294+
<sha256>0595e02f2446315564a22982803cf05dbd6ebe4f055c6ebf0f7674e952dfd97f</sha256>
295295
<unpack>true</unpack>
296296
</configuration>
297297
</execution>
@@ -306,7 +306,7 @@
306306
https://github.com/korpling/graphANNIS/releases/download/v${graphannis.version}/graphannis-webservice-x86_64-apple-darwin.tar.xz</url>
307307
<outputDirectory>
308308
${project.build.directory}/native/</outputDirectory>
309-
<sha256>659258a57a8c175910e1c3120211e732d5909a1e1cd57e822289c0535be20d9f</sha256>
309+
<sha256>92adb2cd4e548a4316f8c6960073a5b931aa2bcf913f1e493a511195f54a90b7</sha256>
310310
<unpack>true</unpack>
311311
</configuration>
312312
</execution>

0 commit comments

Comments
 (0)