This is the first Release Candidate release of the upcoming major version 3.0.
See Release Notes and Migration Guide for more details.
List of notable changes made between 2.x and 3.0 in this repository follows below.
loopback-datasource-juggler was moved from peerDependencies to dependencies
Originally, we (ab)used peer dependencies to ensure there is only one instance
of loopback-datasource-juggler in the dependency tree, so that there is only
one singleton instance of model registry. This was very fragile and might not
have worked in certain edge cases.
We have reworked loopback-datasource-juggler and connectors to not rely on
a single juggler instance anymore. As the last step, juggler became a regular
dependency.
When upgrading application from previous loopback versions, simply remove
loopback-datasource-juggler from your dependencies.
always use bluebird as promise library
In version 3.0, we always use bluebird as our promise library
instead of global.Promise
.
We consider Bluebird API as part of LoopBack API from now on,
you are welcome to use any Bluebird-specific methods in your applications.
If you are using LoopBack with a custom promise implementation provided
via global.Promise
,
you will have to check all places where you are using non-standard promise API
and update them to use Bluebird API instead.
Please see related code changes.
new method of defining remoting metadata
In 2.0, remote methods were defined as:
methods: {
staticMethod: {
isStatic: true,
http: { path: '/static' }
},
instanceMethod: {
isStatic: false,
http: { path: '/instance' }
}
}
For 3.0, the isStatic flag is no longer required and will be determined from the method name.
Method name starting with "prototype." will be the same as having isStatic flag set to false.
methods: {
staticMethod: {
http: { path: '/static' }
},
'prototype.instanceMethod': {
http: { path: '/instance' }
}
Please see related code changes.
remove Change.handleError
Change.handleError
is now removed as it was used inconsistenly for a subset of possible
errors only. All Change methods will report all errors to the caller via the callback.
Use PersistedModel to report change-tracking errors via the existing method
PersistedModel.handleChangeError. This method can be customized on a per-model basis to
provide different error handling.
Please see related code changes.
remove unused user properties
The following properties are removed from the built-in User model in 3.0:
- credentials
- challenges
- status
- created
- lastUpdated
Developers that are relying on these properties, can redefine them in user.json
or equivalent model.json as follow:
{
"name": "MyUser",
"base": "User",
"properties": {
"credentials": { "type": "object" },
"challenges": { "type": "object" },
"status": "string",
"created": "date",
"lastUpdated": "date"
}
}
Please see related code changes.
Remove getters for Express 3.x middleware
Express 4.x stopped bundling commonly-used middleware. To simplify migration
of LoopBack 1.x applications (powered by Express 3.x) to LoopBack 2.x (powered
by Express 4.x), we created getter properties to allow developers to keep using
the old convention.
We have removed these getters in LoopBack 3.0, here is the full list of
removed properties together with the middleware module name to use instead:
loopback.compress
- userequire('compression')
insteadloopback.timeout
- userequire('connect-timeout')
insteadloopback.cookieParser
- userequire('cookie-parser')
insteadloopback.cookieSession
- userequire('cookie-session')
insteadloopback.csrf
- userequire('csurf')
insteadloopback.errorHandler
- userequire('errorhandler')
insteadloopback.session
- userequire('express-session')
insteadloopback.methodOverride
- userequire('method-override')
insteadloopback.logger
- userequire('morgan')
insteadloopback.responseTime
- userequire('response-time')
insteadloopback.favicon
- userequire('serve-favicon')
insteadloopback.directory
- userequire('serve-index')
insteadloopback.vhost
- userequire('vhost')
instead
We have also removed loopback.mime
, which was always set to undefined
.
See loopback#2349.
Remove loopback#errorhandler
We have removed loopback#errorhandler
middleware, users should use strong-error-handler
directly.
// server/middleware.json
{
// ...
"final:after": {
"strong-error-handler": {}
}
}
// server/middleware.development.json
{
"final:after": {
"strong-error-handler": {
"params": {
"debug": true
}
}
}
See also strong-error-handler's options and the related code change.
Remove current context API and middleware
We have removed the following current-context-related APIs:
loopback.getCurrentContext
loopback.createContext
loopback.runInContext
Additionally, loopback#context
middleware and remoting.context
server
config were removed too.
Upgrading from 2.x to 3.x
When upgrading from LoopBack 2.x, you need to disable or remove
remoting.context
configuration in your server config.
{
"remoting": {
"context": false, // or remove completely
// etc.
},
// etc.
}
Without this change, you will see the following error on the first HTTP request
received:
Unhandled error for request GET /api/Users:
Error: remoting.context option was removed in version 3.0.
See https://docs.strongloop.com/display/APIC/Using%20current%20context for more
details.
at restApiHandler (.../node_modules/loopback/server/middleware/rest.js:44:15)
at Layer.handle [as handle_request] (.../node_modules/express/lib/router/layer.js:95:5)
Setting up "current context" in 3.x
To setup "current context" feature in your LoopBack 3.x application, you
should use loopback-context
module:
-
Add
loopback-context
to your dependencies -
Configure the new context middleware in your
server/middleware-config.json
file{ "initial": { "loopback-context#per-request": {} } }
-
Replace all usages of
loopback.getCurrentContext
with the following:// at the top of your file var LoopBackContext = require('loopback-context'); // in your code var ctx = LoopBackContext.getCurrentContext(); if (ctx) { // use the context }
See also loopback#2564
and the official documentation
Remove sugar for creating models
app.model(modelName, settings)
, a sugar for creating non-existing model, is
now removed in favor of promoting use of:
app.registry.createModel(modelName, properties, options)
to create new modelapp.model(modelCtor, config)
to update existing model and attach it to app
Please see related code changes.