Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

Commit

Permalink
Merge pull request #1368 from yahoo/rs-optimizations
Browse files Browse the repository at this point in the history
Resource Store Optimizations
  • Loading branch information
aljimenez committed Apr 17, 2014
2 parents bfa61aa + 1050f79 commit 81a1d22
Show file tree
Hide file tree
Showing 6 changed files with 170 additions and 289 deletions.
23 changes: 16 additions & 7 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
version 0.9.3
=============

Notes
-----

* Various improvements to the Resource Store, which reduce start up time.
* Yahoo Arrow dependency was upgraded to [email protected]

version 0.9.2
=================
=============

Notes
-----
Expand All @@ -14,7 +23,7 @@ Notes
* Express devDependency was upgraded to [email protected]

version 0.9.1
=================
=============

Notes
-----
Expand All @@ -29,18 +38,18 @@ Notes
* Express devDependency was upgraded to [email protected]

version 0.9.0
=================
=============

Notes
------------
-----

This release introduces a set of new APIs and concepts.

Please refer to some of the examples apps under the [`examples/`](https://github.com/yahoo/mojito/tree/develop/examples) folder to get
an overview of what has changed.

Deprecations, Removals
------------
----------------------

* Mojito no longer supports `index.js` and `server.js` to start up the server.
Applications will instead instantiate Mojito as follows:
Expand Down Expand Up @@ -99,7 +108,7 @@ Deprecations, Removals


Features
------------
--------

* To register Mojito routes programmatically instead of using `routes.json`:

Expand Down Expand Up @@ -142,7 +151,7 @@ New Dependencies
[`express-annotations`](https://github.com/yahoo/express-annotations#express-annotations)

version 0.8.3
=================
=============

Bug Fixes
---------
Expand Down
121 changes: 0 additions & 121 deletions lib/app/addons/rs/dispatch-helper.js

This file was deleted.

5 changes: 3 additions & 2 deletions lib/app/autoload/package-walker.server.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,9 @@ BreadthFirstPackageWalker.prototype._walkPackage = function(work, cb) {
};
work.pkg = pkg;
}
cb(null, work);
this._walkModules(work);
if (cb(null, work) !== false) {
this._walkModules(work);
}
};


Expand Down
Loading

0 comments on commit 81a1d22

Please sign in to comment.