Results 72 comments of rburgst

any updates on this? I would love to be able to use pnpm

when will 2.0.17 be released?

Hm, its not listed on the github releases

Is there a timeline for this? Also the missing tools in this container/image (see #8 ) make this hard to achieve for me on my own.

I totally agree with @filiphr . Also the fact that basically EVERY other db container offers such a feature should be an indication that this is a VERY useful thing...

actually I cannot even install `cypress-plugin-snapshots` on `cypress-7.4.0` since npm bombs out due to the peer dependency spec `cypress@"^4.5.0"`.

For http BASIC auth this is trivial. For digest it's IMHO not so easy since usually the digest is a handshake between server and client where both parties trade nonces....

To get preemptive HTTP Basic Authentication you can simply add the basic auth header yourself: https://stackoverflow.com/a/57360804/464773. Alternatively you can use the https://github.com/rburgst/okhttp-digest/blob/master/src/main/java/com/burgstaller/okhttp/AuthenticationCacheInterceptor.java and pre-inject the HTTP Basic Authentication. As said...