mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
## Summary - **libarchive.zig:110**: Fix self-assignment bug where `this.pos` was assigned to itself instead of `new_pos` - **s3/credentials.zig:165,176,199**: Fix impossible range checks - `and` should be `or` for pageSize, partSize, and retry validation (a value cannot be both less than MIN and greater than MAX simultaneously) - **postgres.zig:14**: Fix copy-paste error where createConnection function was internally named "createQuery" ## Test plan - [ ] Verify S3 credential validation now properly rejects out-of-range values for pageSize, partSize, and retry - [ ] Verify libarchive seek operations work correctly - [ ] Verify postgres createConnection function has correct internal name 🤖 Generated with [Claude Code](https://claude.com/claude-code) --------- Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> Co-authored-by: Claude Bot <claude-bot@bun.sh>
31 lines
1.2 KiB
Zig
31 lines
1.2 KiB
Zig
pub fn createBinding(globalObject: *jsc.JSGlobalObject) JSValue {
|
|
const binding = JSValue.createEmptyObjectWithNullPrototype(globalObject);
|
|
binding.put(globalObject, ZigString.static("PostgresSQLConnection"), PostgresSQLConnection.js.getConstructor(globalObject));
|
|
binding.put(globalObject, ZigString.static("init"), jsc.JSFunction.create(globalObject, "init", PostgresSQLContext.init, 0, .{}));
|
|
binding.put(
|
|
globalObject,
|
|
ZigString.static("createQuery"),
|
|
jsc.JSFunction.create(globalObject, "createQuery", PostgresSQLQuery.call, 6, .{}),
|
|
);
|
|
|
|
binding.put(
|
|
globalObject,
|
|
ZigString.static("createConnection"),
|
|
jsc.JSFunction.create(globalObject, "createConnection", PostgresSQLConnection.call, 2, .{}),
|
|
);
|
|
|
|
return binding;
|
|
}
|
|
|
|
pub const PostgresSQLConnection = @import("./postgres/PostgresSQLConnection.zig");
|
|
pub const PostgresSQLContext = @import("./postgres/PostgresSQLContext.zig");
|
|
pub const PostgresSQLQuery = @import("./postgres/PostgresSQLQuery.zig");
|
|
pub const protocol = @import("./postgres/PostgresProtocol.zig");
|
|
pub const types = @import("./postgres/PostgresTypes.zig");
|
|
|
|
const bun = @import("bun");
|
|
|
|
const jsc = bun.jsc;
|
|
const JSValue = jsc.JSValue;
|
|
const ZigString = jsc.ZigString;
|