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

Bump code.cloudfoundry.org/cli from 0.0.0-20220602204915-eda2b7b2321c to 7.1.0+incompatible #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 24, 2024

Bumps code.cloudfoundry.org/cli from 0.0.0-20220602204915-eda2b7b2321c to 7.1.0+incompatible.

Release notes

Sourced from code.cloudfoundry.org/cli's releases.

v7.1.0

Package Manager Installation

Installers

Binaries

Compatibility

Tested against CC API Release Candidate capi-1.99.0-rc.33.

Change Log

FEATURE

  • cf rollback - user can rollback to a previous app revision story
    • this initial iteration of the rollback command is experimental. Additional changes should be expected in the near-term v7 releases. IMPORTANT NOTE: rollbacks are executed using the zero downtime rolling deployment strategy which means both versions of the app will be running in parallel during the rollback.

Enhancements

  • deployable boolean added to cf revisions output
  • revisions now shows an extra warning when revisions for that app are disabled - story
  • revisions now has several different header titles on the output table, and now revisions are shown in descending order - story
  • Add buildpack details in tabular format to cf app output issue # 1971
    • Add buildpack details in tabular format to cf push output
  • Improve misleading error message when un-sharing service-instances [issue #1936](cloudfoundry/cli#1936)
  • Add logic to revoke auth and refresh tokens on CLI logout when revocable flag for UAA is present
  • Improved cf push error messaging on manifest type errors [issue #1983](cloudfoundry/cli#1983)

Known Issues

  • a regression of cf logout when no API is targeted, causing it to exit with a non-zero exit code was introduced in cf CLI v7.0.2. This causes cf logout to not be idempotent. The fix can be tracked here.

Contributors: CLI Team: James Palmer, Nick Webb, Jenna Goldstrich, Alexander Berezovsky, Steve Taylor, Josh Collins, Lisa Burns, Sebastian Vidrio

VAT Team: Teal Stannard, Merric de Launey, Sarah Weinstein, Mona Mohebbi, Renee Chu, Chris Selzo, Reid Mitchell, Harsha Nandiwada, Greg Cobb

... (truncated)

Changelog

Sourced from code.cloudfoundry.org/cli's changelog.

Updates to the V7 Plugin API Interface

This document lists the differences in the objects the V7 Plugin API returns compared to V6.

Methods that have changed

CliCommand

With the V6 CLI plugins that used CliCommand to run a cf command were actually calling into versions of these commands that were different to those accessible to a user from the command line.

With the V7 CLI plugin authors will now see that command output reflects the current implementation of those commands.

Plugins that inspect the output of CliCommand will need to be updated. We recommend that if you are writing a plugin you try to depend as little as possible on this output as it is subject to change.

Error handling

One significant change between older command implementations and the current versions is that many newer commands now use stderr to report warnings or failures.

We have not yet extended the plugin API to expose output on stderr.

When an error occurred the V6 CLI plugin API would return specific errors. Currently the new plugin API only returns a generic error for all error cases.

GetApp

Model changes

V6

{
  "Guid": "defbb5bb-f010-4e4c-9841-60f641dd5bd4",
  "Name": "some-app",
  "BuildpackUrl": "",
  "Command": "",
  "DetectedStartCommand": "bundle exec rackup config.ru -p $PORT",
  "DiskQuota": 1024,
  "EnvironmentVars": null,
  "InstanceCount": 1,
  "Memory": 32,
  "RunningInstances": 1,
  "HealthCheckTimeout": 0,
  "State": "started",
  "SpaceGuid": "17586e2d-4df8-4879-b995-03d59a730e95",
</tr></table> 

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels May 24, 2024
@romain-dartigues romain-dartigues changed the base branch from master to devel May 24, 2024 17:18
Base automatically changed from devel to master May 24, 2024 17:28
@romain-dartigues
Copy link
Collaborator

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/go_modules/code.cloudfoundry.org/cli-7.1.0incompatible branch from 41e24e5 to 1de6064 Compare May 24, 2024 17:29
Bumps [code.cloudfoundry.org/cli](https://github.com/cloudfoundry/cli) from 0.0.0-20220602204915-eda2b7b2321c to 7.1.0+incompatible.
- [Release notes](https://github.com/cloudfoundry/cli/releases)
- [Changelog](https://github.com/cloudfoundry/cli/blob/main/doc/v7-plugin-api-changes.md)
- [Commits](https://github.com/cloudfoundry/cli/commits/v7.1.0)

---
updated-dependencies:
- dependency-name: code.cloudfoundry.org/cli
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/code.cloudfoundry.org/cli-7.1.0incompatible branch from 1de6064 to b60b074 Compare May 24, 2024 17:32
Copy link
Contributor Author

dependabot bot commented on behalf of github May 24, 2024

Dependabot can't resolve your Go dependency files. Because of this, Dependabot cannot update this pull request.

1 similar comment
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 20, 2024

Dependabot can't resolve your Go dependency files. Because of this, Dependabot cannot update this pull request.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file go Pull requests that update Go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant