Miroslav Bajtoš
Miroslav Bajtoš
**Timeboxed to 2 weeks**; don't spend extra time if done earlier Different platforms use different ways for configuring operational aspects of application in test/dev/production. LB4 should make it easy to...
Function arguments of type `boolean` are considered as a bad practice because they make the code difficult to read and reason about. Consider the following code: ```ts ctx.getBinding('repositories.todo', true); ```...
At the moment, it is not possible to use `@param` shortcuts like `@param.query.string` to define a required parameter. One has to use `@param` directly (but don't have to specify the...
### Content & configuration Swagger/OpenAPI definition: ```yaml parameters: filterParam: in: query name: filter schema: type: object style: deepObject explode: true description: Options for filtering the results required: false ``` Swagger-Client...
When running `saucelabs-mocha` and SAUCE_ACCESS_KEY or SAUCE_USERNAME is not defined, the task fails without telling the user what is wrong: ``` $ grunt test Running "connect:server" (connect) task Started connect...
In [loopback-next](https://github.com/strongloop/loopback-next), we have a pretty standard Lerna monorepo setup: - Several packages in subdirectories like `packages/core` and `examples/hello-world` - We use the default strategy to resolve monorepo-local dependencies (`lerna`...
I would like the connectors to leverage ES6 class inheritance. ## Acceptance criteria - [ ] Rework Connector and SqlConnector classes provided by loopback-connector to be implemented as ES6 classes....
I would like to allow connector authors to use async functions instead of the current callback style. ## Acceptance criteria - [ ] Define a new contract for connector: a...
Based on the discussion in https://github.com/strongloop/loopback/issues/1226, it may be useful to provide an operation hook triggered when the operation failed. This will allow hooks to clean up any temporary changes...
See the discussion in #824. We were not able to remove deprecated model hooks because embedded relations are still relying on them. > There is a feature for `inst.triggerParent` in...