You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a message from the GitHub CLI team, maintainers of gh, writing to inform you that the most recent release of gh contains changes which may affect your extension. The latest release introduces the feature of storing authentication tokens in the system keyring (encrypted storage) instead of in a plain text file.
The keyrings that are supported are:
Keychain on macOS
GNOME Keyring on Linux (Secret Service dbus interface)
Wincred on Windows
This has huge security benefits for the users of our tool and was one of our oldest outstanding issues. Unfortunately this change has the potential to break extensions that rely on utilizing the users authentication token to work.
In order to have continued compatibility with gh there are some actions you, as an extension author, need to take. These actions will depend on the implementation of your extension.
Upgrade your go-gh version to v1.2.1, the latest version.
This can be done using go get github.com/cli/go-gh@v1.2.1
Verify that in your extension retrieval of the user authentication token is done using the auth.TokenForHost function.
If you were previously accessing the authentication token using any other method it will no longer work.
Automatic resolution of the authentication token when using the API clients will continue to work without changes.
All other extensions:
Verify that in your extension retrieval of the user authentication token is done by shelling out to the gh auth token command.
If you were previously accessing the authentication token using the gh config get command, reading the configuration file directly, or any other methods it will no longer work.
As of right now storing the authentication token in the system keyring is an opt-in feature, but in the near future it will be required and at that point if the changes above are not made then your extension will be broken for all users. If you have any questions/concerns about this change please feel free to open a discussion in the gh repo.
Thanks,
The GitHub CLI Team
The text was updated successfully, but these errors were encountered:
Token storage change in latest release of gh
This is a message from the GitHub CLI team, maintainers of
gh
, writing to inform you that the most recent release ofgh
contains changes which may affect your extension. The latest release introduces the feature of storing authentication tokens in the system keyring (encrypted storage) instead of in a plain text file.The keyrings that are supported are:
Keychain on macOS
GNOME Keyring on Linux (Secret Service dbus interface)
Wincred on Windows
This has huge security benefits for the users of our tool and was one of our oldest outstanding issues. Unfortunately this change has the potential to break extensions that rely on utilizing the users authentication token to work.
In order to have continued compatibility with
gh
there are some actions you, as an extension author, need to take. These actions will depend on the implementation of your extension.Extensions built in Go using go-gh:
Upgrade your
go-gh
version to v1.2.1, the latest version.go get github.com/cli/go-gh@v1.2.1
Verify that in your extension retrieval of the user authentication token is done using the
auth.TokenForHost
function.All other extensions:
Verify that in your extension retrieval of the user authentication token is done by shelling out to the
gh auth token
command.gh config get
command, reading the configuration file directly, or any other methods it will no longer work.As of right now storing the authentication token in the system keyring is an opt-in feature, but in the near future it will be required and at that point if the changes above are not made then your extension will be broken for all users. If you have any questions/concerns about this change please feel free to open a discussion in the gh repo.
Thanks,
The GitHub CLI Team
The text was updated successfully, but these errors were encountered: