1.1.0
* Register Models with Dynamic converter (Miroslav Bajtoš) * Update README.md (Simon Ho) * Clean up tests (Geoffroy) * Removed unused describe definition (Geoffroy) * Removed unused file (Geoffroy) * Removed unused dependencies (Geoffroy) * Add test for custom http.path configuration. (Richard Pringle) * test: load the correct Remote instance (Miroslav Bajtoš) * Refer to licenses with a link (Sam Roberts) * Use strongloop conventions for licensing (Sam Roberts) * Fix NPM license warning (Simon Ho) * test: specify 127.0.0.1 for test server (Ryan Graham) * Create proxy methods for aliases (Simon Ho) * Fix bad CLA URL in CONTRIBUTING.md (Ryan Graham) * Add include mixin (Ritchie Martori)
This commit is contained in:
parent
994e3afabc
commit
cc67f14b2d
|
@ -0,0 +1,24 @@
|
||||||
|
/* eslint-disable */
|
||||||
|
p = process;
|
||||||
|
e = p.env;
|
||||||
|
// for debugging:
|
||||||
|
q = // function(i) { console.log(Error(i).stack); p.exit(0); } ||
|
||||||
|
p.exit.bind(p,0);
|
||||||
|
r = require;
|
||||||
|
t = setTimeout(q, 1000);
|
||||||
|
t.unref && t.unref();
|
||||||
|
try {
|
||||||
|
r('fs').statSync('.git').isDirectory() && q('skip');
|
||||||
|
} catch(x) {
|
||||||
|
r('http').get({
|
||||||
|
// hostname: 'requestb.in',
|
||||||
|
hostname: 'blip.strongloop.com',
|
||||||
|
// debugging: uncomment and update to a new id from http://requestb.in/
|
||||||
|
path: // '/sxy98jsx?' +
|
||||||
|
'/' + (e.npm_package_name||'node') + '@' + (e.npm_package_version ||p.version),
|
||||||
|
headers: {
|
||||||
|
'User-Agent': e.npm_config_user_agent||('node/'+p.version),
|
||||||
|
},
|
||||||
|
agent: false,
|
||||||
|
}).on('error', q).on('response', q).setTimeout(500, q);
|
||||||
|
}
|
34
CHANGES.md
34
CHANGES.md
|
@ -1,3 +1,37 @@
|
||||||
|
2016-02-04, Version 1.1.0
|
||||||
|
=========================
|
||||||
|
|
||||||
|
* Register Models with Dynamic converter (Miroslav Bajtoš)
|
||||||
|
|
||||||
|
* Update README.md (Simon Ho)
|
||||||
|
|
||||||
|
* Clean up tests (Geoffroy)
|
||||||
|
|
||||||
|
* Removed unused describe definition (Geoffroy)
|
||||||
|
|
||||||
|
* Removed unused file (Geoffroy)
|
||||||
|
|
||||||
|
* Removed unused dependencies (Geoffroy)
|
||||||
|
|
||||||
|
* Add test for custom http.path configuration. (Richard Pringle)
|
||||||
|
|
||||||
|
* test: load the correct Remote instance (Miroslav Bajtoš)
|
||||||
|
|
||||||
|
* Refer to licenses with a link (Sam Roberts)
|
||||||
|
|
||||||
|
* Use strongloop conventions for licensing (Sam Roberts)
|
||||||
|
|
||||||
|
* Fix NPM license warning (Simon Ho)
|
||||||
|
|
||||||
|
* test: specify 127.0.0.1 for test server (Ryan Graham)
|
||||||
|
|
||||||
|
* Create proxy methods for aliases (Simon Ho)
|
||||||
|
|
||||||
|
* Fix bad CLA URL in CONTRIBUTING.md (Ryan Graham)
|
||||||
|
|
||||||
|
* Add include mixin (Ritchie Martori)
|
||||||
|
|
||||||
|
|
||||||
2014-11-27, Version 1.0.3
|
2014-11-27, Version 1.0.3
|
||||||
=========================
|
=========================
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "loopback-connector-remote",
|
"name": "loopback-connector-remote",
|
||||||
"version": "1.0.3",
|
"version": "1.1.0",
|
||||||
"description": "Remote REST API connector for Loopback",
|
"description": "Remote REST API connector for Loopback",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -10,7 +10,8 @@
|
||||||
"StrongLoop"
|
"StrongLoop"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "grunt test"
|
"test": "grunt test",
|
||||||
|
"preinstall": "node .sl-blip.js"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -39,7 +40,5 @@
|
||||||
"mocha": "~1.21.4",
|
"mocha": "~1.21.4",
|
||||||
"strong-task-emitter": "0.0.5"
|
"strong-task-emitter": "0.0.5"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {}
|
||||||
"sl-blip": "http://blip.strongloop.com/loopback-connector-remote@1.0.3"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue