Skip to content

Commit

Permalink
Version 0.2.0 released
Browse files Browse the repository at this point in the history
  • Loading branch information
1602 committed Nov 14, 2011
1 parent d091106 commit c437b75
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
21 changes: 20 additions & 1 deletion CHANGELOG.md
@@ -1,9 +1,28 @@
## 0.2.0 For node 0.6.0, jugglingdb 0.0.6

A lot of changes in core, fully rewritten controllers flow, node 0.6.0 compatible

Migration notes:

- Model.allInstances deprecated, use Model.all
- No more class definition in model files, do it in db/schema.js
- If you want to define non-persistence class in model file, publish it using `publish` method, not `export` (not allowed in node 0.6.0).
- Mongoose driver not available out of box for direct using (only within jugglingdb logic layer)
- db/schema not reloaded every time in dev mode, you should reload server after changing `db/schema` [issue #63]

New features:

- logging actions, app.enable('log actions') to turn on
- logging jugglingdb queries
- generic routes: app.get(':controller/:action');
- incredibly fast controllers (2.5x faster) (controllers pool)
- sexy bootstrap scaffolding

## 0.1.9 Experimental release ## 0.1.9 Experimental release


- removed mongoose and datamapper, switched to jugglingdb - removed mongoose and datamapper, switched to jugglingdb
- cleaning up all generators stuff, related to different ORMs - cleaning up all generators stuff, related to different ORMs



## 0.1.8.1 ## 0.1.8.1


- RIAK datamapper *beta*, thanks Taliesin Sisson (https://github.com/taliesins) - RIAK datamapper *beta*, thanks Taliesin Sisson (https://github.com/taliesins)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -6,7 +6,7 @@
"keywords": ["mvc", "web-framework", "rails", "ruby-on-rails", "express", "railway"], "keywords": ["mvc", "web-framework", "rails", "ruby-on-rails", "express", "railway"],
"homepage": "http://railwayjs.com", "homepage": "http://railwayjs.com",
"engines": [ "engines": [
"node >= 0.4.0" "node >= 0.6.0"
], ],
"main": "lib/onrailway", "main": "lib/onrailway",
"bin": { "bin": {
Expand Down

0 comments on commit c437b75

Please sign in to comment.