Search
Results (12707)
- 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.
- 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@
- 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.
- 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
- 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.
- 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
- 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.
- 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
- 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.
- 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. >
- 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.
- 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>
- 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.
- 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.
- 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.
- 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...
- 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?
- 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.
- 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.
- Defect #44132 (New): Project creation returns ... rrent project create/destroy on MySQL/MariaDB
- Note: the bug report details were created with Claude Code after I ran into the issue when trying to make some updates to my redmi ... 5;set rewrites is *exactly the situation the Issue nested set already documents as broken* and ... ry lock*: <pre> # lib/redmine/nested_set/issue_nested_set.rb:171-194 (mysql branch) elsif ... o deadlock errors all the time otherwise. Issue.with_advisory_lock!("lock_issues", timeout_seconds: 30) do ... yie ... ted set the same advisory-lock guard the Issue nested set already uses (the @with_advisory_ ... tedSet#lock_nested_set@ to take a block (as @IssueNestedSet#lock_nested_set@ does) and, on MySQ ... global tree (no @root_id@ partitioning like issues), one global advisory lock (@"lock_projects ... ic, consistent with the existing comment in @issue_nested_set.rb@. * Reproduced against the pu ... full run fail with this 500, varying by run.
- Feature #44129 (Closed): Allow relative default values for date format custom fields
- Currently, date format custom fields can only ... * Three days before today For example, an issue custom field named "Response deadline" can b ... ult offset of @7@. When a user creates a new issue on May 1, the field is pre-filled with May 8 ... id gray;}.date-format-cf-relative%402x.png!
- Feature #44121 (New): Automatically update relative time labels via JavaScript
- Currently, relative time labels such as "3 mi ... es that remain open for a long time, such as issue pages, activity pages. !{width:600px}clipboard-202605262231-sjmxg.png!
- Patch #44116 (Reopened): Enable parallel test execution in GitHub CI
- This patch enables parallel tests by default. ... cts between parallel tests. h4. Fix flaky IssueNestedSetConcurrencyTest This stabilizes @IssueNestedSetConcurrencyTest@ by initializing Active Record connections before running concurrent issue updates. This avoids random failures like th ... y parallel test execution. <pre> Error: IssueNestedSetConcurrencyTest#test_concurrent_subt ... ey into hash during iteration test/unit/issue_nested_set_concurrency_test.rb:90:in `block ... subtask_removal' bin/rails test test/unit/issue_nested_set_concurrency_test.rb:76 </pre> ... "TimeEntryTest#test_should_not_accept_closed_issue":https://github.com/hidakatsuya/redmine/acti ... TimeEntryTest#test_should_not_accept_closed_issue [test/unit/time_entry_test.rb:186]: --- exp ... @@ -1 +1 @@ -"Cannot log time on a closed issue...
- Patch #44112 (New): Improve initials avatar t ... wo letters of the firstname for Korean locale
- Currently, the initials avatar extracts cha ... it if you could review and apply this patch.
- Patch #44073 (Closed): TimeEntryTest#test_should_not_accept_closed_issue fails randomly depending on locale
- TimeEntryTest#test_should_not_accept_closed_issue may fail if another test changes the locale ... TimeEntryTest#test_should_not_accept_closed_issue [test/unit/time_entry_test.rb:186]: --- exp ... @@ -1 +1 @@ -"Cannot log time on a closed issue" +"Impossibile registrare il tempo su una s ... end def test_should_not_accept_closed_issue + set_language_if_valid 'en' with_settings :timelog_accept_closed_issues => '0' do project = Project.find(1) ... .generate project: project </code></pre>