Skip to content

Commit 6993d43

Browse files
update to cf cli v7.6.0 and v8.6.1
1 parent 5d2e356 commit 6993d43

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1313

1414
### Changed
1515

16-
- Updated to [cf7 cli v7.5.0](https://github.com/cloudfoundry/cli/releases/tag/v7.5.0)
17-
- Updated to [cf7 cli v8.4.0](https://github.com/cloudfoundry/cli/releases/tag/v8.4.0)
18-
- Updated `yq` cli to version `v4.26.1`! This was actually not a simple update from `v3` as `v4` is [quite different from previous versions.](https://mikefarah.gitbook.io/yq/upgrading-from-v3)
19-
- Updated to alpine `v3.16`
16+
- Updated to [cf7 cli v7.6.0](https://github.com/cloudfoundry/cli/releases/tag/v7.6.0)
17+
- Updated to [cf7 cli v8.6.1](https://github.com/cloudfoundry/cli/releases/tag/v8.6.1)
18+
- Updated `yq` cli to version `v4`! This was actually not a simple update from `v3` as `v4` is [quite different from previous versions.](https://mikefarah.gitbook.io/yq/upgrading-from-v3)
19+
- Changed to ubuntu:latest (jammy) for resource image. This increased the container image from 104MB to 166MB, but this allows for a cleaner development environment as the devcontainer.json now uses the same resource Dockerfile while adding additional development tools using devcontainer "features".
2020

2121
### Packaged Dependencies
2222

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ RUN mkdir -p /opt/cf-cli-${CF_CLI_6_VERSION} \
1919
| tar -zxC /opt/cf-cli-${CF_CLI_6_VERSION} \
2020
&& ln -s /opt/cf-cli-${CF_CLI_6_VERSION}/cf /usr/local/bin
2121

22-
ARG CF_CLI_7_VERSION=7.5.0
22+
ARG CF_CLI_7_VERSION=7.6.0
2323
RUN mkdir -p /opt/cf-cli-${CF_CLI_7_VERSION} \
2424
&& curl -SL "https://packages.cloudfoundry.org/stable?release=linux64-binary&version=${CF_CLI_7_VERSION}" \
2525
| tar -zxC /opt/cf-cli-${CF_CLI_7_VERSION} \
2626
&& ln -s /opt/cf-cli-${CF_CLI_7_VERSION}/cf7 /usr/local/bin
2727

28-
ARG CF_CLI_8_VERSION=8.4.0
28+
ARG CF_CLI_8_VERSION=8.6.1
2929
RUN mkdir -p /opt/cf-cli-${CF_CLI_8_VERSION} \
3030
&& curl -SL "https://packages.cloudfoundry.org/stable?release=linux64-binary&version=${CF_CLI_8_VERSION}" \
3131
| tar -zxC /opt/cf-cli-${CF_CLI_8_VERSION} \

0 commit comments

Comments
 (0)