Skip to content

Commit 6e9cb5f

Browse files
committed
Merge branch dev into published
2 parents 4bc015b + 205cf9b commit 6e9cb5f

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Changes to Calva.
44

55
## [Unreleased]
66

7+
## [2.0.534] - 2025-09-24
8+
9+
- Re-enable shadow-cljs runtimes connection updates...
10+
711
## [2.0.533] - 2025-09-24
812

913
- Fix: [Calva registers for shadow-cljs runtime connects more than once per server connection](https://github.com/BetterThanTomorrow/calva/pull/2937)

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Calva: Clojure & ClojureScript Interactive Programming",
44
"description": "Integrated REPL, formatter, Paredit, and more. Powered by cider-nrepl and clojure-lsp.",
55
"icon": "assets/calva.png",
6-
"version": "2.0.533",
6+
"version": "2.0.534",
77
"publisher": "betterthantomorrow",
88
"author": {
99
"name": "Better Than Tomorrow",

src/connector.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,13 @@ async function connectToHost(hostname: string, port: number, connectSequence: Re
172172
if (cljsSession) {
173173
await setUpCljsRepl(cljsSession, cljsBuild);
174174
}
175+
if (isShadowCljsReplType(connectSequence.cljsType)) {
176+
await shadowCljsRuntime.initializeShadowRemoteNotifications();
177+
}
175178
} catch (e) {
176179
output.appendLineOtherErr('Error while connecting cljs REPL: ' + e);
177180
}
181+
178182
status.update();
179183
} catch (e) {
180184
return cleanUpAfterError(e);

0 commit comments

Comments
 (0)