Re: [ANN] Clojure 1.10.0-RC1 (please test!)

2018-10-17 Thread Ken Restivo
On Thu, Oct 11, 2018 at 08:11:45AM -0700, Alex Miller wrote: > 1.10.0-RC1 is now available. You can try it with clj using: > > clj -Sdeps '{:deps {org.clojure/clojure {:mvn/version "1.10.0-RC1"}}}' > > 1.10.0-RC1 is the same code as beta2 (only change are some changelog > fixes). > You

Re: [ANN] Clojure 1.10.0-RC1 (please test!)

2018-10-12 Thread Erik Assum
https://github.com/clojure-emacs/cider-nrepl/issues/549 Erik. > On 12 Oct 2018, at 16:54, Alex Miller wrote: > > Before you would have gotten the spec ExceptionInfo. Now you should get a > CompilerException wrapping that ExceptionInfo. It looks like the error is in > parsing the location out

Re: [ANN] Clojure 1.10.0-RC1 (please test!)

2018-10-12 Thread Alex Miller
That's interesting. So this case of a spec exception during macroexception threw before but the exception handler structure is different in 1.10. Before you would have gotten the spec ExceptionInfo. Now you should get a CompilerException wrapping that ExceptionInfo. It looks like the error is in

Re: [ANN] Clojure 1.10.0-RC1 (please test!)

2018-10-12 Thread Erik Assum
Having said that, it seems like Cider/nrepl needs to be updated? ardoq.api.survey-api> (let [2]) Syntax error macroexpanding clojure.core/let at (*cider-repl ardoq.com/ardoq-api:localhost:53859(clj)*:7015:23). [2] - failed: even-number-of-forms? at: [:bindings] spec:

Re: [ANN] Clojure 1.10.0-RC1 (please test!)

2018-10-12 Thread Erik Assum
I’ve ran our app and it seems to work. Tests are also passing. Looking forward to 1.10. Thanks! Erik. > On 11 Oct 2018, at 17:11, Alex Miller wrote: > > 1.10.0-RC1 is now available. You can try it with clj using: > > clj -Sdeps '{:deps {org.clojure/clojure {:mvn/version

Re: [ANN] Clojure 1.10.0-RC1 (please test!)

2018-10-12 Thread Jeroen van Dijk
Tested against closh (clojure shell): Uberjar works via boot, acts normally when started. (details ) (For what it's worth the error between 1.9 and 1.10 on GraalVM is slightly different, however both version

Re: [ANN] Clojure 1.10.0-RC1 (please test!)

2018-10-12 Thread Łukasz Korecki
I've run tests against our biggest Clojure app (~40k LOC with tests) - no failures, Uberjar compiled cleanly as well. We're giong to deploy it to our testing environment early next week. Łukasz On Thursday, October 11, 2018 at 4:11:45 PM UTC+1, Alex Miller wrote: > > 1.10.0-RC1 is now

Re: [ANN] Clojure 1.10.0-RC1 (please test!)

2018-10-12 Thread Juraj Martinka
Btw. I was facing issues with `lein repl` after switching to clojure 1.10: ``` lein repl ... Exception in thread "main" java.lang.ExceptionInInitializerError at clojure.main.(main.java:20) Compilation failed: Subprocess failed ``` Cleaning .lein* files in the project directory fixed it:

Re: [ANN] Clojure 1.10.0-RC1 (please test!)

2018-10-11 Thread Bozhidar Batsov
You might want to add to the datafy ns and function that they were introduced in 1.10. I noticed they didn't have the :added metadata that most Clojure core stuff has (it's very handy in IDEs/starter editors). On Thu, 11 Oct 2018 at 18:11, Alex Miller wrote: > 1.10.0-RC1 is now available. You

RE: [ANN] Clojure 1.10.0-RC1 (please test!)

2018-10-11 Thread Sean Corfield
ex Miller Sent: Thursday, October 11, 2018 8:11:45 AM To: Clojure Subject: [ANN] Clojure 1.10.0-RC1 (please test!) 1.10.0-RC1 is now available. You can try it with clj using: clj -Sdeps '{:deps {org.clojure/clojure {:mvn/version "1.10.0-RC1"}}}' 1.10.0-RC1 is the same code a

Re: [ANN] Clojure 1.10.0-RC1 (please test!)

2018-10-11 Thread Andy Fingerhut
I ran the latest version of Eastwood on the Clojure code itself, and didn't find any surprising/new warnings. There are a fair number of reflection warnings in what I would consider non-performance-critical functions (e.g. clojure.java.browse/open-url-in-browser, and code for handling/printing

Re: [ANN] Clojure 1.10.0-RC1 (please test!)

2018-10-11 Thread Matthew Phillips
Hi Alex, have just finished testing on an 18 KLOC Clojure backend service (Java 8, Linux). Test suites and deployed service runs fine. Let me add my thanks for your hard work! Cheers, Matthew. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To

Re: [ANN] Clojure 1.10.0-RC1 (please test!)

2018-10-11 Thread Daniel
Congrats! Small suggestion. Under dependency updates it would be helpful to see the previous version eg "spec.alpha dependency to 0.2.176" -> "spec.alpha dependency from X.X.XXX to 0.2.176" On Thursday, October 11, 2018 at 10:11:45 AM UTC-5, Alex Miller wrote: > > 1.10.0-RC1 is now

Re: [ANN] Clojure 1.10.0-RC1 (please test!)

2018-10-11 Thread Marc O'Morain
Yeah, nice work on getting to a RC Alex On Thu, 11 Oct 2018 at 16:32, Alex Miller wrote: > > Thanks, good to hear. > > On Thursday, October 11, 2018 at 10:29:22 AM UTC-5, Rick Moynihan wrote: >> >> Hi Alex, >> >> I've tried updating 4 of our projects to 1.10.0-RC1 and running their test >>

Re: [ANN] Clojure 1.10.0-RC1 (please test!)

2018-10-11 Thread Alex Miller
Thanks, good to hear. On Thursday, October 11, 2018 at 10:29:22 AM UTC-5, Rick Moynihan wrote: > > Hi Alex, > > I've tried updating 4 of our projects to 1.10.0-RC1 and running their test > suites etc and have uncovered no issues so far. > > Many, many thanks to everyone for their hardwork! > >

Re: [ANN] Clojure 1.10.0-RC1 (please test!)

2018-10-11 Thread Rick Moynihan
Hi Alex, I've tried updating 4 of our projects to 1.10.0-RC1 and running their test suites etc and have uncovered no issues so far. Many, many thanks to everyone for their hardwork! R. On Thu, 11 Oct 2018 at 16:11, Alex Miller wrote: > 1.10.0-RC1 is now available. You can try it with clj

[ANN] Clojure 1.10.0-RC1 (please test!)

2018-10-11 Thread Alex Miller
1.10.0-RC1 is now available. You can try it with clj using: clj -Sdeps '{:deps {org.clojure/clojure {:mvn/version "1.10.0-RC1"}}}' 1.10.0-RC1 is the same code as beta2 (only change are some changelog fixes). You can read the full 1.10 changelog here: