Orgad Shaneh

Results 411 comments of Orgad Shaneh

Ok, I now reverted all the changes in the lib, and renamed the flag to `--ssl-no-verify-host`. All it does it unsetting `CURLOPT_SSL_VERIFYHOST` without unsetting `CURLOPT_SSL_VERIFYPEER` (`--insecure` unsets both). Notice that...

> I remain convinced that curl doesn't need another insecure option. Also the new option name makes it even more difficult to detect if a script/app is using any insecure...

By the way, `--ssl-no-revoke` is also "less secure", but doesn't have an explicit prefix.

> I still lack a proper motivation for this new option. `--insecure`, `--resolve` and `--connect-to` should be able to fulfill most use cases. And if they don't, I want to...

We're still trying to figure out what was the intention behind this (it was done in 2011 😅), and if we can come up with a better solution for our...

Reopened just to rebase. You may ignore this.

Workaround until this is properly fixed: Replace: ```ts import defs from './file.json' with {type: 'json'} ``` With: ```ts const defs = (await import('./file.json', { with: { type: 'json' } })).default;...

> This might be something you would do for the `slim` variants, but please don't do this for every image. Alpine is already slim enough. Sure, done.

Though the size reduction for alpine is even better in percentage: 90M -> 67M. Is there a reason not to strip?