Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions providers/atlassian/jira/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,18 @@ connection-types:
- hook-class-name: airflow.providers.atlassian.jira.hooks.jira.JiraHook
hook-name: "JIRA"
connection-type: jira
conn-fields:
verify:
label: Verify SSL
schema:
type:
- boolean
- 'null'
default: true
ui-field-behaviour:
hidden-fields:
- schema
- extra

notifications:
- airflow.providers.atlassian.jira.notifications.jira.JiraNotifier
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,13 @@ def get_provider_info():
"hook-class-name": "airflow.providers.atlassian.jira.hooks.jira.JiraHook",
"hook-name": "JIRA",
"connection-type": "jira",
"conn-fields": {
"verify": {
"label": "Verify SSL",
"schema": {"type": ["boolean", "null"], "default": True},
}
},
"ui-field-behaviour": {"hidden-fields": ["schema", "extra"]},
}
],
"notifications": ["airflow.providers.atlassian.jira.notifications.jira.JiraNotifier"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ def get_ui_field_behaviour(cls) -> dict[str, Any]:
"""Return custom UI field behaviour for Atlassian Jira Connection."""
return {
"hidden_fields": ["schema", "extra"],
"relabeling": {},
}


Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/prek/common_prek_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
AIRFLOW_TASK_SDK_SOURCES_PATH = AIRFLOW_TASK_SDK_ROOT_PATH / "src"

# Here we should add the second level paths that we want to have sub-packages in
KNOWN_SECOND_LEVEL_PATHS = ["apache", "atlassian", "common", "cncf", "dbt", "microsoft"]
KNOWN_SECOND_LEVEL_PATHS = ["apache", "atlassian", "common", "cncf", "dbt", "ibm", "microsoft"]

DEFAULT_PYTHON_MAJOR_MINOR_VERSION = "3.10"

Expand Down