Comparing v8.17.0...v8.17.1 · cloudfoundry/cli
Commits on Dec 1, 2025
Commits on Dec 8, 2025
Commits on Dec 9, 2025
-
Fix improper Eventually usage in servicebrokerstub (#3647)
The ensureAppIsDeployed helper was calling appResponds() immediately and passing the result (a boolean) to Eventually. This prevented Gomega from polling the function, causing failures if the app wasn't ready instantly. This change passes the function reference appResponds to Eventually so it can be polled correctly, and adds a 1-minute timeout to allow for slower environments.
Commits on Dec 11, 2025
Commits on Dec 20, 2025
Commits on Jan 14, 2026
-
[v8](go): Bump the dependencies group with 7 updates (#3680)
--- updated-dependencies: - dependency-name: code.cloudfoundry.org/bytefmt dependency-version: 0.60.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: code.cloudfoundry.org/clock dependency-version: 1.57.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: code.cloudfoundry.org/lager/v3 dependency-version: 3.57.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: github.com/onsi/ginkgo/v2 dependency-version: 2.27.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: github.com/onsi/gomega dependency-version: 1.39.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: golang.org/x/term dependency-version: 0.39.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: golang.org/x/text dependency-version: 0.33.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
Update to run tests with 4 nodes to reduce infra load (#3681)
This PR optimizes the integration test execution in CI to reduce infrastructure load and improve test reliability. This change splits the integration-tests-full-ci Makefile target into 3 sequential batches instead of running all 6 test suites together with high parallelism. Additionally, the number of parallel nodes is reduced from 12 to 4 in the GitHub Actions workflow. Test suites are now grouped logically into batches that run sequentially with controlled parallelism to prevent infrastructure overload while maintaining reasonable test execution time.