Jira 10.6 への準備

このドキュメンテーションは、既存のアプリと Jira Software Data Center 10.6Jira Service Management Data Center 10.6 との互換性を確認したい Jira 開発者向けです。

最新バージョン

ここでは最新の EAP についての情報をご案内します。

アプリケーション

日付

数値

バージョン (Maven)

ダウンロード

Jira Software


 

 10.6.0-EAP01

10.6.0-m0001

ソース ファイル

Jira Service Management


 

 10.6.0-EAP01

10.6.0-m0001

ソース ファイル

変更の概要

このセクションでは、導入予定の変更の概要を紹介します。アプリへの影響の検討にお役立てください。アップデートの準備が整ったら、実装のタイミングとマイルストーンが表示されます。

Jira Software and Jira Service Management common features implemented in this EAP:


Jira Software と Jira Service Management の共通機能

Status: IMPLEMENTED (EAP 01)

We're introducing a new REST API endpoint that makes it easier to create reciprocal issue links between different Jira instances. Previously, you needed to send two separate REST requests to achieve this. Now, with the following endpoint, you can establish these links with a single request.

(POST) {source_jira_url}/rest/api/2/issue/remotelink/reciprocal

This endpoint accepts a JSON payload specifying the source and target Jira instances, along with the necessary details for the link. To see the data format of this API endpoint, expand the content below.

Check the data format of the new API endpoint
{
    "source": {
        "application": {
            "type": "com.atlassian.jira",
            "name": "{name_of_target_jira_instance}"
        },
        "globalId": "appId={id_of_application_link_to_target_instance}&issueId={id_of_target_issue}"
        "relationship": "{relationship}",
        "object": {
            "url": "{url_of_target_issue}", // url doesn't have to point to target issue
            "title": "{title_of_target_issue}", // title doesn't have to be target issue's title
            "summary": "{summary_of_target_issue}", // summary doesn't have to be target issue's summary
            "icon": { // icon isn't a mandatory field
                "url16x16": "{url_of_target_issue_type_icon}",
                "title": "{title_of_target_issue_type_icon}" // title doesn't have to be target issue type's title
            },
            "status": { // status isn't a mandatory field
                "resolved": "{true/false}",
                "icon": { // icon isn't a mandatory field
                    "url16x16": "{url_of_target_status_icon}",
                    "title": "{title_of_target_status_icon}"
                }
            }
        }
    },
    "target": {
        "application": {
            "type": "com.atlassian.jira",
            "name": "{name_of_source_jira_instance}"
        },
        "globalId": "appId={id_of_application_link_to_source_instance}&issueId={id_of_source_issue}"
        "relationship": "{relationship}",
        "object": {
            "url": "{url_of_source_issue}", // url doesn't have to point to source issue
            "title": "{title_of_source_issue}", // title doesn't have to be source issue's title
            "summary": "{summary_of_source_issue}", // summary doesn't have to be source issue's summary
            "icon": { // icon isn't a mandatory field
                "url16x16": "{url_of_source_issue_type_icon}",
                "title": "{title_of_source_issue_type_icon}" // title doesn't have to be source issue type's title
            },
            "status": { // status isn't a mandatory field
                "resolved": "{true/false}",
                "icon": { // icon isn't a mandatory field
                    "url16x16": "{url_of_source_status_icon}",
                    "title": "{title_of_source_status_icon}"
                }
            }
        }
    }
}


非アクティブとしてマークされた削除済みユーザーの削除

Status:IMPLEMENTED (EAP 01)

If users are deleted externally, they remain marked as inactive in Jira. You can now remove these users directly from the User management view. Learn how to remove a user

この機能は既定でオンになっています。オフにするには、com.atlassian.jira.user.allowDeleteExternallyDeletedUsers 機能フラグを無効にします。


最終更新日 2025 年 4 月 3 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.