Quantcast
Channel: YouTrackYouTrack (JT) - Bug and Issue Tracker
Viewing all 74845 articles
Browse latest View live

JT-49876: Don't show checkbox when field is single-valued

0
0
Reporter Anna Zhdan (Anna.Zhdan) Anna Zhdan (Anna.Zhdan)
Created Oct 23, 2018 11:10:55 AM
Updated Nov 13, 2018 3:41:55 PM
Resolved Oct 23, 2018 7:20:37 PM
State Verified
Assignee Daria Vasina (daria.vasina)
Subsystem No Subsystem
Type Bug
Priority Normal
Browser Any Browser
OS Any OS
Fix versions 2018.3.47010
Affected versions Unknown

Allow cards to be assigned to multiple sprints


JT-50211: Manual testing

0
0
Reporter Anna Zhdan (Anna.Zhdan) Anna Zhdan (Anna.Zhdan)
Created Nov 8, 2018 11:27:16 AM
Updated Nov 13, 2018 3:51:01 PM
Resolved Nov 13, 2018 3:51:01 PM
State Fixed
Assignee Mikhail Kapusta (Mikhail.Kapusta)
Subsystem No Subsystem
Type Task
Priority Normal
Fix versions Unscheduled

JT-50284: No '+' signs on agile board if some configuration after creating was required

0
0
Reporter Ekaterina Alekseeva (Ekaterina.Alekseeva) Ekaterina Alekseeva (Ekaterina.Alekseeva)
Created Nov 13, 2018 3:51:49 PM
Updated Nov 13, 2018 3:51:49 PM
State Open
Assignee Anna Zhdan (Anna.Zhdan)
Subsystem Agile Board
Type Bug
Priority Normal
Browser Any Browser
OS Any OS
Fix versions Unscheduled
Affected versions Unknown

build 47103

STR:

  1. Create new board that requires some manual configuration (version-based or custom)
  2. Configure it (set field to identify columns)

ER:
Board is ready to work and '+' signs appeared to start creating new cards on it

AR:
No '+' signs on board. Page refresh helps.

JT-50285: Value is not removed from list of columns

0
0
Reporter Ekaterina Alekseeva (Ekaterina.Alekseeva) Ekaterina Alekseeva (Ekaterina.Alekseeva)
Created Nov 13, 2018 3:58:27 PM
Updated Nov 13, 2018 3:58:27 PM
State Open
Assignee Anna Zhdan (Anna.Zhdan)
Subsystem Agile Board
Type Bug
Priority Normal
Browser Any Browser
OS Any OS
Fix versions Unscheduled
Affected versions Unknown

build 47103

STR:

  1. Create a board that requires manual configuration of field to identify columns (Custom or Version-based)
  2. Go to "Columns and Rows" tab and choose some field for columns (e.g. State)
  3. Click on 'X' to remove some value (e.g. "Verified")

AR:
Corresponding column disappears from board, but not from the list of values

This problem appears only once, reloading page or even closing and reopening board settings helps to fix/prevent it, and only for boards that don't have some predefined columns.

JT-49697: State Transition - autoforward

0
0
Reporter Bödey Ádám (bode71921) Bödey Ádám (bode71921)
Created Oct 13, 2018 1:54:16 PM
Updated Nov 13, 2018 5:23:41 PM
State Open
Assignee Oleg Larshin (Oleg.Larshin)
Subsystem Workflow
Type Support Request
Priority Normal
Browser Chrome
OS Windows 10
Fix versions 2018.2.42223
Affected versions 2018.3.46358

We have a project, which tracks how many hours have been spent the ticket on a day. Because of reasons the main workhours is 8 hour which is between 8:00-16:00. But also someone might stay in the office until 20:00. There is lot of coding behind it, it is a little bit complex too.
In YouTrack 2018.2 Build 42223 I have used autoforward from Submitted to an Open Forwarder which onEnter function if the time is before 16:00 then its going to forward it to Open, and after to Open Night State. It would work out fine.
But in the YouTrack 2018.3 Build 46358 it remains in the Open Forwarder, and does not going to Open / Open night State as it should be.
I tried to look for autoforward in the YouTrack 2018.3 Help documents but i can not find anything about it.

Before 16:00
Submitted -> Open Forwarder -> Open
After 16:00
Submitted -> Open Forwarder -> Open Night

