Commit Graph

767 Commits

Author SHA1 Message Date
Ritchie Martori a2f931ed3f Refactor ACL to allow for `methodNames` / aliases 2014-06-02 14:41:08 -07:00
Raymond Feng 2fd3c834e6 Update README and the module diagram 2014-05-30 17:22:31 -07:00
Miroslav Bajtoš acf7af0c4e Merge pull request #287 from strongloop/feature/connector-registry
app: implement `connector()` and `connectors`
2014-05-28 17:01:24 +02:00
Miroslav Bajtoš 94ec5c294a app: implement `connector()` and `connectors`
Allow browserified applications to explicitly register connectors
to use in data-sources via `app.connector(name, exportsFromRequire)`.

Include built-in connectors like `Memory` and `Remote` in the registry.

Modify `dataSourcesFromConfig()` to resolve the connector via
`app.connectors` first and only then fall back to auto-require
the connector module.
2014-05-28 15:11:43 +02:00
Miroslav Bajtoš d0c87d3420 Merge pull request #285 from STRML/fixRestApiRootTypo
Fix a typo in `app.boot` caused by the change from restBasePath to restApiRoot.
2014-05-28 14:56:46 +02:00
Samuel Reed e625028486 Fix a typo in `app.boot`.
This typo was caused by the change from restBasePath to restApiRoot.

Signed-off-by: Samuel Reed <sam@tixelated.com>
2014-05-28 17:25:41 +08:00
Miroslav Bajtoš 7508337d56 Merge pull request #283 from strongloop/feature/single-datasource-registry-per-app-instance
Make app.datasources unique per app instance
2014-05-28 09:45:04 +02:00
Raymond Feng 411021269c Merge tag 'v1.8.5'
1.8.5
2014-05-27 11:00:03 -07:00
Raymond Feng 12f9695d13 Merge branch 'release/1.8.5' into production 2014-05-27 10:59:55 -07:00
Raymond Feng 5af3b2e9ae Bump version 2014-05-27 10:58:58 -07:00
Raymond Feng 815dbc94e6 Add postgresql to the keywords 2014-05-27 10:58:26 -07:00
altsang c952d4055a updated package.json with SOAP and framework keywords 2014-05-27 10:55:04 -07:00
Raymond Feng 80e5bf0ce6 updated package.json with keywords and updated description 2014-05-27 10:54:39 -07:00
Raymond Feng 1f40eef8d9 Merge tag 'v1.8.4'
1.8.4
2014-05-27 10:25:13 -07:00
Raymond Feng be0ca7e1ce Merge branch 'release/1.8.4' into production 2014-05-27 10:25:07 -07:00
Raymond Feng 68c79ba2df Add more keywords 2014-05-27 10:24:26 -07:00
Raymond Feng b971734791 Bump version 2014-05-27 10:22:27 -07:00
Miroslav Bajtoš 7cfe450161 Make app.datasources unique per app instance
This removes a source of confusion in unit-tests.
2014-05-27 14:33:42 +02:00
Miroslav Bajtoš 1154e3def8 Merge pull request #277 from strongloop/feature/flatten-models-json
app: flatten model config
2014-05-27 08:14:59 +02:00
Miroslav Bajtoš 227c2d05cd app: flatten model config
Support flat structure of model config objects, where model options
are set as top-level properties.

Before:

    Customer: {
      dataSource: 'db',
      options: {
        base: 'User'
      }
    }

Now:

    Customer: {
      dataSource: 'db',
      base: 'User'
    }
