Custom element renaming
Some of the Custom Element callbacks and APIs were renamed at the spec level. The polyfills and docs have been updated to reflect these changes:
document.register-> document.registerElemententeredViewCallback -> attachedCallbackleftViewCallback -> detachedCallbackThe old names will be supported for a while long.
Single-use bindings
Anywhere you use {{}}, you can now use double brackets ([[]]) and the result will be a one-time binding. Polymer fills this value once.
<div foo="this value is inserted once: [[ obj.value ]]">
One time bindings can potentially be a performance win if you don't need the overhead of setting up property observation.
Other
Node.bind can now take an Observable interface.