G

Groonga

G
Groonga Dev Tools v16.0.8

Groonga 16.0.8 - 2026-07-13

Improvements [between] Added support for vector type value as the 1st parameter Note that between does not use an index for a vector value yet. In the following example, between returns true if any of the elements is included in the specified range. Therefore, we can use between to search records that have at least one value in the range. Execution example: table_create Products TABLE_HASH_KEY Sho…

G
Groonga Dev Tools v16.0.5

Groonga 16.0.5 - 2026-05-22

Fixes Fixed a bug where Groonga for Windows failed to run due to a missing required DLL The required DLL (msvcp140_atomic_wait.dll) for Groonga for Windows was missing from the groonga-16.0.2-x64-vs2022-with-vcruntime.zip. This issue only affects Groonga 16.0.2 for Windows. Contributors $ git shortlog -sn v16.0.4.. 5 Horimoto Yasuhiro 2 Abe Tomoaki 1 Sutou Kouhei Translations Japanese

G
Groonga Dev Tools v16.0.4

Groonga 16.0.4 - 2026-05-13

Fixes Fixed a bug where Groonga for Windows failed to run due to a missing required DLL The required DLL (msvcp140_atomic_wait.dll) for Groonga for Windows was missing from the groonga-16.0.2-x64-vs2022-with-vcruntime.zip. This issue only affects Groonga 16.0.2 for Windows. Contributors $ git shortlog -sn v16.0.2.. 6 Horimoto Yasuhiro 1 Abe Tomoaki Translations Japanese

G
Groonga Dev Tools v16.0.2

Groonga 16.0.2 - 2026-05-07

Improvements Added support for Ubuntu 26.04 LTS Fixes Fixed the ODR(One Definition Rule) violation GH-2787 Reported by Nicolas PARLANT. The LTO(Link-Time Optimization) build was failing because grn_tokenizer_query had two different definitions. This change fixes the ODR violation, allowing the LTO process to complete successfully. Fixed missing files in benchmark directory of source archive GH-279…

G
Groonga Dev Tools v16.0.1

Groonga 16.0.1 - 2026-03-30

Improvements [language_model_vectorize] Added prefix option You can now add a prefix to the input text. This is useful for models that require a prefix, similar to the passage_prefix and query_prefix options of TokenLanguageModelKNN. language_model_vectorize("hf:///groonga/multilingual-e5-base-Q4_K_M-GGUF", \ "male child", \ {"prefix": "query: "}) [object_list] Added normalizer information to the…

G
Groonga Dev Tools v16.0.0

Groonga 16.0.0 - 2026-02-09

This is our annual major release! This release doesn't have any backward incompatible changes! So you can upgrade Groonga without migrating your existing databases. You can still use your existing databases as-is. Fixes Fixed a bug that causes overflow in the key of TABLE_DAT_KEY tables If you set a value of 4096 byte against a key, a TABLE_DAT_KEY table may be broken. Contributors $ git shortlog…

G
Groonga Dev Tools v15.2.5

Groonga 15.2.5 - 2026-01-30

Fixes Fixed a compatibility bug with the ShortBinary, Binary, LongBinary, and JSON types Fixed a bug that prevented the ShortBinary, Binary, and LongBinary types added in release-15-1-8, and the JSON type added in release-15-2-3, from working correctly in databases created before those versions. Additionally, a bug that caused Groonga databases created with versions before release-15-2-1 to crash…

G
Groonga Dev Tools v15.2.4

Groonga 15.2.4 - 2026-01-29

Improvements [grndb] Added support for closing used object immediately in grndb check. We can reduce memory usage by this. We used to leave used object opened on memory. We needed too much memory if we checked a large database by using grndb check. Therefore, grndb check is not practical on low-memory environment because it takes a long time to complete check. We can complete grndb check within a…

G
Groonga Dev Tools v15.2.3

Groonga 15.2.3 - 2026-01-15

Fixes Fixed a bug that Groonga couldn't find records that were added after index construction when centroid_column was used If this bug occurs, Groonga doesn't return records that added as below. plugin_register language_model/knn table_create Data TABLE_NO_KEY column_create Data text COLUMN_SCALAR ShortText column_create Data rabitq_code COLUMN_SCALAR ShortBinary load --table Data [ {"text": "I a…