Martin Iwanowski
Martin Iwanowski
https://github.com/koajs/koa/issues/1114 Notice it being branched from [fl0w:refactor-back](https://github.com/koajs/koa/pull/1115), needs rebase post merge.
semver major, #1114 This could be done as semver minor - if an application setting is addd, e.g. `app.responsOverride = true` or something.
The simple solution to drop special-cased `'back'` in `response.redirect`. I can't label but should be labeled as version-major. This PR **does not** make use of Symbol as purposed in #904....
## Introduction By example ```js const model = Model.forge({ name: 'My New Model' }) model.related('relation').set({ name: 'Relation Name' }) // belongsTo Model await model.save() await model.related('relation').save() // e.g. relatedData.parentFk ===...
Hi, I'm trying my luck using async iterators, with the end goal to use `for-await`. However, a peculiar behaviour occurred while awaiting within the loop. I am not sure if...
https://github.com/koajs/koa/issues/998