Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ GEM
remote: https://rubygems.org/
specs:
Ascii85 (1.1.0)
addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0)
addressable (2.9.0)
public_suffix (>= 2.0.2, < 8.0)
afm (0.2.2)
async (2.6.3)
console (~> 1.10)
Expand Down Expand Up @@ -80,7 +80,7 @@ GEM
hashery (~> 2.0)
ruby-rc4
ttfunk
public_suffix (5.0.4)
public_suffix (5.1.1)
racc (1.8.1)
rainbow (3.1.1)
rake (13.1.0)
Expand Down Expand Up @@ -108,12 +108,12 @@ PLATFORMS
ruby

DEPENDENCIES
html-proofer
jekyll (>= 4.2.1)
html-proofer (>= 5.0.8)
jekyll (>= 4.3.3)
rake

RUBY VERSION
ruby 2.6.8p205

BUNDLED WITH
2.2.29
2.4.22
21 changes: 21 additions & 0 deletions examples/lucene-linguistics/going-crazy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,27 @@
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-analysis-opennlp</artifactId>
<version>${lucene.version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.opennlp</groupId>
<artifactId>opennlp-tools</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Override opennlp-tools to address CVE-2026-42440 (DoS via unbounded array
allocation in AbstractModelReader). Fixed in 2.5.9. lucene-analysis-opennlp
9.12.3 transitively pulls 1.9.4; Lucene 10.x uses opennlp 2.5.x against the
same public API surface (see org.apache.lucene.analysis.opennlp). -->
<dependency>
<groupId>org.apache.opennlp</groupId>
<artifactId>opennlp-tools</artifactId>
<version>2.5.9</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
Expand Down
2 changes: 1 addition & 1 deletion visual-retrieval-colpali/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies = [
"shad4fast>=1.2.1",
"google-generativeai>=0.7.2",
"spacy",
"transformers==5.0.0",
"transformers>=4.57.6,<5.0.0",
"pip",
"h11>=0.16.0",
]
Expand Down
Loading
Loading