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

chore: properly propagate fmt.Errorf errors + use errors.New #16537

Merged
merged 4 commits into from
Jun 22, 2023

Commits on Jun 15, 2023

  1. all: properly propagate fmt.Errorf errors + use errors.New

    Changes usages of fmt.Errorf that tried to propagate
    errors using format specifiers "%s" or "%v", and unnecessarily
    invoked err.Error() to pass into "%s"
    While here, replaced some instances of
    
        fmt.Errorf(string)
    
    with
    
        errors.New(string)
    
    Fixes #16536
    odeke-em committed Jun 15, 2023
    Configuration menu
    Copy the full SHA
    fe41652 View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2023

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

Commits on Jun 22, 2023

  1. fix keyring test

    tac0turtle committed Jun 22, 2023
    Configuration menu
    Copy the full SHA
    cf48d51 View commit details
    Browse the repository at this point in the history
  2. push last changes

    tac0turtle committed Jun 22, 2023
    Configuration menu
    Copy the full SHA
    c4ff24b View commit details
    Browse the repository at this point in the history