All Versions
149
Latest Version
Avg Release Cycle
116 days
Latest Release
1049 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v4.1.3 Changes
November 12, 2020 -
v4.1.2 Changes
April 21, 2019 -
v4.1.1 Changes
April 21, 2019 -
v4.1.0 Changes
April 20, 2019๐ v4.1.0 view commit logs
๐ Features
CollectionView#addChildView
now accepts apreventRender
option.- 0๏ธโฃ Marionette now uses
el.ownerDocument.documentElement;
by default instead ofdocument.documentElement
for querying, customizable viaDomApi.getDocumentEl
. - ๐ The UMD build now reinstates
noConflict
for using multiple versions on the global scope.
๐ Fixes
- ๐ Fixed a case where a child view could potentially get multiple
destroy
events. - Pre-rendered views from outside of a region will now correctly empty an current view in a region if shown.
CollectionView
'semptyView
will now respect thechildViewContainer
for attachment.
Misc
- โก๏ธ Updated backbone dependency to allow for 1.4 without a warning.
- โก๏ธ Tooling and testing was updated and improved removing gulp.
- ๐
Region._setElement
was added for internal use, but may be made public in a future release.
-
v4.0.0 Changes
August 06, 2018๐ v4.0.0 view commit logs
๐ฅ Breaking Changes
โฌ๏ธ The breaking changes are documented in the upgrade guide.
๐ Features
- ๐
CollectionView
can now render a template in the same fashion of the removedCompositeView
. View#triggers
now passes the originating DOM event object as the final argument of the triggered Mn event.- View classes now have the
bindRequests
andunbindRequests
API. - ๐ฆ The ES6 package was exposed in
package.json
onjsnext:main
- โก๏ธ The underscore dependency was updated to include 1.8.3 - 1.9.x.
๐ Documentation
๐ The documentation structure was overhauled to provide a flow to reading through the docs.
- ๐
-
v4.0.0-beta.1 Changes
July 23, 2018๐ For v4 documentation:
๐ https://github.com/marionettejs/backbone.marionette/blob/v4-beta/docs/installation.mdโฌ๏ธ For the v3-v4 upgrade guide:
โฌ๏ธ https://github.com/marionettejs/backbone.marionette/blob/v4-beta/docs/upgrade-v3-v4.md -
v4.0.0-alpha.1 Changes
June 08, 2018๐ For 4v documentation:
๐ https://github.com/marionettejs/backbone.marionette/blob/v4-alpha/docs/installation.md -
v3.5.1 Changes
November 09, 2017๐ Fixes
View
entity events set ininitialize
were being undelegated ifmodelEvents
orcollectionEvents
were undefined.
-
v3.5.0 Changes
November 05, 2017๐ Features
NextCollectionView
'sfilter
event now returns the attaching and detached views.- ๐
unbindEvents
andunbindRequests
can now be called without handlers to remove all handlers from an entity.
๐ Fixes
- ๐ If an event handler on a behavior was undefined it would remove any prior defined handler.
- When a behavior is destroyed it will now undelegate the behavior events and triggers.
- ๐ When a view was added a performance check on
NextCollectionView
would sometimes prevent existing views from sorting correctly. NextCollectionView
viewFilter
will now be called with the same arguments with underscore or lodash.
๐ Deprecations
- Multiple handlers for a single event. If needed, use a single handler to call multiple methods.
-
v3.4.4 Changes
October 03, 2017๐ Fixes
- ๐ป Prevent exception when a view is instantiated with a non-existing selector
el
. - ๐ When a collection defines the
NextCollectionView
sort order, the add at end performance improvement was removed to prevent edge case errors. NextCollectionView
no longer sorts according to the collection ifsortWithCollection
is set to false.- When views added to
NextCollectionView
from a collection don't have a matching model, removing the model no longer throws an error.
Misc
- โก๏ธ
NextCollectionView
now uses backbone update flags instead of calculating changes for sorting
- ๐ป Prevent exception when a view is instantiated with a non-existing selector