Skip to content

Commit 16526aa

Browse files
committed
Merge remote-tracking branch 'origin/main' into bskiser/fix-token-refresh
2 parents 9ef4b9f + 12d49f2 commit 16526aa

File tree

20 files changed

+286
-280
lines changed

20 files changed

+286
-280
lines changed

Cargo.lock

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

crates/amzn-codewhisperer-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ version = "1.5.5"
6464
version = "1.2.4"
6565

6666
[dependencies.aws-smithy-http]
67-
version = "0.60.12"
67+
version = "0.62.1"
6868

6969
[dependencies.aws-smithy-json]
70-
version = "0.61.2"
70+
version = "0.61.3"
7171

7272
[dependencies.aws-smithy-runtime]
7373
version = "1.7.8"

crates/amzn-codewhisperer-streaming-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@ version = "1.2.4"
6767
version = "0.60.6"
6868

6969
[dependencies.aws-smithy-http]
70-
version = "0.60.12"
70+
version = "0.62.1"
7171
features = ["event-stream"]
7272

7373
[dependencies.aws-smithy-json]
74-
version = "0.61.2"
74+
version = "0.61.3"
7575

7676
[dependencies.aws-smithy-runtime]
7777
version = "1.7.8"

crates/amzn-consolas-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ version = "1.5.5"
6767
version = "1.2.4"
6868

6969
[dependencies.aws-smithy-http]
70-
version = "0.60.12"
70+
version = "0.62.1"
7171

7272
[dependencies.aws-smithy-json]
73-
version = "0.61.2"
73+
version = "0.61.3"
7474

7575
[dependencies.aws-smithy-runtime]
7676
version = "1.7.8"

crates/amzn-qdeveloper-streaming-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ version = "1.2.4"
7070
version = "0.60.6"
7171

7272
[dependencies.aws-smithy-http]
73-
version = "0.60.12"
73+
version = "0.62.1"
7474
features = ["event-stream"]
7575

7676
[dependencies.aws-smithy-json]
77-
version = "0.61.2"
77+
version = "0.61.3"
7878

7979
[dependencies.aws-smithy-runtime]
8080
version = "1.7.8"

crates/amzn-toolkit-telemetry-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ version = "1.1.3"
3838
version = "1.1.3"
3939

4040
[dependencies.aws-smithy-http]
41-
version = "0.60.3"
41+
version = "0.62.1"
4242

4343
[dependencies.aws-smithy-json]
44-
version = "0.60.3"
44+
version = "0.61.3"
4545

4646
[dependencies.aws-smithy-runtime]
4747
version = "1.1.3"

crates/chat-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ winreg = "0.55.0"
187187

188188
[dev-dependencies]
189189
assert_cmd = "2.0"
190-
criterion = "0.5.1"
190+
criterion = "0.6.0"
191191
mockito = "1.7.0"
192192
paste = "1.0.11"
193193
predicates = "3.0"

crates/chat-cli/src/cli/chat/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,7 @@ const HELP_TEXT: &str = color_print::cstr! {"
276276
<em>Ctrl(^) + j</em> <black!>Insert new-line to provide multi-line prompt. Alternatively, [Alt(⌥) + Enter(⏎)]</black!>
277277
<em>Ctrl(^) + s</em> <black!>Fuzzy search commands and context files. Use Tab to select multiple items.</black!>
278278
<black!>Change the keybind to ctrl+x with: q settings chat.skimCommandKey x (where x is any key)</black!>
279+
<em>chat.editMode</em> <black!>Set editing mode (vim or emacs) using: q settings chat.editMode vi/emacs</black!>
279280
280281
"};
281282

crates/fig_desktop/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Fig Desktop
1+
# Amazon Q Desktop
22

3-
This is the main Fig app written in Rust. It should be
3+
This is the main Amazon Q Desktop written in Rust. It should be
44
ready to run and start developing with if you follow the
55
instructions in the [root README](../README.md).
66

@@ -10,4 +10,4 @@ instructions in the [root README](../README.md).
1010
1. Run `cargo run`.
1111
1. Once the UI opens, right click anywhere to inspect element, go to the console tab, and set `window.location.href`
1212
to the URL of the dashboard development server.
13-
13+
- Alternatively, you can use the `DASHBOARD_URL` environment variable instead of manually setting `window.location.href`, e,g. `DASHBOARD_URL=http://localhost:3433 cargo run`.

crates/q_cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ winapi = { version = "0.3", features = ["consoleapi"] }
9999

100100
[dev-dependencies]
101101
assert_cmd = "2.0"
102-
criterion = "0.5.1"
102+
criterion = "0.6.0"
103103
insta.workspace = true
104104
paste = "1.0.11"
105105
predicates = "3.0"

0 commit comments

Comments
 (0)