Tamlyn Rhodes
Tamlyn Rhodes
When POSTing with `mutlipart/form-data` the body and `Content-type` header contain a randomly generated boundary property: POST /api/auth/sign_in host: api.example.com content-type: multipart/form-data; boundary=--------------------------638137267150259757037725 body: ----------------------------638137267150259757037725\r\nContent-Disposition: form-data; name=\"email\"\r\n\r\[email protected]\r\n----------------------------638137267150259757037725\r\nContent-Disposition: form-data; name=\"password\"\r\n\r\nfoobar\r\n----------------------------638137267150259757037725--\r\n This prevents...
Postgres 9.5 introduced the `ON CONFLICT` clause which enables upsert behavior. Would you be open to a PR to add support for this to Massive as an option on `insert`?...
I've created a repro repo to demonstrate the problem: https://github.com/tamlyn/sls-package-bug Essentially the problem is this: - use the `package.patterns` SLS config to copy files into the package - run a...
# Environment Knex version: 2.1.0 Database + version: Postgres 14 OS: MacOS # Bug When querying a table like so: ```js knex('option') .insert({ key, value: JSON.stringify(value) }) .onConflict("key") .merge(["value"]) ```...
We ought to create some tests to help prevent regressions. Some functional tests such as "this package DB record should result in this package JSON file" and some platform tests...
I'm trying to write some end-to-end tests for my application which uses this module. My problem is that Protractor waits for all `$http` requests to finish before running the tests....
First of all Loki looks 😍 ! But it doesn't seem to support React Native Storybook 6.5 (which was finally released a few weeks ago after years of development). ```...
Is there a way to access the [Only Shrink Larger Images](http://www.imagemagick.org/Usage/resize/#shrink) flag? Otherwise my small images get scaled up which is of no benefit. On the command line you would...
This is because the isolated mode in RSG, which is used for getting the component URL, is not available when pagePerSection is true. See #14. Needs more testing (like does...
The new `pagePerSection` config in [React Styleguidist 6.5](https://github.com/styleguidist/react-styleguidist/releases/tag/v6.5.0) disables isolated mode. This means scraping fails as it uses the isolated mode buttons to get the component URL. ~~Looking into a...