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

chore(release): 1.4.4 [skip ci]

## [1.4.4](https://gitlab.com/to-be-continuous/cloud-foundry/compare/1.4.3...1.4.4) (2021-07-26)

### Bug Fixes

* **keep-retired-app:** dont retire unexisting app and unmap routes with correct path ([7ec512f6](https://gitlab.com/to-be-continuous/cloud-foundry/commit/7ec512f6d0fb58d1e16a4306c32dfe32b671c794))
parent 51b1afdf
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -49,7 +49,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: '1.4.3'
    ref: '1.4.4'
    file: '/templates/gitlab-ci-cf.yml'
```

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

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

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

# Global variables
+1 −1
Original line number Diff line number Diff line
@@ -9,6 +9,6 @@ variables:
.cf-base:
  services:
    - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
      command: ["--service", "cloudfoundry", "1.4.3" ]
      command: ["--service", "cloudfoundry", "1.4.4" ]
    - name: "$CI_REGISTRY/to-be-continuous/tools/vault-secrets-provider:master"
      alias: "vault-secrets-provider"
+2 −2
Original line number Diff line number Diff line
@@ -678,7 +678,7 @@ stages:
    fi
  }

  if [[ -z "$TEMPLATE_CHECK_UPDATE_DISABLED" ]]; then check_for_update cloud-foundry "1.4.3"; fi
  if [[ -z "$TEMPLATE_CHECK_UPDATE_DISABLED" ]]; then check_for_update cloud-foundry "1.4.4"; fi
  unscope_variables
  eval_all_secrets

@@ -689,7 +689,7 @@ stages:
  image: $CF_CLI_IMAGE
  services:
    - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
      command: ["--service", "cloudfoundry", "1.4.3" ]
      command: ["--service", "cloudfoundry", "1.4.4" ]
  before_script:
    # forcing en-US locale so we can parse cf commands output if necessary
    - cf config --locale "en-US"