announcements

Peter Taoussanis 2026-06-02T10:27:44.909369Z

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.

🎉 14
gersak 2026-06-02T11:11:33.989439Z

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.

2
🎉 2
4
hlship 2026-06-02T18:20:37.738809Z

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

7
1
❤️ 3
🎉 14
hlship 2026-06-02T18:49:58.520479Z

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.

djanus 2026-06-02T18:51:22.160949Z

Announcing Edsger, a handwritten Clojure REPL for the reMarkable 2: https://codeberg.org/nathell/edsger

😮 1
✏️ 6
⭐ 12
🤩 1
Giga Chokheli 2026-06-02T19:26:16.909459Z

Has anyone tried with Remarkable Paper Pro?

djanus 2026-06-02T19:28:50.744619Z

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

nnichols 2026-06-02T21:34:25.666249Z

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.

5
1
🙏 4
👋 1