Skip to content

Commit

Permalink
As exciting as the 'bonus track' in the README was, this pulls it out…
Browse files Browse the repository at this point in the history
… into ROADMAP.md to avoid confusion
  • Loading branch information
mikermcneil committed Feb 16, 2017
1 parent 7b3e5f3 commit b321cfb
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 133 deletions.
133 changes: 0 additions & 133 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,136 +57,3 @@ All tests are written with [mocha](https://mochajs.org/) and should be run with
[Waterline](http://waterlinejs.org), like the rest of the [Sails framework](http://sailsjs.com), is free and open-source under the [MIT License](http://sailsjs.com/license).

![[email protected]](http://sailsjs.com/images/bkgd_squiddy.png)

 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 




## Experimental features

Below, you'll find a handful of experimental features that you might enjoy.

> Please be aware that these are in the early stages and should not be relied upon
> as production features of Waterline. They could change at any time-- even on a patch
release! **You have been warned!**

#### Experimental lifecycle and accessor methods

```js
var Waterline = require('waterline');
```

+ `Waterline.start(opts, function(err, orm) { /*...*/ })`
+ `Waterline.stop(orm, function(err) { /*...*/ })`
+ `Waterline.getModel(modelIdentity, orm)`

> For detailed usage, see the source code (bottom of `lib/waterline.js` in this repo.)
27 changes: 27 additions & 0 deletions ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,30 @@ Feature | Summary
Do not mess with identity case | Identities of models should not be lowercased per default, better be left as defined. See [issue](https://github.com/balderdashy/waterline/issues/745) for more details.
Support JSONB in PostgreSQL | Add support for JSONB querying in the Postgres adapter. This requires modifing/extending the criteria language. See [issue](https://github.com/balderdashy/sails-postgresql/issues/212) for more details.
Deep populate | [#1052](https://github.com/balderdashy/waterline/pull/1052) | Recursively populate child associations.




 
 


## Experimental features

Below, you'll find a handful of experimental features. If you're interested in them, please try them out and provide [feedback](http://twitter.com/sailsjs)! It helps the core team and other open-source contributors from the community prioritize our efforts, and it lets us know what works and what doesn't. (As always, we welcome your [contributions](http://sailsjs.com/contribute)!)

> Please be aware that these are in the early stages and should not be relied upon
> as production features of Waterline. They could change at any time-- even on a patch
release! **You have been warned!**

#### Experimental lifecycle and accessor methods

```js
var Waterline = require('waterline');
```

+ `Waterline.start(opts, function(err, orm) { /*...*/ })`
+ `Waterline.stop(orm, function(err) { /*...*/ })`
+ `Waterline.getModel(modelIdentity, orm)`

> For detailed usage, see the source code (bottom of `lib/waterline.js` in this repo.)

0 comments on commit b321cfb

Please sign in to comment.