Closed amxmln closed 1 year ago
This will be fixed in the next release. You can stick to 9.4.0 for now.
The code has been significantly changed with v10. Please reopen or create a new issue with a reproduction is you are still seeing this issue on v10. Thanks!
Hi everyone,
@isomorphic-git/cors-proxy depends on
micro
. One of my projects using that package wasn’t working correctly anymore this morning despite there not being any updates to the package itself.I narrowed it down to the upgrade of micro from
9.4.0
→9.4.1
that got applied silently when I upgraded other dependencies vianpm upgrade
.Forcing
micro
to stay at9.4.0
viaoverrides
inpackage.json
resolves the issue.Steps to reproduce:
npm install @isomorphic-git/cors-proxy
cors-proxy start
npm start
localhost:9999
in a browserFix:
overrides: { "micro": "9.4.0" }
topackage.json
node_modules
andpackage-lock.json
npm install
npm start
localhost:9999
in a browserThis issue did not happen on
v9.3.0
.I’m posting this here directly because it seems to have been a regression introduced in the patch release to
v9.4.1
which may or may not also affect other packages that depend onmicro
.Thank you for your time.