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: linode/linodego
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.10.1
Choose a base ref
...
head repository: linode/linodego
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.11.0
Choose a head ref
  • 3 commits
  • 4 files changed
  • 3 contributors

Commits on Jan 10, 2023

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

Commits on Jan 11, 2023

  1. Merge pull request #290 from linode/fix/cache-use-hex

    fix: Use hex notation for ListOptions.Hash(...)
    lgarber-akamai authored Jan 11, 2023
    Configuration menu
    Copy the full SHA
    f1725e9 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2023

  1. New: support for account/logins endpoints (#287)

    This adds support for the `/account/logins` and `account/logins/{id}` endpoints ([docs](https://www.linode.com/docs/api/account/#user-logins-list-all)).
    
    Example usage:
    
    ```go
    res, err := linodeClient.ListLogins(context.Background(), nil)
    if err != nil {
    	log.Fatal(err)
    }
    
    for _, l := range res {
    	fmt.Println(l.IP)
    }
    ```
    jcallahan-akamai authored Jan 17, 2023
    Configuration menu
    Copy the full SHA
    d4d5e88 View commit details
    Browse the repository at this point in the history
Loading