Skip to content

Commit 9661fe6

Browse files
LucaNerlichclaude
andcommitted
chore: release v1.1.3
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 345761e commit 9661fe6

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

backend/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [1.1.1] - 2026-04-11
6+
7+
### Changed
8+
- Search index now indexes up to 50,000 characters of article content (previously 5,000), enabling full-content search for most articles
9+
510
## [1.1.0] - 2026-04-11
611

712
### Added

backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "m10z-backend",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"private": true,
55
"scripts": {
66
"build": "strapi build",

backend/src/services/searchIndexBuilder.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,13 @@ type PlainTextMetrics = {
142142
};
143143

144144
const PAGE_SIZE = 100;
145-
const DEFAULT_MAX_LEN = 5000;
145+
const DEFAULT_MAX_LEN = 50_000;
146146

147147
function getMaxLen(): number {
148148
const raw = process.env.SEARCH_INDEX_MAX_LEN;
149149
if (!raw) return DEFAULT_MAX_LEN;
150150
const n = Number(raw);
151-
if (Number.isFinite(n) && n > 0) return Math.min(n, 50_000);
151+
if (Number.isFinite(n) && n > 0) return Math.min(n, 100_000);
152152
return DEFAULT_MAX_LEN;
153153
}
154154

0 commit comments

Comments
 (0)