All Versions
12
Latest Version
Avg Release Cycle
83 days
Latest Release
2530 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v0.9.6 Changes
October 22, 2016No changes (version bump due to error in publishing 0.9.5)
-
v0.9.5 Changes
October 22, 2016๐ Changes
- ๐ Use global object
$
(jQuery or jQuery alternative) if available, fixing #646
- ๐ Use global object
-
v0.9.4 Changes
August 10, 2016๐ Changes
- โก๏ธ Updated sightglass to
v0.2.6
, fixing #572
- โก๏ธ Updated sightglass to
-
v0.9.3
August 10, 2016 -
v0.9.2 Changes
August 10, 2016 -
v0.9.1 Changes
August 07, 2016๐ Changes
- ๐ Fix bug in expression with multiple strings #620
-
v0.9.0 Changes
May 21, 2016๐ Changes
- ๐ Fix binders which received 0 instead of undefined when HTML attributes were empty #567
- ๐ Now functions are not executed by Rivets in expressions. To call the function you need to use the
call
formatter. See documentation here #571 - ๐ Support for nested rv-each with an index for each iteration. Index names can be configured, see documentation here #551
- ๐ Support for pipes in quoted arguments #432
- ๐ Support for constant string in component HTML attributes #478
- ๐ Fix rebind bug when a templated used nested
rv-if
binders #611
โฌ๏ธ Upgrading from 0.8
0๏ธโฃ Since 0.9 Rivets will not execute functions by default. This will allow passing arguments to function with the
call
formatter.- Calling function in 0.8
{ item.myFunction }
- Calling function in 0.9
{ item.myFunction | call}
- Calling function in 0.9 with arguments
{ item.myFunction | call myArgument 'argument as string'}
- You can force function executions to have your application work in
0.9
without using thecall
formatter. This is done with the configurationrivets.configure({ // Since rivets 0.9 functions are not automatically executed in expressions. If you need backward compatibilty, set this parameter to true executeFunctions: true });
- Calling function in 0.8
Using multiple indexes in nested
rv-each
. Since0.9
rivets allows to have a specific index variable for each iteration.<ul> <li rv-each-todo="todos"> <ul> <li rv-each-item="todo.items"> <span>item #{ %item% } in todo #{ %todo%}</span> <!-- Here the index will be the same as %item% --> </li> </ul> </li> <ul>
The
index
is still available for compatibility reasons but you must be aware that it will only represent the last iteration.
-
v0.8.1
March 21, 2015 -
v0.8 Changes
๐ Changes
- ๐ More refined and useful components API. Some documentation is available here.
-
v0.7.2
January 03, 2015