-
Notifications
You must be signed in to change notification settings - Fork 992
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade shadow-cljs and ClojureScript #15417
Conversation
options) | ||
callback)) | ||
[value] | ||
(reanimated/with-spring value |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI: The newer ClojureScript version throws a runtime error when the original function signature is used. I just removed the extra arguments, since they were never used in the first place.
Jenkins BuildsClick to see older builds (19)
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
great work!
Hopefully when the react-native
upgrade gets merged in we have java upgraded to openjdk11
in that branch.
That should further unblock you to experiment with latest shadow-cljs
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you might have forgotten to run make nix-update-clojure
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice one @ilmotta!!
Cool! I'm glad we'll have |
Hey folks, I re-requested your reviews and resurrected this PR (thanks @OmarBasem) because I could upgrade Shadow CLJS and ClojureScript to their latest versions after the amazing work done in the mobile team to upgrade RN 🚀 I haven't seen any issues in my tests with Android with and without Hermes and in dev or release builds. If you can, please report back if you tested on iOS and everything is good. That way we can quickly merge this PR. Thank you! 💟 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work @ilmotta!
I tested the PR build on my iPhone 11 and it works fine!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice!
Thanks for your amazing work! Devices:
|
Oh @churik, thank you so much, I was going to move the PR to the e2e column but forgot in the myriad of things going on today. Great news, I want this PR to be merged real bad ;) |
------ WARNING #1 - :redef ----------------------------------------------------- Resource: taoensso/encore.cljs:947:1 -------------------------------------------------------------------------------- 944 | ) 945 | 946 | (defn pow [n exp] (Math/pow n exp)) 947 | (defn abs [n] (if (neg? n) (- n) n)) ; #+clj (Math/abs n) reflects -------^------------------------------------------------------------------------ abs already refers to: cljs.core/abs being replaced by: taoensso.encore/abs -------------------------------------------------------------------------------- 948 | (defn round* ; round 949 | ([ n] (round* :round nil n)) 950 | ([type n] (round* type nil n)) 951 | ([type nplaces n] --------------------------------------------------------------------------------
d71b63a
to
a32d6d6
Compare
Summary
This PR upgrades shadow-cljs from
2.11.16
(released on 2021-02-03) to2.19.6
(released on 2022-07-14), so ~1.5 years worth of upgrades. By upgrading shadow-cljs we can finally use the latest major Clojure version1.11
.Why upgrade shadow-cljs?
Shadow-cljs controls the ClojureScript version we can use. In order to use the latest major Clojure version (
1.11.x
) we need to upgrade shadow-cljs.Shadow-cljs releases new versions very frequently, and if you take a look at its changelog, you'll see it had tons and tons of bug fixes over the years. I hope some of them help improve the DX for certain contributors who recently reported issues with shadow-cljs. It might make things worse though, we never know.
Clojure 1.11 brings new features, bug fixes and even performance improvements (although I think the performance mostly impacts Clojure on the JVM). See the changelog https://github.com/clojure/clojure/blob/master/changes.md#changes-to-clojure-in-version-1110
Things that can be beneficial to us, or are interesting nonetheless:
:as-alias
to be used inrequire
, which is like:as
but does not require the namespace to load. This means namespaced keywords using:as-alias
can't cause circular dependency errors. This feature would very useful if we used namespaced keywords, but we don't, so... https://github.com/clojure/clojure/blob/master/changes.md#22-as-alias-in-requirerun-test
andrun-test-var
to run single test with fixtures and report.iteration
function, useful for processing paginated data. https://www.abhinavomprakash.com/posts/clojure-iteration/update-keys
function: applies a function to every key in a map.update-vals
function: applies a function to every value in a map.Examples for
update-vals
andupdate-keys
. They should perform better than the commonreduce-kv
approach since they use a transient data structure.Why change namespaces within
__tests__
directories?Any namespace with the word
--tests--
throws an error, like the one below. I didn't bother investigating why, so I changed the guidelines to reflect the new convention. It's probably related to the double dashes in the name 🤷♂️Why can't we upgrade to the most recent shadow-cljs version?
We can't go to versions newer than
2.19.6
because we're stuck with the very old OpenJDK 8, and some new code from shadow-cljs2.19.7+
requires at least OpenJDK 11.Review notes
Please, review this PR by running the app as you usually do, especially if you have access to macOS, since I don't have one at hand.
Steps to test
Things I tested:
encore
lib).status: ready