Skip to content
Merged
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
5 changes: 5 additions & 0 deletions .changeset/petite-wolves-matter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"miniflare": minor
---

Fix hyperdrive local dev binding tls configuration bug
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ async function handlePostgresTlsConnection(
socket: dbSocket,
host: targetHost,
servername: targetHost,
rejectUnauthorized: false,
};
try {
const tlsSocket = await tlsConnect(tlsOptions);
Expand Down Expand Up @@ -242,7 +243,7 @@ async function handleMySQLTlsConnection(
host: targetHost,
servername: targetHost,
minVersion: "TLSv1.2",
rejectUnauthorized: true,
rejectUnauthorized: false,
};

try {
Expand Down
Loading