Thomas Neidhart
Thomas Neidhart
I could not test yet on a cloud storage, so I feared that it will not work. Digging more into this topic, you can actually set properties for files stored...
that is indeed something to look into. could you provide a link to the vsix file for testing?
So when uploading an extension for publication, it is checked if the file exceeds the maximum allowed size: https://github.com/eclipse/openvsx/blob/master/server/src/main/java/org/eclipse/openvsx/ExtensionService.java#L111-L112 unfortunately that is done in a way by buffering the whole...
could you take a look at #1458 and check if it solves your problem? I noticed a follow up problem with browsers that do not correctly display the 413 and...
ty for the stacktrace, the used Ed25519Signer actually maintains an in-memory buffer of the data to be signed. Looking at ways to improve on that.
Fixing this is not obvious, we might be able to use openssl cli to do the signing for us instead of loading the file into memory for signing. Do you...
ty for the background, that is useful to know. The feature works just you need to be aware that signing is currently fully done in memory. I did a search...
We should really make a distinction between api calls that will also be advertised on https://open-vsx.org/swagger-ui/index.html and API endpoints that are only intended to be used by the WebUI. Ideally...
yes exactly. I dont know about your preference, but I usually prefer to organize endpoints in smaller controller classes to be able to better grasp where things are located instead...
we dont assign tickets to outside contributors, but you are free to submit a PR ofc.