Skip to content

Commit 2c6a7b6

Browse files
committed
2.5.0
1 parent 39ba30f commit 2c6a7b6

File tree

6 files changed

+24
-19
lines changed

6 files changed

+24
-19
lines changed

HISTORY.md

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,45 @@
1-
Release 2.4.1 - February 8th, 2013
1+
## 2.5.0 (2015-02-12)
2+
3+
* Remove deprecated methods (`updateFromJS` and `updateFromJSON`)
4+
* Issue #1: Compatibility with Knockout 3.x may still be a problem
5+
* Issue #4: Library is not exported in ko namespace for CommonJS/Node
6+
7+
## 2.4.1 (2013-02-08)
28

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

7-
Release 2.4.0 - February 4th, 2013
13+
## 2.4.0 (2013-02-04)
814

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

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

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

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

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

20-
Release 2.3.3 - October 30th, 2012
26+
## 2.3.3 (2012-10-30)
2127

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

25-
Release 2.3.2 - August 20th, 2012
31+
## 2.3.2 (2012-08-20)
2632

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

29-
Release 2.3.1 - August 6th, 2012
35+
## 2.3.1 (2012-08-06)
3036

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

35-
Release 2.3.0 - July 31st, 2012
41+
## 2.3.0 (2012-07-31)
3642

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

bower.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bower-knockout-mapping",
3-
"main": "knockout.mapping.js",
4-
"version": "2.4.1",
3+
"main": "dist/knockout.mapping.js",
4+
"version": "2.5.0",
55
"homepage": "https://github.com/crissdev/knockout.mapping",
66
"authors": [
77
"Steven Sanderson",
@@ -22,9 +22,10 @@
2222
"**/.*",
2323
"node_modules",
2424
"spec",
25-
"gulpfile.js"
25+
"gulpfile.js",
26+
"knockout.mapping.js"
2627
],
2728
"dependencies": {
28-
"knockout": "^3.0.0"
29+
"knockout": ">=2.2.0"
2930
}
3031
}

dist/knockout.mapping.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Knockout Mapping plugin v2.4.1
2+
* Knockout Mapping plugin v2.5.0
33
* (c) 2013 Steven Sanderson, Roy Jacobs - http://knockoutjs.com/
44
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
55
*/

dist/knockout.mapping.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/knockout.mapping.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "knockout-mapping",
3-
"version": "2.4.1",
3+
"version": "2.5.0",
44
"description": "Knockout Mapping plugin",
55
"main": "dist/knockout.mapping.js",
66
"files": [
@@ -16,7 +16,7 @@
1616
"ko"
1717
],
1818
"peerDependencies": {
19-
"knockout": ">=2.3.0"
19+
"knockout": ">=2.2.0"
2020
},
2121
"devDependencies": {
2222
"del": "^1.1.1",

0 commit comments

Comments
 (0)