Skip to content
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

Merged
merged 12 commits into from
Jul 28, 2023
Merged

Conversation

ilmotta
Copy link
Contributor

@ilmotta ilmotta commented Mar 21, 2023

Summary

This PR upgrades shadow-cljs from 2.11.16 (released on 2021-02-03) to 2.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 version 1.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:

Examples for update-vals and update-keys. They should perform better than the common reduce-kv approach since they use a transient data structure.

(let [m {:a 1 :b 2}]
  (update-vals m inc)) ; => {:a 2, :b 3}

(let [m {:a 1 :b 2}]
  (update-keys m name)) ; => {"a" 1, "b" 2}

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 🤷‍♂️

Namespace quo2.components.dividers.--tests--.divider-label-component-spec has a segment starting with an invalid JavaScript identifier at line 1

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-cljs 2.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:

  • Running unit tests with or without the REPL.
  • Running component tests.
  • Re-frisk (since I had to hard code a new version to remove a warning from the encore lib).
  • Released APK on an Android device.
  • Smoke tests in the app (clicking around).

status: ready

options)
callback))
[value]
(reanimated/with-spring value
Copy link
Contributor Author

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.

@status-im-auto
Copy link
Member

status-im-auto commented Mar 21, 2023

Jenkins Builds

Click to see older builds (19)
Commit #️⃣ Finished (UTC) Duration Platform Result
✔️ 54d0a89 #1 2023-03-21 00:18:41 ~6 min tests 📄log
✔️ 54d0a89 #1 2023-03-21 00:20:18 ~8 min ios 📱ipa 📲
✔️ 54d0a89 #1 2023-03-21 00:20:46 ~8 min android-e2e 🤖apk 📲
✔️ 54d0a89 #1 2023-03-21 00:22:04 ~10 min android 🤖apk 📲
1c0dfd9 #2 2023-03-21 14:41:52 ~3 min android-e2e 📄log
1c0dfd9 #2 2023-03-21 14:42:40 ~4 min android 📄log
✔️ 1c0dfd9 #2 2023-03-21 14:48:10 ~9 min tests 📄log
✔️ 1c0dfd9 #2 2023-03-21 14:50:31 ~11 min ios 📱ipa 📲
✔️ 846fc45 #3 2023-03-21 15:40:02 ~7 min tests 📄log
✔️ 846fc45 #3 2023-03-21 15:40:28 ~8 min ios 📱ipa 📲
✔️ 846fc45 #3 2023-03-21 15:41:32 ~9 min android-e2e 🤖apk 📲
✔️ 846fc45 #3 2023-03-21 15:41:52 ~9 min android 🤖apk 📲
✔️ 5f76a40 #4 2023-03-21 16:17:16 ~6 min tests 📄log
✔️ 5f76a40 #4 2023-03-21 16:18:16 ~8 min ios 📱ipa 📲
✔️ 5f76a40 #4 2023-03-21 16:18:28 ~8 min android-e2e 🤖apk 📲
✔️ 5f76a40 #4 2023-03-21 16:19:07 ~8 min android 🤖apk 📲
5f76a40 #1 2023-07-26 14:59:57 ~28 sec android-e2e 📄log
5f76a40 #1 2023-07-26 14:59:58 ~29 sec android 📄log
5f76a40 #1 2023-07-26 15:00:05 ~28 sec tests 📄log
Commit #️⃣ Finished (UTC) Duration Platform Result
✔️ d71b63a #2 2023-07-26 15:07:17 ~7 min android-e2e 🤖apk 📲
✔️ d71b63a #2 2023-07-26 15:09:01 ~8 min android 🤖apk 📲
✔️ d71b63a #2 2023-07-26 15:10:47 ~10 min tests 📄log
✔️ d71b63a #2 2023-07-26 15:12:16 ~11 min ios 📱ipa 📲
✔️ a32d6d6 #3 2023-07-28 16:37:36 ~7 min android-e2e 🤖apk 📲
✔️ a32d6d6 #3 2023-07-28 16:37:45 ~7 min android 🤖apk 📲
✔️ a32d6d6 #3 2023-07-28 16:38:46 ~8 min ios 📱ipa 📲
✔️ a32d6d6 #3 2023-07-28 16:38:58 ~8 min tests 📄log

Copy link
Contributor

@siddarthkay siddarthkay left a 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.

Copy link
Member

@jakubgs jakubgs left a 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.

Copy link
Contributor

@J-Son89 J-Son89 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice one @ilmotta!!

@vkjr
Copy link
Contributor

vkjr commented Mar 21, 2023

Cool! I'm glad we'll have update-vals 😍

@ilmotta
Copy link
Contributor Author

ilmotta commented Jul 27, 2023

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! 💟

Copy link
Contributor

@siddarthkay siddarthkay left a 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!

Copy link
Contributor

@OmarBasem OmarBasem left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚀

Copy link
Member

@flexsurfer flexsurfer left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice!

@churik
Copy link
Member

churik commented Jul 28, 2023

Thanks for your amazing work!
e2e failures are known but not related to PR.
Tested basic flows, LGTM!

Devices:

  • IPhone 14 Pro (IOS 16.5.1)
  • Google Pixel 7A (Android 13)

@ilmotta
Copy link
Contributor Author

ilmotta commented Jul 28, 2023

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 ;)

ilmotta added 12 commits July 28, 2023 13:29
    ------ 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]
    --------------------------------------------------------------------------------
@ilmotta ilmotta force-pushed the chore/upgrade-shadow-cljs branch from d71b63a to a32d6d6 Compare July 28, 2023 16:30
@ilmotta ilmotta merged commit b9890a9 into develop Jul 28, 2023
@ilmotta ilmotta deleted the chore/upgrade-shadow-cljs branch July 28, 2023 16:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Archived in project
Archived in project
Development

Successfully merging this pull request may close these issues.