Modernize the project for 2026#78
Merged
Merged
Conversation
Bump to Clojure 1.12.5, ClojureScript 1.12.134, http-kit 2.8.1 and piggieback 0.6.0, none of which had been touched since 2020. Add a deps.edn so the library can be pulled in via the Clojure CLI, plus a cljsbuild smoke target and test-paths to support CI.
Covers the websocket server's start/stop lifecycle and the no-server-connected error path, so CI has something real to run.
Compiles the Clojure sources, runs the tests and does an advanced ClojureScript compile of the client on every push and PR.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Weasel's deps hadn't been touched since 2020, so this drags everything up to current: Clojure 1.12.5, ClojureScript 1.12.134, http-kit 2.8.1 and piggieback 0.6.0. The ClojureScript client still compiles cleanly under
:advancedwith the new compiler.Beyond the version bumps it adds the tooling the project was missing: a
deps.ednso it can be consumed via the Clojure CLI, a GitHub Actions pipeline (there was no CI at all), and a small test suite covering the server lifecycle so CI has something real to run.