Merge branch 'release/10.3' into dev

pull/7948/head
ulferts 5 years ago
commit 193775bb1c
No known key found for this signature in database
GPG Key ID: A205708DE1284017
  1. 2
      Gemfile
  2. 6
      Gemfile.lock
  3. 41
      help/release-notes/10-3-0/README.md
  4. 7
      help/release-notes/README.md
  5. 2
      lib/open_project/version.rb

@ -163,7 +163,7 @@ gem 'sprockets', '~> 3.7.0'
# also, better than thin since we can control worker concurrency.
gem 'unicorn'
gem 'puma', '~> 4.2.0' # used for development and optionally for production
gem 'puma', '~> 4.3.1' # used for development and optionally for production
gem 'nokogiri', '~> 1.10.5'

@ -484,7 +484,7 @@ GEM
erubi (1.9.0)
escape_utils (1.2.1)
eventmachine (1.2.7)
excon (0.62.0)
excon (0.71.0)
execjs (2.7.0)
factory_bot (4.11.1)
activesupport (>= 3.0.0)
@ -694,7 +694,7 @@ GEM
binding_of_caller (>= 0.7)
pry (>= 0.9.11)
public_suffix (4.0.1)
puma (4.2.0)
puma (4.3.1)
nio4r (~> 2.0)
rack (2.0.7)
rack-accept (0.4.5)
@ -1051,7 +1051,7 @@ DEPENDENCIES
pry-rails (~> 0.3.6)
pry-rescue (~> 1.5.0)
pry-stack_explorer (~> 0.4.9.2)
puma (~> 4.2.0)
puma (~> 4.3.1)
rack-attack (~> 6.1.0)
rack-mini-profiler
rack-protection (~> 2.0.0)

@ -0,0 +1,41 @@
---
title: OpenProject 10.3.0
sidebar_navigation:
title: 10.3.0
release_version: 10.3.0
release_date: 2019-12-17
---
We released [OpenProject 10.3.0](https://community.openproject.com/versions/1401).
The release contains several bug fixes and we recommend updating to the newest version.
<!--more-->
#### Bug fixes and changes
- Changed: [Watchers] Removing watcher sends email to removed watcher \[[#21304](https://community.openproject.com/wp/21304)\]
- Changed: Work packages tiles view for small screens \[[#31631](https://community.openproject.com/wp/31631)\]
- Changed: Scroll header out of view on mobile \[[#31699](https://community.openproject.com/wp/31699)\]
- Changed: Limit width of sidebar on mobile \[[#31701](https://community.openproject.com/wp/31701)\]
- Changed: Remove borders of card view on mobile work package page \[[#31702](https://community.openproject.com/wp/31702)\]
- Changed: Merge toolbar title and buttons into one line on mobile \[[#31736](https://community.openproject.com/wp/31736)\]
- Fixed: Translation error \[[#29828](https://community.openproject.com/wp/29828)\]
- Fixed: Attachment API tries to call `to_json` on binary data if attachment file has mime-type `application/json` \[[#31661](https://community.openproject.com/wp/31661)\]
- Fixed: Using "Back" button on WP show page reloads wp table \[[#31698](https://community.openproject.com/wp/31698)\]
- Fixed: Project list input has a zoom effect on iOS \[[#31700](https://community.openproject.com/wp/31700)\]
- Fixed: Board list buttons overlap the sidebar on mobile \[[#31722](https://community.openproject.com/wp/31722)\]
- Fixed: Bottom bar overlaps content on mobile \[[#31723](https://community.openproject.com/wp/31723)\]
- Fixed: Lists are out of place in rtl-CF \[[#31731](https://community.openproject.com/wp/31731)\]
- Fixed: More than two tildes (~) in markdown break CKEditor \[[#31749](https://community.openproject.com/wp/31749)\]
- Fixed: Avatar for user option "none" shown \[[#31764](https://community.openproject.com/wp/31764)\]
- Fixed: Closing an error message during registration closes whole form \[[#31808](https://community.openproject.com/wp/31808)\]
- Fixed: Version wiki page setting allows input (URL) breaking the version view \[[#31845](https://community.openproject.com/wp/31845)\]
- Fixed: Derived Values for Estimated Cut off \[[#31852](https://community.openproject.com/wp/31852)\]
- Fixed: Column height for work packages changes based on content \[[#31874](https://community.openproject.com/wp/31874)\]
- Fixed: Error 500 when non-admin tries to sort by project "Status" column \[[#31889](https://community.openproject.com/wp/31889)\]
- Fixed: On mobile side menu is cut off when opening side menu \[[#31891](https://community.openproject.com/wp/31891)\]
#### Contributions
A big thanks to community members for reporting bugs and helping us identifying and providing fixes.
Special thanks for reporting and finding bugs go to
Marc Vollmer, Ivan Izotov, Naglis Jonaitis

@ -8,6 +8,13 @@ Stay up to date and get an overview of the new features included in the releases
<!--- New release notes are generated below. Do not remove comment. -->
<!--- RELEASE MARKER -->
## 10.3.0
Release date: 2019-12-17
[Release Notes](10-3-0/)
## 10.2.2
Release date: 2019-12-11

@ -33,7 +33,7 @@ require 'open3'
module OpenProject
module VERSION #:nodoc:
MAJOR = 10
MINOR = 3
MINOR = 4
PATCH = 0
TINY = PATCH # Redmine compat

Loading…
Cancel
Save