Miroslav Bajtoš
3c209ee1de
Fix Karma config to babelify node_modules too
...
Before this change, dependencies in node_modules (e.g. strong-remoting)
were not transformed to ES5 and thus crashed the tests in PhantomJS.
Note that loopback-datasource-juggler cannot be babelified to ES5
because it does not correctly support strict mode yet.
2017-02-01 12:27:42 +01:00
Miroslav Bajtoš
76dd35e1d8
Merge pull request #3169 from ebarault/feature/promisify-role-mapping
...
Add promise support to built-in model RoleMapping
2017-02-01 10:29:50 +01:00
Miroslav Bajtoš
e19c0dd974
Merge pull request #3165 from strongloop/enable/coveralls
...
Add nyc coverage, report data to coveralls.io
2017-02-01 10:11:58 +01:00
ebarault
ceceb44e78
Add promise support to built-in model RoleMapping
2017-02-01 09:51:43 +01:00
Miroslav Bajtoš
c099d8c731
Merge pull request #3163 from ebarault/feature/promisify-acl
...
Add promise support to built-in model ACL
2017-01-31 14:54:26 +01:00
Miroslav Bajtoš
dcb2f159ec
Merge pull request #3160 from strongloop/fix/token-invalidation-on-save
...
Preserve sessions on User.save() making no changes
2017-01-31 14:38:48 +01:00
ebarault
a63fad402e
Add promise support to built-in model ACL
2017-01-31 14:09:43 +01:00
Miroslav Bajtoš
7eeadc4289
Add nyc coverage, report data to coveralls.io
2017-01-31 14:09:02 +01:00
Miroslav Bajtoš
c7e0a15a44
Merge pull request #3166 from strongloop/upgrade/eslint-config
...
Upgrade eslint config, fix linter errors
2017-01-31 14:08:31 +01:00
Miroslav Bajtoš
3b17a0cf5c
Upgrade eslint config, fix linter errors
2017-01-31 13:44:32 +01:00
Miroslav Bajtoš
bb939bec07
Merge pull request #3161 from strongloop/fix/role-properties
...
Add missing type to Role properties definition
2017-01-30 16:08:33 +01:00
David Hernandez
c072d0695d
Add missing type to Role properties definition
...
Fix "created" and "modified" to be defined with type "date".
2017-01-30 11:37:33 +01:00
Miroslav Bajtoš
5fd79b14f4
Merge pull request #3146 from strongloop/feature/promisify-role
...
Promise-ify built-in Role model
2017-01-30 11:32:28 +01:00
Miroslav Bajtoš
8f80aecc1f
Preserve sessions on User.save() making no changes
2017-01-30 11:30:05 +01:00
Miroslav Bajtoš
5607460854
Merge pull request #3149 from strongloop/fix/es6-in-phantomjs
...
Enable ES6/ES2015 goodness
2017-01-30 09:36:02 +01:00
Miroslav Bajtoš
1d02e049b2
Merge pull request #1496 from strongloop/fix/logout-without-token
...
Fail with "401 Unauthorized" when token is not provided to User.logout()
2017-01-30 09:23:12 +01:00
Ritchie Martori
d45c1ae7bb
Fix logout to handle no or missing accessToken
...
Return 401 when the request does not provide any accessToken argument
or the token was not found.
Also simplify the implementation of the `logout` method to make only
a single database call (`deleteById`) instead of `findById` + `delete`.
2017-01-30 08:56:18 +01:00
Miroslav Bajtoš
0fd8f8af72
Promise-ify built-in Role model
2017-01-27 17:16:59 +01:00
Miroslav Bajtoš
82d6ede086
Merge pull request #3150 from strongloop/remove/forgotten-jscsrc
...
Remove .jscsrc that's no longer used
2017-01-27 16:06:14 +01:00
Miroslav Bajtoš
19c3b47c4b
Remove .jscsrc that's no longer used
2017-01-27 15:23:59 +01:00
Miroslav Bajtoš
be8dd0ded8
Enable ES6/ES2015 goodness
...
- Remove ES5 parser exception from .eslintrc
- Configure Karma to use Babel to transpile ES6 sources to ES5,
because PhantomJS does not support ES6
- Upgrade es5-shim to es6-shim
2017-01-27 11:31:57 +01:00
Miroslav Bajtoš
450aa84ae8
Merge pull request #3138 from strongloop/fix/language-in-tests
...
Use English when running Mocha tests
2017-01-27 11:24:52 +01:00
Miroslav Bajtoš
78f8b9124a
Remove test/support.js from karma config
...
The file no longer exists.
2017-01-26 10:11:08 +01:00
Miroslav Bajtoš
93ab8644c4
Use English when running Mocha tests
2017-01-26 10:11:08 +01:00
Miroslav Bajtoš
dfa1f6035b
Merge pull request #3107 from benkroeger/master
...
Role model: resolve related models by name
2017-01-25 10:48:15 +01:00
Simon Ho
035f4d095b
Merge pull request #3131 from strongloop/update-issue-template
...
Update ISSUE_TEMPLATE
2017-01-23 11:17:08 -08:00
Simon Ho
c6427065be
Update ISSUE_TEMPLATE
...
- Minor formatting edits to reduce scrolling
- Clean up sentence in the last comment
2017-01-23 10:26:50 -08:00
Miroslav Bajtoš
4c9c6236e3
Merge pull request #3074 from ariskemper/fix_user_id
...
Fix User model to handle custom PK name
2017-01-23 09:43:19 +01:00
Rand McKinney
9a1f86baef
Merge pull request #3126 from joesepi/updatereadme
...
Updating README to show loopback-cli and remove arc mention
2017-01-20 14:21:37 -08:00
Joe Sepi
746265b393
Updating README - add cli and remove arc
2017-01-20 17:15:01 -05:00
Aris Kemper
efd8237dc6
Fix User methods to use correct Primary Key
...
Do not use hard-coded "id" property name, call `idName()` to get the
name of the PK property.
2017-01-20 16:24:59 +01:00
Miroslav Bajtoš
a7d93f32b5
Merge pull request #3120 from strongloop/fix/user-reset-password
...
Fix User.resetPassword to call createAccessToken()
2017-01-20 10:58:31 +01:00
João Ribeiro
e63fea83f7
Fix User.resetPassword to call createAccessToken()
...
This allows User subclasses to override the algorithm used for building
one-time access tokens for password recovery.
2017-01-19 16:27:22 +01:00
Benjamin Kroeger
a6d511d8b4
Role model: resolves related models by name
...
Resolve models related to the `Role` model by name instead of class.
2017-01-16 15:48:24 +01:00
Miroslav Bajtoš
ff53933085
3.2.1
...
* Preserve current session when invalidating tokens (Miroslav Bajtoš)
* Clean up access-token-invalidation tests (Miroslav Bajtoš)
* Update docs.json (Rand McKinney)
* Simplify issue template (#3083 ) (Simon Ho)
* Warn about injectOptionsFromRemoteContext (Miroslav Bajtoš)
2017-01-16 12:01:47 +01:00
Miroslav Bajtoš
4ffe5fe17f
Merge pull request #3098 from strongloop/preserve-current-access-token
...
Preserve current session when invalidating access tokens
2017-01-16 10:35:39 +01:00
Miroslav Bajtoš
e17cc3d23a
Preserve current session when invalidating tokens
...
Fix User model to preserve the current session (provided via
"options.accessToken") when invalidating access tokens after a change
of email or password property.
2017-01-16 10:08:30 +01:00
Miroslav Bajtoš
24bb15233d
Clean up access-token-invalidation tests
2017-01-16 10:08:30 +01:00
Miroslav Bajtoš
3946462828
Merge pull request #3097 from strongloop/remove-context-api-doc
...
Update docs.json
2017-01-13 14:28:29 +01:00
Rand McKinney
9fec6e1615
Update docs.json
...
Remove files that are no longer used.
2017-01-12 14:25:38 -08:00
Simon Ho
d2e9e7ee77
Simplify issue template ( #3083 )
...
Favour form editing over going down a checklist. Also fix automatic 2
subtasks creation side effect from old issue template.
2017-01-11 17:04:19 -08:00
Miroslav Bajtoš
b86eac5cf6
Merge pull request #3080 from strongloop/feature/warn-on-injectOptionsFromRemoteContext
...
Warn about injectOptionsFromRemoteContext
2017-01-10 15:38:24 +01:00
Miroslav Bajtoš
3e2ac9217f
Warn about injectOptionsFromRemoteContext
...
The option injectOptionsFromRemoteContext was added to LoopBack 2.x only
and is not available in LoopBack 3.x (and newer).
When a model with this option is encountered, we are printing a warning
message now, to let the user know about this change between 2.x and 3.x.
2017-01-09 14:45:23 +01:00
Miroslav Bajtoš
3ed525f753
3.2.0
...
* Upgrade eslint-config to 7.x (Miroslav Bajtoš)
* Allow password reset request for users in realms (Bram Borggreve)
* Fix construction of sharedCtor remoting metadata (Miroslav Bajtoš)
* Add option disabling periodic change rectification (kobaska)
* Fix annotation for persistedModel.count (lschricke)
* Applied as reviewed by @flowersinthesand (박대선)
* Fix false emailVerified on user model update (박대선)
* Contextify DAO and relation methods (Miroslav Bajtoš)
* Implement new http arg mapping optionsFromRequest (Miroslav Bajtoš)
* Emit resetPasswordRequest event with options (Sergey Reus)
2017-01-09 13:00:18 +01:00
Miroslav Bajtoš
4e6f9b978a
Merge pull request #3075 from strongloop/upgrade-eslint
...
Upgrade eslint-config to 7.x
2017-01-06 12:54:58 +01:00
Miroslav Bajtoš
70eecfab70
Upgrade eslint-config to 7.x
2017-01-06 12:12:35 +01:00
David Cheung
12be94e0db
Merge pull request #2998 from fullcube/bb/password-reset-realms-3.x
...
Allow password reset request for users in realms (v3.x)
2017-01-05 12:34:23 -05:00
Bram Borggreve
cddfb9c77d
Allow password reset request for users in realms
2017-01-05 09:47:18 -05:00
Miroslav Bajtoš
298635dad1
Merge pull request #2992 from DA-14/feature/resetPasswordRequest
...
Emit resetPasswordRequest event with options
2017-01-05 15:33:22 +01:00
Miroslav Bajtoš
8a2c01b3d8
Merge pull request #3070 from strongloop/fix/sharedCtor-remoting
...
Fix construction of sharedCtor remoting metadata
2017-01-05 11:37:30 +01:00