Skip to content

build(deps): bump openssl from 0.10.74 to 0.10.79 - #5

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/openssl-0.10.79
Closed

build(deps): bump openssl from 0.10.74 to 0.10.79#5
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/openssl-0.10.79

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 6, 2026

Copy link
Copy Markdown

Bumps openssl from 0.10.74 to 0.10.79.

Release notes

Sourced from openssl's releases.

openssl-v0.10.79

What's Changed

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.78...openssl-v0.10.79

openssl-v0.10.78

What's Changed

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.77...openssl-v0.10.78

openssl-v0.10.77

What's Changed

... (truncated)

Commits
  • 649f2d9 Release openssl 0.10.79 and openssl-sys 0.9.115 (#2632)
  • 257f9b2 Fix output buffer overflow for AES key-wrap-with-padding ciphers (#2630)
  • d43e917 Reject non-UTF-8 OCSP responder URLs in X509Ref::ocsp_responders (#2631)
  • f46519c Add PkeyCtxRef::set_context_string for ML-DSA (#2629)
  • ad9ae31 Bind OSSL_PARAM_modified and use it for seed_into (#2628)
  • 4e25c9b Fix process abort when verify/PSK callbacks fire after SSL_CTX swap (#2624)
  • 3dd8f42 Add PKeyRef::seed_into for ML-DSA/ML-KEM seed extraction (#2626)
  • 2c5e5a8 parallelize more builds in CI for cold caches (#2625)
  • 6685591 Add PKey::private_key_from_seed for ML-DSA/ML-KEM key import (#2621)
  • 8f8fdce Drop once_cell in favor of std::sync::{LazyLock, OnceLock} (#2623)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot 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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will 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 version will 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 dependency will 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.

Bumps [openssl](https://github.com/rust-openssl/rust-openssl) from 0.10.74 to 0.10.79.
- [Release notes](https://github.com/rust-openssl/rust-openssl/releases)
- [Commits](rust-openssl/rust-openssl@openssl-v0.10.74...openssl-v0.10.79)

---
updated-dependencies:
- dependency-name: openssl
  dependency-version: 0.10.79
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels May 6, 2026
@dependabot @github

dependabot Bot commented on behalf of github May 13, 2026

Copy link
Copy Markdown
Author

Looks like openssl is up-to-date now, so this is no longer needed.

@dependabot dependabot Bot closed this May 13, 2026
@dependabot
dependabot Bot deleted the dependabot/cargo/openssl-0.10.79 branch May 13, 2026 17:27
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 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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants