loopback-datasource-juggler
loopback-datasource-juggler copied to clipboard
Connect Loopback to various Data Sources
### Describe the bug some loopback components depends on a vulnerable version of nanoid from loopback-datasource-juggler dependencies ### Logs ```shell === npm audit security report === ┌──────────────────────────────────────────────────────────────────────────────┐ │ Manual Review...
## Suggestion shortid package uses nodes cluster mode. Passenger deployment environment does not support/allow for Nodes cluster mode. This becomes a blocker even when the shortid package feature not being...
### pm2 start server with two instance , ### two instance connect one mysql server.  ``` Component.queue = async (obj, appId, projectId, accessToken) => { const Project = Component.app.models.project;...
I don't have enough familiarity with the codebase to write the necessary tests; We can put it into the backlog or someone else can help write and push some tests...
## Steps to reproduce 1. Create a model with a property of either of the following types: JSON, Any, or Object 2. Ensure the property above is not required. 3....
## Steps to reproduce 1. Create a model including a property like: ``` "properties" : { .... "list": { "type": ["string"], "index": true } ... } ``` 2. Add "scope"...
Starting from `[email protected]` queries using `like`, `nlike`, `ilike`, and `nilike` operators on SQL DBs (PostgreSQL in my case) fails, because the presence of parentheses (like in `{where: {name: {nlike: 'Internal...
## Steps to reproduce Create a model called Book with the properties id,author,title Add a hasMany relation between the default User model and the Book model using a through Model...
## Steps to reproduce Create a model called Book with the properties id,author,title Add a hasMany relation between the default User model and the Book model using a through Model...
The following code works fine in v3.30.0: ``` const query = { where: { or: [ { username: username }, { email: username } ] } }; self.userModel.findOne(query, function (err,...