Skip to content

Commit

Permalink
2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
crissdev committed Feb 12, 2015
1 parent 39ba30f commit 2c6a7b6
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 19 deletions.
24 changes: 14 additions & 10 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,45 @@
Release 2.4.1 - February 8th, 2013
## 2.5.0 (2015-02-12)

* Remove deprecated methods (`updateFromJS` and `updateFromJSON`)
* Issue #1: Compatibility with Knockout 3.x may still be a problem
* Issue #4: Library is not exported in ko namespace for CommonJS/Node

## 2.4.1 (2013-02-08)

* Added mappedGet for observable arrays
* Issue #134: Throttle issue using mapping
* Issue #135: Why is custom update for observableArray firing twice when using mapping plugin?

Release 2.4.0 - February 4th, 2013
## 2.4.0 (2013-02-04)

* Removed asynchronous processing that was used to reset mapping nesting
* Improved getType performance

Release 2.3.5 - December 10th, 2012
## 2.3.5 (2012-12-10)

* Issue #121: Added functionality so that explicit declared none observable members on a ViewModel will remain none observable after mapping

Release 2.3.4 - November 22nd, 2012
## 2.3.4 (2012-11-22)

* Issue #114: Added new "observe" array to options

Release 2.3.3 - October 30th, 2012
## 2.3.3 (2012-10-30)

* Fixed issue #105, #111: Update callback is not being called
* Fixed issue #107: String values in mapping cause infinite recursion in extendObject

Release 2.3.2 - August 20th, 2012
## 2.3.2 (2012-08-20)

* Fixed issue #86: Don't update properties on object with update callback

Release 2.3.1 - August 6th, 2012
## 2.3.1 (2012-08-06)

* Fixed issue #33: Create method in mappings receive meaningless options.parent for observableArray properties
* Fixed issue #99: Updating throttled observable
* Fixed issue #100: private variable leaks onto window object

Release 2.3.0 - July 31st, 2012
## 2.3.0 (2012-07-31)

* Added support for not mapping certain array elements (return "options.skip" from your create callback)
* Fixed issue #91: "wrap" function makes computed writable
* Fixed issue #94: Bug/problem with ignore argument in mapping.fromJS

Release 2.2.4
9 changes: 5 additions & 4 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bower-knockout-mapping",
"main": "knockout.mapping.js",
"version": "2.4.1",
"main": "dist/knockout.mapping.js",
"version": "2.5.0",
"homepage": "https://github.com/crissdev/knockout.mapping",
"authors": [
"Steven Sanderson",
Expand All @@ -22,9 +22,10 @@
"**/.*",
"node_modules",
"spec",
"gulpfile.js"
"gulpfile.js",
"knockout.mapping.js"
],
"dependencies": {
"knockout": "^3.0.0"
"knockout": ">=2.2.0"
}
}
2 changes: 1 addition & 1 deletion dist/knockout.mapping.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Knockout Mapping plugin v2.4.1
* Knockout Mapping plugin v2.5.0
* (c) 2013 Steven Sanderson, Roy Jacobs - http://knockoutjs.com/
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/knockout.mapping.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/knockout.mapping.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "knockout-mapping",
"version": "2.4.1",
"version": "2.5.0",
"description": "Knockout Mapping plugin",
"main": "dist/knockout.mapping.js",
"files": [
Expand All @@ -16,7 +16,7 @@
"ko"
],
"peerDependencies": {
"knockout": ">=2.3.0"
"knockout": ">=2.2.0"
},
"devDependencies": {
"del": "^1.1.1",
Expand Down

0 comments on commit 2c6a7b6

Please sign in to comment.