Skip to content
Merged

Dev2 #143

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e7f777a
Fix: Move to a better code coverage crate (cargo llvm-cov).
bjones1 Jul 21, 2026
32cc853
Add: stricter linting for Rust.
bjones1 Jul 21, 2026
fbb7b22
Fix: new lints.
bjones1 Jul 21, 2026
7689645
Fix: combine all webdriver tests into one binary.
bjones1 Jul 21, 2026
a49f017
Fix: use `driver.query()` instead of `driver.find()`.
bjones1 Jul 21, 2026
8f8ca28
Fix: from Claude auto-review.
bjones1 Jul 21, 2026
829ad3c
Add: relax lints for unit and integration tests; add more lints for p…
bjones1 Jul 24, 2026
b4f2518
Fix: workaround for headless Chrome bug.
bjones1 Jul 24, 2026
f418d86
Refactor: put main code in standalone directory.
bjones1 Jul 24, 2026
5414f37
Fix: remove unused dependencies.
bjones1 Jul 24, 2026
f0435c7
Freeze for CI test after refactor.
bjones1 Jul 24, 2026
7473f9f
Refactor: only register IDE endpoints when using IDE tasks.
bjones1 Jul 25, 2026
cd44f67
Update dependencies.
bjones1 Jul 26, 2026
bd17ce6
Fix: correct Windows-only depedencies.
bjones1 Jul 26, 2026
1e168ec
Fix: change TypeScript Client to follow a naming convention and add i…
bjones1 Jul 26, 2026
f4c8e8a
Fix: update CI tests with new build tool command.
bjones1 Jul 26, 2026
1f36983
Fix: conditionally-included Mac dependencies.
bjones1 Jul 26, 2026
3577c54
Clean: format/lint.
bjones1 Jul 26, 2026
04cb3a3
Fix: re-used port. Re-enable MacOS tests to see if this was the under…
bjones1 Jul 26, 2026
a50e6bf
Docs: remove stale comment.
bjones1 Jul 26, 2026
196e890
Fix: missed rename.
bjones1 Jul 26, 2026
1c66bcd
Fix: when navigating away from the current page, save only if the doc…
bjones1 Jul 26, 2026
f6d8907
Fix: port assignment in cli test.
bjones1 Jul 26, 2026
39c8c8a
Freeze for release.
bjones1 Jul 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ jobs:
rustup update
cd server
./bt install --dev
./bt test
./bt full
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ Changelog

* No changes.

Version 0.2.1 -- 2026-Jul-26
----------------------------

* When navigating away from the current document, save only if the document was
modified.
* Split the server into standalone code as another type of extension.
* Fix potential security vulnerabilities.

Version 0.2.0 -- 2026-Jul-20
----------------------------

Expand Down
66 changes: 15 additions & 51 deletions builder/Cargo.lock

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

5 changes: 4 additions & 1 deletion builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ clap = { version = "4", features = ["derive"] }
cmd_lib = "2.0.0"
current_platform = "0.2.0"
dunce = "1.0.5"
open = "5"
path-slash = "0.2.1"
regex = "1.11.1"

[lints.clippy]
pedantic = { level = "warn", priority = 0 }
doc_markdown = { level = "allow", priority = 1 }
Loading
Loading