Minor Changes
- 2423529: Add new static error page that informs users when they forgot to set the
nodejs_compat
flag.
This should be clearer that the simple text message we've been providing previously (which is
still being used as a fallback in case the new page is not available for some reason).
Patch Changes
-
29d3041: improve routing by following more closely Vercel's routes matching logic
-
69efaa5: Reinstate the use of the package-manager-manager package introduced in #474 and temporarily removed in #475,
this fixes the bug that was caused by the package by bumping the package itself (where the bug has been fixed)
and adding appropriate catches when the package methods can throw (in case other unexpected issues arise in the
future) -
ab83858: Changes to the x-vercel-ip headers to bring their structure in line with deployments to Vercel.
-
6600d2a: fix wasms not always getting imported when necessary
Details:
when dealing with wasms that have more than 1 consumer, when we collect
the wasm imports to prepend for a specific edge funcion we're always
re-setting the array of wasm imports instead of appending them, this
causes edge functions to always only consider the last wasm
import, the changes here fix such behavior