Skip to content

Tags: upstash/redis-js

Tags

v1.35.5

Toggle v1.35.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
DX-2161: fall back to returning the message string if message is not …

…parsable (#1391)

* fix: fall back to returning the message string if message is not parsable

when the message was a string, we tried to parse which got an error. Also, test durations were too short and we were getting the subscribe event instead of the message event

* fix: publish message as string instead of JSON stringified format

v1.35.4

Toggle v1.35.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: adhere to deserialization setting (#1388)

* fix: adhere to deserialization setting

* fix: change default parsing option

* fix: narrow type

* ci: fix test path

---------

Co-authored-by: CahidArda <cahidardaooz@hotmail.com>

v1.35.3

Toggle v1.35.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: add Upstash Console as platform value for telemetry (#1384)

v1.35.2

Toggle v1.35.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: deprecate block option in xread (#1383)

v1.35.1

Toggle v1.35.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
DX-1938: update signal parameter to accept function (#1379)

* feat: update signal parameter to accept function

* fix: add timeout test

v1.35.0

Toggle v1.35.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: add withtypes option to the scan command (#1376)

* feat: add withtypes option to the scan command

* fix: use describe instead of test and fix tests

---------

Co-authored-by: CahidArda <cahidardaooz@hotmail.com>

v1.34.9

Toggle v1.34.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
DX-1839: exclude some commands from auto pipeline (#1373)

* feat: exclude some commands from auto pipeline

excluded some commands that may take a long time from the auto pipeline

* fix: flaky tests

* fix: exclude more scan commands

v1.34.8

Toggle v1.34.8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
DX-1780: add hash expiration commands (#1371)

* feat: add hash expiration commands

* fix: add expire options

* fix: add hpersist

* fix: review

* fix: rename ExpireOptions as ExpireOption and export it in package

also added tests testing all expire options

* fix: increase expire time

* fix: hpersist return type

v1.34.7

Toggle v1.34.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: add expire options to PEXPIREAT, PEXPIRE, EXPIREAT (#1370)

v1.34.6

Toggle v1.34.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Don't use Array.shift in custom deserializers (#1364)

* Don't use Array.shift in custom deserializers

It is not a O(1) operation in Node.js (V8 engine). So, custom deserializers
that were using it extensively like hgetall was running extremely slow
on large payloads.

We are now using plain indexing to achieve the same thing.

* don't use deprecated wrangler command in the ci