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
CF has bumped their CLI config data structure version to v4. Now we still assume we're loading v3 data, which will result in config data cleared when running any cf commands after ibmcloud target --cf. That is:
we save cf config as v3.
the user installed CF CLI version >= 6.52.0 which expects v4
* sync latest config data from upstream cf cli project
* remove `LoggregatorEndpoint` property and corresponding codes
* add `UAAGrantType` property, but not setter/getter
* remove compatibility check and purge logic, we should delegate it
to CF CLI
* set default config version to `4` if not set
* add unit test
resolve#218
Description
CF has bumped their CLI config data structure version to
v4
. Now we still assume we're loadingv3
data, which will result in config data cleared when running any cf commands afteribmcloud target --cf
. That is:v3
.v4
See the issue in CF CLI: cloudfoundry/cli#2033
Resolution
We need to modify our implementation to:
The text was updated successfully, but these errors were encountered: