jira

Jira工作流状态的属性

梦想与她 提交于 2019-12-05 04:28:37
某个状态时,修改其权限。如何实现呢? 首先设置工作流,完成后修改属性值。 查看工作流-》选中步骤名称-》属性-》添加属性值,属性关键字为jira.permission.edit.group,属性值denied 注:详细的属性如下。 格式:jira.permission.[subtasks.]{permission}.{type}[.suffix] subtasks : 可选,如果想要把这个权限继承到子任务中的话就写上这个选项。 permission : JIRA对应的权限类的缩写,下面是基于JIRA4.2的可用权限类缩写列表,这个就不一一翻译了,相信如果对JIRA有一定的了解都应该知道对应的权限是什么。 admin, use, sysadmin, project, browse, create, edit, scheduleissue, assign, assignable, attach, resolve, close, comment, delete, work, worklogdeleteall, worklogdeleteown, worklogeditall, worklogeditown, link, sharefilters, groupsubscriptions, move, setsecurity, pickusers, viewversioncontrol

关于开发流程及团队规范化的一些经验总结

谁都会走 提交于 2019-12-05 03:49:55
一、开发前: 开发模式采用流行的敏捷流程极限编程模式(XP)。 计划任务:根据市场客户需求了及现有的开发能力制定版本迭代周期和开发需求,如两到三周一次版本发布,再后期推动中不断修正。 1. 需求:由项目经理或产品经理编写需要说明书(PRD),让测试和开发明确开发需求(用户故事)。 2. 估算工时:先由各模块的开发组长根据开发人员的技术特点分发开发任务(用户故事),开发人员再对每个用户故事进行估算,先从高优先级开始估算。如果在估算的时候,感 到有一些故事太大,不容易进行估算,或者是估算的结果超过 2 人/周,那么就应该对其 进行分解,拆成 2 个或者多个小故事。同时项目启动时召开需求评审会,会上讨论需求, 技术可行性分析 及其他部门的配合等问题。 3. 迭代周期: 根据项目实际进行时间节点的评估,一般以 2-3 周时间为宜。 二、开发中: 建立及时反馈机制,如两三天一次小型沟通会,让项目经理、产品经理、开发组长、开 发成员之间了解到目前项目开发的进度情况。有条件可以利用好禅道或 JIRA 等项目管 理系统来提高效率。开发人员每天及时上传代码到代码托管平台如码云或自有的服务器平台,及时备份。 小型持续发布:根据开发周期,开发人员在完成一个功能模块后,可以持续先发布一个功能 完好的测试版本,方便测试及时反馈问题和优化建议。 三、开发后: 项目总结复盘会:做好上个迭代中的问题总结及经验总结

TFS vs. JIRA/Bamboo/SVN [closed]

假装没事ソ 提交于 2019-12-05 03:49:51
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . this week I participated a presentation of the 2008 TFS. Currently we are using Jira and Svn (and maybe Bamboo). What solution to you prefer? If you're just using TFS for source control and nothing else (which, btw, is overkill in the

Public issues in JIRA

好久不见. 提交于 2019-12-05 03:10:39
Is there a way to make issues publicly viewable in JIRA for a particular project? By public I mean that it is not required to login to view them. All other projects should stay private. Create a specific permission scheme for your 'public project' Grant anyone browse rights Associate the new or modified permission scheme to the project(s) you want to open up. That's it. Francis 来源: https://stackoverflow.com/questions/5393853/public-issues-in-jira

Updating Jira tickets from Jenkins workflow (jenkinsfile)

