mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-18 13:44:20 +01:00
Fix password schema (#1883)
This commit is contained in:
@@ -1,123 +1,67 @@
|
||||
# Changelog
|
||||
|
||||
## 7.12
|
||||
## 7.12.1
|
||||
|
||||
- Update options schema for passwords
|
||||
|
||||
## 7.12.0
|
||||
|
||||
- Fix error of deployment_key eventually failing by overwriting the deployment_key every cycle
|
||||
|
||||
## 7.11
|
||||
## 7.11.0
|
||||
|
||||
- Update Home Assistant CLI to 4.2.0
|
||||
|
||||
## 7.10
|
||||
## 7.10.0
|
||||
|
||||
- Update Home Assistant CLI to 4.1.0
|
||||
|
||||
## 7.9
|
||||
## 7.9.0
|
||||
|
||||
- Update Home Assistant CLI to 4.0.1
|
||||
|
||||
## 7.8
|
||||
## 7.8.0
|
||||
|
||||
- Added support for Azure DevOps repositories by removing the requirement for the `.git` suffix
|
||||
- Update to Alpine 3.11
|
||||
|
||||
## 7.7
|
||||
## 7.7.0
|
||||
|
||||
- Update Hass.io CLI to 3.1.1
|
||||
|
||||
## 7.6
|
||||
## 7.6.0
|
||||
|
||||
- Update Hass.io CLI to 3.1.0
|
||||
|
||||
## 7.5
|
||||
## 7.5.0
|
||||
|
||||
- Update Hass.io CLI to 3.0.0
|
||||
|
||||
## 7.4
|
||||
## 7.4.0
|
||||
|
||||
- Update Hass.io CLI to 2.3.0
|
||||
|
||||
## 7.3
|
||||
## 7.3.0
|
||||
|
||||
- Update Hass.io CLI to 2.2.0
|
||||
|
||||
## 7.2
|
||||
## 7.2.0
|
||||
|
||||
- Fix restart_ignore when specifying a sub-directory
|
||||
|
||||
## 7.1
|
||||
## 7.1.0
|
||||
|
||||
- Enhance restart_ignore to support whole directories
|
||||
- Fix repeat option: don't terminate if internet connection unavailable during a check
|
||||
|
||||
## 7.0
|
||||
## 7.0.0
|
||||
|
||||
- Update Hass.io CLI to 2.0.1
|
||||
|
||||
## 6.1
|
||||
## 6.1.0
|
||||
|
||||
- Bugfix in git diff command while comparing commits
|
||||
|
||||
## 6.0
|
||||
## 6.0.0
|
||||
|
||||
- Allow to disable Home Assistant restart for specific file changes
|
||||
|
||||
## 5.0
|
||||
|
||||
- Update Hass.io CLI to 1.4.0
|
||||
- Add new API role profile
|
||||
|
||||
## 4.9
|
||||
|
||||
- Fix git repo detection in config-dir - #372
|
||||
- Fix repeat option detection - #375
|
||||
- Allow to stay on the currently checked out branch - set "git_branch": ""
|
||||
- Correct typo
|
||||
|
||||
## 4.8
|
||||
|
||||
- Add option to use git reset instead of git pull
|
||||
- Validate git origin URL
|
||||
|
||||
## 4.7
|
||||
|
||||
- Update Hass.io CLI to 1.3.1
|
||||
|
||||
## 4.6
|
||||
|
||||
- Update Hass.io CLI to 1.3.0
|
||||
|
||||
## 4.5
|
||||
|
||||
- Update Hass.io CLI to 1.2.1
|
||||
|
||||
## 4.4
|
||||
|
||||
- Update Hass.io CLI to 1.1.2
|
||||
|
||||
## 4.3
|
||||
|
||||
- Downgrade Hass.io CLI to 1.0.1
|
||||
|
||||
## 4.2
|
||||
|
||||
- Update Hass.io CLI to 1.1.1
|
||||
|
||||
## 4.1
|
||||
|
||||
- Add support for key validation against ssh cloned GitHub repositories
|
||||
|
||||
## 4.0
|
||||
|
||||
- Allow to use user/password authentication for GIT
|
||||
- New options `deployment_user` and `deployment_password`
|
||||
|
||||
## 3.0
|
||||
|
||||
- New CLI
|
||||
- Update base image
|
||||
- Backup of files before clearing the /config folder
|
||||
- Copy back all non YAML files and the secrets.yaml after the git clone
|
||||
- More verbose error handling. Also logging the GIT exceptions.
|
||||
- Splitted code out into functions
|
||||
- Check SSH connection before setting the key
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Git pull",
|
||||
"version": "7.12",
|
||||
"version": "7.12.1",
|
||||
"slug": "git_pull",
|
||||
"description": "Simple git pull to update the local configuration",
|
||||
"url": "https://github.com/home-assistant/hassio-addons/tree/master/git_pull",
|
||||
@@ -33,7 +33,7 @@
|
||||
"deployment_key": ["str"],
|
||||
"deployment_key_protocol": "match(rsa|dsa|ecdsa|ed25519|rsa)",
|
||||
"deployment_user": "str",
|
||||
"deployment_password": "str",
|
||||
"deployment_password": "password",
|
||||
"git_branch": "str",
|
||||
"git_command": "list(pull|reset)",
|
||||
"git_remote": "str",
|
||||
|
||||
Reference in New Issue
Block a user