Project

General

Profile

Search

Results (12713)

Defect #44234 (Closed): Gantt issue relation lines break when collapsing objects
2026-07-06 08:44
Defect #44231 (New): Mercurial tests fail with Mercurial 7.2.3 on MacOS
It seems that the @redmine_helper.py@ needs t ... bject has no attribute 'iterbranches' </pre> 2026-07-05 16:18
Feature #44230 (New): New hook for :view_issues_new_bottom
Hello, is it possible to add a new hook within the Issues#new view after the form? We already have <%= call_hook(:view_issues_new_top, {:issue => @issue}) %> but no one for after the form? Thank you very much :) 2026-07-03 14:52
Defect #44228 (New): Uploading an attachment ... the filename causes an Internal Server Error
Uploading an attachment with a filename that ... nd results in an Internal Server Error. This issue was originally pointed out by user#678636 in ... gracefully. The attached patch fixes the issue by adding @\x00@ to the invalid character se ... istent with @Attachment#sanitize_filename@. 2026-07-03 04:28
Defect #44227 (New): Internal Server Error(500) due to null byte in attachment filename
Hi, While generating the "Project Health R ... Using the query below, I found out which issue the problematic file attachment belonged to ... 784 | RE K-ALLEXIN 5 NAZAL SPREY HK..htm | Issue | 11593 | +------+--------- ... w in set (0.001 sec) </code></pre> The issue could be viewed, but the attachment could no ... b:78:in sudo_mode' </pre> Our users open issues and upload files solely via the WEB interfa ... ons utilizing REST services. The problematic issue was opened in 2015. Probably, no one even as ... on we were using in 2015. Perhaps this is an issue that was prevented in later versions. I f ... 3.3.0 </pre> Best regards... 2026-07-02 19:47
Defect #44225 (Closed): Add and configure pandoc on GitHub Actions
The pandoc tests for #8959 are currently not ... e: <pre> sh: 1: pandoc: not found </pre> 2026-07-02 17:11
Defect #44223 (Closed): Setup Subversion and Mercurial on GitHub Actions
Right now, the test output on Github includes ... the necessary client packages in the runner. 2026-07-02 17:03
Patch #44221 (New): Fix toggling query columns on custom query creation
Since the fix in r22574, it is no longer poss ... same way as @/app/views/gantts/show.html.erb@ 2026-06-30 16:15
Defect #44218 (New): Log time block disappears on validation error when closing issue with "Accept time logs on closed issues" disabled
## Steps to reproduce 1. Have "Accept time logs on closed issues" disabled (Administration > Settings > Time tracking) 2. Open an issue with an open status 3. Change status to a c ... in-memory state after the failed save. The issue object already has the closed status assigne ... ed back. ## Proposed fix In `app/views/issues/_edit.html.erb`, line 12: Change: <% if @issue.time_loggable? %> To: <% if @issue.time_loggable? || (!@issue.was_closed? && @issue.errors.any?) %> This uses the existing `w ... iginal status before the failed save attempt. 2026-06-26 14:32
Defect #44217 (New): MFA authentication fails when enabled for a user group
Hello, I am experiencing an issue with Multi-Factor Authentication (MFA) when ... .3.1 - Database adapter: Mysql2 Thank you 2026-06-26 10:17
Defect #44216 (Closed): Backport uploading files with excessively long extensions may fail
When uploading a file with a very long extens ... luding the extension) is short enough. This issue is similar to #24186. This patch follows the same filename length limit as that issue. 2026-06-26 07:43
Defect #44214 (New): Leftclick on three dot menu in issue list should not disable preselected tasks
*What did you expect?* I expect to select on the issue index page a few tasks and left click on the ... we reproduce the problem?* # Create three issues in a project. # Navigate to the issue index page of that project. # Check the box ... ontext menu. # Observe that still all three issues are presented for mass editing. *In what ... eeing the problem on?* - Firefox - Chrome 2026-06-25 16:23
Defect #44186 (Closed): Uploading files with excessively long extensions may fail
When uploading a file with a very long extens ... luding the extension) is short enough. This issue is similar to #24186. This patch follows the same filename length limit as that issue. 2026-06-16 15:50
Patch #44184 (Closed): Traditional Chinese translation (to r24781)
* Translations added: ** button_remove_from_group, button_add_to_group, setting_default_issue_due_date_offset, field_private_by_default, field_default_value_mode, label_absolute, label_relative 2026-06-16 11:14
Defect #44173 (Closed): Password reset security notification does not include IP address
The password reset email notification doesn't ... token or resetting your password. Thank you. 2026-06-15 08:57
Defect #44170 (Closed): Toggling between board and list in projects query do not work properly
From #39806#note-14: > Takashi Kato wrote in ... k properly. > > The attached patch fix this issue. > 2026-06-14 11:03
Patch #44169 (Closed): Refactor context menus controller to namespaced sub-controllers
The current @ContextMenusController@ acts as ... menu logic for multiple disparate objects: @issues@, @time_entries@, @projects@, and @users@. ... s to decouple the logic for each object type. 2026-06-14 00:30
Feature #44167 (New): OAuth2: import client metadata (RFC 7591) on application registration
Registering a third-party OAuth2 application ... class="javascript"> { "client_name": "My Issue Sync Tool", "redirect_uris": ["https://example.com/oauth/callback"], "scope": "view_issues add_issues" } </code></pre> 2026-06-12 13:05
Feature #44166 (New): 【About Tracker】Add lock ... for trackers to disable them without deletion
## Problem When a tracker is no longer needed, it cannot be deleted if it has been used by any issues in the past. The only workaround is to manu ... lock/unlock actions in the admin interface. 2026-06-12 12:59
Defect #44165 (Closed): Basic authentication challenge is sent for API key authentication failures
When authentication fails for a REST API requ ... ng a URL such as @http://redmine.example.com/issues.json?key=WRONG_API_KEY@ in a browser, the b ... uthenticate@ header for Basic authentication. 2026-06-12 11:22
Defect #44164 (Closed): Edit link is missing or incorrect in Wiki pages with the collapse macro
When using a collapsible section in a Wiki pa ... ected @edit?section=4@) h3. Notes This issue occurs when a section is wrapped inside a @{ ... r indexed when generating section edit links. 2026-06-12 01:02
Patch #44157 (New): Add parent issue as a groupable column in issue query
h2. Problem The parent issue column (@:parent@) in @IssueQuery@ is not available as a grouping option. Users who manage issues with parent-child relationships cannot group issue lists by parent issue, which would be useful for tracking work bro ... s patch adds grouping support for the parent issue column by introducing a @QueryParentIssueColumn@ subclass, following the same pattern ... p/models/query.rb@* Add a new @QueryParentIssueColumn@ class: <pre><code class="ruby"> class QueryParentIssueColumn < QueryColumn def groupable? true end def group_by_statement "#{Issue.table_name}.parent_id" end def group ... @group_by_sort_order@ to handle @QueryParentIssueColumn@, so that grouping sorts by @parent_id ... e_zone) elsif column.is_a?(QueryParent... 2026-06-08 20:34
Defect #44156 (New): Issue with redmine API
Hi, I am sending a API call to redmine to ... api call is like https://abbaabbababa.com//issues/36946-06-26-24190900.json It returns true ... If i open ticket https://abbaabbababa.com//issues/36946 with url https://abbaabbababa.com//issues/36946-06-26-24190900 It works. It's not d ... n be used to verify if ticket exist or not? 2026-06-08 10:13
Feature #44153 (Closed): Include associated projects in issue custom fields API response
This patch adds project scope information to the Custom Fields REST API. For @IssueCustomField@ entries returned by @GET /custom ... the web UI, administrators can configure an issue custom field to be available for all project ... API, improving consistency with the web UI. 2026-06-07 10:25
Defect #44152 (Closed): Custom Fields API doe ... n visible roles for custom fields other than issue custom fields
In the Web UI, role-based visibility can be configured for @IssueCustomField@, @TimeEntryCustomField@, @Projec ... urrently returns the @roles@ array only for @IssueCustomField@. As a result, API clients cannot ... ility settings for custom fields other than @IssueCustomField@ that support role-based visibili ... isibility. The existing API response for @IssueCustomField@ remains unchanged. 2026-06-07 04:53
(26-50/12713)