Skip to content

Commit ede7cae

Browse files
committed
bump version
1 parent 6bc95b8 commit ede7cae

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,19 @@ forms with automatic insert and update events, and automatic reactive validation
66

77
## Change Log
88

9-
### 4.0.2 - 4.0.6
9+
### 4.1.0
10+
11+
* The "boolean-radios" input type now outputs the correct field value (`true`, `false`, or `undefined`) in all cases.
12+
* The "boolean-checkbox" input type now always returns either `true` or `false` as its value. Previously, it could return `undefined` instead of `false` sometimes.
13+
* You can now pass a comma-separated list of values to `afFieldValueContains` and it will return `true` if any of those values are in the array. (thanks @comerc)
14+
* The "select-multiple" input type now has initial values set properly. (thanks @BigDSK)
15+
* The "select-checkbox-inline" input type now has initial values set properly. (thanks @AlainPaumen)
16+
* When handling submission with `onSubmit`, you can now call `this.done(null, result)` when done, and `result` will be passed to `onSuccess` as the second argument. If there are multiple `onSubmit` hooks, only the first provided result will be passed to `onSuccess`.
17+
* When `onSuccess` is called after an `insert`, `this.docId` is now set to the new document `_id`.
18+
* Update forms should now reset properly (to values from database).
19+
* Other fixes (thanks @zimme and @mjgallag)
20+
21+
### 4.0.2 - 4.0.7
1022

1123
Several fixes
1224

package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Package.describe({
22
name: "aldeed:autoform",
33
summary: "Easily create forms with automatic insert and update, and automatic reactive validation.",
44
git: "https://github.com/aldeed/meteor-autoform.git",
5-
version: "4.0.7"
5+
version: "4.1.0"
66
});
77

88
Package.on_use(function(api) {

0 commit comments

Comments
 (0)