announcements

2025-12-08T13:35:12.717919Z

https://github.com/paintparty/bling v0.9.0 - Hi-fidelity printing for Clojure, ClojureScript, and Babashka clojurists-togetherMany thanks to Clojurists Together for the generous support! Much of the work that went into this release was done as part of my Q2 project for Clojurists Together, and the new callout features are made possible by the upstream changes made with the help of Q3 funding for https://github.com/paintparty/fireworks. - Enhanced hiccup support for composing paragraphs and nested text styling for bold, italics, and colors. https://github.com/paintparty/bling/issues/15 - Boxed callouts, available via :theme value of :boxed. (see screenshot) https://github.com/paintparty/bling/issues/47 - Post-processing pipeline for browser dev console targets. Appearance of callouts in browser dev console should be identical with terminal emulator output. https://github.com/paintparty/bling/issues/41 - bling.ansi namespace for ANSI SGR utilities - bling.core/?sgr debugging utility works better and preserves original styling.

17
1
🎉 8
2025-12-08T13:36:16.304089Z

Hiccup support example:

(bling [:p "First paragraph"]
       [:p [:bold
            "Bold, "
            [:italic "bold italic, "
             [:red "bold italic red, "]]
            "bold."]]
       "Last line")
Boxed callout example:
(callout {:colorway      :positive
          :theme         :boxed
          :label         "Success!"
          :side-label    "myns.app.core:11:42"
          :padding-left  3
          :padding-right 5
          :width         60}
         (bling "This is a callout with a " [:bold ":theme" ] " of " [:bold ":boxed"] "\n\n"
                "A second line of text, which will automatically get wrapped, based on the width and padding of the box.\n\n"
                "A third line of text."))

neumann 2025-12-11T00:55:03.618869Z

@jcoyle I don't see a tag for v0.9.0.

2025-12-11T02:23:33.828699Z

Fixed! Thank you @neumann for bringing this to my attention 🙌

neumann 2025-12-11T02:47:42.283439Z

No problem!

Jacob Emcken 2025-12-08T21:20:25.691389Z

https://github.com/jacobemcken/aws-simple-sign 2.2.0 is available A library that can generate presigned URLs for S3 and sign HTTP requests for AWS (Babashka compatible). Fixes: • Allow signing non-character (non-string) payloads (issue 17) • Allow using keywords like :get as HTTP method (issue 19)

🎉 7