From c7ab92b021a7eedf5a15d84706cbb748c01b64fd Mon Sep 17 00:00:00 2001 From: Adrien Crivelli Date: Thu, 24 Dec 2020 23:40:25 +0900 Subject: [PATCH] 5.0.0 --- CHANGELOG.md | 41 ++++++++++++++++++++++-------- lib/redmine_git_hosting/version.rb | 2 +- 2 files changed, 31 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78829d4a3d8..2db4886f94d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,22 +1,41 @@ # Changelog -## 4.0.3 +## 5.0.0 - 2020-12-24 🎄 -- Redmine 4.1 support +### Added + +- Basic Auth support for post_receive_urls +- post_receive_url :post empty support +- Logging to journal, if configured for Redmine (see https://github.com/theforeman/journald-logger) - Dashboard support for Repository URLs + +### Changed + +- Switch CI from Travis to Github Actions + +### BREAKING CHANGE + +- Redmine 4.1+ is required - Dropped archived repository view -- switch CI from Travis to Github Actions -- add Basic Auth support for post_receive_urls -- add post_receive_url :post empty support -- add logging to journal, if configured for Redmine (see https://github.com/theforeman/journald-logger) -- drop redmine_bootstrap_kit required plugin -- requires additionals plugin for latest fontawesome, slim and deface support -> and better maintenance -- switch from haml to slim templates (because this is already used in additionals plugin) -- libraries high_charts and bootstrap are moved to this plugin (TODO: high_charts should be migrationed to charts.js, which comes with Redmine 4. Bootstrap should be drop to vanila redmine, to get better theme support) -## 4.0.0 +## 4.0.2 - 2020-06-29 + +- Support both python 2 and 3 +- Fix repository settings form template to work with redmine 4.x +- Fix #715 by correcting misuse of ActiveRecord API for GitCache objects + +## 4.0.1 - 2020-02-14 + +- Resolve Redmine 4.1 incompatiblity +- Fix unneccesary checking of duplicate repositories + +## 4.0.0 - 2019-12-03 * compatible with Redmine 4 (drop Redmine 3.x support) +* drop redmine_bootstrap_kit required plugin +* requires additionals plugin for latest fontawesome, slim and deface support -> and better maintenance +* switch from haml to slim templates (because this is already used in additionals plugin) +* libraries high_charts and bootstrap are moved to this plugin (TODO: high_charts should be migrationed to charts.js, which comes with Redmine 4. Bootstrap should be drop to vanila redmine, to get better theme support) ## 1.2.3 - 2017-07-17 diff --git a/lib/redmine_git_hosting/version.rb b/lib/redmine_git_hosting/version.rb index 701981a6275..980cd3e53cb 100644 --- a/lib/redmine_git_hosting/version.rb +++ b/lib/redmine_git_hosting/version.rb @@ -1,3 +1,3 @@ module RedmineGitHosting - VERSION = '4.0.3-master'.freeze + VERSION = '5.0.0'.freeze end