Skip to content

bskiser/revert commits #2107

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

Open
wants to merge 32 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
0351318
* feat(chat): Add semantic search crate to Q CLI (#1860)
kensave May 17, 2025
89d2a34
fix Build (#1876)
kensave May 17, 2025
d9f5051
Kensave/flakey test fix (#1877)
kensave May 17, 2025
0a4530a
fix: Removes flaky tests (#1878)
kensave May 17, 2025
6add3f9
feat(mcp): sort tools and prompts (#1809)
hayemaxi May 19, 2025
3508012
chore: update amzn-codewhisperer-client (#1872)
brandonskiser May 19, 2025
15a489c
adds server load timeout for no interactive mode (#1851)
dingfeli May 19, 2025
79059f4
refactor(semantic_search_client): Remove ONNX embedder and use Candle…
kensave May 19, 2025
25cdf07
feat(windows): implement multi platform process kill (#1875)
cwoolum May 19, 2025
0f42bc6
chore: update amazon clients (#1897)
brandonskiser May 20, 2025
f7cf836
Fix Tests (#1904)
kensave May 20, 2025
7dcadb5
chore: Add chat.editMode to tips (#1900)
evanliu048 May 20, 2025
3ee8b6d
chore(deps-dev): bump mocha from 11.1.0 to 11.4.0 (#1907)
dependabot[bot] May 20, 2025
57a2837
chore(deps-dev): bump ts-morph from 25.0.1 to 26.0.0 (#1906)
dependabot[bot] May 20, 2025
754948e
fix(deps): bump zod from 3.24.3 to 3.25.7 (#1905)
dependabot[bot] May 20, 2025
c2984f2
fix(deps): bump the aws group across 1 directory with 2 updates (#1898)
dependabot[bot] May 20, 2025
0ded60f
chore(deps-dev): bump @types/node from 22.15.17 to 22.15.19 (#1891)
dependabot[bot] May 20, 2025
ef6e384
fix(deps): bump lucide-react from 0.503.0 to 0.511.0 (#1890)
dependabot[bot] May 20, 2025
49f386e
fix(deps): bump criterion from 0.5.1 to 0.6.0 (#1889)
dependabot[bot] May 20, 2025
491cdc7
fix: readme in dashboard app (#1868)
Konippi May 20, 2025
a0a1f04
fix(deps): bump @bufbuild/protobuf from 2.2.5 to 2.4.0 (#1799)
dependabot[bot] May 20, 2025
af6e297
chore(deps-dev): bump @bufbuild/buf from 1.53.0 to 1.54.0 (#1798)
dependabot[bot] May 20, 2025
12d49f2
fix(deps): bump semver from 7.7.1 to 7.7.2 (#1796)
dependabot[bot] May 20, 2025
9dd4f27
fix: mcp loading status (#1919)
dingfeli May 20, 2025
972adf4
bskiser/fix token refresh (#1920)
brandonskiser May 21, 2025
8a765f9
fix: add stalled stream protection config to SSO client (#1929)
hayemaxi May 21, 2025
98dad52
chore: Remove autocomplete (#1931)
chaynabors May 22, 2025
24bbb60
chore: Remove unused dependencies
chaynabors May 22, 2025
3311ed2
chore: Update README.md (#1935)
chaynabors May 22, 2025
2ea80a9
Revert "chore: Update README.md (#1935)"
brandonskiser Jun 24, 2025
01c0144
Revert "chore: Remove unused dependencies"
brandonskiser Jun 24, 2025
ea118b8
Revert "chore: Remove autocomplete (#1931)"
brandonskiser Jun 24, 2025
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
10 changes: 10 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[target.x86_64-pc-windows-msvc]
rustflags = [
"-C", "link-arg=/STACK:8000000"
]

# 64 bit Mingw
[target.x86_64-pc-windows-gnu]
rustflags = [
"-C", "link-arg=-Wl,--stack,8000000"
]
2 changes: 2 additions & 0 deletions .github/workflows/typos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@ jobs:
uses: actions/checkout@v4
- name: Check spelling
uses: crate-ci/typos@master
with:
config: .typos.toml
2 changes: 1 addition & 1 deletion .lintstagedrc.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ export default {
],
"*.py": ["ruff format --check", "ruff check"],
"*.{ts,js,tsx,jsx,mjs}": "prettier --check",
"!(*test*)*": "typos",
"!(*test*)*": "typos --config .typos.toml",
};
4 changes: 4 additions & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[files]

[default.extend-words]
mmaped = "mmaped"
Loading
Loading