Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Source Jira: change wording for description of array fields #10835

Merged
merged 5 commits into from
May 4, 2022
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@
- name: Jira
sourceDefinitionId: 68e63de2-bb83-4c7e-93fa-a8a9051e3993
dockerRepository: airbyte/source-jira
dockerImageTag: 0.2.18
dockerImageTag: 0.2.19
documentationUrl: https://docs.airbyte.io/integrations/sources/jira
icon: jira.svg
sourceType: api
Expand Down
12 changes: 5 additions & 7 deletions airbyte-config/init/src/main/resources/seed/source_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3822,7 +3822,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-jira:0.2.18"
- dockerImage: "airbyte/source-jira:0.2.19"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/jira"
connectionSpecification:
Expand Down Expand Up @@ -3860,8 +3860,7 @@
examples:
- "PROJ1"
- "PROJ2"
description: "Comma-separated list of Jira project keys to replicate data\
\ for."
description: "List of Jira project keys to replicate data for."
start_date:
type: "string"
title: "Start Date"
Expand All @@ -3877,11 +3876,10 @@
title: "Additional Fields"
items:
type: "string"
description: "Comma-separated list of additional fields to include in replicating\
\ issues."
description: "List of additional fields to include in replicating issues."
examples:
- "Field A"
- "Field B"
- "customfield_10096"
- "customfield_10071"
expand_issue_changelog:
type: "boolean"
title: "Expand Issue Changelog"
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-jira/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ RUN pip install .
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.2.18
LABEL io.airbyte.version=0.2.19
LABEL io.airbyte.name=airbyte/source-jira
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"type": "string"
},
"examples": ["PROJ1", "PROJ2"],
"description": "Comma-separated list of Jira project keys to replicate data for."
"description": "List of Jira project keys to replicate data for."
},
"start_date": {
"type": "string",
Expand All @@ -47,8 +47,8 @@
"items": {
"type": "string"
},
"description": "Comma-separated list of additional fields to include in replicating issues.",
"examples": ["Field A", "Field B"]
"description": "List of additional fields to include in replicating issues.",
"examples": ["customfield_10096", "customfield_10071"]
},
"expand_issue_changelog": {
"type": "boolean",
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/jira.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ The Jira connector should not run into Jira API limitations under normal usage.

| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.2.19 | 2022-05-04 | [\#10835](https://github.com/airbytehq/airbyte/pull/10835) | Change description for array fields |
| 0.2.18 | 2021-12-23 | [\#7378](https://github.com/airbytehq/airbyte/pull/7378) | Adds experimental endpoint Pull Request |
| 0.2.17 | 2021-12-23 | [\#9079](https://github.com/airbytehq/airbyte/pull/9079) | Update schema for `filters` stream + fix fetching `filters` stream |
| 0.2.16 | 2021-12-21 | [\#8999](https://github.com/airbytehq/airbyte/pull/8999) | Update connector fields title/description |
Expand Down