Skip to content

Releases: cloudfoundry/capi-release

CAPI 1.226.0

12 Feb 19:05

Choose a tag to compare

Highlights

CC API Version: 2.276.0 and 3.211.0

Service Broker API Version: 2.15

CAPI Release

Dependency Updates

Cloud Controller

Dependency Updates

code.cloudfoundry.org/cc-uploader

Dependency Updates

code.cloudfoundry.org/tps

Dependency Updates

github.com/cloudfoundry/blobstore_url_signer

Dependency Updates

Cloud Controller Database Migrations

Pull Requests and Issues

CAPI 1.225.0

30 Jan 09:39

Choose a tag to compare

Highlights

CC API Version: 2.275.0 and 3.210.0

Service Broker API Version: 2.15

CAPI Release

  • mariadb is needed because benchmarks run on elsa and olaf (#608) @kathap
  • Prevent Membrane errors: don't allow blobstore_provider: nil when using fog (#607) @kathap
  • Add storage_cli_optional_flags to blobstore benchmarks (#605) @kathap
  • storage_cli_optional_flags config parameter (#603) @serdarozerr
  • Fix blobstore benchmark errand (#604) @kathap
  • Add blobstore benchmark job for performance testing (#601) @kathap
  • Enable prom metrics for clock and deployment_updater (#600) @johha
  • Update ruby-3.2 package to 3.2.10 from ruby-release @ari-wg-gitbot

Dependency Updates

Cloud Controller

Dependency Updates

code.cloudfoundry.org/cc-uploader

Dependency Updates

code.cloudfoundry.org/tps

Dependency Updates

Read more

CAPI 1.224.0

08 Jan 11:42

Choose a tag to compare

Highlights

CC API Version: 2.274.0 and 3.209.0

Service Broker API Version: 2.15

CAPI Release

Dependency Updates

Cloud Controller

Dependency Updates

code.cloudfoundry.org/cc-uploader

Dependency Updates

code.cloudfoundry.org/tps

Dependency Updates

github.com/cloudfoundry/blobstore_url_signer

Dependency Updates

Cloud Controller Database Migrations

CAPI 1.223.0

09 Dec 08:15

Choose a tag to compare

Highlights

CC API Version: 2.273.0 and 3.208.0

Service Broker API Version: 2.15

CAPI Release

Dependency Updates

Cloud Controller

Dependency Updates

Cloud Controller Database Migrations

None

CAPI 1.222.0

20 Nov 01:23

Choose a tag to compare

Highlights

CC API Version: 2.272.0 and 3.207.0

Service Broker API Version: 2.15

CAPI Release

None

Cloud Controller

Dependency Updates

code.cloudfoundry.org/cc-uploader

Dependency Updates

code.cloudfoundry.org/tps

Dependency Updates

Cloud Controller Database Migrations

None

Pull Requests and Issues

CAPI 1.221.0

18 Nov 09:19

Choose a tag to compare

Highlights

CC API Version: 2.271.0 and 3.206.0

Service Broker API Version: 2.15

CAPI Release

  • Enable Puma status check as default health check (#590) @johha
  • Remove accidental ruby-version file and update correct .ruby-version (#585) @moleske
  • Update ruby-3.2 package to 3.2.9 from ruby-release @ari-wg-gitbot
  • Blobstore provider can be empty, take that into account when reading from link (#584) @kathap
  • Add storage cli param to cc deployment updater (#583) @kathap
  • Add unconfigured rubocops to rubocop config (#582) @moleske

Dependency Updates

  • Build(deps-dev): Bump rubocop-rspec from 3.7.0 to 3.8.0 in /spec (#588) @dependabot[bot]
  • Build(deps-dev): Bump rubocop-factory_bot from 2.27.1 to 2.28.0 in /spec (#587) @dependabot[bot]
  • Build(deps-dev): Bump rubocop-rspec_rails from 2.31.0 to 2.32.0 in /spec (#586) @dependabot[bot]

Cloud Controller

Dependency Updates

code.cloudfoundry.org/cc-uploader

Dependency Updates

code.cloudfoundry.org/tps

Dependency Updates

Cloud Controller Database Migrations

None

CAPI 1.220.0

04 Nov 09:18

Choose a tag to compare

Highlights
The cloud controller now supports multiple service bindings between an application and a service instance:
https://github.com/cloudfoundry/community/blob/main/toc/rfc/rfc-0040-service-binding-rotation.md

CC API Version: 2.270.0 and 3.205.0

Service Broker API Version: 2.15

CAPI Release

  • Add per-scope storage_cli JSON templates (#580) @kathap

Dependency Updates

  • Build(deps-dev): Bump rubocop from 1.81.6 to 1.81.7 in /spec (#581) @dependabot[bot]
  • Build(deps-dev): Bump rubocop from 1.81.1 to 1.81.6 in /spec (#579) @dependabot[bot]
  • Build(deps-dev): Bump rspec from 3.13.1 to 3.13.2 in /spec (#578) @dependabot[bot]

Cloud Controller

Dependency Updates

code.cloudfoundry.org/cc-uploader

Dependency Updates

code.cloudfoundry.org/tps

Dependency Updates

github.com/cloudfoundry/blobstore_url_signer

Dependency Updates

Cloud Controller Database Migrations

CAPI 1.219.0

16 Oct 19:15

Choose a tag to compare

Highlights

bigint Migration

With this release the migration of the primary key id column type from int to bigint will be completed for the 'jobs', 'delayed_jobs', 'app_usage_events' and 'service_usage_events' tables on PostgreSQL databases (if not opted-out with the ccdb.skip_bigint_id_migration flag during step 1).

  • The migration is implemented in multiple steps and does not require any downtime.
  • Data in the 'jobs' and 'delayed_jobs' tables are cleaned up automatically (default retention time: 90 days). For the 'app_usage_events' and 'service_usage_events' tables, the retention time is 31 days. In case these time periods have not passed since the deployment of CAPI 1.214.0 / cf-deployment v51.2.0, the migration will fail in a pre-check phase. Operators then have to manually run a rake task to backfill the transitional id_bigint column before being able to re-run the migration:
    bosh -d cf ssh api/0
    sudo -i
    source /var/vcap/jobs/cloud_controller_ng/bin/ruby_version.sh
    cd /var/vcap/packages/cloud_controller_ng/cloud_controller_ng
    # run for all tables where backfilling is not complete: jobs, delayed_jobs, app_usage_events, service_usage_events
    bundle exec rake db:bigint_backfill[jobs]
    # or with a given batch size (instead of 10.000)
    bundle exec rake db:bigint_backfill[jobs,1000]
    # or with a given batch size and number of iterations (otherwise: until everything has been processed)
    bundle exec rake db:bigint_backfill[jobs,1000,10]
    

CC API Version: 2.269.0 and 3.204.0

Service Broker API Version: 2.15

CAPI Release

Dependency Updates

Cloud Controller

Dependency Updates

code.cloudfoundry.org/cc-uploader

Dependency Updates

code.cloudfoundry.org/tps

Dependency Updates

Cloud Controller Database Migrations

Pull Requests and Issues

CAPI 1.218.0

08 Oct 08:15

Choose a tag to compare

CC API Version: 2.268.0 and 3.203.0

Service Broker API Version: 2.15

CAPI Release

Dependency Updates

Cloud Controller

Dependency Updates

code.cloudfoundry.org/cc-uploader

Dependency Updates

code.cloudfoundry.org/tps

Dependency Updates

github.com/cloudfoundry/blobstore_url_signer

Dependency Updates

Cloud Controller Database Migrations

None

CAPI 1.217.0

17 Sep 14:57

Choose a tag to compare

Highlights

CC API Version: 2.267.0 and 3.202.0

Service Broker API Version: 2.15

CAPI Release

Dependency Updates

  • Build(deps-dev): Bump rubocop from 1.80.1 to 1.80.2 in /spec (#573) @dependabot[bot]
  • Build(deps-dev): Bump rubocop-rspec from 3.6.0 to 3.7.0 in /spec (#572) @dependabot[bot]

Cloud Controller

Dependency Updates

code.cloudfoundry.org/cc-uploader

Dependency Updates

code.cloudfoundry.org/tps

Dependency Updates

github.com/cloudfoundry/blobstore_url_signer

Dependency Updates

Cloud Controller Database Migrations

None