Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
{
extends: ["github>cloudquery/.github//.github/renovate-node-default.json5"],
packageRules: [
{
// typescript-eslint does not support TS 7 yet: https://github.com/typescript-eslint/typescript-eslint/issues/10940
matchPackageNames: ["typescript"],
allowedVersions: "<7",
},
],
}
2 changes: 1 addition & 1 deletion src/scalar/json.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class JSONType implements Scalar<Nullable<Uint8Array>> {
}

public toString() {
if (this._valid) {
if (this._valid && this._value !== null) {
return new TextDecoder().decode(this._value);
}

Expand Down
1 change: 0 additions & 1 deletion src/scheduler/scheduler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,5 +269,4 @@ export const sync = async ({
}

stream.end();
return await Promise.resolve();
};