@exulu/backend 1.19.1 → 1.19.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ {
2
+ "env": {
3
+ "ANTHROPIC_BASE_URL": "https://backend.exulu.com/gateway/anthropic/12b88f47-5a8c-41cc-aea8-c4842352b46a",
4
+ "DISABLE_AUTOUPDATER": 0
5
+ },
6
+ "apiKeyHelper": "echo eyJhbGciOiJIUzI1NiJ9.eyJpZCI6IjEiLCJlbWFpbCI6ImFkbWluQGV4dWx1LmNvbSIsImlhdCI6MTc2MDA4ODI5NiwiZXhwIjoxNzkxNjI0Mjk2fQ.gTXGxccE0hXoIjsrpIIp6b0lCWqrQKm-xEwXc8kZqyw"
7
+ }
@@ -3,6 +3,7 @@ on:
3
3
  push:
4
4
  branches:
5
5
  - main # or main
6
+ - 'hotfix/*' # trigger on any hotfix branch
6
7
 
7
8
  permissions:
8
9
  contents: read # for checkout
package/dist/index.cjs CHANGED
@@ -1590,8 +1590,8 @@ var ExuluContext = class {
1590
1590
  CREATE INDEX IF NOT EXISTS ${tableName}_embedding_hnsw_cosine
1591
1591
  ON ${tableName}
1592
1592
  USING hnsw (embedding vector_cosine_ops)
1593
- WHERE embedding IS NOT NULL
1594
1593
  WITH (m = 16, ef_construction = 64)
1594
+ WHERE embedding IS NOT NULL
1595
1595
  `);
1596
1596
  return;
1597
1597
  };
package/dist/index.js CHANGED
@@ -1549,8 +1549,8 @@ var ExuluContext = class {
1549
1549
  CREATE INDEX IF NOT EXISTS ${tableName}_embedding_hnsw_cosine
1550
1550
  ON ${tableName}
1551
1551
  USING hnsw (embedding vector_cosine_ops)
1552
- WHERE embedding IS NOT NULL
1553
1552
  WITH (m = 16, ef_construction = 64)
1553
+ WHERE embedding IS NOT NULL
1554
1554
  `);
1555
1555
  return;
1556
1556
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@exulu/backend",
3
3
  "author": "Qventu Bv.",
4
- "version": "1.19.1",
4
+ "version": "1.19.2",
5
5
  "main": "./dist/index.js",
6
6
  "private": false,
7
7
  "publishConfig": {
@@ -1,5 +1,9 @@
1
1
  module.exports = {
2
- branches: ['main', { name: 'next', prerelease: true }],
2
+ branches: [
3
+ 'main',
4
+ { name: 'next', prerelease: true },
5
+ { name: 'hotfix/*', rangeStrategy: 'always'} // any branch like hotfix/1.19.1 will trigger a release
6
+ ],
3
7
  plugins: [
4
8
  '@semantic-release/commit-analyzer',
5
9
  '@semantic-release/release-notes-generator',
package/CHANGELOG.md DELETED
@@ -1,6 +0,0 @@
1
- ## [1.19.1](https://github.com/Qventu/exulu-backend/compare/v1.19.0...v1.19.1) (2025-08-29)
2
-
3
-
4
- ### Bug Fixes
5
-
6
- * avg tot. relevance score hybrid search returned string, + add normalization vs cosine distance ([44453c6](https://github.com/Qventu/exulu-backend/commit/44453c6df3182b3356cd2d5e84055438f7eb186f))