Igor Savin
Igor Savin
Released in 3.1.0
@fabis94 Tests are failing
@fabis94 Only new tests are failing, though. See the end of logs at https://github.com/knex/knex/actions/runs/7098240971/job/19422352541?pr=5311 Are they passing locally for you?
This is due to a bug in `unzipper`, which has known compatibility issues with newer Node versions, e. g. see https://github.com/ZJONSSON/node-unzipper/issues/271 We've replaced it with `extract-zip` after hitting in prod,...
@thejoshwolfe Any chance this gets merged? Can we help in any way?
@qlaffont This library is supported. Could you please send your changes as a PR with a test, so that we could properly review it?
@qlaffont I'm sorry but I honestly don't have time or energy to pull everything by hand and create a PR. Happy to review the PR if it's there.
@uglide Isn't ioredis still both faster (see https://ably.com/blog/migrating-from-node-redis-to-ioredis) and also supporting more use-cases? E. g. node-redis still doesn't support `commandTimeout` parameter.
> We found out that if even one of the arguments to the Redis command is a buffer, [Node Redis performs three separate socket writes per argument every time, plus...
yup. vite.config.ts: ```ts setupFiles: './test/setup.ts', ``` test/setup.ts: ```ts /// This includes global types (not handled by import below unfortunately) import '@lokalise/styled/testing-setup' import '@testing-library/jest-dom/vitest' ``` It works with 0.x vitest, but...