Philipp
Philipp
### Description Not quite sure if this changed recently, but at least I did not notice it before. I reviewed a PR of another user and kept it open in...
### Motivation and Context Support extending the `exportOptions` through the `buildOpts`. Resolves #1209 ### Checklist - [x] I've run the tests to see all new and existing tests pass -...
# Feature Request ## Motivation Behind Feature When building the ios app I want to set some additional [`exportOptions`](https://github.com/apache/cordova-ios/blob/07383c17d8cb30c6e36fdccec52c90b4c6ba64e2/lib/build.js#L218), for example set `uploadSymbols` to `false`. *(I need this to not...
I just went ahead and implemented it, but feel free to close this PR if you don't want this feature. Closes #243 Not sure if the passed status code should...
When throwing a `ServerError` it would be great to be able to set the `status` of the `Response`. For example I would like to throw a `401 Unauthorized` error, e.g....
From [Breaking Changes](https://github.com/electron/electron/blob/6932e17088831dd19e5f678a665fccf24b6d8d74/docs/breaking-changes.md#deprecated-remote-module): > The `remote` module is deprecated in Electron 12, and will be removed in Electron 14. It is replaced by the [`@electron/remote`](https://github.com/electron/remote) module. This package uses the...
Fixes #5690 In [b97d49b](https://github.com/knex/knex/commit/b97d49b1847791b3e1c437710af514d9fbc545fd) the order in which the `columns` and `values` where build changed. But the order is important if the raw `columns` statement contained value bindings. Because the...
This might not be a problem with the linter UI but with the linter/plugin itself, but I still wanted to ask here first. I'm using `linter-eslint` and noticed some weird...
This PR improves the return type of the `props` function ```ts const val = await props( { a: 1, b: delay( 10 ).then( ( ) => 2 ) } );...
Fixes #5626 I wasn't sure how to the schema builder correctly because the issue only occurs right before the query is executed by calling [`enrichQueryObject`](https://github.com/knex/knex/blob/9bd12999907436c2ef51f786df09a9a7e8931cca/lib/execution/internal/query-executioner.js#L25). https://github.com/knex/knex/blob/9bd12999907436c2ef51f786df09a9a7e8931cca/lib/client.js#L153 So I added a...