@upstash/redis 1.23.1 → 1.23.2
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/esm/pkg/pipeline.js +0 -1
- package/esm/version.js +1 -1
- package/package.json +1 -1
- package/script/pkg/pipeline.js +0 -1
- package/script/version.js +1 -1
- package/types/version.d.ts +1 -1
package/esm/pkg/pipeline.js
CHANGED
|
@@ -92,7 +92,6 @@ export class Pipeline {
|
|
|
92
92
|
path,
|
|
93
93
|
body: Object.values(this.commands).map((c) => c.command),
|
|
94
94
|
}));
|
|
95
|
-
console.log("after req", { res });
|
|
96
95
|
return res.map(({ error, result }, i) => {
|
|
97
96
|
if (error) {
|
|
98
97
|
throw new UpstashError(`Command ${i + 1} [ ${this.commands[i].command[0]} ] failed: ${error}`);
|
package/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "v1.23.
|
|
1
|
+
export const VERSION = "v1.23.2";
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "./script/platforms/nodejs.js",
|
|
4
4
|
"types": "./types/platforms/nodejs.d.ts",
|
|
5
5
|
"name": "@upstash/redis",
|
|
6
|
-
"version": "v1.23.
|
|
6
|
+
"version": "v1.23.2",
|
|
7
7
|
"description": "An HTTP/REST based Redis client built on top of Upstash REST API.",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
package/script/pkg/pipeline.js
CHANGED
|
@@ -95,7 +95,6 @@ class Pipeline {
|
|
|
95
95
|
path,
|
|
96
96
|
body: Object.values(this.commands).map((c) => c.command),
|
|
97
97
|
}));
|
|
98
|
-
console.log("after req", { res });
|
|
99
98
|
return res.map(({ error, result }, i) => {
|
|
100
99
|
if (error) {
|
|
101
100
|
throw new error_js_1.UpstashError(`Command ${i + 1} [ ${this.commands[i].command[0]} ] failed: ${error}`);
|
package/script/version.js
CHANGED
package/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "v1.23.
|
|
1
|
+
export declare const VERSION = "v1.23.2";
|