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 Freshdesk: Fix schema types #20416

Merged
merged 11 commits into from
Jan 6, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ COPY source_freshdesk ./source_freshdesk
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=1.0.0
LABEL io.airbyte.version=2.0.0
LABEL io.airbyte.name=airbyte/source-freshdesk
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ acceptance_tests:
- config_path: "secrets/config.json"
# please remove the backward_capability checks bypass, once updated to the newer version
backward_compatibility_tests_config:
disable_for_version: "0.3.8"
disable_for_version: "1.0.0"
basic_read:
tests:
- config_path: "secrets/config.json"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,10 @@
"type": ["null", "integer"]
},
"agent_ids": {
"type": ["null", "integer"]
"type": ["null", "array"],
"items": {
"type": ["null", "integer"]
}
}
}
},
Expand All @@ -152,7 +155,10 @@
"type": ["null", "integer"]
},
"agent_ids": {
"type": ["null", "integer"]
"type": ["null", "array"],
"items": {
"type": ["null", "integer"]
}
}
}
},
Expand All @@ -163,7 +169,10 @@
"type": ["null", "integer"]
},
"agent_ids": {
"type": ["null", "integer"]
"type": ["null", "array"],
"items": {
"type": ["null", "integer"]
}
}
}
},
Expand All @@ -174,7 +183,10 @@
"type": ["null", "integer"]
},
"agent_ids": {
"type": ["null", "integer"]
"type": ["null", "array"],
"items": {
"type": ["null", "integer"]
}
}
}
},
Expand All @@ -185,7 +197,10 @@
"type": ["null", "integer"]
},
"agent_ids": {
"type": ["null", "integer"]
"type": ["null", "array"],
"items": {
"type": ["null", "integer"]
}
}
}
}
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/freshdesk.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ The Freshdesk connector should not run into Freshdesk API limitations under norm

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------------------------------------------|
| 2.0.0 | 2022-12-20 | [20416](https://github.com/airbytehq/airbyte/pull/20416) | Fix `SlaPolicies` stream schema |
| 1.0.0 | 2022-11-16 | [19496](https://github.com/airbytehq/airbyte/pull/19496) | Fix `Contacts` stream schema |
| 0.3.8 | 2022-11-11 | [19349](https://github.com/airbytehq/airbyte/pull/19349) | Do not rely on response.json() when deciding to retry a request |
| 0.3.7 | 2022-11-03 | [18397](https://github.com/airbytehq/airbyte/pull/18397) | Fix base url for v2 API. |
Expand Down