Skip to content

Release v0.12.0

Choose a tag to compare

@mlookaxw mlookaxw released this 13 Mar 11:14
· 30 commits to master since this release

Features

#35: Remove Certificates

A new certificate type empty is introduced for the update object of the certificate configuration file.
It indicates that a certificate will be updated with an empty certificate and therefore will be removed.

{
  "certifictates":
    "to-be-deleted": {
      "origin": {
        "info": {
          "not_after": "2020-08-23T20:24:00+02:00", 
          "subject": "CN=localhost, O=ACME Inc., C=EX"
        }
      },
      "update": {
        "type": "empty"
      }
    }
}

Type empty will remove the certificate.

#36: "property" as default source

The default source for new environmentalized fields is property.

Old default source

{
  "field#0": {
    "source": "value",
    "type": "string",
    "used": true,
    "value": null
  }
}

New default source

{
  "field#0": {
    "source": "property",
    "type": "string",
    "used": true,
    "value": null
  }
}