@exulu/backend 1.25.0 → 1.25.1
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 +3 -4
- package/dist/index.cjs +2 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
## [1.25.1](https://github.com/Qventu/exulu-backend/compare/v1.25.0...v1.25.1) (2025-10-07)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
7
|
-
* trying out different proxy methods for opencode and claude code ([7630bec](https://github.com/Qventu/exulu-backend/commit/7630bec940a55da58b3dfb210b3a56849cd31a54))
|
|
6
|
+
* log headers in graphql ([8d3094b](https://github.com/Qventu/exulu-backend/commit/8d3094b1a9b836c06352e9ed6057c4654fe457d4))
|
package/dist/index.cjs
CHANGED
|
@@ -5229,7 +5229,8 @@ var createExpressRoutes = async (app, logger, agents, tools, contexts, config, t
|
|
|
5229
5229
|
path: req.path,
|
|
5230
5230
|
requestId: "req-" + Date.now(),
|
|
5231
5231
|
ipAddress: req.ip,
|
|
5232
|
-
userAgent: req.get("User-Agent")
|
|
5232
|
+
userAgent: req.get("User-Agent"),
|
|
5233
|
+
headers: req.headers
|
|
5233
5234
|
});
|
|
5234
5235
|
logger.info("================");
|
|
5235
5236
|
const authenticationResult = await requestValidators.authenticate(req);
|
package/dist/index.js
CHANGED
|
@@ -5195,7 +5195,8 @@ var createExpressRoutes = async (app, logger, agents, tools, contexts, config, t
|
|
|
5195
5195
|
path: req.path,
|
|
5196
5196
|
requestId: "req-" + Date.now(),
|
|
5197
5197
|
ipAddress: req.ip,
|
|
5198
|
-
userAgent: req.get("User-Agent")
|
|
5198
|
+
userAgent: req.get("User-Agent"),
|
|
5199
|
+
headers: req.headers
|
|
5199
5200
|
});
|
|
5200
5201
|
logger.info("================");
|
|
5201
5202
|
const authenticationResult = await requestValidators.authenticate(req);
|