-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Checking in changes prior to tagging version "0.6.5".
Changelog diff: diff --git a/History.md b/History.md index 0123ea0..0aba874 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,6 @@ +0.6.5 / 2014-02-03 + * Export `util`, which comes with the define-schema helper + 0.6.4 / 2014-01-05 * Fix plv8x not bootstrapped when client flag is specified
- Loading branch information
Showing
5 changed files
with
14 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ author: | |
email: '[email protected]' | ||
name: 'plv8x' | ||
description: 'Use JavaScript expressions and modules in PostgreSQL plv8' | ||
version: '0.6.4' | ||
version: '0.6.5' | ||
keywords: <[postgres pg database plv8]> | ||
main: \lib/index.js | ||
bin: | ||
|
@@ -27,12 +27,12 @@ dependencies: | |
async: \0.2.x | ||
optimist: \0.6.x | ||
pg: \2.8.x | ||
resolve: \0.5.x | ||
resolve: \0.6.x | ||
one: \2.5.x | ||
tmp: '0.0.x' | ||
LiveScript: \1.1.x | ||
LiveScript: \1.2.0 | ||
# 'coffee-script': \* | ||
'js-yaml': \* | ||
'js-yaml': \3.0.x | ||
devDependencies: | ||
mocha: \* | ||
chai: \* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ describe 'db', -> ``it`` | |
<- plx.import-bundle \LiveScript './node_modules/LiveScript/package.json' | ||
rows <- plx.query "select |> $1 as ret" ['~> plv8x.require "LiveScript" .VERSION'] | ||
console.log rows | ||
expect rows.0.ret .to.equal \1.1.1 | ||
expect rows.0.ret .to.equal \1.2.0 | ||
done! | ||
.. 'livescript data |> ->', (done) -> | ||
rows <- plx.query "select $1 |> $2 as ret", [ JSON.stringify({ hello: [2, 3, 4] }), '-> @hello.1' ] | ||
|
@@ -45,7 +45,7 @@ describe 'db', -> ``it`` | |
<- plx.import-bundle \LiveScript './node_modules/LiveScript/package.json' | ||
rows <- plx.query "select ~> $1 as ret" ['plv8x.require "LiveScript" .VERSION'] | ||
console.log rows | ||
expect rows.0.ret .to.equal \1.1.1 | ||
expect rows.0.ret .to.equal \1.2.0 | ||
done! | ||
.. 'livescript data ~>', (done) -> | ||
rows <- plx.query "select $1 ~> $2 as ret", [ JSON.stringify({ hello: [2, 3, 4] }), '[email protected]' ] | ||
|