Skip to content

Commit

Permalink
chore: bump to 1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ocombe committed Dec 16, 2015
1 parent 05a9cb9 commit b773edf
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 5 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
<a name="1.2.5"></a>
# 1.2.5 (2015-12-16)


## Bug Fixes

- Change getItem(string[]) to return null for unknown keys instead of undefined
([4397b7db](https://github.com/ocombe/angular-localForage/commit/4397b7dbdc4ac8445bfc5ca57e6d85450b94744f))
- require localforage ~1.2.10
([b75ef139](https://github.com/ocombe/angular-localForage/commit/b75ef1397bfec9dac50fa43f624e0da1d5b2f600),
[#84](https://github.com/ocombe/angular-localForage/issues/84))
- gulpfile.js missing done var in build task
([670398ab](https://github.com/ocombe/angular-localForage/commit/670398ab120e0052cbaa5ed6103bd27ad2c7d6fd))
- ArrayBuffer binary type is now supported
([7b1be931](https://github.com/ocombe/angular-localForage/commit/7b1be931615312f6ba247c1d02a08042631df6cb))


<a name="1.2.4"></a>
# 1.2.4 (2015-12-16)

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angular-localforage",
"main": "dist/angular-localForage.js",
"version": "1.2.4",
"version": "1.2.5",
"homepage": "https://github.com/ocombe/angular-localForage",
"authors": [
"Olivier Combe <[email protected]>"
Expand Down
7 changes: 6 additions & 1 deletion dist/angular-localForage.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* angular-localforage - Angular service & directive for https://github.com/mozilla/localForage (Offline storage, improved.)
* @version v1.2.4
* @version v1.2.5
* @link https://github.com/ocombe/angular-localForage
* @license MIT
* @author Olivier Combe <[email protected]>
Expand Down Expand Up @@ -169,6 +169,11 @@
return res;
}
}).then(function() {
for (var i = 0; i < key.length; i++) {
if (angular.isUndefined(res[i])) {
res[i] = null;
}
}
deferred.resolve(res);
});
} else {
Expand Down
4 changes: 2 additions & 2 deletions dist/angular-localForage.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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-localforage",
"version": "1.2.4",
"version": "1.2.5",
"description": "Angular service & directive for https://github.com/mozilla/localForage (Offline storage, improved.)",
"license": "MIT",
"main": "dist/angular-localForage.js",
Expand Down

0 comments on commit b773edf

Please sign in to comment.