-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not compatible with datomic 1.0.6527 #10
Comments
I added #11 to address this. |
For any future readers: A fork with this patch is available on clojars with coordinate |
Thanks @favila! Would love it if a new release could be made from this repo as well, being the official one. Thanks in advance! :) |
@favila thanks a ton - @vvvvalvalval any chance of a release to fix this? |
@vvvvalvalval could you be so very kind and release this fix? It blocks Fulcro from abandoning the old datomic-free for the new, truly free stuff. 🙏 |
Datomic 1.0.6527 added additional methods to the Connection interface related to io-stats to support the new arities of transact and transact async. The
datomic.api/transact
andtransact-async
wrappers seem to always use this new method, even if called with only one argument.This means datomock fails with 1.0.6527. Exceptions look like this:
A quick fix is to add the additional method signatures but ignore the io-stat argument:
The text was updated successfully, but these errors were encountered: