http://www.taoensso.com/nippy v3.7.0-RC1 v3.7.0-RC2 is https://github.com/taoensso/nippy/releases/tag/v3.7.0-RC2! 👋
Nippy is a fast serialization library for Clojure.
v3.7 introduces significant performance improvements.
Releasing tyrell https://gersak.github.io/tyrell/
Framework agnostic web component interaction primitives!
Focused on minimized bundle size ~70kB gzipped
This release is about https://gersak.github.io/tyrell/guides/theming layer . New opt-in tyrell-brand.css. Load it after tyrell.css, set --ty-brand-hue + --ty-brand-chroma, and the whole library rebrands coherently in light and dark mode.
Theme your components with minimal number of variables!
:root {
--ty-brand-hue: 47;
--ty-brand-chroma: 0.135;
--ty-secondary-offset: -25;
}
Fixes:
• React boolean props finally work right. Two bugs squashed across all 24 wrappers:
"false" is no longer treated as truthy
true → false flips now propagate on React 18
• The practical consequence: <TyModal open={open}> driven by parent state actually closes when you flip open to false. Same for disabled, required, loading, clearable, readonly, multiline, and every other boolean prop.
• Modal/popup event leaks gone. Child popups (dropdowns, multiselects, date-pickers) inside a modal no longer accidentally close the modal when they close themselves.
com.walmartlabs/lacinia 1.3.0 Lacinia is an open-source implementation of the GraphQL specification, in Clojure. GraphQL is an outstanding approach to getting diverse clients and servers exchanging data cleanly and efficiently. GitHub repo: https://github.com/walmartlabs/lacinia Documentation: http://lacinia.readthedocs.io/en/latest/ This release of Lacinia improves performance by providing a pre-built Antlr4J parser (this required generating and compiling Java classes, rather than using interpreted parsing). It also addresses missing support for certain GraphQL schema syntaxes, and improves schema introspection and validation. It also updates compliance with the specification, including allowing interfaces to implement other interfaces. https://github.com/walmartlabs/lacinia/milestone/34?closed=1
I'd really like to call out Hyunwoo Nam for the work on the Antlr changes. It's a big boost in performance, and reduces the size of Lacinia's dependencies by quite a bit.
Announcing Edsger, a handwritten Clojure REPL for the reMarkable 2: https://codeberg.org/nathell/edsger
Has anyone tried with Remarkable Paper Pro?
Not to my knowledge, but volunteers are welcome! You’ll need to cross-compile let-go and ImageMagick yourself, as I think the rmpp is aarch64, not armv7
https://github.com/nnichols/clojure-lint-action (Which uses reviewdog to post clj-kondo findings back to Pull Requests) is now available at v9 / 300bf4db85ff2b237c3b6dd3a1d3abfaa0f195ed
The most recent changes focused on dependency upgrades, and supporting a BYO-clj-kondo-version argument. The most pressing change is that I've moved the repository to https://github.blog/changelog/2025-08-26-releases-now-support-immutability-in-public-preview/. I still generally recommend pinning by SHA, but the releases going forward will keep whatever immutability guarantees GitHub provides.