Martin Janeček
Martin Janeček
The issue still exists: sentry-wizard doesn't support official react-native typescript starter. I haven't tested lately, but I believe it's still "lying" about that the wizard finished successfully (while it did...
Hi, as stated in README.md of this library, this is just wrapper around SDWebImage for iOS, which [claims to support animated WebP](https://github.com/rs/SDWebImage#supported-image-formats), and Glide for Android, [which seems to be...
There is currently no support for persisting/restoring reactive variables in apollo-cache-persist library. When I was looking into it, I didn't find a way to attach to apollo client/cache in a...
Hi, thanks for the report. I guess I messed something up in the `StorageType` inference here: https://github.com/apollographql/apollo-cache-persist/blob/eded0ff380cd4b5e9d33f93ae8cb48897a791d8d/src/types/index.ts#L21-L23 Maybe providing a `false` branch is required: ```ts declare type StorageType< T, TSerialize...
Oops, my mistake, timeout is actually [correctly converted to milliseconds](https://github.com/jamesisaac/react-native-background-task/blob/3b9b0e1bbb453a69fad1a2a3a7d7252f0e833b4b/android/src/main/java/com/jamesisaac/rnbackgroundtask/HeadlessTaskService.java#L30), only the log message has typo & shows `ms` instead of `s`. Closing this as it's not worth of an...
You must enable verification manually (is disabled by default) ``` GRAPHQL_JWT = { 'JWT_VERIFY_EXPIRATION': True, } ``` I believe this should be enabled by default - defaults should never lead...
I'll add my 2 cents: We had some success with relatively low effort with [tfoxy/graphene-django-optimizer](https://github.com/tfoxy/graphene-django-optimizer). Dataloaders, while explicit, required a bit much of boilerplate.
@daniel-skale **graphene-django-optimizer**: It's not *mainly* for grabbing lists, generally it attempts to avoid n+1 issue. You can use it to resolve single item queries too, although it's not clear from...
In it's [current implementation](https://github.com/jschneier/django-storages/blob/master/storages/backends/s3boto3.py#L602-L607) it seems that specifying `AWS_S3_CUSTOM_DOMAIN` (to bucket domain name) skips any unnecessary communication and basically returns the formatted url immediately, while respecting custom location and file...
The code causing the requests is [here](https://github.com/jschneier/django-storages/blob/master/storages/backends/s3boto3.py#L558-L582). Defining `AWS_S3_CUSTOM_DOMAIN` makes it run through the *fast branch*. I haven't tried it in combination with `AWS_CLOUDFRONT_KEY_ID`, but it looks like then the...