Skip to content

Commit 1e9e2e3

Browse files
committed
Merge pull request #163 from cujojs/fix-gent-buster
Workaround gent-buster issue
2 parents 88e5b93 + 7558139 commit 1e9e2e3

7 files changed

Lines changed: 14 additions & 8 deletions

File tree

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
language: node_js
22
node_js:
3-
- 0.8
43
- "0.10"
54
branches:
65
only:

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### 0.10.8
2+
3+
* No functional changes
4+
* Workaround gent+buster integration issue and update to gent 0.6.x. This only affects the ability to run unit tests.
5+
* Fix unhandled rejection in unit test--exposed by [when.js 3.2.x's new unhandled rejection reporting](https://github.com/cujojs/when/blob/master/docs/api.md#debugging-promises), win.
6+
17
### 0.10.7
28

39
* Compatibility with [when 2.6.0 - 3.x](//github.com/cujojs/when)

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wire",
3-
"version": "0.10.7",
3+
"version": "0.10.8",
44
"main": "./wire.js",
55
"dependencies": {
66
"meld": "~1",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wire",
3-
"version": "0.10.7",
3+
"version": "0.10.8",
44
"description": "A light, fast, flexible Javascript IOC container.",
55
"keywords": [
66
"ioc",
@@ -44,7 +44,7 @@
4444
"devDependencies": {
4545
"buster": "~0.7",
4646
"bower": "~1",
47-
"gent": "~0.5"
47+
"gent": "~0.6"
4848
},
4949
"main": "./wire",
5050
"directories": {

test/node/lib/loader/moduleId-test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,5 +100,6 @@
100100

101101
})(
102102
require('buster'),
103-
require('../../../../lib/loader/moduleId')
103+
require('../../../../lib/loader/moduleId'),
104+
require('gent/test-adapter/buster')
104105
);

test/node/refs-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ buster.testCase('refs', {
100100
'should fail wiring from plugin when target missing': function() {
101101
return wire({
102102
propTest: {
103-
create: 'test',
103+
create: {},
104104
properties: {
105105
thingProp: { $ref: 'thing' }
106106
}

wire.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
*
1212
* @author Brian Cavalier
1313
* @author John Hann
14-
* @version 0.10.7
14+
* @version 0.10.8
1515
*/
1616
(function(rootSpec, define){ 'use strict';
1717
define(function(require) {
1818

1919
var createContext, rootContext, rootOptions;
2020

21-
wire.version = '0.10.7';
21+
wire.version = '0.10.8';
2222

2323
createContext = require('./lib/context');
2424

0 commit comments

Comments
 (0)