Skip to content

Commit

Permalink
Merge branch dev into published
Browse files Browse the repository at this point in the history
  • Loading branch information
PEZ committed Sep 10, 2024
2 parents 94835fb + fae7d4c commit 38f57b3
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 36 deletions.
8 changes: 0 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,6 @@ jobs:
- run:
name: Run VSIX E2E Tests
command: npm run e2e-test -- --calva-vsix=/tmp/artifacts/calva-$( node -p 'require("./package.json").version' ).vsix --test-workspace=src/extension-test/e2e-test
- run:
name: Temporary debug preserving of VS Code network log
command: for f in /home/circleci/.config/'Code - Insiders'/logs/*/network.log; do echo "$f"; echo ---; cat "$f"; echo ---; done
when: always
- store_test_results:
path: ~/calva/junit
test-e2e-sub-projects:
Expand All @@ -259,10 +255,6 @@ jobs:
- run:
name: Run VSIX E2E Tests for test-data/projects/e2e-sub-projects
command: npm run e2e-test -- --calva-vsix=/tmp/artifacts/calva-$( node -p 'require("./package.json").version' ).vsix --test-workspace=test-data/projects/e2e-sub-projects
- run:
name: Temporary debug preserving of VS Code network log
command: for f in /home/circleci/.config/'Code - Insiders'/logs/*/network.log; do echo "$f"; echo ---; cat "$f"; echo ---; done
when: always
- store_test_results:
path: ~/calva/junit
github-release:
Expand Down
11 changes: 0 additions & 11 deletions .circleci/jobs/test-e2e-sub-projects.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,5 @@ steps:
).vsix
--test-workspace=test-data/projects/e2e-sub-projects

- run:
name: Temporary debug preserving of VS Code network log
command:
for f in /home/circleci/.config/'Code - Insiders'/logs/*/network.log; do
echo "$f";
echo ---;
cat "$f";
echo ---;
done
when: always

- !store:
test_results: ~/calva/junit
11 changes: 0 additions & 11 deletions .circleci/jobs/test-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,5 @@ steps:
).vsix
--test-workspace=src/extension-test/e2e-test

- run:
name: Temporary debug preserving of VS Code network log
command:
for f in /home/circleci/.config/'Code - Insiders'/logs/*/network.log; do
echo "$f";
echo ---;
cat "$f";
echo ---;
done
when: always

- !store:
test_results: ~/calva/junit
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ Changes to Calva.

## [Unreleased]

## [2.0.469] - 2024-09-10

- Fix: [Windows – Jack-in for shadow-cljs fails to start with "Error: spawn EINVAL" on the latest VS Code version](https://github.com/BetterThanTomorrow/calva/issues/2616)

## [2.0.468] - 2024-09-03

- Bump deps.clj to v1.11.3.1463
- Bump deps.clj to v1.11.4.1474
- [Prioritize Workspace configured connect sequences over User configured dittos](https://github.com/BetterThanTomorrow/calva/issues/2606)

## [2.0.467] - 2024-07-14
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Calva: Clojure & ClojureScript Interactive Programming",
"description": "Integrated REPL, formatter, Paredit, and more. Powered by cider-nrepl and clojure-lsp.",
"icon": "assets/calva.png",
"version": "2.0.468",
"version": "2.0.469",
"publisher": "betterthantomorrow",
"author": {
"name": "Better Than Tomorrow",
Expand Down
4 changes: 2 additions & 2 deletions src/nrepl/project-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -400,9 +400,9 @@ const projectTypes: { [id: string]: ProjectType } = {
name: 'shadow-cljs',
cljsTypes: [],
cmd: ['npx'],
winCmd: ['npx.cmd'],
winCmd: ['npx'],
processShellUnix: true,
processShellWin: false,
processShellWin: true,
useWhenExists: ['shadow-cljs.edn'],
nReplPortFile: ['.shadow-cljs', 'nrepl.port'],
/**
Expand Down
2 changes: 2 additions & 0 deletions test-data/test-files/metadata_toplevel_select_issue.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
(a ^{} b)
c

0 comments on commit 38f57b3

Please sign in to comment.