Skip to content

v0.14.0

Compare
Choose a tag to compare
@AllanOricil AllanOricil released this 26 Dec 03:22
· 16 commits to main since this release

0.14.0 (2024-12-26)

Features

  • enable organizing services into groups (6d290af)
demo_groups.mp4

BREAKING CHANGES

The file storing services must be named services.yml and now need to follow this schema:

services: list
  - name: text[60]
    secret: text
    group: number

For example:

services:
  - name: aws:root:[email protected]
    secret: encoded-secret
    group: 0
  - name: aws:staging:[email protected]
    secret: encoded-secret
    group: 0
  - name: aws:production:[email protected]
    secret: encoded-secret
    group: 0
  - name: aws:1234565:[email protected]
    secret: encoded-secret
    group: 1
  - name: aws:6785910:[email protected]
    secret: encoded-secret
    group: 1
  - name: aws:7815795:[email protected]
    secret: encoded-secret
    group: 1
  - name: github
    secret: encoded-secret
    group: 2
  - name: docker
    secret: encoded-secret
    group: 2
  - name: npm
    secret: encoded-secret
    group: 2