https://clojurians.slack.com/archives/C015AL9QYH1/p1757855038420669
Is the biff starter avaliable as a git project? Would make it simpler to merge the changes into the datomic and datalevin starter projects
It's not set up as a standalone git project; it's only in the starter directory of the main biff repo. However you could use git diff/`git format-patch` to get just the changes from a set of commits that affected that directory and then apply them to the other starter projects. e.g. git diff v1.8.10 v1.9.0 -- starter | sed 's/starter\///g' > starter-changes.patch(replacing v1.8.10 with whatever biff version you have in the starter projects' deps.edn) and then git apply starter-changes.patch in the other repos.
Thanks, updated the projects to 1.9.0 now 🙂