Skip to content

Commit 481e430

Browse files
committed
Bumped version and CHANGELOG
1 parent 40c3d3c commit 481e430

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGELOG

+24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
v0.7.0
2+
------
3+
* Support for complex keys, at least when using Angular 1.3.
4+
See docs/knownlimitations.md for details. Thanks @mike-marcacci for that
5+
awesome PR.
6+
* New format for 'titleMap', it can now also take a list.
7+
* Checkboxes have proper two way binding.
8+
* Validate entire form with $scope.$broadcast('schemaFormValidate')
9+
* If there is no title in neither schema nor form it defaults to the property
10+
name from the schema.
11+
* 'sf-options' attribute for globals options, with an option for form defaults.
12+
* Added 'ng-model-options' so Angular 1.3 users can validate on blur.
13+
* All validation, even required is now using tv4js, change 'validationMessage'
14+
accordingly. This means arrays validate.
15+
* 'Checkbox' type implies a default of false if none is set.
16+
* Changed tactics when it comes to bower deps, it now only depends on what you
17+
cannot go without, i.e. tv4, angular, angular-sanitize and objectpath. You
18+
have to add bootstrap and other dependencies manually (a lot are optional).
19+
* Lots of small bugfixes.
20+
21+
Thanks to @mike-marcacci, @sashless, @cameronprattedwards,@ianbeeston,
22+
@torstenrudolf and all of you who made a lot of issues and PR:s this summer!
23+
24+
125
v0.6.0
226
------
327
* array and tabarray support, with help from @zackbloom (thanks!).

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"dist/bootstrap-decorator.min.js",
66
"dist/bootstrap-datepicker.min.js"
77
],
8-
"version": "0.6.0",
8+
"version": "0.7.0",
99
"authors": [
1010
"Textalk",
1111
"David Jensen <[email protected]>"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-schema-form",
3-
"version": "0.6.0",
3+
"version": "0.7.0",
44
"description": "Create forms from a JSON schema",
55
"scripts": {
66
"test": "rm -fr coverage && ./node_modules/karma/bin/karma start --single-run --browsers PhantomJS karma.conf.js && find coverage/ -name lcov.info -print0 | xargs -0 cat | ./node_modules/coveralls/bin/coveralls.js"

0 commit comments

Comments
 (0)