Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

multi: replace occurrences of "LSAT" to "L402" #730

Merged
merged 8 commits into from
Apr 29, 2024

Commits on Apr 23, 2024

  1. multi: apply make fmt

    starius committed Apr 23, 2024
    Configuration menu
    Copy the full SHA
    e30cb5f View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2024

  1. looprpc,swapserverrpc: update Go image to 1.21.9-bookworm

    This is needed to update protobuf. Version 1.33 breaks in Go 1.16 with
    the following error: "//go:build comment without // +build comment".
    
    Distribution was updated from buster (10) to bookworm (12).
    protoc was updated from v3.6.1 to v3.21.12.
    starius committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    368432e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b99cde1 View commit details
    Browse the repository at this point in the history
  3. update aperture to include lsat to l402 renaming

    Fix the build:
    go mod tidy
    sed 's@\<lsat\>@l402@g' -i `git grep -l -w aperture/lsat`
    make rpc
    starius committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    bfc3f44 View commit details
    Browse the repository at this point in the history
  4. multi: replace LSAT with L402

    git mv ./cmd/loop/lsat.go ./cmd/loop/l402.go
    sed 's@lsat@l402@g' -i `git grep -l lsat`
    sed 's@Lsat@L402@g' -i `git grep -l Lsat`
    sed 's@LSAT@L402@g' -i `git grep -l LSAT`
    make rpc
    
    Updated release_notes.md.
    starius committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    0e7927a View commit details
    Browse the repository at this point in the history
  5. loopd: recorgnize maxlsatcost and maxlsatfee flags

    The flags were re-added in hidden mode so that users who specified them
    could start the daemon after upgrading. If a flag is used, a deprecation
    warning is printed.
    
    Updated release_notes.md.
    starius committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    7bb04ae View commit details
    Browse the repository at this point in the history
  6. looprpc: additional_bindings for /v1/lsat/tokens

    Provide backward compatibility for clients using this API endpoint.
    starius committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    14dc8e1 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2024

  1. loopd: re-add GetLsatTokens method in gRPC

    This is needed not to break existing client binaries, e.g. `loop listauth`,
    Terminal Web, RTL.
    
    The API should be removed in a couple of releases. For now, GetLsatTokens
    just prints a warning message about the API being deprecated and that the
    client binary should be updated, and calls GetL402Tokens API, as a wrapper.
    
    Type LsatToken used by GetLsatTokens in the past was renamed to L402Token,
    but this does not affect binary encoding, so type L402Token can be used
    (as part of TokensResponse) without breaking backward compatibility.
    
    Updated release_notes.md.
    
    See lightninglabs#730 (comment)
    starius committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    5a1f795 View commit details
    Browse the repository at this point in the history