Antoine Monnet
Antoine Monnet
Some meat about the well known issue : https://forums.aws.amazon.com/thread.jspa?threadID=269585&tstart=0 https://github.com/awslabs/aws-serverless-java-container/issues/112
Hi there, Thank's @squeaky-pl, @jefforulez i've settled on this middleware, which strips stage from PATH_INFO and add it to SCRIPT_NAME if PATH_INFO starts with the stage name. ```python def strip_stage_prefix_middleware(app):...
Hi @adamchainz I've written the above PR. As a conservative measure, i've left the default parameter value to disabled, as there could be an edge case where the path could...
True, i was so displeased by the bundling issue i rewrote from scratch (i'm always amazed how good dynamic imports look from far away ;-) ) Now the driverFromUri takes...
I think i should go back to the previous approach to export the regexp from each driver module. And keep the new one for the loader. What do you think...
Is it wrong to support browser runtimes ? In fact i started my development especially for this cross-environment ability. Relative url for file: or db+sqlite: is quite possible & not...
A RFC about the generality of url for reflexion : https://datatracker.ietf.org/doc/html/rfc1738#section-2.1 I'm almost done for the generic loader ( but the part we are discussing on). I will work on...
Is it possible someway to mark node:fs external so that it doesn't represent an issue at client bundle build ?
I've * refactored uri to url, * renamed protocol to scheme * refactored the factoryloader to dynamicaly import with raw string * dropped the browser bundle It would be less...
Hey @pi0 Do you have a good advice to handle driver import location in the all bundle ? I don't want to import from `unstorage/drivers/` because it's not available until...