Skip to content

Commit

Permalink
Merge pull request #73 from baloise-incubator/doc/update-changelog
Browse files Browse the repository at this point in the history
update changelog
  • Loading branch information
christiansiegel committed Mar 20, 2020
2 parents 58c10b1 + d0b09b1 commit 1f9f0a5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
21 changes: 15 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,27 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [3.0.0] - 2020-03-20

### Added
- Added `--verbose` arg to print stack traces in case of errors
- Automatic git provider detection. If `--git-provider-url` contains "github" or "bitbucket" the `--git-provider` arg is not needed anymore. Until now, `bitbucket` was used as default if `--git-provider` was missing.
- Improved error handling and log outputs

### Changed
- Throw an error if a key is not found in the YAML file for `deploy` and `create-preview` commands. Until now, the missing key was silently added.
- `--username` and `--pasword` are always required
- Read `.gitops.config.yaml` from the master branch for `delete-preview`
- The `--branch` arg of the `delete-preview` command now only refers to the app repo branch. The config repo changes are pushed to `master` by default or to a randomly created branch name if `--create_pr` is given.

### Removed
- Arg shortcuts (except `-v` verbose and `-h` help)
- The `requirements.txt` was removed in favor of requirements in `setup.py`. This allows installation with only `pip3 install .`
- The `--branch` arg was removed for commands `deploy` and `create-preview`. For `create-preview` the app repo branch is detected via the `--pr_id`. All changes in the config repo are pushed to `master` by default, or to a randomly created branch name if `--create_pr` is given.

## [2.1.0] - 2020-02-09

### Added
- New command `delete-preview`
- Added initial Changelog.md
- Added `--verbose` arg
- Improved git error handling
- Improved yaml update error handling
### Removed
- arg shortcuts (except -v verbose and -h help)
- Added initial Changelog.md
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="gitopscli",
version="2.1.0",
version="3.0.0",
packages=find_packages(),
entry_points={"console_scripts": ["gitopscli = gitopscli.__main__:main"]},
setup_requires=["wheel"],
Expand Down

0 comments on commit 1f9f0a5

Please sign in to comment.