Update git_pull cli (#582)

* Update build.json

* Update config.json

* Update CHANGELOG.md

* Update Dockerfile
This commit is contained in:
Pascal Vizeli
2019-05-16 11:59:43 +02:00
committed by GitHub
parent ca70298f8d
commit f09bf73865
4 changed files with 23 additions and 5 deletions

View File

@@ -1,61 +1,82 @@
# Changelog # Changelog
## 7.3
- Update Hass.io CLI to 2.2.0
## 7.2 ## 7.2
- Fix restart_ignore when specifying a sub-directory - Fix restart_ignore when specifying a sub-directory
## 7.1 ## 7.1
- Enhance restart_ignore to support whole directories - Enhance restart_ignore to support whole directories
- Fix repeat option: don't terminate if internet connection unavailable during a check - Fix repeat option: don't terminate if internet connection unavailable during a check
## 7.0 ## 7.0
- Update Hass.io CLI to 2.0.1 - Update Hass.io CLI to 2.0.1
## 6.1 ## 6.1
- Bugfix in git diff command while comparing commits - Bugfix in git diff command while comparing commits
## 6.0 ## 6.0
- Allow to disable Home Assistant restart for specific file changes - Allow to disable Home Assistant restart for specific file changes
## 5.0 ## 5.0
- Update Hass.io CLI to 1.4.0 - Update Hass.io CLI to 1.4.0
- Add new API role profile - Add new API role profile
## 4.9 ## 4.9
- Fix git repo detection in config-dir - #372 - Fix git repo detection in config-dir - #372
- Fix repeat option detection - #375 - Fix repeat option detection - #375
- Allow to stay on the currently checked out branch - set "git_branch": "" - Allow to stay on the currently checked out branch - set "git_branch": ""
- Correct typo - Correct typo
## 4.8 ## 4.8
- Add option to use git reset instead of git pull - Add option to use git reset instead of git pull
- Validate git origin URL - Validate git origin URL
## 4.7 ## 4.7
- Update Hass.io CLI to 1.3.1 - Update Hass.io CLI to 1.3.1
## 4.6 ## 4.6
- Update Hass.io CLI to 1.3.0 - Update Hass.io CLI to 1.3.0
## 4.5 ## 4.5
- Update Hass.io CLI to 1.2.1 - Update Hass.io CLI to 1.2.1
## 4.4 ## 4.4
- Update Hass.io CLI to 1.1.2 - Update Hass.io CLI to 1.1.2
## 4.3 ## 4.3
- Downgrade Hass.io CLI to 1.0.1 - Downgrade Hass.io CLI to 1.0.1
## 4.2 ## 4.2
- Update Hass.io CLI to 1.1.1 - Update Hass.io CLI to 1.1.1
## 4.1 ## 4.1
- Add support for key validation against ssh cloned GitHub repositories - Add support for key validation against ssh cloned GitHub repositories
## 4.0 ## 4.0
- Allow to use user/password authentication for GIT - Allow to use user/password authentication for GIT
- New options `deployment_user` and `deployment_password` - New options `deployment_user` and `deployment_password`
## 3.0 ## 3.0
- New CLI - New CLI
- Update base image - Update base image
- Backup of files before clearing the /config folder - Backup of files before clearing the /config folder

View File

@@ -1,9 +1,6 @@
ARG BUILD_FROM ARG BUILD_FROM
FROM $BUILD_FROM FROM $BUILD_FROM
# Add env
ENV LANG C.UTF-8
# Setup base # Setup base
RUN apk add --no-cache jq curl git openssh-client RUN apk add --no-cache jq curl git openssh-client

View File

@@ -1,5 +1,5 @@
{ {
"args": { "args": {
"CLI_VERSION": "2.0.1" "CLI_VERSION": "2.2.0"
} }
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "Git pull", "name": "Git pull",
"version": "7.2", "version": "7.3",
"slug": "git_pull", "slug": "git_pull",
"description": "Simple git pull to update the local configuration", "description": "Simple git pull to update the local configuration",
"url": "https://home-assistant.io/addons/git_pull/", "url": "https://home-assistant.io/addons/git_pull/",