Hyperdrive – Hyperdrive no longer caches queries using STABLE PostgreSQL functions

Hyperdrive – Hyperdrive no longer caches queries using STABLE PostgreSQL functions

Hyperdrive now treats queries containing PostgreSQL STABLE functions as uncacheable, in addition to VOLATILE functions. Previously, only functions that PostgreSQL categorizes as VOLATILE (for example, RANDOM(), LASTVAL()) were detected as uncacheable. STABLE functions (for example, NOW(), CURRENT_TIMESTAMP, CURRENT_DATE) were incorrectly…
Hyperdrive – Connect to remote databases during local development with wrangler dev

Hyperdrive – Connect to remote databases during local development with wrangler dev

You can now connect directly to remote databases and databases requiring TLS with wrangler dev. This lets you run your Worker code locally while connecting to remote databases, without needing to use wrangler dev --remote. The localConnectionString field and CLOUDFLARE_HYPERDRIVE_LOCAL_CONNECTION_STRING_<BINDING_NAME>…