@exulu/backend 1.25.2 → 1.25.3

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.25.2](https://github.com/Qventu/exulu-backend/compare/v1.25.1...v1.25.2) (2025-10-07)
1
+ ## [1.25.3](https://github.com/Qventu/exulu-backend/compare/v1.25.2...v1.25.3) (2025-10-07)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * add token validation error logging ([4b65dd6](https://github.com/Qventu/exulu-backend/commit/4b65dd6df04e35c6c1ff441290b69f34f09fd81f))
6
+ * add password to redis server connection ([4ba8b0d](https://github.com/Qventu/exulu-backend/commit/4ba8b0d6dbcb12386f237a1dd6d67f97e5e8815b))
package/dist/index.cjs CHANGED
@@ -58,7 +58,8 @@ var import_redis = require("redis");
58
58
  // src/bullmq/server.ts
59
59
  var redisServer = {
60
60
  host: `${process.env.REDIS_HOST}`,
61
- port: process.env.REDIS_PORT
61
+ port: process.env.REDIS_PORT,
62
+ password: process.env.REDIS_PASSWORD || void 0
62
63
  };
63
64
 
64
65
  // src/redis/client.ts
package/dist/index.js CHANGED
@@ -7,7 +7,8 @@ import { createClient } from "redis";
7
7
  // src/bullmq/server.ts
8
8
  var redisServer = {
9
9
  host: `${process.env.REDIS_HOST}`,
10
- port: process.env.REDIS_PORT
10
+ port: process.env.REDIS_PORT,
11
+ password: process.env.REDIS_PASSWORD || void 0
11
12
  };
12
13
 
13
14
  // src/redis/client.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@exulu/backend",
3
3
  "author": "Qventu Bv.",
4
- "version": "1.25.2",
4
+ "version": "1.25.3",
5
5
  "main": "./dist/index.js",
6
6
  "private": false,
7
7
  "publishConfig": {