2014-05-27 08:10:20 +02:00
Raymond Feng 25250a03d1 Merge pull request #268 from strongloop/feature/update-deps
Feature/update deps
2014-05-26 21:53:45 -07:00
Raymond Feng ed0b568542 Fix the test for mocha 1.19.0
See 6c705cd4d4
2014-05-26 21:52:48 -07:00
Raymond Feng 0b315964d3 Update dependencies 2014-05-26 21:52:48 -07:00
Rand McKinney 1ebeca66f2 Added more keywords 2014-05-23 17:48:37 -07:00
Raymond Feng 1b79eff582 Update README and the module diagram 2014-05-23 13:34:50 -07:00
Rand McKinney bc8678a1ff added "REST API" keyword 2014-05-23 09:57:25 -07:00
Rand McKinney d26905506c added 'web' and 'framework' keywords 2014-05-23 09:56:27 -07:00
Rand McKinney f3001ef95e Make image URL absolute for npmjs.org. 2014-05-22 11:58:27 -07:00
Miroslav Bajtoš b00271e6e2 Merge pull request #271 from strongloop/fix/dep-syntax
Use common syntax for juggler dep
2014-05-22 08:30:56 +02:00
Ritchie Martori 5ea3b1ee87 Use common syntax for juggler dep 2014-05-21 13:43:20 -07:00
Miroslav Bajtoš 570cc000cc Merge pull request #263 from strongloop/feature/include-token-in-rest-middleware-alt
Modify `loopback.rest` to include `loopback.token`
2014-05-21 20:03:10 +02:00
Miroslav Bajtoš bfb154d445 Modify `loopback.rest` to include `loopback.token`
Make `loopback.rest` self-contained, so that authentication works
out of the box.

    var app = loopback();
    app.enableAuth();
    app.use(loopback.rest());

Note that cookie parsing middleware is not added, users have to
explicitly configure that if they want to store access tokens
in cookies.

Modify `loopback.token` to skip token lookup when the request already
contains `accessToken` property. This is in line with other
connect-based middleware like `cookieParser` or `json`.
2014-05-21 15:22:36 +02:00
Ritchie Martori 81d29875be 1.8.3 2014-05-20 15:03:29 -07:00
Ritchie Martori ec2e877a63 Merge pull request #267 from strongloop/fix/validation-test
Relax validation object test
2014-05-20 14:46:58 -07:00
Ritchie Martori 4c5a29f0a4 Merge pull request #266 from strongloop/fix/juggler-version
Make juggler version a bit more strict
2014-05-20 14:46:46 -07:00
Ritchie Martori 7eeed19bf0 Relax validation object test 2014-05-20 14:39:28 -07:00
Ritchie Martori 198e52feeb Make juggler version a bit more strict to avoid pulling in breaking changes 2014-05-20 14:10:49 -07:00
Raymond Feng 94875fdd3c Merge pull request #244 from strongloop/feature/cla
Add CLA
2014-05-20 10:06:50 -07:00
Rand McKinney 473eadbc94 Change module diagram to local png 2014-05-19 14:16:31 -07:00
crandmck 41f0b24f47 Add LoopBack modules diagram 2014-05-19 14:10:37 -07:00
sumitha 486860c552 Update README.md 2014-05-19 13:19:12 -07:00
sumitha a8813a6e1a Update README.md 2014-05-19 13:16:35 -07:00
Al Tsang 468a35c060 Update README.md
added back pixel parameter
2014-05-18 22:35:15 -07:00
Al Tsang 8ccece15c9 Update README.md
pointed so sl-beacon.appspot.com directly instead of beacon.strongloop.com
2014-05-18 22:33:25 -07:00
altsang e18a6a3acd added github prefix to path 2014-05-18 22:22:44 -07:00
altsang 5859582dd9 removed githalytics, added sl-beacon 2014-05-18 21:54:25 -07:00
Miroslav Bajtoš a7d132f992 Merge tag 'v1.8.2'
v1.8.2
2014-05-16 20:15:03 +02:00
Miroslav Bajtoš 8a924c3e73 Merge branch 'release/1.8.2' into production 2014-05-16 20:11:08 +02:00
Miroslav Bajtoš b24d5e9d20 1.8.2 2014-05-16 20:10:29 +02:00
Miroslav Bajtoš 0da9faf981 Merge pull request #258 from strongloop/feature/relax-juggler-dependency
Support all 1.x versions of datasource-juggler
2014-05-16 19:23:24 +02:00