Releases: cujojs/wire
Releases · cujojs/wire
0.10.11: Add fan-out connections
- Allow incoming connections to "fan out" to multiple methods by supplying an array of method names (or pipelines).
0.10.10: Improve `create` factory
- Allow
create
to use a$ref
to a factory function, as well as args to create components.
0.10.9: Allow deep $ref
- Allow arbitrarily deep dot traversal in
$ref
s, eg:{ $ref: 'a.b.c.d.e' }
.
0.10.8: New `$imports` feature
- New
$imports
feature allows declaratively importing wire specs. Check out the docs for more info. - Minor internal unit/integration test fixes:
- Workaround gent+buster integration issue and update to gent 0.6.x. This only affects the ability to run unit tests.
- Fix unhandled rejection in unit test--exposed by when.js 3.2.x's new unhandled rejection reporting, win.
0.10.7
- Compatibility with when 2.6.0 - 3.x
0.10.6
0.10.5
- Fix for form submit handling in
wire/on
on devices supporting touch events. - Update docs to point to @pieter-vanderwerff's r.js builder plugin
0.10.4
0.10.3
- Experimental support for relative AMD plugin resource ids in wire specs. For example:
myTemplate: {
// Find template.html relative to the current wire spec
module: 'text!./template.html'
}