Patch Changes
-
#11117
6822aafThanks @emily-shen! - fix: show local/remote status before D1 command confirmationsD1 commands (
execute,export,migrations apply,migrations list,delete,time-travel) now display whether they're running against local or remote databases before showing confirmation prompts. This prevents confusion about which database will be affected by the operation. -
#11077
bce8142Thanks @petebacondarwin! - Ensure that process.env is case-insensitive on WindowsThe object that holds the environment variables in
process.envdoes not care about the case of its keys
in Windows. For example,process.env.SystemRootandprocess.env.SYSTEMROOTwill refer to the same value.Previously, when merging fields from
.envfiles we were replacing this native object with a vanilla
JavaScript object, that is case-insensitive, and so sometimes environment variables appeared to be missing
when in reality they just had different casing.