This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-02-11
Channels
- # announcements (1)
- # beginners (67)
- # calva (4)
- # cider (6)
- # clj-kondo (26)
- # clojure (61)
- # clojure-belgium (2)
- # clojure-sweden (1)
- # clojurescript (12)
- # community-development (27)
- # cursive (2)
- # datascript (4)
- # datomic (20)
- # emacs (4)
- # funcool (1)
- # graphql (11)
- # honeysql (3)
- # malli (15)
- # membrane (6)
- # nbb (4)
- # nextjournal (7)
- # pathom (8)
- # polylith (7)
- # rdf (1)
- # re-frame (1)
- # releases (2)
- # shadow-cljs (42)
- # specter (3)
- # tools-deps (25)
- # xtdb (17)
It has been pointed out that this release breaks [:and true]
-- which kind of worked by accident prior to this release:
user=> (require '[honey.sql :as sql])
nil
user=> (sql/format {:select :* :from :table :where [:and true]})
["SELECT * FROM table WHERE TRUE"]
user=> (sql/format {:select :* :from :table :where [:- 1]})
["SELECT * FROM table WHERE ?" 1]
user=>
āļø:skin-tone-2: that's with 2.4.972 -- and when I made all operators variadic by default, I noticed that unary ops did not work and "fixed" them, but not all operators can be used in unary form š2.4.980 is available:
ā¢ Fix https://github.com/seancorfield/honeysql/issues/461 -- a regression introduced in 2.4.979 -- by restricting unary operators to just +
, -
, and ~
(bitwise negation).
replied to a thread:More compatibility with 1.x; improvements to extension machinery:
It has been pointed out that this release breaks [:and true]
-- which kind of worked by accident prior to this release:
user=> (require '[honey.sql :as sql])
nil
user=> (sql/format {:select :* :from :table :where [:and true]})
["SELECT * FROM table WHERE TRUE"]
user=> (sql/format {:select :* :from :table :where [:- 1]})
["SELECT * FROM table WHERE ?" 1]
user=>
āļø:skin-tone-2: that's with 2.4.972 -- and when I made all operators variadic by default, I noticed that unary ops did not work and "fixed" them, but not all operators can be used in unary form šreplied to a thread:More compatibility with 1.x; improvements to extension machinery:
2.4.980 is available:
ā¢ Fix https://github.com/seancorfield/honeysql/issues/461 -- a regression introduced in 2.4.979 -- by restricting unary operators to just +
, -
, and ~
(bitwise negation).