Skip to content

Commit

Permalink
v1.16.3. Bugfix. Improvement.
Browse files Browse the repository at this point in the history
- v1.16.3 February 5, 2013
	- Node v0.4 support
	- `balUtilPaths` changes:
		- Removed deprecated `console.log`s when errors occur (they are now
sent to the callback)
		- Fixed `determineExecPath` when executable requires the environment
configuration
	- `balUtilTypes` changes:
		- `isEmptyObject` now works for empty values (e.g. `null`)
	- `balUtilFlow` changes:
		- Added `clone`
		- Added `deepClone`
		- `setDeep` and `getDeep` now handle `undefined` values correctly
  • Loading branch information
balupton committed Feb 5, 2013
1 parent 3a3bd28 commit 306c76f
Show file tree
Hide file tree
Showing 22 changed files with 208 additions and 155 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -3,6 +3,7 @@ install: "npm install"
before_script: "./node_modules/.bin/cake test-prepare"
script: "./node_modules/.bin/cake test"
node_js:
- 0.4
- 0.6
- 0.8
- 0.9
Expand Down
6 changes: 1 addition & 5 deletions Cakefile
Expand Up @@ -72,11 +72,7 @@ setup = (opts,next) ->

test = (opts,next) ->
(next = opts; opts = {}) unless next?
args = []
args.push("--debug-brk") if opts.debug
args.push("#{OUT}/test/everything.test.js")
args.push("--joe-reporter=list")
spawn(NODE, args, {stdio:'inherit',cwd:APP}, next)
spawn(NPM, ['test'], {stdio:'inherit',cwd:APP}).on('exit',next)

finish = (err) ->
throw err if err
Expand Down
12 changes: 12 additions & 0 deletions History.md
@@ -1,5 +1,17 @@
## History

- v1.16.3 February 5, 2013
- Node v0.4 support
- `balUtilPaths` changes:
- Removed deprecated `console.log`s when errors occur (they are now sent to the callback)
- Fixed `determineExecPath` when executable requires the environment configuration
- `balUtilTypes` changes:
- `isEmptyObject` now works for empty values (e.g. `null`)
- `balUtilFlow` changes:
- Added `clone`
- Added `deepClone`
- `setDeep` and `getDeep` now handle `undefined` values correctly

- v1.16.2 February 1, 2013
- `balUtilPaths` changes:
- Added timeout support to `readPath`
Expand Down
7 changes: 5 additions & 2 deletions out/lib/compare.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions out/lib/events.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

54 changes: 38 additions & 16 deletions out/lib/flow.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 8 additions & 2 deletions out/lib/modules.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 306c76f

Please sign in to comment.