##// END OF EJS Templates
Fix for Rails vulnerabilities CVE-2012-2694 and CVE-2012-2695....
Jean-Philippe Lang -
r9666:933e96116e16
parent child
Show More
@@ -1,114 +1,154
1 1 # Patches active_support/core_ext/load_error.rb to support 1.9.3 LoadError message
2 2 if RUBY_VERSION >= '1.9.3'
3 3 MissingSourceFile::REGEXPS << [/^cannot load such file -- (.+)$/i, 1]
4 4 end
5 5
6 6 require 'active_record'
7 7
8 8 module ActiveRecord
9 9 class Base
10 10 include Redmine::I18n
11 11
12 12 # Translate attribute names for validation errors display
13 13 def self.human_attribute_name(attr, *args)
14 14 l("field_#{attr.to_s.gsub(/_id$/, '')}", :default => attr)
15 15 end
16 16 end
17 17 end
18 18
19 19 module ActionView
20 20 module Helpers
21 21 module DateHelper
22 22 # distance_of_time_in_words breaks when difference is greater than 30 years
23 23 def distance_of_date_in_words(from_date, to_date = 0, options = {})
24 24 from_date = from_date.to_date if from_date.respond_to?(:to_date)
25 25 to_date = to_date.to_date if to_date.respond_to?(:to_date)
26 26 distance_in_days = (to_date - from_date).abs
27 27
28 28 I18n.with_options :locale => options[:locale], :scope => :'datetime.distance_in_words' do |locale|
29 29 case distance_in_days
30 30 when 0..60 then locale.t :x_days, :count => distance_in_days.round
31 31 when 61..720 then locale.t :about_x_months, :count => (distance_in_days / 30).round
32 32 else locale.t :over_x_years, :count => (distance_in_days / 365).floor
33 33 end
34 34 end
35 35 end
36 36 end
37 37 end
38 38 end
39 39
40 40 ActionView::Base.field_error_proc = Proc.new{ |html_tag, instance| "#{html_tag}" }
41 41
42 42 module AsynchronousMailer
43 43 # Adds :async_smtp and :async_sendmail delivery methods
44 44 # to perform email deliveries asynchronously
45 45 %w(smtp sendmail).each do |type|
46 46 define_method("perform_delivery_async_#{type}") do |mail|
47 47 Thread.start do
48 48 send "perform_delivery_#{type}", mail
49 49 end
50 50 end
51 51 end
52 52
53 53 # Adds a delivery method that writes emails in tmp/emails for testing purpose
54 54 def perform_delivery_tmp_file(mail)
55 55 dest_dir = File.join(Rails.root, 'tmp', 'emails')
56 56 Dir.mkdir(dest_dir) unless File.directory?(dest_dir)
57 57 File.open(File.join(dest_dir, mail.message_id.gsub(/[<>]/, '') + '.eml'), 'wb') {|f| f.write(mail.encoded) }
58 58 end
59 59 end
60 60
61 61 ActionMailer::Base.send :include, AsynchronousMailer
62 62
63 63 module TMail
64 64 # TMail::Unquoter.convert_to_with_fallback_on_iso_8859_1 introduced in TMail 1.2.7
65 65 # triggers a test failure in test_add_issue_with_japanese_keywords(MailHandlerTest)
66 66 class Unquoter
67 67 class << self
68 68 alias_method :convert_to, :convert_to_without_fallback_on_iso_8859_1
69 69 end
70 70 end
71 71
72 72 # Patch for TMail 1.2.7. See http://www.redmine.org/issues/8751
73 73 class Encoder
74 74 def puts_meta(str)
75 75 add_text str
76 76 end
77 77 end
78 78 end
79 79
80 80 module ActionController
81 81 module MimeResponds
82 82 class Responder
83 83 def api(&block)
84 84 any(:xml, :json, &block)
85 85 end
86 86 end
87 87 end
88 88
89 89 # CVE-2012-2660
90 90 # https://groups.google.com/group/rubyonrails-security/browse_thread/thread/f1203e3376acec0f
91 # CVE-2012-2694
92 # https://groups.google.com/group/rubyonrails-security/browse_thread/thread/8c82d9df8b401c5e
91 93 class Request
92 94 protected
93 95
94 96 # Remove nils from the params hash
95 97 def deep_munge(hash)
98 keys = hash.keys.find_all { |k| hash[k] == [nil] }
99 keys.each { |k| hash[k] = nil }
100
96 101 hash.each_value do |v|
97 102 case v
98 103 when Array
99 104 v.grep(Hash) { |x| deep_munge(x) }
105 v.compact!
100 106 when Hash
101 107 deep_munge(v)
102 108 end
103 109 end
104
105 keys = hash.keys.find_all { |k| hash[k] == [nil] }
106 keys.each { |k| hash[k] = nil }
107 110 hash
108 111 end
109 112
110 113 def parse_query(qs)
111 114 deep_munge(super)
112 115 end
113 116 end
114 117 end
118
119 # CVE-2012-2695
120 # https://groups.google.com/group/rubyonrails-security/browse_thread/thread/9782f44c4540cf59
121 module ActiveRecord
122 class Base
123 class << self
124 def sanitize_sql_hash_for_conditions(attrs, default_table_name = quoted_table_name, top_level = true)
125 attrs = expand_hash_conditions_for_aggregates(attrs)
126
127 conditions = attrs.map do |attr, value|
128 table_name = default_table_name
129
130 if not value.is_a?(Hash)
131 attr = attr.to_s
132
133 # Extract table name from qualified attribute names.
134 if attr.include?('.') and top_level
135 attr_table_name, attr = attr.split('.', 2)
136 attr_table_name = connection.quote_table_name(attr_table_name)
137 else
138 attr_table_name = table_name
139 end
140
141 attribute_condition("#{attr_table_name}.#{connection.quote_column_name(attr)}", value)
142 elsif top_level
143 sanitize_sql_hash_for_conditions(value, connection.quote_table_name(attr.to_s), false)
144 else
145 raise ActiveRecord::StatementInvalid
146 end
147 end.join(' AND ')
148
149 replace_bind_variables(conditions, expand_range_bind_variables(attrs.values))
150 end
151 alias_method :sanitize_sql_hash, :sanitize_sql_hash_for_conditions
152 end
153 end
154 end
@@ -1,2016 +1,2017
1 1 == Redmine changelog
2 2
3 3 Redmine - project management software
4 4 Copyright (C) 2006-2012 Jean-Philippe Lang
5 5 http://www.redmine.org/
6 6
7 7 == TBD v1.4.4
8 8
9 9 * Defect #11160: SQL Error on time report if a custom field has multiple values for an entry
10 10 * Defect #11061: Cannot choose commit versions to view differences in Git/Mercurial repository view
11 11 * Defect #11112: REST API - custom fields in POST/PUT ignored for time_entries
12 12 * Defect #11133: Wiki-page section edit link can point to incorrect section
13 13 * Defect #11178: Spent time sorted by date-descending order lists same-date entries in physical order
14 14 * Feature #6597: Configurable session lifetime and timeout
15 15 * Patch #11113: Small glitch in German localization
16 * Fix for Rails vulnerabilities CVE-2012-2694 and CVE-2012-2695
16 17
17 18 == 2012-06-05 v1.4.3
18 19
19 20 * Defect #11038: "Create and continue" should preserve project, issue and activity when logging time
20 21 * Defect #11046: Redmine.pm does not support "bind as user" ldap authentication
21 22 * Defect #11051: reposman.rb fails in 1.4.2 because of missing require for rubygems
22 23 * Fix for Rails vulnerability CVE-2012-2660
23 24
24 25 == 2012-05-13 v1.4.2
25 26
26 27 * Defect #10744: rake task redmine:email:test broken
27 28 * Defect #10787: "Allow users to unsubscribe" option is confusing
28 29 * Defect #10827: Cannot access Repositories page and Settings in a Project - Error 500
29 30 * Defect #10829: db:migrate fails 0.8.2 -> 1.4.1
30 31 * Defect #10832: REST Uploads fail with fastcgi
31 32 * Defect #10837: reposman and rdm-mailhandler not working with ruby 1.9.x
32 33 * Defect #10856: can not load translations from hr.yml with ruby1.9.3-p194
33 34 * Defect #10865: Filter reset when deleting locked user
34 35 * Feature #9790: Allow filtering text custom fields on "is null" and "is not null"
35 36 * Feature #10778: svn:ignore for config/additional_environment.rb
36 37 * Feature #10875: Partial Albanian Translations
37 38 * Feature #10888: Bring back List-Id to help aid Gmail filtering
38 39 * Patch #10733: Traditional Chinese language file (to r9502)
39 40 * Patch #10745: Japanese translation update (r9519)
40 41 * Patch #10750: Swedish Translation for r9522
41 42 * Patch #10785: Bulgarian translation (jstoolbar)
42 43 * Patch #10800: Simplified Chinese translation
43 44
44 45 == 2012-04-20 v1.4.1
45 46
46 47 * Defect #8574: Time report: date range fields not enabled when using the calendar popup
47 48 * Defect #10642: Nested textile ol/ul lists generate invalid HTML
48 49 * Defect #10668: RSS key is generated twice when user is not reloaded
49 50 * Defect #10669: Token.destroy_expired should not delete API tokens
50 51 * Defect #10675: "Submit and continue" is broken
51 52 * Defect #10711: User cannot change account details with "Login has already been taken" error
52 53 * Feature #10664: Unsubscribe Own User Account
53 54 * Patch #10693: German Translation Update
54 55
55 56 == 2012-04-14 v1.4.0
56 57
57 58 * Defect #2719: Increase username length limit from 30 to 60
58 59 * Defect #3087: Revision referring to issues across all projects
59 60 * Defect #4824: Unable to connect (can't convert Net::LDAP::LdapError into String)
60 61 * Defect #5058: reminder mails are not sent when delivery_method is :async_smtp
61 62 * Defect #6859: Moving issues to a tracker with different custom fields should let fill these fields
62 63 * Defect #7398: Error when trying to quick create a version with required custom field
63 64 * Defect #7495: Python multiline comments highlighting problem in Repository browser
64 65 * Defect #7826: bigdecimal-segfault-fix.rb must be removed for Oracle
65 66 * Defect #7920: Attempted to update a stale object when copying a project
66 67 * Defect #8857: Git: Too long in fetching repositories after upgrade from 1.1 or new branch at first time
67 68 * Defect #9472: The git scm module causes an excess amount of DB traffic.
68 69 * Defect #9685: Adding multiple times the same related issue relation is possible
69 70 * Defect #9798: Release 1.3.0 does not detect rubytree under ruby 1.9.3p0 / rails 2.3.14
70 71 * Defect #9978: Japanese "permission_add_issue_watchers" is wrong
71 72 * Defect #10006: Email reminders are sent for closed issues
72 73 * Defect #10150: CSV export and spent time: rounding issue
73 74 * Defect #10168: CSV export breaks custom columns
74 75 * Defect #10181: Issue context menu and bulk edit form show irrelevant statuses
75 76 * Defect #10198: message_id regex in pop3.rb only recognizes Message-ID header (not Message-Id)
76 77 * Defect #10251: Description diff link in note details is relative when received by email
77 78 * Defect #10272: Ruby 1.9.3: "incompatible character encoding" with LDAP auth
78 79 * Defect #10275: Message object not passed to wiki macros for head topic and in preview edit mode
79 80 * Defect #10334: Full name is not unquoted when creating users from emails
80 81 * Defect #10410: [Localization] Grammar issue of Simplified Chinese in zh.yml
81 82 * Defect #10442: Ruby 1.9.3 Time Zone setting Internal error.
82 83 * Defect #10467: Confusing behavior while moving issue to a project with disabled Issues module
83 84 * Defect #10575: Uploading of attachments which filename contains non-ASCII chars fails with Ruby 1.9
84 85 * Defect #10590: WikiContent::Version#text return string with #<Encoding:ASCII-8BIT> when uncompressed
85 86 * Defect #10593: Error: 'incompatible character encodings: UTF-8 and ASCII-8BIT' (old annoing issue) on ruby-1.9.3
86 87 * Defect #10600: Watchers search generates an Internal error
87 88 * Defect #10605: Bulk edit selected issues does not allow selection of blank values for custom fields
88 89 * Defect #10619: When changing status before tracker, it shows improper status
89 90 * Feature #779: Multiple SCM per project
90 91 * Feature #971: Add "Spent time" column to query
91 92 * Feature #1060: Add a LDAP-filter using external auth sources
92 93 * Feature #1102: Shortcut for assigning an issue to me
93 94 * Feature #1189: Multiselect custom fields
94 95 * Feature #1363: Allow underscores in project identifiers
95 96 * Feature #1913: LDAP - authenticate as user
96 97 * Feature #1972: Attachments for News
97 98 * Feature #2009: Manually add related revisions
98 99 * Feature #2323: Workflow permissions for administrators
99 100 * Feature #2416: {background:color} doesn't work in text formatting
100 101 * Feature #2694: Notification on loosing assignment
101 102 * Feature #2715: "Magic links" to notes
102 103 * Feature #2850: Add next/previous navigation to issue
103 104 * Feature #3055: Option to copy attachments when copying an issue
104 105 * Feature #3108: set parent automatically for new pages
105 106 * Feature #3463: Export all wiki pages to PDF
106 107 * Feature #4050: Ruby 1.9 support
107 108 * Feature #4769: Ability to move an issue to a different project from the update form
108 109 * Feature #4774: Change the hyperlink for file attachment to view and download
109 110 * Feature #5159: Ability to add Non-Member watchers to the watch list
110 111 * Feature #5638: Use Bundler (Gemfile) for gem management
111 112 * Feature #5643: Add X-Redmine-Sender header to email notifications
112 113 * Feature #6296: Bulk-edit custom fields through context menu
113 114 * Feature #6386: Issue mail should render the HTML version of the issue details
114 115 * Feature #6449: Edit a wiki page's parent on the edit page
115 116 * Feature #6555: Double-click on "Submit" and "Save" buttons should not send two requests to server
116 117 * Feature #7361: Highlight active query in the side bar
117 118 * Feature #7420: Rest API for projects members
118 119 * Feature #7603: Please make editing issues more obvious than "Change properties (More)"
119 120 * Feature #8171: Adding attachments through the REST API
120 121 * Feature #8691: Better handling of issue update conflict
121 122 * Feature #9803: Change project through REST API issue update
122 123 * Feature #9923: User type custom fields should be filterable by "Me".
123 124 * Feature #9985: Group time report by the Status field
124 125 * Feature #9995: Time entries insertion, "Create and continue" button
125 126 * Feature #10020: Enable global time logging at /time_entries/new
126 127 * Feature #10042: Bulk change private flag
127 128 * Feature #10126: Add members of subprojects in the assignee and author filters
128 129 * Feature #10131: Include custom fiels in time entries API responses
129 130 * Feature #10207: Git: use default branch from HEAD
130 131 * Feature #10208: Estonian translation
131 132 * Feature #10253: Better handling of attachments when validation fails
132 133 * Feature #10350: Bulk copy should allow for changing the target version
133 134 * Feature #10607: Ignore out-of-office incoming emails
134 135 * Feature #10635: Adding time like "123 Min" is invalid
135 136 * Patch #9998: Make attachement "Optional Description" less wide
136 137 * Patch #10066: i18n not working with russian gem
137 138 * Patch #10128: Disable IE 8 compatibility mode to fix wrong div.autoscroll scroll bar behaviour
138 139 * Patch #10155: Russian translation changed
139 140 * Patch #10464: Enhanced PDF output for Issues list
140 141 * Patch #10470: Efficiently process new git revisions in a single batch
141 142 * Patch #10513: Dutch translation improvement
142 143
143 144 == 2012-04-14 v1.3.3
144 145
145 146 * Defect #10505: Error when exporting to PDF with NoMethodError (undefined method `downcase' for nil:NilClass)
146 147 * Defect #10554: Defect symbols when exporting tasks in pdf
147 148 * Defect #10564: Unable to change locked, sticky flags and board when editing a message
148 149 * Defect #10591: Dutch "label_file_added" translation is wrong
149 150 * Defect #10622: "Default administrator account changed" is always true
150 151 * Patch #10555: rake redmine:send_reminders aborted if issue assigned to group
151 152 * Patch #10611: Simplified Chinese translations for 1.3-stable
152 153
153 154 == 2012-03-11 v1.3.2
154 155
155 156 * Defect #8194: {{toc}} uses identical anchors for subsections with the same name
156 157 * Defect #9143: Partial diff comparison should be done on actual code, not on html
157 158 * Defect #9523: {{toc}} does not display headers with @ code markup
158 159 * Defect #9815: Release 1.3.0 does not detect rubytree with rubgems 1.8
159 160 * Defect #10053: undefined method `<=>' for nil:NilClass when accessing the settings of a project
160 161 * Defect #10135: ActionView::TemplateError (can't convert Fixnum into String)
161 162 * Defect #10193: Unappropriate icons in highlighted code block
162 163 * Defect #10199: No wiki section edit when title contains code
163 164 * Defect #10218: Error when creating a project with a version custom field
164 165 * Defect #10241: "get version by ID" fails with "401 not authorized" error when using API access key
165 166 * Defect #10284: Note added by commit from a subproject does not contain project identifier
166 167 * Defect #10374: User list is empty when adding users to project / group if remaining users are added late
167 168 * Defect #10390: Mass assignment security vulnerability
168 169 * Patch #8413: Confirmation message before deleting a relationship
169 170 * Patch #10160: Bulgarian translation (r8777)
170 171 * Patch #10242: Migrate Redmine.pm from Digest::Sha1 to Digest::Sha
171 172 * Patch #10258: Italian translation for 1.3-stable
172 173
173 174 == 2012-02-06 v1.3.1
174 175
175 176 * Defect #9775: app/views/repository/_revision_graph.html.erb sets window.onload directly..
176 177 * Defect #9792: Ruby 1.9: [v1.3.0] Error: incompatible character encodings for it translation on Calendar page
177 178 * Defect #9793: Bad spacing between numbered list and heading (recently broken).
178 179 * Defect #9795: Unrelated error message when creating a group with an invalid name
179 180 * Defect #9832: Revision graph height should depend on height of rows in revisions table
180 181 * Defect #9937: Repository settings are not saved when all SCM are disabled
181 182 * Defect #9961: Ukrainian "default_tracker_bug" is wrong
182 183 * Defect #10013: Rest API - Create Version -> Internal server error 500
183 184 * Defect #10115: Javascript error - Can't attach more than 1 file on IE 6 and 7
184 185 * Defect #10130: Broken italic text style in edited comment preview
185 186 * Defect #10152: Attachment diff type is not saved in user preference
186 187 * Feature #9943: Arabic translation
187 188 * Patch #9874: pt-BR translation updates
188 189 * Patch #9922: Spanish translation updated
189 190 * Patch #10137: Korean language file ko.yml updated to Redmine 1.3.0
190 191
191 192 == 2011-12-10 v1.3.0
192 193
193 194 * Defect #2109: Context menu is being submitted twice per right click
194 195 * Defect #7717: MailHandler user creation for unknown_user impossible due to diverging length-limits of login and email fields
195 196 * Defect #7917: Creating users via email fails if user real name containes special chars
196 197 * Defect #7966: MailHandler does not include JournalDetail for attached files
197 198 * Defect #8368: Bad decimal separator in time entry CSV
198 199 * Defect #8371: MySQL error when filtering a custom field using the REST api
199 200 * Defect #8549: Export CSV has character encoding error
200 201 * Defect #8573: Do not show inactive Enumerations where not needed
201 202 * Defect #8611: rake/rdoctask is deprecated
202 203 * Defect #8751: Email notification: bug, when number of recipients more then 8
203 204 * Defect #8894: Private issues - make it more obvious in the UI?
204 205 * Defect #8994: Hardcoded French string "anonyme"
205 206 * Defect #9043: Hardcoded string "diff" in Wiki#show and Repositories_Helper
206 207 * Defect #9051: wrong "text_issue_added" in russian translation.
207 208 * Defect #9108: Custom query not saving status filter
208 209 * Defect #9252: Regression: application title escaped 2 times
209 210 * Defect #9264: Bad Portuguese translation
210 211 * Defect #9470: News list is missing Avatars
211 212 * Defect #9471: Inline markup broken in Wiki link labels
212 213 * Defect #9489: Label all input field and control tags
213 214 * Defect #9534: Precedence: bulk email header is non standard and discouraged
214 215 * Defect #9540: Issue filter by assigned_to_role is not project specific
215 216 * Defect #9619: Time zone ignored when logging time while editing ticket
216 217 * Defect #9638: Inconsistent image filename extensions
217 218 * Defect #9669: Issue list doesn't sort assignees/authors regarding user display format
218 219 * Defect #9672: Message-quoting in forums module broken
219 220 * Defect #9719: Filtering by numeric custom field types broken after update to master
220 221 * Defect #9724: Can't remote add new categories
221 222 * Defect #9738: Setting of cross-project custom query is not remembered inside project
222 223 * Defect #9748: Error about configuration.yml validness should mention file path
223 224 * Feature #69: Textilized description in PDF
224 225 * Feature #401: Add pdf export for WIKI page
225 226 * Feature #1567: Make author column sortable and groupable
226 227 * Feature #2222: Single section edit.
227 228 * Feature #2269: Default issue start date should become configurable.
228 229 * Feature #2371: character encoding for attachment file
229 230 * Feature #2964: Ability to assign issues to groups
230 231 * Feature #3033: Bug Reporting: Using "Create and continue" should show bug id of saved bug
231 232 * Feature #3261: support attachment images in PDF export
232 233 * Feature #4264: Update CodeRay to 1.0 final
233 234 * Feature #4324: Redmine renames my files, it shouldn't.
234 235 * Feature #4729: Add Date-Based Filters for Issues List
235 236 * Feature #4742: CSV export: option to export selected or all columns
236 237 * Feature #4976: Allow rdm-mailhandler to read the API key from a file
237 238 * Feature #5501: Git: Mercurial: Adding visual merge/branch history to repository view
238 239 * Feature #5634: Export issue to PDF does not include Subtasks and Related Issues
239 240 * Feature #5670: Cancel option for file upload
240 241 * Feature #5737: Custom Queries available through the REST Api
241 242 * Feature #6180: Searchable custom fields do not provide adequate operators
242 243 * Feature #6954: Filter from date to date
243 244 * Feature #7180: List of statuses in REST API
244 245 * Feature #7181: List of trackers in REST API
245 246 * Feature #7366: REST API for Issue Relations
246 247 * Feature #7403: REST API for Versions
247 248 * Feature #7671: REST API for reading attachments
248 249 * Feature #7832: Ability to assign issue categories to groups
249 250 * Feature #8420: Consider removing #7013 workaround
250 251 * Feature #9196: Improve logging in MailHandler when user creation fails
251 252 * Feature #9496: Adds an option in mailhandler to disable server certificate verification
252 253 * Feature #9553: CRUD operations for "Issue categories" in REST API
253 254 * Feature #9593: HTML title should be reordered
254 255 * Feature #9600: Wiki links for news and forums
255 256 * Feature #9607: Filter for issues without start date (or any another field based on date type)
256 257 * Feature #9609: Upgrade to Rails 2.3.14
257 258 * Feature #9612: "side by side" and "inline" patch view for attachments
258 259 * Feature #9667: Check attachment size before upload
259 260 * Feature #9690: Link in notification pointing to the actual update
260 261 * Feature #9720: Add note number for single issue's PDF
261 262 * Patch #8617: Indent subject of subtask ticket in exported issues PDF
262 263 * Patch #8778: Traditional Chinese 'issue' translation change
263 264 * Patch #9053: Fix up Russian translation
264 265 * Patch #9129: Improve wording of Git repository note at project setting
265 266 * Patch #9148: Better handling of field_due_date italian translation
266 267 * Patch #9273: Fix typos in russian localization
267 268 * Patch #9484: Limit SCM annotate to text files under the maximum file size for viewing
268 269 * Patch #9659: Indexing rows in auth_sources/index view
269 270 * Patch #9692: Fix Textilized description in PDF for CodeRay
270 271
271 272 == 2011-12-10 v1.2.3
272 273
273 274 * Defect #8707: Reposman: wrong constant name
274 275 * Defect #8809: Table in timelog report overflows
275 276 * Defect #9055: Version files in Files module cannot be downloaded if issue tracking is disabled
276 277 * Defect #9137: db:encrypt fails to handle repositories with blank password
277 278 * Defect #9394: Custom date field only validating on regex and not a valid date
278 279 * Defect #9405: Any user with :log_time permission can edit time entries via context menu
279 280 * Defect #9448: The attached images are not shown in documents
280 281 * Defect #9520: Copied private query not visible after project copy
281 282 * Defect #9552: Error when reading ciphered text from the database without cipher key configured
282 283 * Defect #9566: Redmine.pm considers all projects private when login_required is enabled
283 284 * Defect #9567: Redmine.pm potential security issue with cache credential enabled and subversion
284 285 * Defect #9577: Deleting a subtasks doesn't update parent's rgt & lft values
285 286 * Defect #9597: Broken version links in wiki annotate history
286 287 * Defect #9682: Wiki HTML Export only useful when Access history is accessible
287 288 * Defect #9737: Custom values deleted before issue submit
288 289 * Defect #9741: calendar-hr.js (Croatian) is not UTF-8
289 290 * Patch #9558: Simplified Chinese translation for 1.2.2 updated
290 291 * Patch #9695: Bulgarian translation (r7942)
291 292
292 293 == 2011-11-11 v1.2.2
293 294
294 295 * Defect #3276: Incorrect handling of anchors in Wiki to HTML export
295 296 * Defect #7215: Wiki formatting mangles links to internal headers
296 297 * Defect #7613: Generated test instances may share the same attribute value object
297 298 * Defect #8411: Can't remove "Project" column on custom query
298 299 * Defect #8615: Custom 'version' fields don't show shared versions
299 300 * Defect #8633: Pagination counts non visible issues
300 301 * Defect #8651: Email attachments are not added to issues any more in v1.2
301 302 * Defect #8825: JRuby + Windows: SCMs do not work on Redmine 1.2
302 303 * Defect #8836: Additional workflow transitions not available when set to both author and assignee
303 304 * Defect #8865: Custom field regular expression is not validated
304 305 * Defect #8880: Error deleting issue with grandchild
305 306 * Defect #8884: Assignee is cleared when updating issue with locked assignee
306 307 * Defect #8892: Unused fonts in rfpdf plugin folder
307 308 * Defect #9161: pt-BR field_warn_on_leaving_unsaved has a small gramatical error
308 309 * Defect #9308: Search fails when a role haven't "view wiki" permission
309 310 * Defect #9465: Mercurial: can't browse named branch below Mercurial 1.5
310 311
311 312 == 2011-07-11 v1.2.1
312 313
313 314 * Defect #5089: i18N error on truncated revision diff view
314 315 * Defect #7501: Search options get lost after clicking on a specific result type
315 316 * Defect #8229: "project.xml" response does not include the parent ID
316 317 * Defect #8449: Wiki annotated page does not display author of version 1
317 318 * Defect #8467: Missing german translation - Warn me when leaving a page with unsaved text
318 319 * Defect #8468: No warning when leaving page with unsaved text that has not lost focus
319 320 * Defect #8472: Private checkbox ignored on issue creation with "Set own issues public or private" permission
320 321 * Defect #8510: JRuby: Can't open administrator panel if scm command is not available
321 322 * Defect #8512: Syntax highlighter on Welcome page
322 323 * Defect #8554: Translation missing error on custom field validation
323 324 * Defect #8565: JRuby: Japanese PDF export error
324 325 * Defect #8566: Exported PDF UTF-8 Vietnamese not correct
325 326 * Defect #8569: JRuby: PDF export error with TypeError
326 327 * Defect #8576: Missing german translation - different things
327 328 * Defect #8616: Circular relations
328 329 * Defect #8646: Russian translation "label_follows" and "label_follows" are wrong
329 330 * Defect #8712: False 'Description updated' journal details messages
330 331 * Defect #8729: Not-public queries are not private
331 332 * Defect #8737: Broken line of long issue description on issue PDF.
332 333 * Defect #8738: Missing revision number/id of associated revisions on issue PDF
333 334 * Defect #8739: Workflow copy does not copy advanced workflow settings
334 335 * Defect #8759: Setting issue attributes from mail should be case-insensitive
335 336 * Defect #8777: Mercurial: Not able to Resetting Redmine project respository
336 337
337 338 == 2011-05-30 v1.2.0
338 339
339 340 * Defect #61: Broken character encoding in pdf export
340 341 * Defect #1965: Redmine is not Tab Safe
341 342 * Defect #2274: Filesystem Repository path encoding of non UTF-8 characters
342 343 * Defect #2664: Mercurial: Repository path encoding of non UTF-8 characters
343 344 * Defect #3421: Mercurial reads files from working dir instead of changesets
344 345 * Defect #3462: CVS: Repository path encoding of non UTF-8 characters
345 346 * Defect #3715: Login page should not show projects link and search box if authentication is required
346 347 * Defect #3724: Mercurial repositories display revision ID instead of changeset ID
347 348 * Defect #3761: Most recent CVS revisions are missing in "revisions" view
348 349 * Defect #4270: CVS Repository view in Project doesn't show Author, Revision, Comment
349 350 * Defect #5138: Don't use Ajax for pagination
350 351 * Defect #5152: Cannot use certain characters for user and role names.
351 352 * Defect #5251: Git: Repository path encoding of non UTF-8 characters
352 353 * Defect #5373: Translation missing when adding invalid watchers
353 354 * Defect #5817: Shared versions not shown in subproject's gantt chart
354 355 * Defect #6013: git tab,browsing, very slow -- even after first time
355 356 * Defect #6148: Quoting, newlines, and nightmares...
356 357 * Defect #6256: Redmine considers non ASCII and UTF-16 text files as binary in SCM
357 358 * Defect #6476: Subproject's issues are not shown in the subproject's gantt
358 359 * Defect #6496: Remove i18n 0.3.x/0.4.x hack for Rails 2.3.5
359 360 * Defect #6562: Context-menu deletion of issues deletes all subtasks too without explicit prompt
360 361 * Defect #6604: Issues targeted at parent project versions' are not shown on gantt chart
361 362 * Defect #6706: Resolving issues with the commit message produces the wrong comment with CVS
362 363 * Defect #6901: Copy/Move an issue does not give any history of who actually did the action.
363 364 * Defect #6905: Specific heading-content breaks CSS
364 365 * Defect #7000: Project filter not applied on versions in Gantt chart
365 366 * Defect #7097: Starting day of week cannot be set to Saturday
366 367 * Defect #7114: New gantt doesn't display some projects
367 368 * Defect #7146: Git adapter lost commits before 7 days from database latest changeset
368 369 * Defect #7218: Date range error on issue query
369 370 * Defect #7257: "Issues by" version links bad criterias
370 371 * Defect #7279: CSS class ".icon-home" is not used.
371 372 * Defect #7320: circular dependency >2 issues
372 373 * Defect #7352: Filters not working in Gantt charts
373 374 * Defect #7367: Receiving pop3 email should not output debug messages
374 375 * Defect #7373: Error with PDF output and ruby 1.9.2
375 376 * Defect #7379: Remove extraneous hidden_field on wiki history
376 377 * Defect #7516: Redmine does not work with RubyGems 1.5.0
377 378 * Defect #7518: Mercurial diff can be wrong if the previous changeset isn't the parent
378 379 * Defect #7581: Not including a spent time value on the main issue update screen causes silent data loss
379 380 * Defect #7582: hiding form pages from search engines
380 381 * Defect #7597: Subversion and Mercurial log have the possibility to miss encoding
381 382 * Defect #7604: ActionView::TemplateError (undefined method `name' for nil:NilClass)
382 383 * Defect #7605: Using custom queries always redirects to "Issues" tab
383 384 * Defect #7615: CVS diffs do not handle new files properly
384 385 * Defect #7618: SCM diffs do not handle one line new files properly
385 386 * Defect #7639: Some date fields do not have requested format.
386 387 * Defect #7657: Wrong commit range in git log command on Windows
387 388 * Defect #7818: Wiki pages don't use the local timezone to display the "Updated ? hours ago" mouseover
388 389 * Defect #7821: Git "previous" and "next" revisions are incorrect
389 390 * Defect #7827: CVS: Age column on repository view is off by timezone delta
390 391 * Defect #7843: Add a relation between issues = explicit login window ! (basic authentication popup is prompted on AJAX request)
391 392 * Defect #8011: {{toc}} does not display headlines with inline code markup
392 393 * Defect #8029: List of users for adding to a group may be empty if 100 first users have been added
393 394 * Defect #8064: Text custom fields do not wrap on the issue list
394 395 * Defect #8071: Watching a subtask from the context menu updates main issue watch link
395 396 * Defect #8072: Two untranslatable default role names
396 397 * Defect #8075: Some "notifiable" names are not i18n-enabled
397 398 * Defect #8081: GIT: Commits missing when user has the "decorate" git option enabled
398 399 * Defect #8088: Colorful indentation of subprojects must be on right in RTL locales
399 400 * Defect #8239: notes field is not propagated during issue copy
400 401 * Defect #8356: GET /time_entries.xml ignores limit/offset parameters
401 402 * Defect #8432: Private issues information shows up on Activity page for unauthorized users
402 403 * Feature #746: Versioned issue descriptions
403 404 * Feature #1067: Differentiate public/private saved queries in the sidebar
404 405 * Feature #1236: Make destination folder for attachment uploads configurable
405 406 * Feature #1735: Per project repository log encoding setting
406 407 * Feature #1763: Autologin-cookie should be configurable
407 408 * Feature #1981: display mercurial tags
408 409 * Feature #2074: Sending email notifications when comments are added in the news section
409 410 * Feature #2096: Custom fields referencing system tables (users and versions)
410 411 * Feature #2732: Allow additional workflow transitions for author and assignee
411 412 * Feature #2910: Warning on leaving edited issue/wiki page without saving
412 413 * Feature #3396: Git: use --encoding=UTF-8 in "git log"
413 414 * Feature #4273: SCM command availability automatic check in administration panel
414 415 * Feature #4477: Use mime types in downloading from repository
415 416 * Feature #5518: Graceful fallback for "missing translation" needed
416 417 * Feature #5520: Text format buttons and preview link missing when editing comment
417 418 * Feature #5831: Parent Task to Issue Bulk Edit
418 419 * Feature #6887: Upgrade to Rails 2.3.11
419 420 * Feature #7139: Highlight changes inside diff lines
420 421 * Feature #7236: Collapse All for Groups
421 422 * Feature #7246: Handle "named branch" for mercurial
422 423 * Feature #7296: Ability for admin to delete users
423 424 * Feature #7318: Add user agent to Redmine Mailhandler
424 425 * Feature #7408: Add an application configuration file
425 426 * Feature #7409: Cross project Redmine links
426 427 * Feature #7410: Add salt to user passwords
427 428 * Feature #7411: Option to cipher LDAP ans SCM passwords stored in the database
428 429 * Feature #7412: Add an issue visibility level to each role
429 430 * Feature #7414: Private issues
430 431 * Feature #7517: Configurable path of executable for scm adapters
431 432 * Feature #7640: Add "mystery man" gravatar to options
432 433 * Feature #7858: RubyGems 1.6 support
433 434 * Feature #7893: Group filter on the users list
434 435 * Feature #7899: Box for editing comments should open with the formatting toolbar
435 436 * Feature #7921: issues by pulldown should have 'status' option
436 437 * Feature #7996: Bulk edit and context menu for time entries
437 438 * Feature #8006: Right click context menu for Related Issues
438 439 * Feature #8209: I18n YAML files not parsable with psych yaml library
439 440 * Feature #8345: Link to user profile from account page
440 441 * Feature #8365: Git: per project setting to report last commit or not in repository tree
441 442 * Patch #5148: metaKey not handled in issues selection
442 443 * Patch #5629: Wrap text fields properly in PDF
443 444 * Patch #7418: Redmine Persian Translation
444 445 * Patch #8295: Wrap title fields properly in PDF
445 446 * Patch #8310: fixes automatic line break problem with TCPDF
446 447 * Patch #8312: Switch to TCPDF from FPDF for PDF export
447 448
448 449 == 2011-04-29 v1.1.3
449 450
450 451 * Defect #5773: Email reminders are sent to locked users
451 452 * Defect #6590: Wrong file list link in email notification on new file upload
452 453 * Defect #7589: Wiki page with backslash in title can not be found
453 454 * Defect #7785: Mailhandler keywords are not removed when updating issues
454 455 * Defect #7794: Internal server error on formatting an issue as a PDF in Japanese
455 456 * Defect #7838: Gantt- Issues does not show up in green when start and end date are the same
456 457 * Defect #7846: Headers (h1, etc.) containing backslash followed by a digit are not displayed correctly
457 458 * Defect #7875: CSV export separators in polish locale (pl.yml)
458 459 * Defect #7890: Internal server error when referencing an issue without project in commit message
459 460 * Defect #7904: Subprojects not properly deleted when deleting a parent project
460 461 * Defect #7939: Simultaneous Wiki Updates Cause Internal Error
461 462 * Defect #7951: Atom links broken on wiki index
462 463 * Defect #7954: IE 9 can not select issues, does not display context menu
463 464 * Defect #7985: Trying to do a bulk edit results in "Internal Error"
464 465 * Defect #8003: Error raised by reposman.rb under Windows server 2003
465 466 * Defect #8012: Wrong selection of modules when adding new project after validation error
466 467 * Defect #8038: Associated Revisions OL/LI items are not styled properly in issue view
467 468 * Defect #8067: CSV exporting in Italian locale
468 469 * Defect #8235: bulk edit issues and copy issues error in es, gl and ca locales
469 470 * Defect #8244: selected modules are not activated when copying a project
470 471 * Patch #7278: Update Simplified Chinese translation to 1.1
471 472 * Patch #7390: Fixes in Czech localization
472 473 * Patch #7963: Reminder email: Link for show all issues does not sort
473 474
474 475 == 2011-03-07 v1.1.2
475 476
476 477 * Defect #3132: Bulk editing menu non-functional in Opera browser
477 478 * Defect #6090: Most binary files become corrupted when downloading from CVS repository browser when Redmine is running on a Windows server
478 479 * Defect #7280: Issues subjects wrap in Gantt
479 480 * Defect #7288: Non ASCII filename downloaded from repo is broken on Internet Explorer.
480 481 * Defect #7317: Gantt tab gives internal error due to nil avatar icon
481 482 * Defect #7497: Aptana Studio .project file added to version 1.1.1-stable
482 483 * Defect #7611: Workflow summary shows X icon for workflow with exactly 1 status transition
483 484 * Defect #7625: Syntax highlighting unavailable from board new topic or topic edit preview
484 485 * Defect #7630: Spent time in commits not recognized
485 486 * Defect #7656: MySQL SQL Syntax Error when filtering issues by Assignee's Group
486 487 * Defect #7718: Minutes logged in commit message are converted to hours
487 488 * Defect #7763: Email notification are sent to watchers even if 'No events' setting is chosen
488 489 * Feature #7608: Add "retro" gravatars
489 490 * Patch #7598: Extensible MailHandler
490 491 * Patch #7795: Internal server error at journals#index with custom fields
491 492
492 493 == 2011-01-30 v1.1.1
493 494
494 495 * Defect #4899: Redmine fails to list files for darcs repository
495 496 * Defect #7245: Wiki fails to find pages with cyrillic characters using postgresql
496 497 * Defect #7256: redmine/public/.htaccess must be moved for non-fastcgi installs/upgrades
497 498 * Defect #7258: Automatic spent time logging does not work properly with SQLite3
498 499 * Defect #7259: Released 1.1.0 uses "devel" label inside admin information
499 500 * Defect #7265: "Loading..." icon does not disappear after add project member
500 501 * Defect #7266: Test test_due_date_distance_in_words fail due to undefined locale
501 502 * Defect #7274: CSV value separator in dutch locale
502 503 * Defect #7277: Enabling gravatas causes usernames to overlap first name field in user list
503 504 * Defect #7294: "Notifiy for only project I select" is not available anymore in 1.1.0
504 505 * Defect #7307: HTTP 500 error on query for empty revision
505 506 * Defect #7313: Label not translated in french in Settings/Email Notification tab
506 507 * Defect #7329: <code class="javascript"> with long strings may hang server
507 508 * Defect #7337: My page french translation
508 509 * Defect #7348: French Translation of "Connection"
509 510 * Defect #7385: Error when viewing an issue which was related to a deleted subtask
510 511 * Defect #7386: NoMethodError on pdf export
511 512 * Defect #7415: Darcs adapter recognizes new files as modified files above Darcs 2.4
512 513 * Defect #7421: no email sent with 'Notifiy for any event on the selected projects only'
513 514 * Feature #5344: Update to latest CodeRay 0.9.x
514 515
515 516 == 2011-01-09 v1.1.0
516 517
517 518 * Defect #2038: Italics in wiki headers show-up wrong in the toc
518 519 * Defect #3449: Redmine Takes Too Long On Large Mercurial Repository
519 520 * Defect #3567: Sorting for changesets might go wrong on Mercurial repos
520 521 * Defect #3707: {{toc}} doesn't work with {{include}}
521 522 * Defect #5096: Redmine hangs up while browsing Git repository
522 523 * Defect #6000: Safe Attributes prevents plugin extension of Issue model...
523 524 * Defect #6064: Modules not assigned to projects created via API
524 525 * Defect #6110: MailHandler should allow updating Issue Priority and Custom fields
525 526 * Defect #6136: JSON API holds less information than XML API
526 527 * Defect #6345: xml used by rest API is invalid
527 528 * Defect #6348: Gantt chart PDF rendering errors
528 529 * Defect #6403: Updating an issue with custom fields fails
529 530 * Defect #6467: "Member of role", "Member of group" filter not work correctly
530 531 * Defect #6473: New gantt broken after clearing issue filters
531 532 * Defect #6541: Email notifications send to everybody
532 533 * Defect #6549: Notification settings not migrated properly
533 534 * Defect #6591: Acronyms must have a minimum of three characters
534 535 * Defect #6674: Delete time log broken after changes to REST
535 536 * Defect #6681: Mercurial, Bazaar and Darcs auto close issue text should be commit id instead of revision number
536 537 * Defect #6724: Wiki uploads does not work anymore (SVN 4266)
537 538 * Defect #6746: Wiki links are broken on Activity page
538 539 * Defect #6747: Wiki diff does not work since r4265
539 540 * Defect #6763: New gantt charts: subject displayed twice on issues
540 541 * Defect #6826: Clicking "Add" twice creates duplicate member record
541 542 * Defect #6844: Unchecking status filter on the issue list has no effect
542 543 * Defect #6895: Wrong Polish translation of "blocks"
543 544 * Defect #6943: Migration from boolean to varchar fails on PostgreSQL 8.1
544 545 * Defect #7064: Mercurial adapter does not recognize non alphabetic nor numeric in UTF-8 copied files
545 546 * Defect #7128: New gantt chart does not render subtasks under parent task
546 547 * Defect #7135: paging mechanism returns the same last page forever
547 548 * Defect #7188: Activity page not refreshed when changing language
548 549 * Defect #7195: Apply CLI-supplied defaults for incoming mail only to new issues not replies
549 550 * Defect #7197: Tracker reset to default when replying to an issue email
550 551 * Defect #7213: Copy project does not copy all roles and permissions
551 552 * Defect #7225: Project settings: Trackers & Custom fields only relevant if module Issue tracking is active
552 553 * Feature #630: Allow non-unique names for projects
553 554 * Feature #1738: Add a "Visible" flag to project/user custom fields
554 555 * Feature #2803: Support for Javascript in Themes
555 556 * Feature #2852: Clean Incoming Email of quoted text "----- Reply above this line ------"
556 557 * Feature #2995: Improve error message when trying to access an archived project
557 558 * Feature #3170: Autocomplete issue relations on subject
558 559 * Feature #3503: Administrator Be Able To Modify Email settings Of Users
559 560 * Feature #4155: Automatic spent time logging from commit messages
560 561 * Feature #5136: Parent select on Wiki rename page
561 562 * Feature #5338: Descendants (subtasks) should be available via REST API
562 563 * Feature #5494: Wiki TOC should display heading from level 4
563 564 * Feature #5594: Improve MailHandler's keyword handling
564 565 * Feature #5622: Allow version to be set via incoming email
565 566 * Feature #5712: Reload themes
566 567 * Feature #5869: Issue filters by Group and Role
567 568 * Feature #6092: Truncate Git revision labels in Activity page/feed and allow configurable length
568 569 * Feature #6112: Accept localized keywords when receiving emails
569 570 * Feature #6140: REST issues response with issue count limit and offset
570 571 * Feature #6260: REST API for Users
571 572 * Feature #6276: Gantt Chart rewrite
572 573 * Feature #6446: Remove length limits on project identifier and name
573 574 * Feature #6628: Improvements in truncate email
574 575 * Feature #6779: Project JSON API
575 576 * Feature #6823: REST API for time tracker.
576 577 * Feature #7072: REST API for news
577 578 * Feature #7111: Expose more detail on journal entries
578 579 * Feature #7141: REST API: get information about current user
579 580 * Patch #4807: Allow to set the done_ratio field with the incoming mail system
580 581 * Patch #5441: Initialize TimeEntry attributes with params[:time_entry]
581 582 * Patch #6762: Use GET instead of POST to retrieve context_menu
582 583 * Patch #7160: French translation ofr "not_a_date" is missing
583 584 * Patch #7212: Missing remove_index in AddUniqueIndexOnMembers down migration
584 585
585 586
586 587 == 2010-12-23 v1.0.5
587 588
588 589 * #6656: Mercurial adapter loses seconds of commit times
589 590 * #6996: Migration trac(sqlite3) -> redmine(postgresql) doesnt escape ' char
590 591 * #7013: v-1.0.4 trunk - see {{count}} in page display rather than value
591 592 * #7016: redundant 'field_start_date' in ja.yml
592 593 * #7018: 'undefined method `reschedule_after' for nil:NilClass' on new issues
593 594 * #7024: E-mail notifications about Wiki changes.
594 595 * #7033: 'class' attribute of <pre> tag shouldn't be truncate
595 596 * #7035: CSV value separator in russian
596 597 * #7122: Issue-description Quote-button missing
597 598 * #7144: custom queries making use of deleted custom fields cause a 500 error
598 599 * #7162: Multiply defined label in french translation
599 600
600 601 == 2010-11-28 v1.0.4
601 602
602 603 * #5324: Git not working if color.ui is enabled
603 604 * #6447: Issues API doesn't allow full key auth for all actions
604 605 * #6457: Edit User group problem
605 606 * #6575: start date being filled with current date even when blank value is submitted
606 607 * #6740: Max attachment size, incorrect usage of 'KB'
607 608 * #6760: Select box sorted by ID instead of name in Issue Category
608 609 * #6766: Changing target version name can cause an internal error
609 610 * #6784: Redmine not working with i18n gem 0.4.2
610 611 * #6839: Hardcoded absolute links in my/page_layout
611 612 * #6841: Projects API doesn't allow full key auth for all actions
612 613 * #6860: svn: Write error: Broken pipe when browsing repository
613 614 * #6874: API should return XML description when creating a project
614 615 * #6932: submitting wrong parent task input creates a 500 error
615 616 * #6966: Records of Forums are remained, deleting project
616 617 * #6990: Layout problem in workflow overview
617 618 * #5117: mercurial_adapter should ensure the right LANG environment variable
618 619 * #6782: Traditional Chinese language file (to r4352)
619 620 * #6783: Swedish Translation for r4352
620 621 * #6804: Bugfix: spelling fixes
621 622 * #6814: Japanese Translation for r4362
622 623 * #6948: Bulgarian translation
623 624 * #6973: Update es.yml
624 625
625 626 == 2010-10-31 v1.0.3
626 627
627 628 * #4065: Redmine.pm doesn't work with LDAPS and a non-standard port
628 629 * #4416: Link from version details page to edit the wiki.
629 630 * #5484: Add new issue as subtask to an existing ticket
630 631 * #5948: Update help/wiki_syntax_detailed.html with more link options
631 632 * #6494: Typo in pt_BR translation for 1.0.2
632 633 * #6508: Japanese translation update
633 634 * #6509: Localization pt-PT (new strings)
634 635 * #6511: Rake task to test email
635 636 * #6525: Traditional Chinese language file (to r4225)
636 637 * #6536: Patch for swedish translation
637 638 * #6548: Rake tasks to add/remove i18n strings
638 639 * #6569: Updated Hebrew translation
639 640 * #6570: Japanese Translation for r4231
640 641 * #6596: pt-BR translation updates
641 642 * #6629: Change field-name of issues start date
642 643 * #6669: Bulgarian translation
643 644 * #6731: Macedonian translation fix
644 645 * #6732: Japanese Translation for r4287
645 646 * #6735: Add user-agent to reposman
646 647 * #6736: Traditional Chinese language file (to r4288)
647 648 * #6739: Swedish Translation for r4288
648 649 * #6765: Traditional Chinese language file (to r4302)
649 650 * Fixed #5324: Git not working if color.ui is enabled
650 651 * Fixed #5652: Bad URL parsing in the wiki when it ends with right-angle-bracket(greater-than mark).
651 652 * Fixed #5803: Precedes/Follows Relationships Broke
652 653 * Fixed #6435: Links to wikipages bound to versions do not respect version-sharing in Settings -> Versions
653 654 * Fixed #6438: Autologin cannot be disabled again once it's enabled
654 655 * Fixed #6513: "Move" and "Copy" are not displayed when deployed in subdirectory
655 656 * Fixed #6521: Tooltip/label for user "search-refinment" field on group/project member list
656 657 * Fixed #6563: i18n-issues on calendar view
657 658 * Fixed #6598: Wrong caption for button_create_and_continue in German language file
658 659 * Fixed #6607: Unclear caption for german button_update
659 660 * Fixed #6612: SortHelper missing from CalendarsController
660 661 * Fixed #6740: Max attachment size, incorrect usage of 'KB'
661 662 * Fixed #6750: ActionView::TemplateError (undefined method `empty?' for nil:NilClass) on line #12 of app/views/context_menus/issues.html.erb:
662 663
663 664 == 2010-09-26 v1.0.2
664 665
665 666 * #2285: issue-refinement: pressing enter should result to an "apply"
666 667 * #3411: Allow mass status update trough context menu
667 668 * #5929: https-enabled gravatars when called over https
668 669 * #6189: Japanese Translation for r4011
669 670 * #6197: Traditional Chinese language file (to r4036)
670 671 * #6198: Updated german translation
671 672 * #6208: Macedonian translation
672 673 * #6210: Swedish Translation for r4039
673 674 * #6248: nl translation update for r4050
674 675 * #6263: Catalan translation update
675 676 * #6275: After submitting a related issue, the Issue field should be re-focused
676 677 * #6289: Checkboxes in issues list shouldn't be displayed when printing
677 678 * #6290: Make journals theming easier
678 679 * #6291: User#allowed_to? is not tested
679 680 * #6306: Traditional Chinese language file (to r4061)
680 681 * #6307: Korean translation update for 4066(4061)
681 682 * #6316: pt_BR update
682 683 * #6339: SERBIAN Updated
683 684 * #6358: Updated Polish translation
684 685 * #6363: Japanese Translation for r4080
685 686 * #6365: Traditional Chinese language file (to r4081)
686 687 * #6382: Issue PDF export variable usage
687 688 * #6428: Interim solution for i18n >= 0.4
688 689 * #6441: Japanese Translation for r4162
689 690 * #6451: Traditional Chinese language file (to r4167)
690 691 * #6465: Japanese Translation for r4171
691 692 * #6466: Traditional Chinese language file (to r4171)
692 693 * #6490: pt-BR translation for 1.0.2
693 694 * Fixed #3935: stylesheet_link_tag with plugin doesn't take into account relative_url_root
694 695 * Fixed #4998: Global issue list's context menu has enabled options for parent menus but there are no valid selections
695 696 * Fixed #5170: Done ratio can not revert to 0% if status is used for done ratio
696 697 * Fixed #5608: broken with i18n 0.4.0
697 698 * Fixed #6054: Error 500 on filenames with whitespace in git reposities
698 699 * Fixed #6135: Default logger configuration grows without bound.
699 700 * Fixed #6191: Deletion of a main task deletes all subtasks
700 701 * Fixed #6195: Missing move issues between projects
701 702 * Fixed #6242: can't switch between inline and side-by-side diff
702 703 * Fixed #6249: Create and continue returns 404
703 704 * Fixed #6267: changing the authentication mode from ldap to internal with setting the password
704 705 * Fixed #6270: diff coderay malformed in the "news" page
705 706 * Fixed #6278: missing "cant_link_an_issue_with_a_descendant"from locale files
706 707 * Fixed #6333: Create and continue results in a 404 Error
707 708 * Fixed #6346: Age column on repository view is skewed for git, probably CVS too
708 709 * Fixed #6351: Context menu on roadmap broken
709 710 * Fixed #6388: New Subproject leads to a 404
710 711 * Fixed #6392: Updated/Created links to activity broken
711 712 * Fixed #6413: Error in SQL
712 713 * Fixed #6443: Redirect to project settings after Copying a Project
713 714 * Fixed #6448: Saving a wiki page with no content has a translation missing
714 715 * Fixed #6452: Unhandled exception on creating File
715 716 * Fixed #6471: Typo in label_report in Czech translation
716 717 * Fixed #6479: Changing tracker type will lose watchers
717 718 * Fixed #6499: Files with leading or trailing whitespace are not shown in git.
718 719
719 720 == 2010-08-22 v1.0.1
720 721
721 722 * #819: Add a body ID and class to all pages
722 723 * #871: Commit new CSS styles!
723 724 * #3301: Add favicon to base layout
724 725 * #4656: On Issue#show page, clicking on Ò€œAdd related issueҀ� should focus on the input
725 726 * #4896: Project identifier should be a limited field
726 727 * #5084: Filter all isssues by projects
727 728 * #5477: Replace Test::Unit::TestCase with ActiveSupport::TestCase
728 729 * #5591: 'calendar' action is used with 'issue' controller in issue/sidebar
729 730 * #5735: Traditional Chinese language file (to r3810)
730 731 * #5740: Swedish Translation for r3810
731 732 * #5785: pt-BR translation update
732 733 * #5898: Projects should be displayed as links in users/memberships
733 734 * #5910: Chinese translation to redmine-1.0.0
734 735 * #5912: Translation update for french locale
735 736 * #5962: Hungarian translation update to r3892
736 737 * #5971: Remove falsly applied chrome on revision links
737 738 * #5972: Updated Hebrew translation for 1.0.0
738 739 * #5982: Updated german translation
739 740 * #6008: Move admin_menu to Redmine::MenuManager
740 741 * #6012: RTL layout
741 742 * #6021: Spanish translation 1.0.0-RC
742 743 * #6025: nl translation updated for r3905
743 744 * #6030: Japanese Translation for r3907
744 745 * #6074: sr-CY.yml contains DOS-type newlines (\r\n)
745 746 * #6087: SERBIAN translation updated
746 747 * #6093: Updated italian translation
747 748 * #6142: Swedish Translation for r3940
748 749 * #6153: Move view_calendar and view_gantt to own modules
749 750 * #6169: Add issue status to issue tooltip
750 751 * Fixed #3834: Add a warning when not choosing a member role
751 752 * Fixed #3922: Bad english arround "Assigned to" text in journal entries
752 753 * Fixed #5158: Simplified Chinese language file zh.yml updated to r3608
753 754 * Fixed #5162: translation missing: zh-TW, field_time_entrie
754 755 * Fixed #5297: openid not validated correctly
755 756 * Fixed #5628: Wrong commit range in git log command
756 757 * Fixed #5760: Assigned_to and author filters in "Projects>View all issues" should be based on user's project visibility
757 758 * Fixed #5771: Problem when importing git repository
758 759 * Fixed #5775: ldap authentication in admin menu should have an icon
759 760 * Fixed #5811: deleting statuses doesnt delete workflow entries
760 761 * Fixed #5834: Emails with trailing spaces incorrectly detected as invalid
761 762 * Fixed #5846: ChangeChangesPathLengthLimit does not remove default for MySQL
762 763 * Fixed #5861: Vertical scrollbar always visible in Wiki "code" blocks in Chrome.
763 764 * Fixed #5883: correct label_project_latest Chinese translation
764 765 * Fixed #5892: Changing status from contextual menu opens the ticket instead
765 766 * Fixed #5904: Global gantt PDF and PNG should display project names
766 767 * Fixed #5925: parent task's priority edit should be disabled through shortcut menu in issues list page
767 768 * Fixed #5935: Add Another file to ticket doesn't work in IE Internet Explorer
768 769 * Fixed #5937: Harmonize french locale "zero" translation with other locales
769 770 * Fixed #5945: Forum message permalinks don't take pagination into account
770 771 * Fixed #5978: Debug code still remains
771 772 * Fixed #6009: When using "English (British)", the repository browser (svn) shows files over 1000 bytes as floating point (2.334355)
772 773 * Fixed #6045: Repository file Diff view sometimes shows more than selected file
773 774 * Fixed #6079: German Translation error in TimeEntryActivity
774 775 * Fixed #6100: User's profile should display all visible projects
775 776 * Fixed #6132: Allow Key based authentication in the Boards atom feed
776 777 * Fixed #6163: Bad CSS class for calendar project menu_item
777 778 * Fixed #6172: Browsing to a missing user's page shows the admin sidebar
778 779
779 780 == 2010-07-18 v1.0.0 (Release candidate)
780 781
781 782 * #443: Adds context menu to the roadmap issue lists
782 783 * #443: Subtasking
783 784 * #741: Description preview while editing an issue
784 785 * #1131: Add support for alternate (non-LDAP) authentication
785 786 * #1214: REST API for Issues
786 787 * #1223: File upload on wiki edit form
787 788 * #1755: add "blocked by" as a related issues option
788 789 * #2420: Fetching emails from an POP server
789 790 * #2482: Named scopes in Issue and ActsAsWatchable plus some view refactoring (logic extraction).
790 791 * #2924: Make the right click menu more discoverable using a cursor property
791 792 * #2985: Make syntax highlighting pluggable
792 793 * #3201: Workflow Check/Uncheck All Rows/Columns
793 794 * #3359: Update CodeRay 0.9
794 795 * #3706: Allow assigned_to field configuration on Issue creation by email
795 796 * #3936: configurable list of models to include in search
796 797 * #4480: Create a link to the user profile from the administration interface
797 798 * #4482: Cache textile rendering
798 799 * #4572: Make it harder to ruin your database
799 800 * #4573: Move github gems to Gemcutter
800 801 * #4664: Add pagination to forum threads
801 802 * #4732: Make login case-insensitive also for PostgreSQL
802 803 * #4812: Create links to other projects
803 804 * #4819: Replace images with smushed ones for speed
804 805 * #4945: Allow custom fields attached to project to be searchable
805 806 * #5121: Fix issues list layout overflow
806 807 * #5169: Issue list view hook request
807 808 * #5208: Aibility to edit wiki sidebar
808 809 * #5281: Remove empty ul tags in the issue history
809 810 * #5291: Updated basque translations
810 811 * #5328: Automatically add "Repository" menu_item after repository creation
811 812 * #5415: Fewer SQL statements generated for watcher_recipients
812 813 * #5416: Exclude "fields_for" from overridden methods in TabularFormBuilder
813 814 * #5573: Allow issue assignment in email
814 815 * #5595: Allow start date and due dates to be set via incoming email
815 816 * #5752: The projects view (/projects) renders ul's wrong
816 817 * #5781: Allow to use more macros on the welcome page and project list
817 818 * Fixed #1288: Unable to past escaped wiki syntax in an issue description
818 819 * Fixed #1334: Wiki formatting character *_ and _*
819 820 * Fixed #1416: Inline code with less-then/greater-than produces @lt; and @gt; respectively
820 821 * Fixed #2473: Login and mail should not be case sensitive
821 822 * Fixed #2990: Ruby 1.9 - wrong number of arguments (1 for 0) on rake db:migrate
822 823 * Fixed #3089: Text formatting sometimes breaks when combined
823 824 * Fixed #3690: Status change info duplicates on the issue screen
824 825 * Fixed #3691: Redmine allows two files with the same file name to be uploaded to the same issue
825 826 * Fixed #3764: ApplicationHelperTest fails with JRuby
826 827 * Fixed #4265: Unclosed code tags in issue descriptions affects main UI
827 828 * Fixed #4745: Bug in index.xml.builder (issues)
828 829 * Fixed #4852: changing user/roles of project member not possible without javascript
829 830 * Fixed #4857: Week number calculation in date picker is wrong if a week starts with Sunday
830 831 * Fixed #4883: Bottom "contextual" placement in issue with associated changeset
831 832 * Fixed #4918: Revisions r3453 and r3454 broke On-the-fly user creation with LDAP
832 833 * Fixed #4935: Navigation to the Master Timesheet page (time_entries)
833 834 * Fixed #5043: Flash messages are not displayed after the project settings[module/activity] saved
834 835 * Fixed #5081: Broken links on public/help/wiki_syntax_detailed.html
835 836 * Fixed #5104: Description of document not wikified on documents index
836 837 * Fixed #5108: Issue linking fails inside of []s
837 838 * Fixed #5199: diff code coloring using coderay
838 839 * Fixed #5233: Add a hook to the issue report (Summary) view
839 840 * Fixed #5265: timetracking: subtasks time is added to the main task
840 841 * Fixed #5343: acts_as_event Doesn't Accept Outside URLs
841 842 * Fixed #5440: UI Inconsistency : Administration > Enumerations table row headers should be enclosed in <thead>
842 843 * Fixed #5463: 0.9.4 INSTALL and/or UPGRADE, missing session_store.rb
843 844 * Fixed #5524: Update_parent_attributes doesn't work for the old parent issue when reparenting
844 845 * Fixed #5548: SVN Repository: Can not list content of a folder which includes square brackets.
845 846 * Fixed #5589: "with subproject" malfunction
846 847 * Fixed #5676: Search for Numeric Value
847 848 * Fixed #5696: Redmine + PostgreSQL 8.4.4 fails on _dir_list_content.rhtml
848 849 * Fixed #5698: redmine:email:receive_imap fails silently for mails with subject longer than 255 characters
849 850 * Fixed #5700: TimelogController#destroy assumes success
850 851 * Fixed #5751: developer role is mispelled
851 852 * Fixed #5769: Popup Calendar doesn't Advance in Chrome
852 853 * Fixed #5771: Problem when importing git repository
853 854 * Fixed #5823: Error in comments in plugin.rb
854 855
855 856
856 857 == 2010-07-07 v0.9.6
857 858
858 859 * Fixed: Redmine.pm access by unauthorized users
859 860
860 861 == 2010-06-24 v0.9.5
861 862
862 863 * Linkify folder names on revision view
863 864 * "fiters" and "options" should be hidden in print view via css
864 865 * Fixed: NoMethodError when no issue params are submitted
865 866 * Fixed: projects.atom with required authentication
866 867 * Fixed: External links not correctly displayed in Wiki TOC
867 868 * Fixed: Member role forms in project settings are not hidden after member added
868 869 * Fixed: pre can't be inside p
869 870 * Fixed: session cookie path does not respect RAILS_RELATIVE_URL_ROOT
870 871 * Fixed: mail handler fails when the from address is empty
871 872
872 873
873 874 == 2010-05-01 v0.9.4
874 875
875 876 * Filters collapsed by default on issues index page for a saved query
876 877 * Fixed: When categories list is too big the popup menu doesn't adjust (ex. in the issue list)
877 878 * Fixed: remove "main-menu" div when the menu is empty
878 879 * Fixed: Code syntax highlighting not working in Document page
879 880 * Fixed: Git blame/annotate fails on moved files
880 881 * Fixed: Failing test in test_show_atom
881 882 * Fixed: Migrate from trac - not displayed Wikis
882 883 * Fixed: Email notifications on file upload sent to empty recipient list
883 884 * Fixed: Migrating from trac is not possible, fails to allocate memory
884 885 * Fixed: Lost password no longer flashes a confirmation message
885 886 * Fixed: Crash while deleting in-use enumeration
886 887 * Fixed: Hard coded English string at the selection of issue watchers
887 888 * Fixed: Bazaar v2.1.0 changed behaviour
888 889 * Fixed: Roadmap display can raise an exception if no trackers are selected
889 890 * Fixed: Gravatar breaks layout of "logged in" page
890 891 * Fixed: Reposman.rb on Windows
891 892 * Fixed: Possible error 500 while moving an issue to another project with SQLite
892 893 * Fixed: backslashes in issue description/note should be escaped when quoted
893 894 * Fixed: Long text in <pre> disrupts Associated revisions
894 895 * Fixed: Links to missing wiki pages not red on project overview page
895 896 * Fixed: Cannot delete a project with subprojects that shares versions
896 897 * Fixed: Update of Subversion changesets broken under Solaris
897 898 * Fixed: "Move issues" permission not working for Non member
898 899 * Fixed: Sidebar overlap on Users tab of Group editor
899 900 * Fixed: Error on db:migrate with table prefix set (hardcoded name in principal.rb)
900 901 * Fixed: Report shows sub-projects for non-members
901 902 * Fixed: 500 internal error when browsing any Redmine page in epiphany
902 903 * Fixed: Watchers selection lost when issue creation fails
903 904 * Fixed: When copying projects, redmine should not generate an email to people who created issues
904 905 * Fixed: Issue "#" table cells should have a class attribute to enable fine-grained CSS theme
905 906 * Fixed: Plugin generators should display help if no parameter is given
906 907
907 908
908 909 == 2010-02-28 v0.9.3
909 910
910 911 * Adds filter for system shared versions on the cross project issue list
911 912 * Makes project identifiers searchable
912 913 * Remove invalid utf8 sequences from commit comments and author name
913 914 * Fixed: Wrong link when "http" not included in project "Homepage" link
914 915 * Fixed: Escaping in html email templates
915 916 * Fixed: Pound (#) followed by number with leading zero (0) removes leading zero when rendered in wiki
916 917 * Fixed: Deselecting textile text formatting causes interning empty string errors
917 918 * Fixed: error with postgres when entering a non-numeric id for an issue relation
918 919 * Fixed: div.task incorrectly wrapping on Gantt Chart
919 920 * Fixed: Project copy loses wiki pages hierarchy
920 921 * Fixed: parent project field doesn't include blank value when a member with 'add subproject' permission edits a child project
921 922 * Fixed: Repository.fetch_changesets tries to fetch changesets for archived projects
922 923 * Fixed: Duplicated project name for subproject version on gantt chart
923 924 * Fixed: roadmap shows subprojects issues even if subprojects is unchecked
924 925 * Fixed: IndexError if all the :last menu items are deleted from a menu
925 926 * Fixed: Very high CPU usage for a long time when fetching commits from a large Git repository
926 927
927 928
928 929 == 2010-02-07 v0.9.2
929 930
930 931 * Fixed: Sub-project repository commits not displayed on parent project issues
931 932 * Fixed: Potential security leak on my page calendar
932 933 * Fixed: Project tree structure is broken by deleting the project with the subproject
933 934 * Fixed: Error message shown duplicated when creating a new group
934 935 * Fixed: Firefox cuts off large pages
935 936 * Fixed: Invalid format parameter returns a DoubleRenderError on issues index
936 937 * Fixed: Unnecessary Quote button on locked forum message
937 938 * Fixed: Error raised when trying to view the gantt or calendar with a grouped query
938 939 * Fixed: PDF support for Korean locale
939 940 * Fixed: Deprecation warning in extra/svn/reposman.rb
940 941
941 942
942 943 == 2010-01-30 v0.9.1
943 944
944 945 * Vertical alignment for inline images in formatted text set to 'middle'
945 946 * Fixed: Redmine.pm error "closing dbh with active statement handles at /usr/lib/perl5/Apache/Redmine.pm"
946 947 * Fixed: copyright year in footer set to 2010
947 948 * Fixed: Trac migration script may not output query lines
948 949 * Fixed: Email notifications may affect language of notice messages on the UI
949 950 * Fixed: Can not search for 2 letters word
950 951 * Fixed: Attachments get saved on issue update even if validation fails
951 952 * Fixed: Tab's 'border-bottom' not absent when selected
952 953 * Fixed: Issue summary tables that list by user are not sorted
953 954 * Fixed: Issue pdf export fails if target version is set
954 955 * Fixed: Issue list export to PDF breaks when issues are sorted by a custom field
955 956 * Fixed: SQL error when adding a group
956 957 * Fixes: Min password length during password reset always displays as 4 chars
957 958
958 959
959 960 == 2010-01-09 v0.9.0 (Release candidate)
960 961
961 962 * Unlimited subproject nesting
962 963 * Multiple roles per user per project
963 964 * User groups
964 965 * Inheritence of versions
965 966 * OpenID login
966 967 * "Watched by me" issue filter
967 968 * Project copy
968 969 * Project creation by non admin users
969 970 * Accept emails from anyone on a private project
970 971 * Add email notification on Wiki changes
971 972 * Make issue description non-required field
972 973 * Custom fields for Versions
973 974 * Being able to sort the issue list by custom fields
974 975 * Ability to close versions
975 976 * User display/editing of custom fields attached to their user profile
976 977 * Add "follows" issue relation
977 978 * Copy workflows between trackers and roles
978 979 * Defaults enabled modules list for project creation
979 980 * Weighted version completion percentage on the roadmap
980 981 * Autocreate user account when user submits email that creates new issue
981 982 * CSS class on overdue issues on the issue list
982 983 * Enable tracker update on issue edit form
983 984 * Remove issue watchers
984 985 * Ability to move threads between project forums
985 986 * Changed custom field "Possible values" to a textarea
986 987 * Adds projects association on tracker form
987 988 * Set session store to cookie store by default
988 989 * Set a default wiki page on project creation
989 990 * Roadmap for main project should see Roadmaps for sub projects
990 991 * Ticket grouping on the issue list
991 992 * Hierarchical Project links in the page header
992 993 * Allow My Page blocks to be added to from a plugin
993 994 * Sort issues by multiple columns
994 995 * Filters of saved query are now visible and be adjusted without editing the query
995 996 * Saving "sort order" in custom queries
996 997 * Url to fetch changesets for a repository
997 998 * Managers able to create subprojects
998 999 * Issue Totals on My Page Modules
999 1000 * Convert Enumerations to single table inheritance (STI)
1000 1001 * Allow custom my_page blocks to define drop-down names
1001 1002 * "View Issues" user permission added
1002 1003 * Ask user what to do with child pages when deleting a parent wiki page
1003 1004 * Contextual quick search
1004 1005 * Allow resending of password by email
1005 1006 * Change reply subject to be a link to the reply itself
1006 1007 * Include Logged Time as part of the project's Activity history
1007 1008 * REST API for authentication
1008 1009 * Browse through Git branches
1009 1010 * Setup Object Daddy to replace test fixtures
1010 1011 * Setup shoulda to make it easier to test
1011 1012 * Custom fields and overrides on Enumerations
1012 1013 * Add or remove columns from the issue list
1013 1014 * Ability to add new version from issues screen
1014 1015 * Setting to choose which day calendars start
1015 1016 * Asynchronous email delivery method
1016 1017 * RESTful URLs for (almost) everything
1017 1018 * Include issue status in search results and activity pages
1018 1019 * Add email to admin user search filter
1019 1020 * Proper content type for plain text mails
1020 1021 * Default value of project jump box
1021 1022 * Tree based menus
1022 1023 * Ability to use issue status to update percent done
1023 1024 * Second set of issue "Action Links" at the bottom of an issue page
1024 1025 * Proper exist status code for rdm-mailhandler.rb
1025 1026 * Remove incoming email body via a delimiter
1026 1027 * Fixed: Custom querry 'Export to PDF' ignores field selection
1027 1028 * Fixed: Related e-mail notifications aren't threaded
1028 1029 * Fixed: No warning when the creation of a categories from the issue form fails
1029 1030 * Fixed: Actually block issues from closing when relation 'blocked by' isn't closed
1030 1031 * Fixed: Include both first and last name when sorting by users
1031 1032 * Fixed: Table cell with multiple line text
1032 1033 * Fixed: Project overview page shows disabled trackers
1033 1034 * Fixed: Cross project issue relations and user permissions
1034 1035 * Fixed: My page shows tickets the user doesn't have access to
1035 1036 * Fixed: TOC does not parse wiki page reference links with description
1036 1037 * Fixed: Target version-list on bulk edit form is incorrectly sorted
1037 1038 * Fixed: Cannot modify/delete project named "Documents"
1038 1039 * Fixed: Email address in brackets breaks html
1039 1040 * Fixed: Timelog detail loose issue filter passing to report tab
1040 1041 * Fixed: Inform about custom field's name maximum length
1041 1042 * Fixed: Activity page and Atom feed links contain project id instead of identifier
1042 1043 * Fixed: no Atom key for forums with only 1 forum
1043 1044 * Fixed: When reading RSS feed in MS Outlook, the inline links are broken.
1044 1045 * Fixed: Sometimes new posts don't show up in the topic list of a forum.
1045 1046 * Fixed: The all/active filter selection in the project view does not stick.
1046 1047 * Fixed: Login box has Different width
1047 1048 * Fixed: User removed from project - still getting project update emails
1048 1049 * Fixed: Project with the identifier of 'new' cannot be viewed
1049 1050 * Fixed: Artefacts in search view (Cyrillic)
1050 1051 * Fixed: Allow [#id] as subject to reply by email
1051 1052 * Fixed: Wrong language used when closing an issue via a commit message
1052 1053 * Fixed: email handler drops emails for new issues with no subject
1053 1054 * Fixed: Calendar misspelled under Roles/Permissions
1054 1055 * Fixed: Emails from no-reply redmine's address hell cycle
1055 1056 * Fixed: child_pages macro fails on wiki page history
1056 1057 * Fixed: Pre-filled time tracking date ignores timezone
1057 1058 * Fixed: Links on locked users lead to 404 page
1058 1059 * Fixed: Page changes in issue-list when using context menu
1059 1060 * Fixed: diff parser removes lines starting with multiple dashes
1060 1061 * Fixed: Quoting in forums resets message subject
1061 1062 * Fixed: Editing issue comment removes quote link
1062 1063 * Fixed: Redmine.pm ignore browse_repository permission
1063 1064 * Fixed: text formatting breaks on [msg1][msg2]
1064 1065 * Fixed: Spent Time Default Value of 0.0
1065 1066 * Fixed: Wiki pages in search results are referenced by project number, not by project identifier.
1066 1067 * Fixed: When logging in via an autologin cookie the user's last_login_on should be updated
1067 1068 * Fixed: 50k users cause problems in project->settings->members screen
1068 1069 * Fixed: Document timestamp needs to show updated timestamps
1069 1070 * Fixed: Users getting notifications for issues they are no longer allowed to view
1070 1071 * Fixed: issue summary counts should link to the issue list without subprojects
1071 1072 * Fixed: 'Delete' link on LDAP list has no effect
1072 1073
1073 1074
1074 1075 == 2009-11-15 v0.8.7
1075 1076
1076 1077 * Fixed: Hide paragraph terminator at the end of headings on html export
1077 1078 * Fixed: pre tags containing "<pre*"
1078 1079 * Fixed: First date of the date range not included in the time report with SQLite
1079 1080 * Fixed: Password field not styled correctly on alternative stylesheet
1080 1081 * Fixed: Error when sumbitting a POST request that requires a login
1081 1082 * Fixed: CSRF vulnerabilities
1082 1083
1083 1084
1084 1085 == 2009-11-04 v0.8.6
1085 1086
1086 1087 * Change links to closed issues to be a grey color
1087 1088 * Change subversion adapter to not cache authentication and run non interactively
1088 1089 * Fixed: Custom Values with a nil value cause HTTP error 500
1089 1090 * Fixed: Failure to convert HTML entities when editing an Issue reply
1090 1091 * Fixed: Error trying to show repository when there are no comments in a changeset
1091 1092 * Fixed: account/show/:user_id should not be accessible for other users not in your projects
1092 1093 * Fixed: XSS vulnerabilities
1093 1094 * Fixed: IssuesController#destroy should accept POST only
1094 1095 * Fixed: Inline images in wiki headings
1095 1096
1096 1097
1097 1098 == 2009-09-13 v0.8.5
1098 1099
1099 1100 * Incoming mail handler : Allow spaces between keywords and colon
1100 1101 * Do not require a non-word character after a comma in Redmine links
1101 1102 * Include issue hyperlinks in reminder emails
1102 1103 * Prevent nil error when retrieving svn version
1103 1104 * Various plugin hooks added
1104 1105 * Add plugins information to script/about
1105 1106 * Fixed: 500 Internal Server Error is raised if add an empty comment to the news
1106 1107 * Fixed: Atom links for wiki pages are not correct
1107 1108 * Fixed: Atom feeds leak email address
1108 1109 * Fixed: Case sensitivity in Issue filtering
1109 1110 * Fixed: When reading RSS feed, the inline-embedded images are not properly shown
1110 1111
1111 1112
1112 1113 == 2009-05-17 v0.8.4
1113 1114
1114 1115 * Allow textile mailto links
1115 1116 * Fixed: memory consumption when uploading file
1116 1117 * Fixed: Mercurial integration doesn't work if Redmine is installed in folder path containing space
1117 1118 * Fixed: an error is raised when no tab is available on project settings
1118 1119 * Fixed: insert image macro corrupts urls with excalamation marks
1119 1120 * Fixed: error on cross-project gantt PNG export
1120 1121 * Fixed: self and alternate links in atom feeds do not respect Atom specs
1121 1122 * Fixed: accept any svn tunnel scheme in repository URL
1122 1123 * Fixed: issues/show should accept user's rss key
1123 1124 * Fixed: consistency of custom fields display on the issue detail view
1124 1125 * Fixed: wiki comments length validation is missing
1125 1126 * Fixed: weak autologin token generation algorithm causes duplicate tokens
1126 1127
1127 1128
1128 1129 == 2009-04-05 v0.8.3
1129 1130
1130 1131 * Separate project field and subject in cross-project issue view
1131 1132 * Ability to set language for redmine:load_default_data task using REDMINE_LANG environment variable
1132 1133 * Rescue Redmine::DefaultData::DataAlreadyLoaded in redmine:load_default_data task
1133 1134 * CSS classes to highlight own and assigned issues
1134 1135 * Hide "New file" link on wiki pages from printing
1135 1136 * Flush buffer when asking for language in redmine:load_default_data task
1136 1137 * Minimum project identifier length set to 1
1137 1138 * Include headers so that emails don't trigger vacation auto-responders
1138 1139 * Fixed: Time entries csv export links for all projects are malformed
1139 1140 * Fixed: Files without Version aren't visible in the Activity page
1140 1141 * Fixed: Commit logs are centered in the repo browser
1141 1142 * Fixed: News summary field content is not searchable
1142 1143 * Fixed: Journal#save has a wrong signature
1143 1144 * Fixed: Email footer signature convention
1144 1145 * Fixed: Timelog report do not show time for non-versioned issues
1145 1146
1146 1147
1147 1148 == 2009-03-07 v0.8.2
1148 1149
1149 1150 * Send an email to the user when an administrator activates a registered user
1150 1151 * Strip keywords from received email body
1151 1152 * Footer updated to 2009
1152 1153 * Show RSS-link even when no issues is found
1153 1154 * One click filter action in activity view
1154 1155 * Clickable/linkable line #'s while browsing the repo or viewing a file
1155 1156 * Links to versions on files list
1156 1157 * Added request and controller objects to the hooks by default
1157 1158 * Fixed: exporting an issue with attachments to PDF raises an error
1158 1159 * Fixed: "too few arguments" error may occur on activerecord error translation
1159 1160 * Fixed: "Default columns Displayed on the Issues list" setting is not easy to read
1160 1161 * Fixed: visited links to closed tickets are not striked through with IE6
1161 1162 * Fixed: MailHandler#plain_text_body returns nil if there was nothing to strip
1162 1163 * Fixed: MailHandler raises an error when processing an email without From header
1163 1164
1164 1165
1165 1166 == 2009-02-15 v0.8.1
1166 1167
1167 1168 * Select watchers on new issue form
1168 1169 * Issue description is no longer a required field
1169 1170 * Files module: ability to add files without version
1170 1171 * Jump to the current tab when using the project quick-jump combo
1171 1172 * Display a warning if some attachments were not saved
1172 1173 * Import custom fields values from emails on issue creation
1173 1174 * Show view/annotate/download links on entry and annotate views
1174 1175 * Admin Info Screen: Display if plugin assets directory is writable
1175 1176 * Adds a 'Create and continue' button on the new issue form
1176 1177 * IMAP: add options to move received emails
1177 1178 * Do not show Category field when categories are not defined
1178 1179 * Lower the project identifier limit to a minimum of two characters
1179 1180 * Add "closed" html class to closed entries in issue list
1180 1181 * Fixed: broken redirect URL on login failure
1181 1182 * Fixed: Deleted files are shown when using Darcs
1182 1183 * Fixed: Darcs adapter works on Win32 only
1183 1184 * Fixed: syntax highlight doesn't appear in new ticket preview
1184 1185 * Fixed: email notification for changes I make still occurs when running Repository.fetch_changesets
1185 1186 * Fixed: no error is raised when entering invalid hours on the issue update form
1186 1187 * Fixed: Details time log report CSV export doesn't honour date format from settings
1187 1188 * Fixed: invalid css classes on issue details
1188 1189 * Fixed: Trac importer creates duplicate custom values
1189 1190 * Fixed: inline attached image should not match partial filename
1190 1191
1191 1192
1192 1193 == 2008-12-30 v0.8.0
1193 1194
1194 1195 * Setting added in order to limit the number of diff lines that should be displayed
1195 1196 * Makes logged-in username in topbar linking to
1196 1197 * Mail handler: strip tags when receiving a html-only email
1197 1198 * Mail handler: add watchers before sending notification
1198 1199 * Adds a css class (overdue) to overdue issues on issue lists and detail views
1199 1200 * Fixed: project activity truncated after viewing user's activity
1200 1201 * Fixed: email address entered for password recovery shouldn't be case-sensitive
1201 1202 * Fixed: default flag removed when editing a default enumeration
1202 1203 * Fixed: default category ignored when adding a document
1203 1204 * Fixed: error on repository user mapping when a repository username is blank
1204 1205 * Fixed: Firefox cuts off large diffs
1205 1206 * Fixed: CVS browser should not show dead revisions (deleted files)
1206 1207 * Fixed: escape double-quotes in image titles
1207 1208 * Fixed: escape textarea content when editing a issue note
1208 1209 * Fixed: JS error on context menu with IE
1209 1210 * Fixed: bold syntax around single character in series doesn't work
1210 1211 * Fixed several XSS vulnerabilities
1211 1212 * Fixed a SQL injection vulnerability
1212 1213
1213 1214
1214 1215 == 2008-12-07 v0.8.0-rc1
1215 1216
1216 1217 * Wiki page protection
1217 1218 * Wiki page hierarchy. Parent page can be assigned on the Rename screen
1218 1219 * Adds support for issue creation via email
1219 1220 * Adds support for free ticket filtering and custom queries on Gantt chart and calendar
1220 1221 * Cross-project search
1221 1222 * Ability to search a project and its subprojects
1222 1223 * Ability to search the projects the user belongs to
1223 1224 * Adds custom fields on time entries
1224 1225 * Adds boolean and list custom fields for time entries as criteria on time report
1225 1226 * Cross-project time reports
1226 1227 * Display latest user's activity on account/show view
1227 1228 * Show last connexion time on user's page
1228 1229 * Obfuscates email address on user's account page using javascript
1229 1230 * wiki TOC rendered as an unordered list
1230 1231 * Adds the ability to search for a user on the administration users list
1231 1232 * Adds the ability to search for a project name or identifier on the administration projects list
1232 1233 * Redirect user to the previous page after logging in
1233 1234 * Adds a permission 'view wiki edits' so that wiki history can be hidden to certain users
1234 1235 * Adds permissions for viewing the watcher list and adding new watchers on the issue detail view
1235 1236 * Adds permissions to let users edit and/or delete their messages
1236 1237 * Link to activity view when displaying dates
1237 1238 * Hide Redmine version in atom feeds and pdf properties
1238 1239 * Maps repository users to Redmine users. Users with same username or email are automatically mapped. Mapping can be manually adjusted in repository settings. Multiple usernames can be mapped to the same Redmine user.
1239 1240 * Sort users by their display names so that user dropdown lists are sorted alphabetically
1240 1241 * Adds estimated hours to issue filters
1241 1242 * Switch order of current and previous revisions in side-by-side diff
1242 1243 * Render the commit changes list as a tree
1243 1244 * Adds watch/unwatch functionality at forum topic level
1244 1245 * When moving an issue to another project, reassign it to the category with same name if any
1245 1246 * Adds child_pages macro for wiki pages
1246 1247 * Use GET instead of POST on roadmap (#718), gantt and calendar forms
1247 1248 * Search engine: display total results count and count by result type
1248 1249 * Email delivery configuration moved to an unversioned YAML file (config/email.yml, see the sample file)
1249 1250 * Adds icons on search results
1250 1251 * Adds 'Edit' link on account/show for admin users
1251 1252 * Adds Lock/Unlock/Activate link on user edit screen
1252 1253 * Adds user count in status drop down on admin user list
1253 1254 * Adds multi-levels blockquotes support by using > at the beginning of lines
1254 1255 * Adds a Reply link to each issue note
1255 1256 * Adds plain text only option for mail notifications
1256 1257 * Gravatar support for issue detail, user grid, and activity stream (disabled by default)
1257 1258 * Adds 'Delete wiki pages attachments' permission
1258 1259 * Show the most recent file when displaying an inline image
1259 1260 * Makes permission screens localized
1260 1261 * AuthSource list: display associated users count and disable 'Delete' buton if any
1261 1262 * Make the 'duplicates of' relation asymmetric
1262 1263 * Adds username to the password reminder email
1263 1264 * Adds links to forum messages using message#id syntax
1264 1265 * Allow same name for custom fields on different object types
1265 1266 * One-click bulk edition using the issue list context menu within the same project
1266 1267 * Adds support for commit logs reencoding to UTF-8 before insertion in the database. Source encoding of commit logs can be selected in Application settings -> Repositories.
1267 1268 * Adds checkboxes toggle links on permissions report
1268 1269 * Adds Trac-Like anchors on wiki headings
1269 1270 * Adds support for wiki links with anchor
1270 1271 * Adds category to the issue context menu
1271 1272 * Adds a workflow overview screen
1272 1273 * Appends the filename to the attachment url so that clients that ignore content-disposition http header get the real filename
1273 1274 * Dots allowed in custom field name
1274 1275 * Adds posts quoting functionality
1275 1276 * Adds an option to generate sequential project identifiers
1276 1277 * Adds mailto link on the user administration list
1277 1278 * Ability to remove enumerations (activities, priorities, document categories) that are in use. Associated objects can be reassigned to another value
1278 1279 * Gantt chart: display issues that don't have a due date if they are assigned to a version with a date
1279 1280 * Change projects homepage limit to 255 chars
1280 1281 * Improved on-the-fly account creation. If some attributes are missing (eg. not present in the LDAP) or are invalid, the registration form is displayed so that the user is able to fill or fix these attributes
1281 1282 * Adds "please select" to activity select box if no activity is set as default
1282 1283 * Do not silently ignore timelog validation failure on issue edit
1283 1284 * Adds a rake task to send reminder emails
1284 1285 * Allow empty cells in wiki tables
1285 1286 * Makes wiki text formatter pluggable
1286 1287 * Adds back textile acronyms support
1287 1288 * Remove pre tag attributes
1288 1289 * Plugin hooks
1289 1290 * Pluggable admin menu
1290 1291 * Plugins can provide activity content
1291 1292 * Moves plugin list to its own administration menu item
1292 1293 * Adds url and author_url plugin attributes
1293 1294 * Adds Plugin#requires_redmine method so that plugin compatibility can be checked against current Redmine version
1294 1295 * Adds atom feed on time entries details
1295 1296 * Adds project name to issues feed title
1296 1297 * Adds a css class on menu items in order to apply item specific styles (eg. icons)
1297 1298 * Adds a Redmine plugin generators
1298 1299 * Adds timelog link to the issue context menu
1299 1300 * Adds links to the user page on various views
1300 1301 * Turkish translation by Ismail Sezen
1301 1302 * Catalan translation
1302 1303 * Vietnamese translation
1303 1304 * Slovak translation
1304 1305 * Better naming of activity feed if only one kind of event is displayed
1305 1306 * Enable syntax highlight on issues, messages and news
1306 1307 * Add target version to the issue list context menu
1307 1308 * Hide 'Target version' filter if no version is defined
1308 1309 * Add filters on cross-project issue list for custom fields marked as 'For all projects'
1309 1310 * Turn ftp urls into links
1310 1311 * Hiding the View Differences button when a wiki page's history only has one version
1311 1312 * Messages on a Board can now be sorted by the number of replies
1312 1313 * Adds a class ('me') to events of the activity view created by current user
1313 1314 * Strip pre/code tags content from activity view events
1314 1315 * Display issue notes in the activity view
1315 1316 * Adds links to changesets atom feed on repository browser
1316 1317 * Track project and tracker changes in issue history
1317 1318 * Adds anchor to atom feed messages links
1318 1319 * Adds a key in lang files to set the decimal separator (point or comma) in csv exports
1319 1320 * Makes importer work with Trac 0.8.x
1320 1321 * Upgraded to Prototype 1.6.0.1
1321 1322 * File viewer for attached text files
1322 1323 * Menu mapper: add support for :before, :after and :last options to #push method and add #delete method
1323 1324 * Removed inconsistent revision numbers on diff view
1324 1325 * CVS: add support for modules names with spaces
1325 1326 * Log the user in after registration if account activation is not needed
1326 1327 * Mercurial adapter improvements
1327 1328 * Trac importer: read session_attribute table to find user's email and real name
1328 1329 * Ability to disable unused SCM adapters in application settings
1329 1330 * Adds Filesystem adapter
1330 1331 * Clear changesets and changes with raw sql when deleting a repository for performance
1331 1332 * Redmine.pm now uses the 'commit access' permission defined in Redmine
1332 1333 * Reposman can create any type of scm (--scm option)
1333 1334 * Reposman creates a repository if the 'repository' module is enabled at project level only
1334 1335 * Display svn properties in the browser, svn >= 1.5.0 only
1335 1336 * Reduces memory usage when importing large git repositories
1336 1337 * Wider SVG graphs in repository stats
1337 1338 * SubversionAdapter#entries performance improvement
1338 1339 * SCM browser: ability to download raw unified diffs
1339 1340 * More detailed error message in log when scm command fails
1340 1341 * Adds support for file viewing with Darcs 2.0+
1341 1342 * Check that git changeset is not in the database before creating it
1342 1343 * Unified diff viewer for attached files with .patch or .diff extension
1343 1344 * File size display with Bazaar repositories
1344 1345 * Git adapter: use commit time instead of author time
1345 1346 * Prettier url for changesets
1346 1347 * Makes changes link to entries on the revision view
1347 1348 * Adds a field on the repository view to browse at specific revision
1348 1349 * Adds new projects atom feed
1349 1350 * Added rake tasks to generate rcov code coverage reports
1350 1351 * Add Redcloth's :block_markdown_rule to allow horizontal rules in wiki
1351 1352 * Show the project hierarchy in the drop down list for new membership on user administration screen
1352 1353 * Split user edit screen into tabs
1353 1354 * Renames bundled RedCloth to RedCloth3 to avoid RedCloth 4 to be loaded instead
1354 1355 * Fixed: Roadmap crashes when a version has a due date > 2037
1355 1356 * Fixed: invalid effective date (eg. 99999-01-01) causes an error on version edition screen
1356 1357 * Fixed: login filter providing incorrect back_url for Redmine installed in sub-directory
1357 1358 * Fixed: logtime entry duplicated when edited from parent project
1358 1359 * Fixed: wrong digest for text files under Windows
1359 1360 * Fixed: associated revisions are displayed in wrong order on issue view
1360 1361 * Fixed: Git Adapter date parsing ignores timezone
1361 1362 * Fixed: Printing long roadmap doesn't split across pages
1362 1363 * Fixes custom fields display order at several places
1363 1364 * Fixed: urls containing @ are parsed as email adress by the wiki formatter
1364 1365 * Fixed date filters accuracy with SQLite
1365 1366 * Fixed: tokens not escaped in highlight_tokens regexp
1366 1367 * Fixed Bazaar shared repository browsing
1367 1368 * Fixes platform determination under JRuby
1368 1369 * Fixed: Estimated time in issue's journal should be rounded to two decimals
1369 1370 * Fixed: 'search titles only' box ignored after one search is done on titles only
1370 1371 * Fixed: non-ASCII subversion path can't be displayed
1371 1372 * Fixed: Inline images don't work if file name has upper case letters or if image is in BMP format
1372 1373 * Fixed: document listing shows on "my page" when viewing documents is disabled for the role
1373 1374 * Fixed: Latest news appear on the homepage for projects with the News module disabled
1374 1375 * Fixed: cross-project issue list should not show issues of projects for which the issue tracking module was disabled
1375 1376 * Fixed: the default status is lost when reordering issue statuses
1376 1377 * Fixes error with Postgresql and non-UTF8 commit logs
1377 1378 * Fixed: textile footnotes no longer work
1378 1379 * Fixed: http links containing parentheses fail to reder correctly
1379 1380 * Fixed: GitAdapter#get_rev should use current branch instead of hardwiring master
1380 1381
1381 1382
1382 1383 == 2008-07-06 v0.7.3
1383 1384
1384 1385 * Allow dot in firstnames and lastnames
1385 1386 * Add project name to cross-project Atom feeds
1386 1387 * Encoding set to utf8 in example database.yml
1387 1388 * HTML titles on forums related views
1388 1389 * Fixed: various XSS vulnerabilities
1389 1390 * Fixed: Entourage (and some old client) fails to correctly render notification styles
1390 1391 * Fixed: Fixed: timelog redirects inappropriately when :back_url is blank
1391 1392 * Fixed: wrong relative paths to images in wiki_syntax.html
1392 1393
1393 1394
1394 1395 == 2008-06-15 v0.7.2
1395 1396
1396 1397 * "New Project" link on Projects page
1397 1398 * Links to repository directories on the repo browser
1398 1399 * Move status to front in Activity View
1399 1400 * Remove edit step from Status context menu
1400 1401 * Fixed: No way to do textile horizontal rule
1401 1402 * Fixed: Repository: View differences doesn't work
1402 1403 * Fixed: attachement's name maybe invalid.
1403 1404 * Fixed: Error when creating a new issue
1404 1405 * Fixed: NoMethodError on @available_filters.has_key?
1405 1406 * Fixed: Check All / Uncheck All in Email Settings
1406 1407 * Fixed: "View differences" of one file at /repositories/revision/ fails
1407 1408 * Fixed: Column width in "my page"
1408 1409 * Fixed: private subprojects are listed on Issues view
1409 1410 * Fixed: Textile: bold, italics, underline, etc... not working after parentheses
1410 1411 * Fixed: Update issue form: comment field from log time end out of screen
1411 1412 * Fixed: Editing role: "issue can be assigned to this role" out of box
1412 1413 * Fixed: Unable use angular braces after include word
1413 1414 * Fixed: Using '*' as keyword for repository referencing keywords doesn't work
1414 1415 * Fixed: Subversion repository "View differences" on each file rise ERROR
1415 1416 * Fixed: View differences for individual file of a changeset fails if the repository URL doesn't point to the repository root
1416 1417 * Fixed: It is possible to lock out the last admin account
1417 1418 * Fixed: Wikis are viewable for anonymous users on public projects, despite not granting access
1418 1419 * Fixed: Issue number display clipped on 'my issues'
1419 1420 * Fixed: Roadmap version list links not carrying state
1420 1421 * Fixed: Log Time fieldset in IssueController#edit doesn't set default Activity as default
1421 1422 * Fixed: git's "get_rev" API should use repo's current branch instead of hardwiring "master"
1422 1423 * Fixed: browser's language subcodes ignored
1423 1424 * Fixed: Error on project selection with numeric (only) identifier.
1424 1425 * Fixed: Link to PDF doesn't work after creating new issue
1425 1426 * Fixed: "Replies" should not be shown on forum threads that are locked
1426 1427 * Fixed: SVN errors lead to svn username/password being displayed to end users (security issue)
1427 1428 * Fixed: http links containing hashes don't display correct
1428 1429 * Fixed: Allow ampersands in Enumeration names
1429 1430 * Fixed: Atom link on saved query does not include query_id
1430 1431 * Fixed: Logtime info lost when there's an error updating an issue
1431 1432 * Fixed: TOC does not parse colorization markups
1432 1433 * Fixed: CVS: add support for modules names with spaces
1433 1434 * Fixed: Bad rendering on projects/add
1434 1435 * Fixed: exception when viewing differences on cvs
1435 1436 * Fixed: export issue to pdf will messup when use Chinese language
1436 1437 * Fixed: Redmine::Scm::Adapters::GitAdapter#get_rev ignored GIT_BIN constant
1437 1438 * Fixed: Adding non-ASCII new issue type in the New Issue page have encoding error using IE
1438 1439 * Fixed: Importing from trac : some wiki links are messed
1439 1440 * Fixed: Incorrect weekend definition in Hebrew calendar locale
1440 1441 * Fixed: Atom feeds don't provide author section for repository revisions
1441 1442 * Fixed: In Activity views, changesets titles can be multiline while they should not
1442 1443 * Fixed: Ignore unreadable subversion directories (read disabled using authz)
1443 1444 * Fixed: lib/SVG/Graph/Graph.rb can't externalize stylesheets
1444 1445 * Fixed: Close statement handler in Redmine.pm
1445 1446
1446 1447
1447 1448 == 2008-05-04 v0.7.1
1448 1449
1449 1450 * Thai translation added (Gampol Thitinilnithi)
1450 1451 * Translations updates
1451 1452 * Escape HTML comment tags
1452 1453 * Prevent "can't convert nil into String" error when :sort_order param is not present
1453 1454 * Fixed: Updating tickets add a time log with zero hours
1454 1455 * Fixed: private subprojects names are revealed on the project overview
1455 1456 * Fixed: Search for target version of "none" fails with postgres 8.3
1456 1457 * Fixed: Home, Logout, Login links shouldn't be absolute links
1457 1458 * Fixed: 'Latest projects' box on the welcome screen should be hidden if there are no projects
1458 1459 * Fixed: error when using upcase language name in coderay
1459 1460 * Fixed: error on Trac import when :due attribute is nil
1460 1461
1461 1462
1462 1463 == 2008-04-28 v0.7.0
1463 1464
1464 1465 * Forces Redmine to use rails 2.0.2 gem when vendor/rails is not present
1465 1466 * Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list.
1466 1467 * Add predefined date ranges to the time report
1467 1468 * Time report can be done at issue level
1468 1469 * Various timelog report enhancements
1469 1470 * Accept the following formats for "hours" field: 1h, 1 h, 1 hour, 2 hours, 30m, 30min, 1h30, 1h30m, 1:30
1470 1471 * Display the context menu above and/or to the left of the click if needed
1471 1472 * Make the admin project files list sortable
1472 1473 * Mercurial: display working directory files sizes unless browsing a specific revision
1473 1474 * Preserve status filter and page number when using lock/unlock/activate links on the users list
1474 1475 * Redmine.pm support for LDAP authentication
1475 1476 * Better error message and AR errors in log for failed LDAP on-the-fly user creation
1476 1477 * Redirected user to where he is coming from after logging hours
1477 1478 * Warn user that subprojects are also deleted when deleting a project
1478 1479 * Include subprojects versions on calendar and gantt
1479 1480 * Notify project members when a message is posted if they want to receive notifications
1480 1481 * Fixed: Feed content limit setting has no effect
1481 1482 * Fixed: Priorities not ordered when displayed as a filter in issue list
1482 1483 * Fixed: can not display attached images inline in message replies
1483 1484 * Fixed: Boards are not deleted when project is deleted
1484 1485 * Fixed: trying to preview a new issue raises an exception with postgresql
1485 1486 * Fixed: single file 'View difference' links do not work because of duplicate slashes in url
1486 1487 * Fixed: inline image not displayed when including a wiki page
1487 1488 * Fixed: CVS duplicate key violation
1488 1489 * Fixed: ActiveRecord::StaleObjectError exception on closing a set of circular duplicate issues
1489 1490 * Fixed: custom field filters behaviour
1490 1491 * Fixed: Postgresql 8.3 compatibility
1491 1492 * Fixed: Links to repository directories don't work
1492 1493
1493 1494
1494 1495 == 2008-03-29 v0.7.0-rc1
1495 1496
1496 1497 * Overall activity view and feed added, link is available on the project list
1497 1498 * Git VCS support
1498 1499 * Rails 2.0 sessions cookie store compatibility
1499 1500 * Use project identifiers in urls instead of ids
1500 1501 * Default configuration data can now be loaded from the administration screen
1501 1502 * Administration settings screen split to tabs (email notifications options moved to 'Settings')
1502 1503 * Project description is now unlimited and optional
1503 1504 * Wiki annotate view
1504 1505 * Escape HTML tag in textile content
1505 1506 * Add Redmine links to documents, versions, attachments and repository files
1506 1507 * New setting to specify how many objects should be displayed on paginated lists. There are 2 ways to select a set of issues on the issue list:
1507 1508 * by using checkbox and/or the little pencil that will select/unselect all issues
1508 1509 * by clicking on the rows (but not on the links), Ctrl and Shift keys can be used to select multiple issues
1509 1510 * Context menu disabled on links so that the default context menu of the browser is displayed when right-clicking on a link (click anywhere else on the row to display the context menu)
1510 1511 * User display format is now configurable in administration settings
1511 1512 * Issue list now supports bulk edit/move/delete (for a set of issues that belong to the same project)
1512 1513 * Merged 'change status', 'edit issue' and 'add note' actions:
1513 1514 * Users with 'edit issues' permission can now update any property including custom fields when adding a note or changing the status
1514 1515 * 'Change issue status' permission removed. To change an issue status, a user just needs to have either 'Edit' or 'Add note' permissions and some workflow transitions allowed
1515 1516 * Details by assignees on issue summary view
1516 1517 * 'New issue' link in the main menu (accesskey 7). The drop-down lists to add an issue on the project overview and the issue list are removed
1517 1518 * Change status select box default to current status
1518 1519 * Preview for issue notes, news and messages
1519 1520 * Optional description for attachments
1520 1521 * 'Fixed version' label changed to 'Target version'
1521 1522 * Let the user choose when deleting issues with reported hours to:
1522 1523 * delete the hours
1523 1524 * assign the hours to the project
1524 1525 * reassign the hours to another issue
1525 1526 * Date range filter and pagination on time entries detail view
1526 1527 * Propagate time tracking to the parent project
1527 1528 * Switch added on the project activity view to include subprojects
1528 1529 * Display total estimated and spent hours on the version detail view
1529 1530 * Weekly time tracking block for 'My page'
1530 1531 * Permissions to edit time entries
1531 1532 * Include subprojects on the issue list, calendar, gantt and timelog by default (can be turned off is administration settings)
1532 1533 * Roadmap enhancements (separate related issues from wiki contents, leading h1 in version wiki pages is hidden, smaller wiki headings)
1533 1534 * Make versions with same date sorted by name
1534 1535 * Allow issue list to be sorted by target version
1535 1536 * Related changesets messages displayed on the issue details view
1536 1537 * Create a journal and send an email when an issue is closed by commit
1537 1538 * Add 'Author' to the available columns for the issue list
1538 1539 * More appropriate default sort order on sortable columns
1539 1540 * Add issue subject to the time entries view and issue subject, description and tracker to the csv export
1540 1541 * Permissions to edit issue notes
1541 1542 * Display date/time instead of date on files list
1542 1543 * Do not show Roadmap menu item if the project doesn't define any versions
1543 1544 * Allow longer version names (60 chars)
1544 1545 * Ability to copy an existing workflow when creating a new role
1545 1546 * Display custom fields in two columns on the issue form
1546 1547 * Added 'estimated time' in the csv export of the issue list
1547 1548 * Display the last 30 days on the activity view rather than the current month (number of days can be configured in the application settings)
1548 1549 * Setting for whether new projects should be public by default
1549 1550 * User preference to choose how comments/replies are displayed: in chronological or reverse chronological order
1550 1551 * Added default value for custom fields
1551 1552 * Added tabindex property on wiki toolbar buttons (to easily move from field to field using the tab key)
1552 1553 * Redirect to issue page after creating a new issue
1553 1554 * Wiki toolbar improvements (mainly for Firefox)
1554 1555 * Display wiki syntax quick ref link on all wiki textareas
1555 1556 * Display links to Atom feeds
1556 1557 * Breadcrumb nav for the forums
1557 1558 * Show replies when choosing to display messages in the activity
1558 1559 * Added 'include' macro to include another wiki page
1559 1560 * RedmineWikiFormatting page available as a static HTML file locally
1560 1561 * Wrap diff content
1561 1562 * Strip out email address from authors in repository screens
1562 1563 * Highlight the current item of the main menu
1563 1564 * Added simple syntax highlighters for php and java languages
1564 1565 * Do not show empty diffs
1565 1566 * Show explicit error message when the scm command failed (eg. when svn binary is not available)
1566 1567 * Lithuanian translation added (Sergej Jegorov)
1567 1568 * Ukrainan translation added (Natalia Konovka & Mykhaylo Sorochan)
1568 1569 * Danish translation added (Mads Vestergaard)
1569 1570 * Added i18n support to the jstoolbar and various settings screen
1570 1571 * RedCloth's glyphs no longer user
1571 1572 * New icons for the wiki toolbar (from http://www.famfamfam.com/lab/icons/silk/)
1572 1573 * The following menus can now be extended by plugins: top_menu, account_menu, application_menu
1573 1574 * Added a simple rake task to fetch changesets from the repositories: rake redmine:fetch_changesets
1574 1575 * Remove hardcoded "Redmine" strings in account related emails and use application title instead
1575 1576 * Mantis importer preserve bug ids
1576 1577 * Trac importer: Trac guide wiki pages skipped
1577 1578 * Trac importer: wiki attachments migration added
1578 1579 * Trac importer: support database schema for Trac migration
1579 1580 * Trac importer: support CamelCase links
1580 1581 * Removes the Redmine version from the footer (can be viewed on admin -> info)
1581 1582 * Rescue and display an error message when trying to delete a role that is in use
1582 1583 * Add various 'X-Redmine' headers to email notifications: X-Redmine-Host, X-Redmine-Site, X-Redmine-Project, X-Redmine-Issue-Id, -Author, -Assignee, X-Redmine-Topic-Id
1583 1584 * Add "--encoding utf8" option to the Mercurial "hg log" command in order to get utf8 encoded commit logs
1584 1585 * Fixed: Gantt and calendar not properly refreshed (fragment caching removed)
1585 1586 * Fixed: Textile image with style attribute cause internal server error
1586 1587 * Fixed: wiki TOC not rendered properly when used in an issue or document description
1587 1588 * Fixed: 'has already been taken' error message on username and email fields if left empty
1588 1589 * Fixed: non-ascii attachement filename with IE
1589 1590 * Fixed: wrong url for wiki syntax pop-up when Redmine urls are prefixed
1590 1591 * Fixed: search for all words doesn't work
1591 1592 * Fixed: Do not show sticky and locked checkboxes when replying to a message
1592 1593 * Fixed: Mantis importer: do not duplicate Mantis username in firstname and lastname if realname is blank
1593 1594 * Fixed: Date custom fields not displayed as specified in application settings
1594 1595 * Fixed: titles not escaped in the activity view
1595 1596 * Fixed: issue queries can not use custom fields marked as 'for all projects' in a project context
1596 1597 * Fixed: on calendar, gantt and in the tracker filter on the issue list, only active trackers of the project (and its sub projects) should be available
1597 1598 * Fixed: locked users should not receive email notifications
1598 1599 * Fixed: custom field selection is not saved when unchecking them all on project settings
1599 1600 * Fixed: can not lock a topic when creating it
1600 1601 * Fixed: Incorrect filtering for unset values when using 'is not' filter
1601 1602 * Fixed: PostgreSQL issues_seq_id not updated when using Trac importer
1602 1603 * Fixed: ajax pagination does not scroll up
1603 1604 * Fixed: error when uploading a file with no content-type specified by the browser
1604 1605 * Fixed: wiki and changeset links not displayed when previewing issue description or notes
1605 1606 * Fixed: 'LdapError: no bind result' error when authenticating
1606 1607 * Fixed: 'LdapError: invalid binding information' when no username/password are set on the LDAP account
1607 1608 * Fixed: CVS repository doesn't work if port is used in the url
1608 1609 * Fixed: Email notifications: host name is missing in generated links
1609 1610 * Fixed: Email notifications: referenced changesets, wiki pages, attachments... are not turned into links
1610 1611 * Fixed: Do not clear issue relations when moving an issue to another project if cross-project issue relations are allowed
1611 1612 * Fixed: "undefined method 'textilizable'" error on email notification when running Repository#fetch_changesets from the console
1612 1613 * Fixed: Do not send an email with no recipient, cc or bcc
1613 1614 * Fixed: fetch_changesets fails on commit comments that close 2 duplicates issues.
1614 1615 * Fixed: Mercurial browsing under unix-like os and for directory depth > 2
1615 1616 * Fixed: Wiki links with pipe can not be used in wiki tables
1616 1617 * Fixed: migrate_from_trac doesn't import timestamps of wiki and tickets
1617 1618 * Fixed: when bulk editing, setting "Assigned to" to "nobody" causes an sql error with Postgresql
1618 1619
1619 1620
1620 1621 == 2008-03-12 v0.6.4
1621 1622
1622 1623 * Fixed: private projects name are displayed on account/show even if the current user doesn't have access to these private projects
1623 1624 * Fixed: potential LDAP authentication security flaw
1624 1625 * Fixed: context submenus on the issue list don't show up with IE6.
1625 1626 * Fixed: Themes are not applied with Rails 2.0
1626 1627 * Fixed: crash when fetching Mercurial changesets if changeset[:files] is nil
1627 1628 * Fixed: Mercurial repository browsing
1628 1629 * Fixed: undefined local variable or method 'log' in CvsAdapter when a cvs command fails
1629 1630 * Fixed: not null constraints not removed with Postgresql
1630 1631 * Doctype set to transitional
1631 1632
1632 1633
1633 1634 == 2007-12-18 v0.6.3
1634 1635
1635 1636 * Fixed: upload doesn't work in 'Files' section
1636 1637
1637 1638
1638 1639 == 2007-12-16 v0.6.2
1639 1640
1640 1641 * Search engine: issue custom fields can now be searched
1641 1642 * News comments are now textilized
1642 1643 * Updated Japanese translation (Satoru Kurashiki)
1643 1644 * Updated Chinese translation (Shortie Lo)
1644 1645 * Fixed Rails 2.0 compatibility bugs:
1645 1646 * Unable to create a wiki
1646 1647 * Gantt and calendar error
1647 1648 * Trac importer error (readonly? is defined by ActiveRecord)
1648 1649 * Fixed: 'assigned to me' filter broken
1649 1650 * Fixed: crash when validation fails on issue edition with no custom fields
1650 1651 * Fixed: reposman "can't find group" error
1651 1652 * Fixed: 'LDAP account password is too long' error when leaving the field empty on creation
1652 1653 * Fixed: empty lines when displaying repository files with Windows style eol
1653 1654 * Fixed: missing body closing tag in repository annotate and entry views
1654 1655
1655 1656
1656 1657 == 2007-12-10 v0.6.1
1657 1658
1658 1659 * Rails 2.0 compatibility
1659 1660 * Custom fields can now be displayed as columns on the issue list
1660 1661 * Added version details view (accessible from the roadmap)
1661 1662 * Roadmap: more accurate completion percentage calculation (done ratio of open issues is now taken into account)
1662 1663 * Added per-project tracker selection. Trackers can be selected on project settings
1663 1664 * Anonymous users can now be allowed to create, edit, comment issues, comment news and post messages in the forums
1664 1665 * Forums: messages can now be edited/deleted (explicit permissions need to be given)
1665 1666 * Forums: topics can be locked so that no reply can be added
1666 1667 * Forums: topics can be marked as sticky so that they always appear at the top of the list
1667 1668 * Forums: attachments can now be added to replies
1668 1669 * Added time zone support
1669 1670 * Added a setting to choose the account activation strategy (available in application settings)
1670 1671 * Added 'Classic' theme (inspired from the v0.51 design)
1671 1672 * Added an alternate theme which provides issue list colorization based on issues priority
1672 1673 * Added Bazaar SCM adapter
1673 1674 * Added Annotate/Blame view in the repository browser (except for Darcs SCM)
1674 1675 * Diff style (inline or side by side) automatically saved as a user preference
1675 1676 * Added issues status changes on the activity view (by Cyril Mougel)
1676 1677 * Added forums topics on the activity view (disabled by default)
1677 1678 * Added an option on 'My account' for users who don't want to be notified of changes that they make
1678 1679 * Trac importer now supports mysql and postgresql databases
1679 1680 * Trac importer improvements (by Mat Trudel)
1680 1681 * 'fixed version' field can now be displayed on the issue list
1681 1682 * Added a couple of new formats for the 'date format' setting
1682 1683 * Added Traditional Chinese translation (by Shortie Lo)
1683 1684 * Added Russian translation (iGor kMeta)
1684 1685 * Project name format limitation removed (name can now contain any character)
1685 1686 * Project identifier maximum length changed from 12 to 20
1686 1687 * Changed the maximum length of LDAP account to 255 characters
1687 1688 * Removed the 12 characters limit on passwords
1688 1689 * Added wiki macros support
1689 1690 * Performance improvement on workflow setup screen
1690 1691 * More detailed html title on several views
1691 1692 * Custom fields can now be reordered
1692 1693 * Search engine: search can be restricted to an exact phrase by using quotation marks
1693 1694 * Added custom fields marked as 'For all projects' to the csv export of the cross project issue list
1694 1695 * Email notifications are now sent as Blind carbon copy by default
1695 1696 * Fixed: all members (including non active) should be deleted when deleting a project
1696 1697 * Fixed: Error on wiki syntax link (accessible from wiki/edit)
1697 1698 * Fixed: 'quick jump to a revision' form on the revisions list
1698 1699 * Fixed: error on admin/info if there's more than 1 plugin installed
1699 1700 * Fixed: svn or ldap password can be found in clear text in the html source in editing mode
1700 1701 * Fixed: 'Assigned to' drop down list is not sorted
1701 1702 * Fixed: 'View all issues' link doesn't work on issues/show
1702 1703 * Fixed: error on account/register when validation fails
1703 1704 * Fixed: Error when displaying the issue list if a float custom field is marked as 'used as filter'
1704 1705 * Fixed: Mercurial adapter breaks on missing :files entry in changeset hash (James Britt)
1705 1706 * Fixed: Wrong feed URLs on the home page
1706 1707 * Fixed: Update of time entry fails when the issue has been moved to an other project
1707 1708 * Fixed: Error when moving an issue without changing its tracker (Postgresql)
1708 1709 * Fixed: Changes not recorded when using :pserver string (CVS adapter)
1709 1710 * Fixed: admin should be able to move issues to any project
1710 1711 * Fixed: adding an attachment is not possible when changing the status of an issue
1711 1712 * Fixed: No mime-types in documents/files downloading
1712 1713 * Fixed: error when sorting the messages if there's only one board for the project
1713 1714 * Fixed: 'me' doesn't appear in the drop down filters on a project issue list.
1714 1715
1715 1716 == 2007-11-04 v0.6.0
1716 1717
1717 1718 * Permission model refactoring.
1718 1719 * Permissions: there are now 2 builtin roles that can be used to specify permissions given to other users than members of projects
1719 1720 * Permissions: some permissions (eg. browse the repository) can be removed for certain roles
1720 1721 * Permissions: modules (eg. issue tracking, news, documents...) can be enabled/disabled at project level
1721 1722 * Added Mantis and Trac importers
1722 1723 * New application layout
1723 1724 * Added "Bulk edit" functionality on the issue list
1724 1725 * More flexible mail notifications settings at user level
1725 1726 * Added AJAX based context menu on the project issue list that provide shortcuts for editing, re-assigning, changing the status or the priority, moving or deleting an issue
1726 1727 * Added the hability to copy an issue. It can be done from the "issue/show" view or from the context menu on the issue list
1727 1728 * Added the ability to customize issue list columns (at application level or for each saved query)
1728 1729 * Overdue versions (date reached and open issues > 0) are now always displayed on the roadmap
1729 1730 * Added the ability to rename wiki pages (specific permission required)
1730 1731 * Search engines now supports pagination. Results are sorted in reverse chronological order
1731 1732 * Added "Estimated hours" attribute on issues
1732 1733 * A category with assigned issue can now be deleted. 2 options are proposed: remove assignments or reassign issues to another category
1733 1734 * Forum notifications are now also sent to the authors of the thread, even if they donΓ―ΒΏΒ½t watch the board
1734 1735 * Added an application setting to specify the application protocol (http or https) used to generate urls in emails
1735 1736 * Gantt chart: now starts at the current month by default
1736 1737 * Gantt chart: month count and zoom factor are automatically saved as user preferences
1737 1738 * Wiki links can now refer to other project wikis
1738 1739 * Added wiki index by date
1739 1740 * Added preview on add/edit issue form
1740 1741 * Emails footer can now be customized from the admin interface (Admin -> Email notifications)
1741 1742 * Default encodings for repository files can now be set in application settings (used to convert files content and diff to UTF-8 so that theyΓ―ΒΏΒ½re properly displayed)
1742 1743 * Calendar: first day of week can now be set in lang files
1743 1744 * Automatic closing of duplicate issues
1744 1745 * Added a cross-project issue list
1745 1746 * AJAXified the SCM browser (tree view)
1746 1747 * Pretty URL for the repository browser (Cyril Mougel)
1747 1748 * Search engine: added a checkbox to search titles only
1748 1749 * Added "% done" in the filter list
1749 1750 * Enumerations: values can now be reordered and a default value can be specified (eg. default issue priority)
1750 1751 * Added some accesskeys
1751 1752 * Added "Float" as a custom field format
1752 1753 * Added basic Theme support
1753 1754 * Added the ability to set the Γ―ΒΏΒ½done ratioΓ―ΒΏΒ½ of issues fixed by commit (Nikolay Solakov)
1754 1755 * Added custom fields in issue related mail notifications
1755 1756 * Email notifications are now sent in plain text and html
1756 1757 * Gantt chart can now be exported to a graphic file (png). This functionality is only available if RMagick is installed.
1757 1758 * Added syntax highlightment for repository files and wiki
1758 1759 * Improved automatic Redmine links
1759 1760 * Added automatic table of content support on wiki pages
1760 1761 * Added radio buttons on the documents list to sort documents by category, date, title or author
1761 1762 * Added basic plugin support, with a sample plugin
1762 1763 * Added a link to add a new category when creating or editing an issue
1763 1764 * Added a "Assignable" boolean on the Role model. If unchecked, issues can not be assigned to users having this role.
1764 1765 * Added an option to be able to relate issues in different projects
1765 1766 * Added the ability to move issues (to another project) without changing their trackers.
1766 1767 * Atom feeds added on project activity, news and changesets
1767 1768 * Added the ability to reset its own RSS access key
1768 1769 * Main project list now displays root projects with their subprojects
1769 1770 * Added anchor links to issue notes
1770 1771 * Added reposman Ruby version. This script can now register created repositories in Redmine (Nicolas Chuche)
1771 1772 * Issue notes are now included in search
1772 1773 * Added email sending test functionality
1773 1774 * Added LDAPS support for LDAP authentication
1774 1775 * Removed hard-coded URLs in mail templates
1775 1776 * Subprojects are now grouped by projects in the navigation drop-down menu
1776 1777 * Added a new value for date filters: this week
1777 1778 * Added cache for application settings
1778 1779 * Added Polish translation (Tomasz Gawryl)
1779 1780 * Added Czech translation (Jan Kadlecek)
1780 1781 * Added Romanian translation (Csongor Bartus)
1781 1782 * Added Hebrew translation (Bob Builder)
1782 1783 * Added Serbian translation (Dragan Matic)
1783 1784 * Added Korean translation (Choi Jong Yoon)
1784 1785 * Fixed: the link to delete issue relations is displayed even if the user is not authorized to delete relations
1785 1786 * Performance improvement on calendar and gantt
1786 1787 * Fixed: wiki preview doesnΓ―ΒΏΒ½t work on long entries
1787 1788 * Fixed: queries with multiple custom fields return no result
1788 1789 * Fixed: Can not authenticate user against LDAP if its DN contains non-ascii characters
1789 1790 * Fixed: URL with ~ broken in wiki formatting
1790 1791 * Fixed: some quotation marks are rendered as strange characters in pdf
1791 1792
1792 1793
1793 1794 == 2007-07-15 v0.5.1
1794 1795
1795 1796 * per project forums added
1796 1797 * added the ability to archive projects
1797 1798 * added Γ―ΒΏΒ½WatchΓ―ΒΏΒ½ functionality on issues. It allows users to receive notifications about issue changes
1798 1799 * custom fields for issues can now be used as filters on issue list
1799 1800 * added per user custom queries
1800 1801 * commit messages are now scanned for referenced or fixed issue IDs (keywords defined in Admin -> Settings)
1801 1802 * projects list now shows the list of public projects and private projects for which the user is a member
1802 1803 * versions can now be created with no date
1803 1804 * added issue count details for versions on Reports view
1804 1805 * added time report, by member/activity/tracker/version and year/month/week for the selected period
1805 1806 * each category can now be associated to a user, so that new issues in that category are automatically assigned to that user
1806 1807 * added autologin feature (disabled by default)
1807 1808 * optimistic locking added for wiki edits
1808 1809 * added wiki diff
1809 1810 * added the ability to destroy wiki pages (requires permission)
1810 1811 * a wiki page can now be attached to each version, and displayed on the roadmap
1811 1812 * attachments can now be added to wiki pages (original patch by Pavol Murin) and displayed online
1812 1813 * added an option to see all versions in the roadmap view (including completed ones)
1813 1814 * added basic issue relations
1814 1815 * added the ability to log time when changing an issue status
1815 1816 * account information can now be sent to the user when creating an account
1816 1817 * author and assignee of an issue always receive notifications (even if they turned of mail notifications)
1817 1818 * added a quick search form in page header
1818 1819 * added 'me' value for 'assigned to' and 'author' query filters
1819 1820 * added a link on revision screen to see the entire diff for the revision
1820 1821 * added last commit message for each entry in repository browser
1821 1822 * added the ability to view a file diff with free to/from revision selection.
1822 1823 * text files can now be viewed online when browsing the repository
1823 1824 * added basic support for other SCM: CVS (Ralph Vater), Mercurial and Darcs
1824 1825 * added fragment caching for svn diffs
1825 1826 * added fragment caching for calendar and gantt views
1826 1827 * login field automatically focused on login form
1827 1828 * subproject name displayed on issue list, calendar and gantt
1828 1829 * added an option to choose the date format: language based or ISO 8601
1829 1830 * added a simple mail handler. It lets users add notes to an existing issue by replying to the initial notification email.
1830 1831 * a 403 error page is now displayed (instead of a blank page) when trying to access a protected page
1831 1832 * added portuguese translation (Joao Carlos Clementoni)
1832 1833 * added partial online help japanese translation (Ken Date)
1833 1834 * added bulgarian translation (Nikolay Solakov)
1834 1835 * added dutch translation (Linda van den Brink)
1835 1836 * added swedish translation (Thomas Habets)
1836 1837 * italian translation update (Alessio Spadaro)
1837 1838 * japanese translation update (Satoru Kurashiki)
1838 1839 * fixed: error on history atom feed when thereΓ―ΒΏΒ½s no notes on an issue change
1839 1840 * fixed: error in journalizing an issue with longtext custom fields (Postgresql)
1840 1841 * fixed: creation of Oracle schema
1841 1842 * fixed: last day of the month not included in project activity
1842 1843 * fixed: files with an apostrophe in their names can't be accessed in SVN repository
1843 1844 * fixed: performance issue on RepositoriesController#revisions when a changeset has a great number of changes (eg. 100,000)
1844 1845 * fixed: open/closed issue counts are always 0 on reports view (postgresql)
1845 1846 * fixed: date query filters (wrong results and sql error with postgresql)
1846 1847 * fixed: confidentiality issue on account/show (private project names displayed to anyone)
1847 1848 * fixed: Long text custom fields displayed without line breaks
1848 1849 * fixed: Error when editing the wokflow after deleting a status
1849 1850 * fixed: SVN commit dates are now stored as local time
1850 1851
1851 1852
1852 1853 == 2007-04-11 v0.5.0
1853 1854
1854 1855 * added per project Wiki
1855 1856 * added rss/atom feeds at project level (custom queries can be used as feeds)
1856 1857 * added search engine (search in issues, news, commits, wiki pages, documents)
1857 1858 * simple time tracking functionality added
1858 1859 * added version due dates on calendar and gantt
1859 1860 * added subprojects issue count on project Reports page
1860 1861 * added the ability to copy an existing workflow when creating a new tracker
1861 1862 * added the ability to include subprojects on calendar and gantt
1862 1863 * added the ability to select trackers to display on calendar and gantt (Jeffrey Jones)
1863 1864 * added side by side svn diff view (Cyril Mougel)
1864 1865 * added back subproject filter on issue list
1865 1866 * added permissions report in admin area
1866 1867 * added a status filter on users list
1867 1868 * support for password-protected SVN repositories
1868 1869 * SVN commits are now stored in the database
1869 1870 * added simple svn statistics SVG graphs
1870 1871 * progress bars for roadmap versions (Nick Read)
1871 1872 * issue history now shows file uploads and deletions
1872 1873 * #id patterns are turned into links to issues in descriptions and commit messages
1873 1874 * japanese translation added (Satoru Kurashiki)
1874 1875 * chinese simplified translation added (Andy Wu)
1875 1876 * italian translation added (Alessio Spadaro)
1876 1877 * added scripts to manage SVN repositories creation and user access control using ssh+svn (Nicolas Chuche)
1877 1878 * better calendar rendering time
1878 1879 * fixed migration scripts to work with mysql 5 running in strict mode
1879 1880 * fixed: error when clicking "add" with no block selected on my/page_layout
1880 1881 * fixed: hard coded links in navigation bar
1881 1882 * fixed: table_name pre/suffix support
1882 1883
1883 1884
1884 1885 == 2007-02-18 v0.4.2
1885 1886
1886 1887 * Rails 1.2 is now required
1887 1888 * settings are now stored in the database and editable through the application in: Admin -> Settings (config_custom.rb is no longer used)
1888 1889 * added project roadmap view
1889 1890 * mail notifications added when a document, a file or an attachment is added
1890 1891 * tooltips added on Gantt chart and calender to view the details of the issues
1891 1892 * ability to set the sort order for roles, trackers, issue statuses
1892 1893 * added missing fields to csv export: priority, start date, due date, done ratio
1893 1894 * added total number of issues per tracker on project overview
1894 1895 * all icons replaced (new icons are based on GPL icon set: "KDE Crystal Diamond 2.5" -by paolino- and "kNeu! Alpha v0.1" -by Pablo Fabregat-)
1895 1896 * added back "fixed version" field on issue screen and in filters
1896 1897 * project settings screen split in 4 tabs
1897 1898 * custom fields screen split in 3 tabs (one for each kind of custom field)
1898 1899 * multiple issues pdf export now rendered as a table
1899 1900 * added a button on users/list to manually activate an account
1900 1901 * added a setting option to disable "password lost" functionality
1901 1902 * added a setting option to set max number of issues in csv/pdf exports
1902 1903 * fixed: subprojects count is always 0 on projects list
1903 1904 * fixed: locked users are proposed when adding a member to a project
1904 1905 * fixed: setting an issue status as default status leads to an sql error with SQLite
1905 1906 * fixed: unable to delete an issue status even if it's not used yet
1906 1907 * fixed: filters ignored when exporting a predefined query to csv/pdf
1907 1908 * fixed: crash when french "issue_edit" email notification is sent
1908 1909 * fixed: hide mail preference not saved (my/account)
1909 1910 * fixed: crash when a new user try to edit its "my page" layout
1910 1911
1911 1912
1912 1913 == 2007-01-03 v0.4.1
1913 1914
1914 1915 * fixed: emails have no recipient when one of the project members has notifications disabled
1915 1916
1916 1917
1917 1918 == 2007-01-02 v0.4.0
1918 1919
1919 1920 * simple SVN browser added (just needs svn binaries in PATH)
1920 1921 * comments can now be added on news
1921 1922 * "my page" is now customizable
1922 1923 * more powerfull and savable filters for issues lists
1923 1924 * improved issues change history
1924 1925 * new functionality: move an issue to another project or tracker
1925 1926 * new functionality: add a note to an issue
1926 1927 * new report: project activity
1927 1928 * "start date" and "% done" fields added on issues
1928 1929 * project calendar added
1929 1930 * gantt chart added (exportable to pdf)
1930 1931 * single/multiple issues pdf export added
1931 1932 * issues reports improvements
1932 1933 * multiple file upload for issues, documents and files
1933 1934 * option to set maximum size of uploaded files
1934 1935 * textile formating of issue and news descritions (RedCloth required)
1935 1936 * integration of DotClear jstoolbar for textile formatting
1936 1937 * calendar date picker for date fields (LGPL DHTML Calendar http://sourceforge.net/projects/jscalendar)
1937 1938 * new filter in issues list: Author
1938 1939 * ajaxified paginators
1939 1940 * news rss feed added
1940 1941 * option to set number of results per page on issues list
1941 1942 * localized csv separator (comma/semicolon)
1942 1943 * csv output encoded to ISO-8859-1
1943 1944 * user custom field displayed on account/show
1944 1945 * default configuration improved (default roles, trackers, status, permissions and workflows)
1945 1946 * language for default configuration data can now be chosen when running 'load_default_data' task
1946 1947 * javascript added on custom field form to show/hide fields according to the format of custom field
1947 1948 * fixed: custom fields not in csv exports
1948 1949 * fixed: project settings now displayed according to user's permissions
1949 1950 * fixed: application error when no version is selected on projects/add_file
1950 1951 * fixed: public actions not authorized for members of non public projects
1951 1952 * fixed: non public projects were shown on welcome screen even if current user is not a member
1952 1953
1953 1954
1954 1955 == 2006-10-08 v0.3.0
1955 1956
1956 1957 * user authentication against multiple LDAP (optional)
1957 1958 * token based "lost password" functionality
1958 1959 * user self-registration functionality (optional)
1959 1960 * custom fields now available for issues, users and projects
1960 1961 * new custom field format "text" (displayed as a textarea field)
1961 1962 * project & administration drop down menus in navigation bar for quicker access
1962 1963 * text formatting is preserved for long text fields (issues, projects and news descriptions)
1963 1964 * urls and emails are turned into clickable links in long text fields
1964 1965 * "due date" field added on issues
1965 1966 * tracker selection filter added on change log
1966 1967 * Localization plugin replaced with GLoc 1.1.0 (iconv required)
1967 1968 * error messages internationalization
1968 1969 * german translation added (thanks to Karim Trott)
1969 1970 * data locking for issues to prevent update conflicts (using ActiveRecord builtin optimistic locking)
1970 1971 * new filter in issues list: "Fixed version"
1971 1972 * active filters are displayed with colored background on issues list
1972 1973 * custom configuration is now defined in config/config_custom.rb
1973 1974 * user object no more stored in session (only user_id)
1974 1975 * news summary field is no longer required
1975 1976 * tables and forms redesign
1976 1977 * Fixed: boolean custom field not working
1977 1978 * Fixed: error messages for custom fields are not displayed
1978 1979 * Fixed: invalid custom fields should have a red border
1979 1980 * Fixed: custom fields values are not validated on issue update
1980 1981 * Fixed: unable to choose an empty value for 'List' custom fields
1981 1982 * Fixed: no issue categories sorting
1982 1983 * Fixed: incorrect versions sorting
1983 1984
1984 1985
1985 1986 == 2006-07-12 - v0.2.2
1986 1987
1987 1988 * Fixed: bug in "issues list"
1988 1989
1989 1990
1990 1991 == 2006-07-09 - v0.2.1
1991 1992
1992 1993 * new databases supported: Oracle, PostgreSQL, SQL Server
1993 1994 * projects/subprojects hierarchy (1 level of subprojects only)
1994 1995 * environment information display in admin/info
1995 1996 * more filter options in issues list (rev6)
1996 1997 * default language based on browser settings (Accept-Language HTTP header)
1997 1998 * issues list exportable to CSV (rev6)
1998 1999 * simple_format and auto_link on long text fields
1999 2000 * more data validations
2000 2001 * Fixed: error when all mail notifications are unchecked in admin/mail_options
2001 2002 * Fixed: all project news are displayed on project summary
2002 2003 * Fixed: Can't change user password in users/edit
2003 2004 * Fixed: Error on tables creation with PostgreSQL (rev5)
2004 2005 * Fixed: SQL error in "issue reports" view with PostgreSQL (rev5)
2005 2006
2006 2007
2007 2008 == 2006-06-25 - v0.1.0
2008 2009
2009 2010 * multiple users/multiple projects
2010 2011 * role based access control
2011 2012 * issue tracking system
2012 2013 * fully customizable workflow
2013 2014 * documents/files repository
2014 2015 * email notifications on issue creation and update
2015 2016 * multilanguage support (except for error messages):english, french, spanish
2016 2017 * online manual in french (unfinished)
General Comments 0
You need to be logged in to leave comments. Login now