mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
🔒 fix: Address on-headers CVE-2025-7339 (#8553)
* 📦 chore: bump `compression` from 1.7.4 to 1.8.1
* chore: bump `express-session` to v1.18.2
* chore: update `connect-redis` from v7.1.0 to v8.1.0
* chore: update import for `connect-redis` to use named export due to v8.0.0 breaking change
This commit is contained in:
parent
d0c958ba33
commit
f70e0cf849
4 changed files with 111 additions and 108 deletions
4
api/cache/cacheFactory.spec.js
vendored
4
api/cache/cacheFactory.spec.js
vendored
|
|
@ -44,9 +44,7 @@ jest.mock('./keyvFiles', () => ({
|
|||
violationFile: mockViolationFile,
|
||||
}));
|
||||
|
||||
jest.mock('connect-redis', () => ({
|
||||
default: mockConnectRedis,
|
||||
}));
|
||||
jest.mock('connect-redis', () => ({ RedisStore: mockConnectRedis }));
|
||||
|
||||
jest.mock('memorystore', () => jest.fn(() => mockMemoryStore));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue