Re: [ANN] org.clojure/tools.cli 0.4.1

2018-10-05 Thread Pierre-Yves Ritschard
Thanks for tools.cli, it's a pillar of a number of our projects, present in almost all our `main.clj` files :-) On Sunday, September 23, 2018 at 11:16:34 PM UTC+2, Sean Corfield wrote: > > Alex says the auto-generation process is broken and needs to be run > manually for each project right now.

Re: [ANN] com.walmartlabs/cond-let 1.0.0

2018-10-05 Thread Howard Lewis Ship
I'm glad my little library has gotten some attention on better-cond, which even I'm switching over to. On Thu, Oct 4, 2018 at 10:39 PM Mark Engelberg wrote: > Documentation for latest features in the 2.0.1 branch: > https://github.com/Engelberg/better-cond/tree/v2.0.1 > > An example: > > (cond

SOAP server

2018-10-05 Thread Renata Soares
Hello! I need suggestions of libraries (or others solutions) to implement a soap server in a clojure project. The project is long-term and i saw some libraries that are no longer maintained. So anyone uses one of them? Which is recommended? Thanks. -- You received this message because you ar

Differences in generator output for gen/fmap

2018-10-05 Thread Alexander Sedgwick
I'm running into differences when having gen/fmap inside a s/with-gen vs running it outside a s/with-gen. Am I missing something? ```clojure (ns scribble (:require [clojure.spec.alpha :as s] [clojure.spec.gen.alpha :as gen])) (s/def ::some-int (s/or :zero zero? :pos pos-i

Re: Differences in generator output for gen/fmap

2018-10-05 Thread Alexander Sedgwick
Nevermind, I see now the infinite loop I've generated.. I'll delete the post thanks! On Friday, October 5, 2018 at 1:49:12 PM UTC-5, Alexander Sedgwick wrote: > > I'm running into differences when having gen/fmap inside a s/with-gen vs > running it outside a s/with-gen. Am I missing something? >

Re: SOAP server

2018-10-05 Thread Erik Assum
Last time I worked with SOAP, I used plain old java interop which suited me quite nicely. Here is a repo which shows how that worked: https://github.com/slipset/soap-box/ HTH, Erik. > On 5 Oct 2018, at 20:43, Renata Soares wrote: > > Hello! > > I need suggestions of libraries (or others sol

RE: SOAP server

2018-10-05 Thread Sean Corfield
Yup, as someone who has also gone down this path before, I agree that Java interop is probably the way to go these days. SOAP is very enterprise-y and I expect most Clojurians try to avoid it where possible 😊 Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN An Architect's View -- http://corfiel

[ANN] Clojure 1.10.0-beta1

2018-10-05 Thread Alex Miller
1.10.0-beta1 is now available. You can try it with clj using: clj -Sdeps '{:deps {org.clojure/clojure {:mvn/version "1.10.0-beta1"}}}' 1.10.0-beta1 includes the following changes since 1.10.0-alpha9: - Revert change for CLJ-1550 - Cla

Re: [ANN] Clojure 1.10.0-beta1

2018-10-05 Thread Alex Miller
Now is a great time to try 1.10.0-beta1 and let us know if you find any major bugs or performance issues. I also meant to mention that all changes in Clojure 1.10 are now collected in the changelog: https://github.com/clojure/clojure/blob/master/changes.md At this point, we consider 1.10

Re: [ANN] Clojure 1.10.0-beta1

2018-10-05 Thread Alan Thompson
Looks good to me, tested on both prod and open source code. Alan On Fri, Oct 5, 2018 at 9:21 PM Alex Miller wrote: > Now is a great time to try 1.10.0-beta1 and let us know if you find any > major bugs or performance issues. > > I also meant to mention that all changes in Clojure 1.10 are now co

RE: [ANN] Clojure 1.10.0-beta1

2018-10-05 Thread Sean Corfield
Thank you! We’re already on Alpha 8 in production, and we upgraded to Alpha 9 in dev today. We’ll get Beta 1 onto dev and into QA on Monday and I expect we’ll take it to production early next week. Will there be more detail about prepl in a blog post or similar? Sean Corfield -- (970) FOR-SEAN