mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-20 13:16:18 +00:00
Changelog for v0.14.0-rc2 (#241)
* add changelog-tool config (https://gitea.com/gitea/changelog) * generate changelog * improve text
This commit is contained in:
parent
c699ea5789
commit
6bdadcdc49
2 changed files with 82 additions and 0 deletions
55
.changelog.yml
Normal file
55
.changelog.yml
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
# config for https://gitea.com/gitea/changelog to generate CHANGELOG.md
|
||||||
|
|
||||||
|
# The full repository name
|
||||||
|
repo: woodpecker-ci/woodpecker
|
||||||
|
|
||||||
|
# Service type (gitea or github)
|
||||||
|
service: github
|
||||||
|
|
||||||
|
# Changelog groups and which labeled PRs to add to each group
|
||||||
|
groups:
|
||||||
|
-
|
||||||
|
name: BREAKING
|
||||||
|
labels:
|
||||||
|
- breaking
|
||||||
|
-
|
||||||
|
name: FEATURES
|
||||||
|
labels:
|
||||||
|
- feature
|
||||||
|
-
|
||||||
|
name: SECURITY
|
||||||
|
labels:
|
||||||
|
- security
|
||||||
|
-
|
||||||
|
name: BUGFIXES
|
||||||
|
labels:
|
||||||
|
- bug
|
||||||
|
-
|
||||||
|
name: ENHANCEMENTS
|
||||||
|
labels:
|
||||||
|
- enhancement
|
||||||
|
- refactor
|
||||||
|
- ui
|
||||||
|
-
|
||||||
|
name: TESTING
|
||||||
|
labels:
|
||||||
|
- tests
|
||||||
|
-
|
||||||
|
name: TRANSLATION
|
||||||
|
labels:
|
||||||
|
- kind/translation
|
||||||
|
-
|
||||||
|
name: BUILD
|
||||||
|
labels:
|
||||||
|
- kind/build
|
||||||
|
- kind/lint
|
||||||
|
-
|
||||||
|
name: DOCUMENTATION
|
||||||
|
labels:
|
||||||
|
- documentation
|
||||||
|
-
|
||||||
|
name: MISC
|
||||||
|
default: true
|
||||||
|
|
||||||
|
# regex indicating which labels to skip for the changelog
|
||||||
|
skip-labels: skip-changelog
|
27
CHANGELOG.md
Normal file
27
CHANGELOG.md
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
## [0.14.0-rc2](https://github.com/woodpecker-ci/woodpecker/releases/tag/v0.14.0-rc2) - 2021-07-08
|
||||||
|
|
||||||
|
* FEATURES
|
||||||
|
* Add OAuth2 Support for Gitea Remote (#226)
|
||||||
|
* Add support for path-prefix condition (#174)
|
||||||
|
* BUGFIXES
|
||||||
|
* Fix release-server make target by build server with correct option (#237)
|
||||||
|
* Fix Gitea unable to login on 0.12.0+ with error "cannot authenticate user. 403 Forbidden" (#221)
|
||||||
|
* ENHANCEMENTS
|
||||||
|
* Update / Remove drone dependencies (#236)
|
||||||
|
* Add support to gitea remote for path-prefix condition (#235)
|
||||||
|
* Enable go vet for ci (#230)
|
||||||
|
* Enforce code format (#228)
|
||||||
|
* Add mutli-pipeline to Gitea (#225)
|
||||||
|
* Move flag definitions into extra files (#215)
|
||||||
|
* Remove unused code in server (#213)
|
||||||
|
* Docs URL configuration (#206)
|
||||||
|
* Filter main branch (#205)
|
||||||
|
* Fix multi pipeline bug when a pipeline depends on two other pipelines (#201)
|
||||||
|
* Using configured server URL instead of obtained from request (#175)
|
||||||
|
* DOCUMENTATION
|
||||||
|
* Switch in docs to new docker hub image repo (#227)
|
||||||
|
* Use WOODPECKER_ env vars in docs (#211)
|
||||||
|
* Also show WOODPECKER_HOST and WOODPECKER_SERVER_HOST environment variables in log messages (#208)
|
||||||
|
* Move woodpecker to dedicated organisation on github (#202)
|
||||||
|
* MISC
|
||||||
|
* Add chart for installing woodpecker server and agent (#199)
|
Loading…
Reference in a new issue