流过昼夜 提交于 2019-12-05 01:08:15
问题 How can I update a jira issue from within a Jenkinsfile (jenkins-worflow/pipeline)? Is there a way I could use the Jira Issue Updater plugin as a step in the Jenkinsfile? I know I could use the Jira RestAPI, but I'm trying to figure out if I can re-use the functionality provided by the jira-updater-issue. What I'm looking for is a something similar to the example below calling Junit archiver, and atifact archiver, but calling jira updater. node { git url: 'https://github.com/jglick/simple

How to make an image clickable in jira comment, so it pops up as if you click on attached image in attachment area?

时间秒杀一切 提交于 2019-12-04 20:37:28
问题 I'm talking desktop browser experience, e.g. chrome. In jira, if I attach the image I can use it in my comment - and it's great! I usually use width=800px so the whole image can be seen in the comment. So I can write something like this: Here's the screenshot !my-screenshot-image.jpg|width=600px! The problem is that sometimes screenshot is too big and when shrunk to smaller size, e.g. 600px, is not readable . When you click on the image in attached files area then it pops up and this is what

Getting a Jira Issue via OAuth Authentication using Postman

半腔热情 提交于 2019-12-04 18:44:41
I am trying to GET an issue in Jira using POSTMAN. I have selected Type as OAuth 1.0. For that it is asking me some fields mentioned below. I have generated Token and Token Secret which I am passing to it. I have also configured my generic application to Jira in Application links. I am not aware of what to be passed in Consumer Secret and Signature Method (what should be the signature method). I am currently selecting HMAC-SHA1. For rest of the fields it is generating values based on the parameters passed above. Consumer Key : hardcoded-consumer Consumer Secret : ?? (What should I pass here)

How to get all work logs for a period of time from the Jira REST API?

て烟熏妆下的殇ゞ 提交于 2019-12-04 17:52:56
问题 I'm writing an application using PHP and the Jira REST API which is required to generate a report for a particular period of time with the accumulation of hours spent by a person on a particular project. For this I will need a call which will give something like this. e.g: For the period 01/01/2012 - 31/01/2012 give me the worklogs for project X. The method I found so far, was to get the updated issues after the start date and filter the worklogs for each issue by the period again. Is there a

[漏洞复现]Jira存在未授权服务端模板注入远程代码执行

早过忘川 提交于 2019-12-04 15:10:48
0x01 漏洞描述 Jira是由Atlassian公司出品的一款项目与事务跟踪工具,被广泛应用于缺陷跟踪、客户服务、需求收集、流程审批、任务跟踪、项目跟踪和敏捷管理等工作领域。 2019年7月12日根据安全情报得知Atlassian Jira Server和Jira Data Center存在服务端模板注入远程代码执行漏洞。成功利用此漏洞的攻击者可对运行受影响版本的Jira Server或Jira Data Center的服务器执行任意命令,从而获取服务器权限,严重危害网络资产 0x02 CVE编号 CVE-2019-11581 0x03 漏洞威胁等级 高危 0x04 影响范围 AtlassianJira 4.4.x AtlassianJira 5.x.x AtlassianJira 6.x.x AtlassianJira 7.0.x AtlassianJira 7.1.x AtlassianJira 7.2.x AtlassianJira 7.3.x AtlassianJira 7.4.x AtlassianJira 7.5.x AtlassianJira 7.6.x < 7.6.14 AtlassianJira 7.7.x AtlassianJira 7.8.x AtlassianJira 7.9.x AtlassianJira 7.10.x AtlassianJira 7

How do I retrieve issues of specific status with JQL

谁都会走 提交于 2019-12-04 13:47:22
Entering a url, or running with curl, like: https://<myurl>/rest/api/2/search?jql=project=<myproject>&status=closed&fields=id,key,status,project&maxResults=5 returns me 5 items in my project but with all statuses. For some reason I can't query for a specific status. The output (part of it) is: { "expand": "schema,names", "startAt": 0, "maxResults": 5, "total": 727, "issues": [ { "expand": "editmeta,renderedFields,transitions,changelog,operations", "id": "79577", "self": "https://<myurl>/rest/api/2/issue/79577", "key": "<myproject>-774", "fields": { "project": { "self": "https://<myurl>/rest