Chris Veness
Chris Veness
It might be worth reaching out on [Reactiflux](https://www.reactiflux.com/) if you haven't already. Or possibly [redux](https://github.com/reduxjs/redux). Failing anything else, I might be able to backport the UTM zone override to a...
I will have to write up some notes! I will have to check to be certain, but I think everything from `latlon-vectors.js` is now in `latlon-nvector-spherical.js`. You may find [www.movable-type.co.uk/scripts/geodesy-library.html](https://www.movable-type.co.uk/scripts/geodesy-library.html)...
I've written up some migration notes at [www.movable-type.co.uk/scripts/geodesy-library-migrating-from-v1.html](https://www.movable-type.co.uk/scripts/geodesy-library-migrating-from-v1.html). Let me know if I've missed anything!
Version 1.1.0 of the library uses old-style ES5-compatible CommonJS modules. CJS modules are imported with the `require` function, so `const Geohash = require('latlon-geohash')`. Version 2.0.0 uses the newer EcmaScript-Modules; ESM...
I always believe performance changes should be backed up by metrics: have you timings to establish the performance impact of this change?
Could you try checking the types & values of `storedPassword` & `storedKdf`: i.e. console.log('storedPassword', typeof storedPassword, storedPassword); console.log('storedKdf', typeof storedKdf, storedKdf);
@Jimjardland thanks for that suggestion: I don't think I would have worked that one out! @mdhornet90 would that explain your issues? Are you using Jest for your tests? I have...
Bump?
I am also having problems with koa-session (in fact, koa-flash) which I suspect may be related to this. I am using virtual host apps as per https://github.com/koajs/examples/tree/master/vhost. Is it possible...
I don't recall any longer what the issue turned out to be, but I am successfully using koa-session on a per-app basis with Koa v2: e.g. https://github.com/chrisveness/koa-sample-web-app-api-mysql/blob/master/app.js (don't know about...