Dexie 3.2 is out #1436
Replies: 3 comments 3 replies
-
All further releases on 3.x will originate from master-3 as the main master branch is now reflecting the 4.0-track. |
Beta Was this translation helpful? Give feedback.
-
keep coming back to dexie.js cuz it's one of the best idb out there! I'm amazed to come back and see that it got support for reactive stuff, super cool! An non dexie.js pice of code (that use native idb directly) wouldn't be able to trigger the dexie.js changes, right? |
Beta Was this translation helpful? Give feedback.
-
Also notice the new toClass stuff. making the class reactive with getter/setters as well using the Proxy and just be able to write stuff like: export class Friend extends Entity {
id
name
age
birthday() {
this.age++
}
} |
Beta Was this translation helpful? Give feedback.
-
3.2.0 released
At last, Dexie with liveQuery() is released as stable version which is a big step as samples and tutorials on the home page could be updated to recommend using the new reactive feature of Dexie.
With all the news in 3.2 it could have been argued it should be a new major version, but that could also make people more hesitated from upgrading, and since there are no breaking changes from 3.0.3 I decided to let it stay on the same major.
See release notes
Beta Was this translation helpful? Give feedback.
All reactions