Skip to content

Commit

Permalink
Bump package version to 4.1.0, update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Sorin committed Mar 8, 2016
1 parent 3364680 commit 4e87fca
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.1.0

`Get` operations are now using [IDBObjectStore.prototype.getAll](https://developer.mozilla.org/en-US/docs/Web/API/IDBObjectStore/getAll) internally in all browsers which support this API. Currently these browsers are stable Chromium-based and Firefox. This API is activated when you run fetch operations without index and special direction (e.g. when only `limit`, `offset` or `range` are specified). [JSPerf test](http://jsperf.com/idb-idbcursor-vs-idbobjectstore-getall-ops/3) shows that you get 200%-1000% speed increase for your get operations when using this API, so it's time to update `sklad` to this version :)

## 4.0.0

A huge work has been done to support library in all major browsers. Now Sklad supports stable versions of Chrome, Firefox, IE11 in Win8/10, Microsoft Edge, Safari9 desktop/mobile and Android browser. All tests run in SauceLabs platform for continuous integration through TravisCI. Special thanks goes to [Paul Kilmurray](https://github.com/kilbot), you're the man!
Expand Down
2 changes: 1 addition & 1 deletion dist/sklad.min.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion dist/sklad.uncompressed.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sklad",
"version": "4.0.0",
"version": "4.1.0",
"description": "Promise-based IndexedDB thin abstraction layer",
"directories": {
"doc": "docs"
Expand Down

0 comments on commit 4e87fca

Please sign in to comment.