Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: stellar/stellar-cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v25.2.0
Choose a base ref
...
head repository: stellar/stellar-cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v26.0.0
Choose a head ref
  • 9 commits
  • 46 files changed
  • 5 contributors

Commits on Mar 12, 2026

  1. Configuration menu
    Copy the full SHA
    57f067f View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2026

  1. Configuration menu
    Copy the full SHA
    8a6c883 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2026

  1. Configuration menu
    Copy the full SHA
    84c254d View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2026

  1. Publish docker image. (#2448)

    fnando authored Mar 20, 2026
    Configuration menu
    Copy the full SHA
    b36124d View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2026

  1. Verify SHA-256 of contract code matches contract hash when fetching (#…

    …2465)
    
    ### What
    Add SHA-256 integrity verification to `get_remote_wasm_from_hash` in
    `utils::rpc`. After fetching Wasm bytecode, compute
    `sha256(returned_bytes)` and compare it to the requested hash. Return a
    clear error with both the expected and computed hashes if they don't
    match. Add unit tests for matching and mismatched hashes.
    
    ### Why
    The CLI fetched WASM bytecode from RPC servers without verifying the
    returned bytes matched the requested hash. While most data is trusted
    from the connected RPC, it's good defensive approach if the CLI verifies
    the contract code because it gets cached against the hash for future use
    locally.
    
    Close #2463
    leighmcculloch authored Apr 2, 2026
    Configuration menu
    Copy the full SHA
    cadec3f View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2026

  1. feat: add user confirmation for keys rm command (#2452)

    ### What
    
    Add a confirmation prompt when deleting keys. The confirmation prompt
    can be bypassed with a `--force` flag. Confirmation also works by piping
    `y` into `stdin`.
    
    ```bash
    $ stellar keys rm rmtest           
    ⚠️  Are you sure you want to remove the key 'rmtest' at '/my-config-path/.config/stellar/identity/rmtest.toml'? This action cannot be undone. (y/N)
    y
    ℹ️  Removing the key's cli config file
    ```
    
    ```bash
    $ stellar keys rm rmtest --force          
    ℹ️  Removing the key's cli config file
    ```
    
    ```bash
    $ stellar keys rm rmtest      
    ⚠️  Are you sure you want to remove the key 'rmtest'? This action cannot be undone. (y/N)
    N
    ❌ error: removal cancelled by user
    ```
    
    ### Why
    
    Closes: #2420 
    
    ### Known limitations
    
    None
    
    ---------
    
    Co-authored-by: Nando Vieira <me@fnando.com>
    mootz12 and fnando authored Apr 10, 2026
    Configuration menu
    Copy the full SHA
    8579c49 View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2026

  1. Configuration menu
    Copy the full SHA
    ceb34a6 View commit details
    Browse the repository at this point in the history
  2. Fix xdr_to_json panic when output type is Val. (#2474)

    ### What
    
    Handle other types when printing values using xdr_to_json.
    
    ### Why
    
    Fix #2469.
    
    ### Known limitations
    
    [TODO or N/A]
    
    ---------
    
    Co-authored-by: mootz12 <38118608+mootz12@users.noreply.github.com>
    fnando and mootz12 authored Apr 13, 2026
    Configuration menu
    Copy the full SHA
    46bfb04 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    60f7458 View commit details
    Browse the repository at this point in the history
Loading