But my questions would be:

  • Is it possible in Statemachine to forward it to the corresponding state depending on what time is it?
  • Also can i autoforward to a targetState which is stored in a variable that can be modified between the trainsition eg: onEnter(),onExit()
  • Is there anything from autoforward in the documents.

There would be my idea which worked at some point in the older build
but in the new one remains in the OpenForwarder

var entities = require('@jetbrains/youtrack-scripting-api/entities');

var forwardTo="Open";

exports.rule = entities.Issue.stateMachine({
  title: workflow.i18n('Define transitions for "State" field with predefined time constraints'),
  fieldName: 'State',
  states: {
    Submitted: {
      initial: true,
      onExit: function(ctx){
        var date = new Date(Date.now());
		
        if (date.getHours() < 16) {
          ctx.issue.fields.OpenTime = Date.now();
          forwardTo = "Open";
        } else {
          ctx.issue.fields.NTS = Date.now();
          forwardTo = "Open Night";          
        }
      },
      transitions: {
        autoforward: {
          targetState: "Open Forwarder",
          after: ONE_SECOND
        }
      }
'Open Forwarder': {    
      transitions: {
        autoforward:{
          targetState: forwardTo,
          after: ONE_SECOND
        }
      }
    },
}
...
...
...

Could you lend me a helping hand?
Also tried this below

var entities = require('@jetbrains/youtrack-scripting-api/entities');

exports.rule = entities.Issue.onChange({
  title: 'Open_forwarder',
  guard: function(ctx) {

    return ctx.issue.fields.becomes(ctx.State.name,ctx.State.OF.name);
  },
  action: function(ctx) {
      var date = new Date(Date.now());
      var forwardTo;
        if (date.getHours() < 16) {
          ctx.issue.fields.OpenTime = Date.now();
          forwardTo = "Open";
        } else {
          ctx.issue.fields.NTS = Date.now();
          forwardTo = "Open Night";          
        }

        ctx.issue.fields.State = ctx.issue.project.findFieldByName(ctx.State.name).findValueByName(forwardTo);
  },
  requirements: {
   State:{
     type: entities.State.fieldType,
     name: "State",
     OF:{
       name: "Open Forwarder"
     }
   }
  }
});

But because of the autoforward, which does not triggers a change in the transaction, so this module would not get triggered.

So once again, do you have any advice about this code, and also a solution to my problem? That would redirect to the corresponding state depending on the time.

Thanks in advance!

JT-50188: REST: do not return in trimmedIssues "placeholders" for invisible issues

0
0
Reporter Ekaterina Alekseeva (Ekaterina.Alekseeva) Ekaterina Alekseeva (Ekaterina.Alekseeva)
Created Nov 6, 2018 2:17:00 PM
Updated Nov 13, 2018 6:01:51 PM
State Open
Assignee Unassigned
Subsystem Single Issue View
Type Bug
Priority Normal
Browser Any Browser
OS Any OS
Fix versions Unscheduled
Affected versions Unknown

build 46972

STR:

  1. Add link to issue with restricted visibility
  2. Log in as user who can't see linked issue

AR:
User can see total count of linked issues (including ones he can't read), and links to such issues look like trying to load (but never loaded). Clicking on "Show more links" also takes no effect in such case.

ER:
Show to user only issues he can see. Counter can be either real (with total count of linked issues) but with message like "You can't see N more linked issues", or it can show only number of issues that user can read.

JT-32696: Add VCS changes entity to workflow

0
0
Reporter Andrey Tigay (andrey.tigay) Andrey Tigay (andrey.tigay)
Created Nov 11, 2015 5:49:30 PM
Updated Nov 13, 2018 6:09:00 PM
State Open
Assignee Alexander Volfman (Alexander.Volfman)
Subsystem Workflow
Type Feature
Priority Normal
Fix versions Backlog

JT-50271: Show blocked email reason in user profile

0
0
Reporter Evgeny Naumenko (jk) Evgeny Naumenko (jk)
Created Nov 12, 2018 4:34:58 PM
Updated Nov 13, 2018 6:40:34 PM
Resolved Nov 13, 2018 6:40:34 PM
State Fixed
Assignee Evgeny Naumenko (jk)
Subsystem Notifications
Type Task
Priority Normal
Fix versions 2018.3.next

JT-50186: Extend user profile

0
0
Reporter Anton Tokarev (hakimaru) Anton Tokarev (hakimaru)
Created Nov 6, 2018 12:25:22 PM
Updated Nov 13, 2018 6:42:11 PM
Resolved Nov 13, 2018 6:42:11 PM
State Duplicate
Assignee Unassigned
Subsystem User Profile
Type Feature
Priority Normal
Fix versions Unscheduled

Please add additional fields to the user profile, such as Phone, Unit, Location, etc.

JT-49989: Cannot mute or edit notification.

0
0
Reporter Jan Burse (janburse2) Jan Burse (janburse2)
Created Oct 29, 2018 2:55:32 PM
Updated Nov 13, 2018 6:42:40 PM
Resolved Nov 13, 2018 6:42:35 PM
State Without verification
Assignee Anastasia Bartasheva (ana.bartasheva)
Subsystem No Subsystem
Type Support Request
Priority Normal
Browser Any Browser
OS Any OS
Fix versions Unscheduled
Affected versions Unknown

I got the following notification. Some weeks before there was already another
notification, the problem is the same now:

IDEA-147206
Customizing Icons for HiDPI Created by you
Relates to IDEA-201348 Cannot use custom hiDPI (@2x) icons for touch bar
IDEA-199448 It's not clear which icon size is acceptable to be set for action
You () received this message because you had enabled notifications for: Reported by me saved search. To unsubscribe, you can mute notifications for this issue or edit your notification preferences. Sincerely yours, YouTrack 2018.3 (build #46698)

When I try the mute notifications link or the edit your notification link, I get the
following error (see screenshot). How can I mute or edit notifications?

JT-49771: Link to Login Change Handler leads to 404

0
0
Reporter Alexander Buturlinov (alexander.buturlinov) Alexander Buturlinov (alexander.buturlinov)
Created Oct 16, 2018 12:16:18 PM
Updated Nov 13, 2018 6:43:53 PM
State Open
Assignee Anna Zhdan (Anna.Zhdan)
Subsystem No Subsystem
Type Bug
Priority Normal
Browser Any Browser
OS Any OS
Fix versions Unscheduled
Affected versions Unknown

STR:

  1. Create an issue and mention an user in description
  2. Change login for the user
  3. Find the corresponding change in the issue history and click user name Login Change Handler

ER: No link for system user
AR: The link leads to 404

JT-48261: auto-recalculation option for reports

0
0
Reporter Mehrdad (indeed_1) Mehrdad (indeed_1)
Created Jul 16, 2018 1:16:44 PM
Updated Nov 13, 2018 6:44:18 PM
State Open
Assignee Alexey Volkov (Alexey.Volkov)
Subsystem Reports
Type Feature
Priority Normal
Fix versions Unscheduled

Hi
please add this feature to Youtrack, that able us can control auto-recalculation.

this is important for us because lead to mistake when add estimation report to dashboard and show old data, and we should refresh each widget on dashboard one by one!

Suggestion: if all widget on dashboard refresh when page load might be good idea.

Thanks,

JT-50028: Send user notifications about app migration

0
0
Reporter Pavel Nikitin (pavel.nikitin) Pavel Nikitin (pavel.nikitin)
Created Oct 29, 2018 6:13:23 PM
Updated Nov 13, 2018 6:56:38 PM
State Open
Assignee Unassigned
Subsystem Konnector App
Type Task
Priority Normal
Fix versions Unscheduled
We need to be able to send a friendly message about migration with an offer to re-install konnector to the installing user

JT-50029: Send authorization messages to authorize methods requiring "user" token

0
0
Reporter Pavel Nikitin (pavel.nikitin) Pavel Nikitin (pavel.nikitin)
Created Oct 29, 2018 6:13:48 PM
Updated Nov 13, 2018 6:59:32 PM
State Open
Assignee Unassigned
Subsystem Konnector App
Type Task
Priority Normal
Fix versions Unscheduled
There can be a situation where the user has hub refresh token, but no user auth token. We need to send authorization links in this case as well

JT-36207: Add links to agile boards to project overview.

0
0
Reporter Anna Zhdan (Anna.Zhdan) Anna Zhdan (Anna.Zhdan)
Created Jun 22, 2016 5:06:26 PM
Updated Nov 13, 2018 7:03:44 PM
State In Progress
Assignee Max Maximov (Maxim.Maximov)
Subsystem Projects
Type Feature
Priority Normal
Fix versions Unscheduled

JT-49760: Exceptions in log on empty database startup

0
0
Reporter Leonid Stryuk (Leonid.Stryuk) Leonid Stryuk (Leonid.Stryuk)
Created Oct 15, 2018 7:16:08 PM
Updated Nov 13, 2018 7:36:15 PM
Resolved Oct 16, 2018 1:41:45 PM
State Verified
Assignee Leonid Stryuk (Leonid.Stryuk)
Subsystem No Subsystem
Type Task
Priority Normal
Fix versions Unscheduled

JT-49856: Command dialog does not closed on cancel

0
0
Reporter Maksim Ryzhikov (maksimrv) Maksim Ryzhikov (maksimrv)
Created Oct 20, 2018 4:59:21 PM
Updated Nov 13, 2018 7:42:39 PM
Resolved Oct 22, 2018 2:45:00 PM
State Verified
Assignee Maksim Ryzhikov (maksimrv)
Subsystem Issue Creation
Type Bug
Priority Normal
Browser Any Browser
OS Any OS
Fix versions 2018.3.47010
Affected versions Unknown

STR:

  • Press on [Create Issue]
  • Select project [Business Trip]
  • Click on custom field [Destination]
  • Select value [Conference]
  • Command dialog should be opened after previous step so press [Cancel] in command dialog

ER: Command dialog is closed
AR: Command dialog is open

JT-48717

JT-49894: Ctrl+Alt+J no longer works in the issue description text area

0
0
Reporter Yegor Yarko (yaegor) Yegor Yarko (yaegor)
Created Oct 23, 2018 6:26:16 PM
Updated Nov 13, 2018 7:45:59 PM
Resolved Oct 24, 2018 5:16:25 PM
State Verified
Assignee Ekaterina Zaikina (Ekaterina_Zaikina)
Subsystem Single Issue View
Type Bug
Priority Normal
Browser Chrome
OS Windows 7
Fix versions Unscheduled
Affected versions Unknown

JetBrains Bug & Issue Tracker YouTrack 2018.3
Build 46358 Tue, Oct 9, 2018, 7:20:25 PM UTC

Ctrl+Alt+J no longer invokes "Apply Command" dialog for me if I open issue for editing and the caret is in the Description field.

JT-50147: No is shown on /issues page with no context selected

0
0
Reporter Evgeny Naumenko (jk) Evgeny Naumenko (jk)
Created Nov 2, 2018 4:31:31 PM
Updated Nov 13, 2018 7:52:45 PM
Resolved Nov 2, 2018 9:26:40 PM
State Verified
Assignee Evgeny Naumenko (jk)
Subsystem Issue List
Type Bug
Priority Normal
Browser Any Browser
OS Any OS
Fix versions 2018.3.47010
Affected versions 2018.3

JT-50287: Youtrack Docker on Windows Configuration wizard hangs

0
0
Reporter Alexander Bobnev (phoenixdw) Alexander Bobnev (phoenixdw)
Created Nov 13, 2018 7:12:17 PM
Updated Nov 13, 2018 8:00:36 PM
Resolved Nov 13, 2018 8:00:36 PM
State Fixed
Assignee Alexey Barsov (alexey_barsov)
Subsystem No Subsystem
Type Support Request
Priority Normal
Browser Chrome
OS Any OS
Fix versions Unscheduled
Affected versions 2018.3.47078

What steps will reproduce the problem?

  1. Fresh docker on Windows install Version 18.06.1-ce-win73 (19507)
  2. pulled YouTrack fresh image 2018.3.47078
  3. PS C:\Users\user> docker run -it --name youtrackSite10 -v D:\youtracksite\data:/opt/youtrack/data -v D:\youtracksite\conf:/opt/youtrack/conf -v D:\youtracksite\logs:/opt/youtrack/logs -v D:\youtracksite\backups:/opt/youtrack/backups -p 8080:8080 jetbrains/youtrack:2018.3.47078

What is the expected result?
Configuration wizard started and allowed to set up some parameters. Then launched YouTrack
What happens instead?
"Setting up JetBrains YouTrack 2018.3
Please be patient and do not close this page until the setup is complete"
Hangs forever

Please provide any additional information below.
Attach a code sample as text, a screenshot or screencast if possible

Viewing all 74845 articles
Browse latest View live




Latest Images