1.1.1
What's Changed
- #181, #184, #185, #193 Enhanced internal data types
- 9d599db
Create
button text in the vault creation component renamed toNext
- 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