Commit 8c9d562c authored by semantic-release-bot's avatar semantic-release-bot
Browse files

chore(release): 3.0.0 [skip ci]

# [3.0.0](https://gitlab.com/to-be-continuous/cloud-foundry/compare/2.1.1...3.0.0) (2023-04-05)

### Features

* **deploy:** redesign deployment strategy ([1c9ecf85](https://gitlab.com/to-be-continuous/cloud-foundry/commit/1c9ecf852aea794f68f521c28cffd7564952be7e))

### BREAKING CHANGES

* **deploy:** $AUTODEPLOY_TO_PROD no longer supported (replaced by $CF_PROD_DEPLOY_STRATEGY - see doc)
parent fc338243
Loading
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
# [3.0.0](https://gitlab.com/to-be-continuous/cloud-foundry/compare/2.1.1...3.0.0) (2023-04-05)


### Features

* **deploy:** redesign deployment strategy ([1c9ecf8](https://gitlab.com/to-be-continuous/cloud-foundry/commit/1c9ecf852aea794f68f521c28cffd7564952be7e))


### BREAKING CHANGES

* **deploy:** $AUTODEPLOY_TO_PROD no longer supported (replaced by $CF_PROD_DEPLOY_STRATEGY - see doc)

## [2.1.1](https://gitlab.com/to-be-continuous/cloud-foundry/compare/2.1.0...2.1.1) (2023-01-27)


+5 −5
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ In order to include this template in your project, add the following to your `gi
```yaml
include:
  - project: 'to-be-continuous/cloud-foundry'
    ref: '2.1.1'
    ref: '3.0.0'
    file: '/templates/gitlab-ci-cf.yml'
```

@@ -355,11 +355,11 @@ With:
include:
  # main template
  - project: 'to-be-continuous/cloud-foundry'
    ref: '2.1.1'
    ref: '3.0.0'
    file: '/templates/gitlab-ci-cf.yml'
  # Vault variant
  - project: 'to-be-continuous/cloud-foundry'
    ref: '2.1.1'
    ref: '3.0.0'
    file: '/templates/gitlab-ci-cf-vault.yml'

variables:
@@ -388,7 +388,7 @@ variables:
```yaml
include:
  - project: 'to-be-continuous/cloud-foundry'
    ref: '2.1.1'
    ref: '3.0.0'
    file: '/templates/gitlab-ci-cf.yml'

# Global variables
@@ -443,7 +443,7 @@ with [variabilized](https://docs.cloudfoundry.org/devguide/deploy-apps/manifest-
```yaml
include:
  - project: 'to-be-continuous/cloud-foundry'
    ref: '2.1.1'
    ref: '3.0.0'
    file: '/templates/gitlab-ci-cf.yml'

# Global variables
+1 −1
Original line number Diff line number Diff line
@@ -11,6 +11,6 @@ variables:
.cf-base:
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "cloudfoundry", "2.1.1" ]
      command: ["--service", "cloudfoundry", "3.0.0" ]
    - name: "$TBC_VAULT_IMAGE"
      alias: "vault-secrets-provider"
+1 −1
Original line number Diff line number Diff line
@@ -709,7 +709,7 @@ stages:
  image: $CF_CLI_IMAGE
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "cloudfoundry", "2.1.1" ]
      command: ["--service", "cloudfoundry", "3.0.0" ]
  before_script:
    # forcing en-US locale so we can parse cf commands output if necessary
    - cf config --locale "en-US"