@exulu/backend 1.30.1 → 1.30.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.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
- ## [1.30.1](https://github.com/Qventu/exulu-backend/compare/v1.30.0...v1.30.1) (2025-11-04)
1
+ ## [1.30.2](https://github.com/Qventu/exulu-backend/compare/v1.30.1...v1.30.2) (2025-11-04)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * dont add eval tools if redis not configured ([4ebbb5c](https://github.com/Qventu/exulu-backend/commit/4ebbb5ce44aaf07072adaf6b6963e6eac376e022))
6
+ * add stack log to queue error ([22372bd](https://github.com/Qventu/exulu-backend/commit/22372bd103acaf8346301f9bd7fa3b8ce843b432))
package/dist/index.cjs CHANGED
@@ -7795,6 +7795,7 @@ var ExuluQueues = class {
7795
7795
  }
7796
7796
  if (!redisServer.host?.length || !redisServer.port?.length) {
7797
7797
  console.error(`[EXULU] no redis server configured, but you are trying to use a queue ( ${name}), likely in an agent or embedder (look for ExuluQueues.register().use() ).`);
7798
+ console.error(new Error().stack);
7798
7799
  throw new Error(`[EXULU] no redis server configured.`);
7799
7800
  }
7800
7801
  const newQueue = new import_bullmq5.Queue(
package/dist/index.js CHANGED
@@ -7762,6 +7762,7 @@ var ExuluQueues = class {
7762
7762
  }
7763
7763
  if (!redisServer.host?.length || !redisServer.port?.length) {
7764
7764
  console.error(`[EXULU] no redis server configured, but you are trying to use a queue ( ${name}), likely in an agent or embedder (look for ExuluQueues.register().use() ).`);
7765
+ console.error(new Error().stack);
7765
7766
  throw new Error(`[EXULU] no redis server configured.`);
7766
7767
  }
7767
7768
  const newQueue = new Queue3(
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@exulu/backend",
3
3
  "author": "Qventu Bv.",
4
- "version": "1.30.1",
4
+ "version": "1.30.2",
5
5
  "main": "./dist/index.js",
6
6
  "private": false,
7
7
  "publishConfig": {