Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 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
770cf74
fix(deps): bump anstream from 0.6.18 to 0.6.19
dependabot[bot] Jun 5, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
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"
]
75 changes: 32 additions & 43 deletions .github/ISSUE_TEMPLATE/1_bug_report_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,50 +5,39 @@ title: "bug: "
labels: ["NEED_TO_LABEL"]

body:
- type: checkboxes
id: "checks"
attributes:
label: "Checks"
options:
- label: "I have searched [github.com/aws/amazon-q-developer-cli/issues](https://github.com/aws/amazon-q-developer-cli/issues?q=) and there are no duplicates of my issue"
required: true
- label: "I have run `q doctor` in the affected terminal session"
required: true
- label: "I have run `q restart` and replicated the issue again"
- type: checkboxes
id: "checks"
attributes:
label: "Checks"
options:
- label: "I have searched [github.com/aws/amazon-q-developer-cli/issues](https://github.com/aws/amazon-q-developer-cli/issues?q=) and there are no duplicates of my issue"
required: true

- type: input
id: "os"
attributes:
label: "Operating system"
validations:
required: true

- type: input
id: "os"
attributes:
label: "Operating system"
validations:
required: true

- type: textarea
id: "expected"
attributes:
label: "Expected behaviour"
description: "What did you expect to happen?"
validations:
required: true

- type: textarea
id: "actual"
attributes:
label: "Actual behaviour"
description: "What actually happened? Please provide a screenshot or video if possible."
validations:
required: true
- type: textarea
id: "expected"
attributes:
label: "Expected behaviour"
description: "What did you expect to happen?"
validations:
required: true

- type: textarea
id: "reproduce"
attributes:
label: "Steps to reproduce"
description: "Are you able to reproduce this issue? If so, how?"
- type: textarea
id: "actual"
attributes:
label: "Actual behaviour"
description: "What actually happened? Please provide a screenshot or video if possible."
validations:
required: true

- type: textarea
id: "environment"
attributes:
label: "Environment"
description: "If possible, run `q diagnostic` and paste the output below."
render: yaml
- type: textarea
id: "reproduce"
attributes:
label: "Steps to reproduce"
description: "Are you able to reproduce this issue? If so, how?"
20 changes: 0 additions & 20 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,6 @@ updates:
open-pull-requests-limit: 100
commit-message:
prefix: ci
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
assignees:
- "chaynabors"
commit-message:
prefix: fix
prefix-development: chore
include: scope
open-pull-requests-limit: 100
groups:
eslint:
patterns: ["eslint", "@eslint/*"]
typescript-eslint:
patterns: ["typescript-eslint", "@typescript-eslint/*"]
vitest:
patterns: ["vitest", "@vitest/*"]
radix-ui:
patterns: ["@radix-ui/*"]
- package-ecosystem: "cargo"
directory: "/"
schedule:
Expand Down
35 changes: 0 additions & 35 deletions .github/workflows/npm-publish.yml

This file was deleted.

23 changes: 11 additions & 12 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,19 +76,18 @@ jobs:
~/.cargo/git/db/
target/
key: cargo-test-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}-${{ steps.toolchain.outputs.cachekey }}
# TODO: Coverage fails with `error: unnecessary transmute` in `appkit-nsworkspace-bindings`
# - name: Generate code coverage
# run: cargo +nightly llvm-cov --locked --workspace --codecov --output-path lcov.info
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v5
# if: github.event.repository.fork == false
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# files: lcov.info
# fail_ci_if_error: true
# env_vars: OS
- name: Generate code coverage
run: cargo +nightly llvm-cov --locked --workspace --codecov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
if: github.event.repository.fork == false
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
fail_ci_if_error: true
env_vars: OS
- name: Run tests
run: cargo test --locked --workspace --lib --bins --test '*' --exclude fig_desktop-fuzz
run: cargo test --locked --workspace --lib --bins --tests --exclude fig_desktop-fuzz

cargo-fmt:
name: Fmt
Expand Down
77 changes: 0 additions & 77 deletions .github/workflows/typescript.yml

This file was deleted.

13 changes: 0 additions & 13 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,3 @@ book/
.vscode/
.fleet/
.idea/

# yarn v2
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

.env*

run-build.sh
2 changes: 0 additions & 2 deletions .husky/pre-commit

This file was deleted.

12 changes: 0 additions & 12 deletions .lintstagedrc.mjs

This file was deleted.

3 changes: 0 additions & 3 deletions .mise.toml

This file was deleted.

4 changes: 0 additions & 4 deletions .prettierrc

This file was deleted.

76 changes: 0 additions & 76 deletions AmazonQ.md

This file was deleted.

Loading
Loading