-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Keep a Changelog format for changelog (#145)
- Loading branch information
Showing
1 changed file
with
55 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,68 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
## 3.0.0 | ||
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). | ||
|
||
* Heavy architectural changes to make the plugin more modular | ||
* Added support for Bitbucket.org repositories (Mercurial and Git) | ||
* Added support for GitLab repositories | ||
* Added support for self-managed repositories (GitLab and others) | ||
* Added new REST API route for incoming webhooks (`traduttore/v1/incoming-webhook`) which replaces the deprecated route (`github-webhook/v1/push-event`) | ||
* Changed all filters and actions to use `.` as the separator between the prefix and hook name instead of `_` | ||
* Improved scheduling of cron events to reduce number of unnecessary builds and updates | ||
* Added new `wp traduttore info` CLI command | ||
* Greatly improved documentation | ||
## [Unreleased] | ||
### Changed | ||
|
||
## 2.0.3 | ||
* Heavy architectural changes to make the plugin more modular. | ||
* All filters and actions now use `.` as the separator between the prefix and hook name instead of `_`. | ||
* Scheduling of cron events to reduce number of unnecessary builds and updates. | ||
|
||
* Uses HTTPS instead of SSH for cloning repositories if possible | ||
* Fixed uninstall routine | ||
* Fixed a few other smaller issues | ||
### Added | ||
* Support for Bitbucket.org repositories (Mercurial and Git). | ||
* Support for GitLab repositories. | ||
* Support for self-managed repositories (GitLab and others). | ||
* New REST API route for incoming webhooks (`traduttore/v1/incoming-webhook`). | ||
* CLI command `wp traduttore info` for information about Traduttore setup. | ||
* Greatly improved [documentation](https://wearerequired.github.io/traduttore/). | ||
|
||
## 2.0.2 | ||
### Deprecated | ||
* The REST API route `github-webhook/v1/push-event` for incoming webhooks is replaced by `traduttore/v1/incoming-webhook`. | ||
|
||
* Fixed a few errors within the CLI commands | ||
* Fixed an error where deleting the local Git repository wasn't possible ([ee4ee06](https://github.com/wearerequired/traduttore/commit/ee4ee0626b009f88e40362b22dd69c9092e742e5)) | ||
* Introduce `TRADUTTORE_WP_BIN` constant to allow overriding the path to WP-CLI ([#32](https://github.com/wearerequired/traduttore/pull/32)) | ||
* Makes sure `wp_tempnam()` is always available ([#31](https://github.com/wearerequired/traduttore/pull/31)) | ||
### Removed | ||
* Remove all filters and actions with `_` as the separator. | ||
|
||
## 2.0.1 | ||
## [2.0.3] - 2018-07-09 | ||
### Changed | ||
* Use HTTPS instead of SSH for cloning repositories if possible. | ||
|
||
* Fixed a possible fatal error in the project locator class ([b6f6ceb](https://github.com/wearerequired/traduttore/commit/b6f6cebbed32f67d5891726c00f7d6bc44f42ff2)) | ||
* Improved code formatting and inline documentation | ||
### Fixed | ||
* Fix uninstall routine and a few other smaller issues. | ||
|
||
## 2.0.0 | ||
## [2.0.2] - 2018-06-25 | ||
### Added | ||
* Introduce `TRADUTTORE_WP_BIN` constant to allow overriding the path to WP-CLI. | ||
|
||
* Added CLI commands | ||
* Added ZIP file generation | ||
* Added translation API | ||
* Added Slack notifications | ||
### Fixed | ||
* Fix a few errors within the CLI commands. | ||
* Fix an error where deleting the local Git repository wasn't possible. | ||
* Make sure `wp_tempnam()` is always available. | ||
|
||
## 1.0.0 | ||
## [2.0.1] - 2018-06-21 | ||
|
||
* Initial release | ||
### Fixed | ||
* Fix a possible fatal error in the project locator class. | ||
|
||
### Changed | ||
* Improve code formatting and inline documentation. | ||
|
||
## 2.0.0 - 2018-06-19 | ||
|
||
### Added | ||
* CLI commands. | ||
* ZIP file generation. | ||
* Translation API. | ||
* Slack notifications. | ||
|
||
## 1.0.0 - 2017-05-30 | ||
|
||
### Added | ||
* Initial release. | ||
|
||
[Unreleased]: https://github.com/wearerequired/traduttore/compare/2.0.3...HEAD | ||
[2.0.3]: https://github.com/wearerequired/traduttore/compare/2.0.2...2.0.3 | ||
[2.0.2]: https://github.com/wearerequired/traduttore/compare/2.0.1...2.0.2 | ||
[2.0.1]: https://github.com/wearerequired/traduttore/compare/2.0.0...2.0.1 |