Skip to content

Releases: IBM-Cloud/ibm-cloud-cli-sdk

v1.0.0

05 Oct 21:39
3506136
Compare
Choose a tag to compare

Change Logs

Breaking Changes

  • Translation filenames must be in the format formats all.[lang].json (eg. all.en_US.json)

Other changes

  • Updated go-i18n to v2.2.0
  • Added documentation on how to generate new translation files or migrate existing translation files to the new file format.

v0.12.0

08 Sep 20:39
7d34e51
Compare
Choose a tag to compare

Change Logs

Plugin API changes:

  • Added LastSessionUpdateTime to keep track of the last time the session was updated.
  • Added RefreshSession method to maintain current IAM session.

Other changes

  • Added documentation using RefreshSession method in developer guide

v0.11.0

12 Jul 21:00
259a03a
Compare
Choose a tag to compare

Change Logs

Changes

  • Added IsCobraPlugin flag to PluginMetadata to determine plugin was built using Cobra framework
  • Added documentation using IsCobraPlugin in developer guide

v0.10.1

30 Jun 20:42
77c38ba
Compare
Choose a tag to compare

Change Logs

Other changes:

  • Added documentation on how to mock interfaces and use test doubles in developer guide
  • Updated VPC authentication metadata version

v0.10.0

20 Jun 17:40
ce40442
Compare
Choose a tag to compare

Change Logs

Plugin API changes:

  • Add ConvertCobraFlagsToPluginFlags() to the plugin package to support converting Cobra flags to Plugin flags

Other changes:

  • Address gosec issues.
  • Added vpc authentication developer guide

v0.9.0

28 Feb 22:22
93db41b
Compare
Choose a tag to compare

Change Logs

Plugin API changes:

  • Add PrintJson() to the terminal package to support printing a table in json format.

Other changes:

  • Migrate project to Go modules.
  • Address gosec issues.

v0.8.2

12 Jan 20:02
9caf063
Compare
Choose a tag to compare

Defects fixing

Other changes:

  • Address gosec false positives

v0.8.1

06 Dec 21:40
d2042cb
Compare
Choose a tag to compare

Defects fixing

  • PluginContext.IsLoggedIn() now correctly checks if a user is logged in to the CLI. See #276 for more details.

Other changes:

  • Expose method DecodeAccessToken in core_config package.
  • Address gosec false positives

v0.8.0

18 Nov 21:57
212f07e
Compare
Choose a tag to compare

Change Logs

Plugin API changes:

  • Update PluginContext.RefreshIAMToken() to support fetching a new token when logged in to the CLI as a VPC VSI compute resource.
  • Add CRIType() to PluginContext
  • Add VPCCRITokenURL() to PluginContext
  • Add IsLoggedInAsCRI() to PluginContext

Defects fixing

  • Handled session inactive error when fetching IAM token.
  • Allow empty response body for responses with 204 status code.

Other changes:

  • Add CRTokenRequestWithCRN to bluemix/authentication/iam/iam.go.
  • Add support for VPC instance metadata service token exchange.
  • Add configuration check setting IsLoggedInAsCRI in configuration file.
  • Define github CODEOWNERS file
  • Enable Travis CI

v0.7.0

28 Oct 20:52
292584a
Compare
Choose a tag to compare

Change Logs

Plugin API changes:

  • PluginMetadata struct adds IsAccessFromVPC field to indicate if the plugin supports private endpoint access via VPC.
  • Update PluginContext.IAMEndpoint() to return the corresponding VPC private service endpoint if access is from a VPC.
  • Update PluginContext.ConsoleEndpoint() to return the corresponding VPC private service endpoint if access is from a VPC.
  • Update PluginContext.GetEndpoint() to return VPE endpoint of the core platform services when access is from a VPC.

Other changes:

  • Address gosec false positive
  • Add IsAccessFromVPC, ConsolePrivateVPCEndpoint, and IAMPrivateVPCEndpoint to configuration file.
  • Add configuration check setting IsAccessFromVPC()