Skip to content

1.1.1

Compare
Choose a tag to compare
@SailReal SailReal released this 28 Apr 13:12
· 804 commits to develop since this release
1.1.1
6306b2e

What's Changed

  • #181, #184, #185, #193 Enhanced internal data types
  • 9d599db Create button text in the vault creation component renamed to Next
  • Updated dependencies

Full Changelog: 1.1.0...1.1.1

Recommended tasks before or after updating to 1.1.1

In the Setup Wizard, we have improved the condition checks of the Hub Deployment / Service. in case you want to apply it as well:

Kubernetes:

          startupProbe:
            httpGet:
              path: /q/health/started
              port: 8080
          livenessProbe:
            httpGet:
              path: /api/config
              port: 8080
            initialDelaySeconds: 10
            periodSeconds: 3
          readinessProbe:
            httpGet:
              path: /api/config
              port: 8080
            initialDelaySeconds: 10
            periodSeconds: 3

Docker-Compose:

    healthcheck:
      test:
        - CMD-SHELL
        - (curl -f http://localhost:8080/q/health/live && curl -f http://localhost:8080/api/config) || exit 1