build(deps): bump rpassword from 7.4.0 to 7.5.0 - #6
Closed
dependabot[bot] wants to merge 1 commit into
Closed
Conversation
Bumps [rpassword](https://github.com/conradkleinespel/rpassword) from 7.4.0 to 7.5.0. - [Release notes](https://github.com/conradkleinespel/rpassword/releases) - [Commits](conradkleinespel/rpassword@v7.4.0...v7.5.0) --- updated-dependencies: - dependency-name: rpassword dependency-version: 7.5.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Author
|
Looks like rpassword is up-to-date now, so this is no longer needed. |
jasonsmithio
added a commit
that referenced
this pull request
May 20, 2026
… → 17) Clusters #1-#5 step 3 of the PR #37 upstream-merge cleanup, bundled together since the changes do not compile independently. Net: 16-error cluster #5 punch list resolved, plus the prior 510 → 16 reductions from clusters #1-4. Cluster #1: php/swift LSP-adapter trait conversions Cluster #2: editor.rs vs extracted-module duplicate-method deletion (-4247 lines) Cluster #3 + small wins: zed_actions → paddleboard_actions rename and isolated 1-offs Cluster #5 step 1+2: cloud.rs import cleanup + dead Zed-Cloud token-counting deletion Cluster #5 step 3: residual cloud.rs renames, EditPredictionPromptFormat, async-tungstenite 0.31 → 0.34.1 (resolves jupyter-websocket-client type mismatch), copilot_start_menu restoration. Remaining: 17 errors all in `agent` crate (newly visible now that language_models compiles). Cluster #6 punch list captured in RECAPS.md. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
jasonsmithio
added a commit
that referenced
this pull request
May 20, 2026
…rrors) Cluster #6 of the PR #37 upstream-merge cleanup. With cluster #5 done and language_models compiling, the agent crate became checkable and surfaced 17 errors driven by the agent_client_protocol 0.12.x split into a thin top-level crate plus agent-client-protocol-schema-0.13.x. Only a narrow set of types stayed re-exported at the root; the rest moved into `agent_client_protocol::schema`. Fixes: - Re-route `agent_client_protocol as acp` to `agent_client_protocol::schema as acp` in sandbox_tool.rs, sandbox_service_tool.rs, and agent_ui/thread_history.rs. - Restore crates/agent/src/tools/tool_edit_parser.rs from PB main (PB-only file that did not survive the upstream merge). - Drop 5 dead tool imports from thread.rs (NowTool, OpenTool, RestoreFileFromDiskTool, SaveFileTool, StreamingEditFileTool — removed upstream, never referenced after the import). - Add `kind: AuthorizationKind::PermissionGrant` to the step-mode ToolCallAuthorization initializer (new required field upstream). - Wrap two `LanguageModelToolResultContent::Text(...)` literals in `vec![...]` to match the field's `Vec<...>` type. - Replace `AgentToolOutput::from_error("...")` with `AgentToolOutput::from(anyhow::anyhow!("..."))` (method was removed in favor of the `From<anyhow::Error>` impl). - Rewrite the `if let LanguageModelToolResultContent::Image(_) = &output.llm_output` checks to iterate the Vec, since llm_output is no longer a single enum. Remaining: 41 errors in agent_ui (cluster #7). Punch list in RECAPS.md. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
jasonsmithio
added a commit
that referenced
this pull request
May 20, 2026
Cluster #9 of the PR #37 upstream-merge cleanup. Resolves all `./script/clippy` errors (clippy --workspace --release --all-targets --all-features --deny warnings), confirms the debug binary links, and smoke-tests `--system-specs` to exercise the startup path. Cleanups: - Delete language_model/{rate_limiter,role}.rs (PB shadows of the canonical language_model_core::* re-exports — confirmed unused). - Delete agent/tools/tool_edit_parser.rs (ToolEditParser was unused anywhere; restored in cluster #6 only to silence the missing-mod error, but the `mod` declaration was orphaned). - Rename ZED_PREDICT_DATA_COLLECTION_CHOICE → PADDLEBOARD_… in edit_prediction_tests.rs (7 sites; runtime code already renamed). - Switch Command::spawn / Command::output to util::command helpers in paddleboard_sandbox_prereqs_ui and repl/podman_kernel (the podman_kernel one is in Drop, so wrapped in #[allow(clippy::disallowed_methods)] with explanatory comment). - `#[allow(dead_code)]` for the PB history-panel infrastructure (ActiveView::History, AgentPanel history methods, branch_names.rs, thread_history.rs, thread_history_view.rs). The action handler isn't wired up yet — followup tracked in RECAPS.md. - Add Agent::Stub match arm to has_history_for_selected_agent for the `test-support` feature shape. - 24 misc lint cleanups: 5× redundant clones, 6× unused imports, 3× pre-existing dead-code allows, 1× sort_by_key simplification, 3× unused-variable underscoring in conversation_view/thread_view.rs. - Add smol to agent_ui's dev-dependencies (used in TestSessionList). - Add util to paddleboard_sandbox_prereqs_ui's deps. Verified: - `./script/clippy` finishes successfully (release profile, all-targets, all-features, deny warnings). - `cargo build -p paddleboard` finishes successfully in 1m 41s on macOS. - `./target/debug/paddleboard --system-specs` boots cleanly and prints PaddleBoard v0.232.0+dev.3a592ef18 system-specs output. PR #37 is ready to flip from draft to ready-for-review. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
jasonsmithio
added a commit
that referenced
this pull request
May 31, 2026
… → 17) Clusters #1-#5 step 3 of the PR #37 upstream-merge cleanup, bundled together since the changes do not compile independently. Net: 16-error cluster #5 punch list resolved, plus the prior 510 → 16 reductions from clusters #1-4. Cluster #1: php/swift LSP-adapter trait conversions Cluster #2: editor.rs vs extracted-module duplicate-method deletion (-4247 lines) Cluster #3 + small wins: zed_actions → paddleboard_actions rename and isolated 1-offs Cluster #5 step 1+2: cloud.rs import cleanup + dead Zed-Cloud token-counting deletion Cluster #5 step 3: residual cloud.rs renames, EditPredictionPromptFormat, async-tungstenite 0.31 → 0.34.1 (resolves jupyter-websocket-client type mismatch), copilot_start_menu restoration. Remaining: 17 errors all in `agent` crate (newly visible now that language_models compiles). Cluster #6 punch list captured in RECAPS.md. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
jasonsmithio
added a commit
that referenced
this pull request
May 31, 2026
…rrors) Cluster #6 of the PR #37 upstream-merge cleanup. With cluster #5 done and language_models compiling, the agent crate became checkable and surfaced 17 errors driven by the agent_client_protocol 0.12.x split into a thin top-level crate plus agent-client-protocol-schema-0.13.x. Only a narrow set of types stayed re-exported at the root; the rest moved into `agent_client_protocol::schema`. Fixes: - Re-route `agent_client_protocol as acp` to `agent_client_protocol::schema as acp` in sandbox_tool.rs, sandbox_service_tool.rs, and agent_ui/thread_history.rs. - Restore crates/agent/src/tools/tool_edit_parser.rs from PB main (PB-only file that did not survive the upstream merge). - Drop 5 dead tool imports from thread.rs (NowTool, OpenTool, RestoreFileFromDiskTool, SaveFileTool, StreamingEditFileTool — removed upstream, never referenced after the import). - Add `kind: AuthorizationKind::PermissionGrant` to the step-mode ToolCallAuthorization initializer (new required field upstream). - Wrap two `LanguageModelToolResultContent::Text(...)` literals in `vec![...]` to match the field's `Vec<...>` type. - Replace `AgentToolOutput::from_error("...")` with `AgentToolOutput::from(anyhow::anyhow!("..."))` (method was removed in favor of the `From<anyhow::Error>` impl). - Rewrite the `if let LanguageModelToolResultContent::Image(_) = &output.llm_output` checks to iterate the Vec, since llm_output is no longer a single enum. Remaining: 41 errors in agent_ui (cluster #7). Punch list in RECAPS.md. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
jasonsmithio
added a commit
that referenced
this pull request
May 31, 2026
Cluster #9 of the PR #37 upstream-merge cleanup. Resolves all `./script/clippy` errors (clippy --workspace --release --all-targets --all-features --deny warnings), confirms the debug binary links, and smoke-tests `--system-specs` to exercise the startup path. Cleanups: - Delete language_model/{rate_limiter,role}.rs (PB shadows of the canonical language_model_core::* re-exports — confirmed unused). - Delete agent/tools/tool_edit_parser.rs (ToolEditParser was unused anywhere; restored in cluster #6 only to silence the missing-mod error, but the `mod` declaration was orphaned). - Rename ZED_PREDICT_DATA_COLLECTION_CHOICE → PADDLEBOARD_… in edit_prediction_tests.rs (7 sites; runtime code already renamed). - Switch Command::spawn / Command::output to util::command helpers in paddleboard_sandbox_prereqs_ui and repl/podman_kernel (the podman_kernel one is in Drop, so wrapped in #[allow(clippy::disallowed_methods)] with explanatory comment). - `#[allow(dead_code)]` for the PB history-panel infrastructure (ActiveView::History, AgentPanel history methods, branch_names.rs, thread_history.rs, thread_history_view.rs). The action handler isn't wired up yet — followup tracked in RECAPS.md. - Add Agent::Stub match arm to has_history_for_selected_agent for the `test-support` feature shape. - 24 misc lint cleanups: 5× redundant clones, 6× unused imports, 3× pre-existing dead-code allows, 1× sort_by_key simplification, 3× unused-variable underscoring in conversation_view/thread_view.rs. - Add smol to agent_ui's dev-dependencies (used in TestSessionList). - Add util to paddleboard_sandbox_prereqs_ui's deps. Verified: - `./script/clippy` finishes successfully (release profile, all-targets, all-features, deny warnings). - `cargo build -p paddleboard` finishes successfully in 1m 41s on macOS. - `./target/debug/paddleboard --system-specs` boots cleanly and prints PaddleBoard v0.232.0+dev.bd467db14 system-specs output. PR #37 is ready to flip from draft to ready-for-review. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps rpassword from 7.4.0 to 7.5.0.
Release notes
Sourced from rpassword's releases.
Commits
2d9873erelease v7.5.0e67e3b4removes commented out codefdde958remove .idea from .gitignored531c59allow reading from any Read and writing to any Write205dfb2differentiate Input and Output targets6aa333amake PasswordFeedback internal though ConfigBuilderaadeef2allow more flexible input/outputff7be55add support for Ctrl-Wc56fefaformat rust files with cargo fmtc6f4f19handle character encodings more reliablyDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)You can disable automated security fix PRs for this repo from the Security Alerts page.