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 Asana: fix schemas and invalid_config.json #6402

Merged
merged 3 commits into from
Sep 24, 2021
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 @@ -2,6 +2,6 @@
"sourceDefinitionId": "d0243522-dccf-4978-8ba0-37ed47a0bdbf",
"name": "Asana",
"dockerRepository": "airbyte/source-asana",
"dockerImageTag": "0.1.1",
"dockerImageTag": "0.1.2",
"documentationUrl": "https://docs.airbyte.io/integrations/sources/asana"
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
- sourceDefinitionId: d0243522-dccf-4978-8ba0-37ed47a0bdbf
name: Asana
dockerRepository: airbyte/source-asana
dockerImageTag: 0.1.1
dockerImageTag: 0.1.2
documentationUrl: https://docs.airbyte.io/integrations/sources/asana
sourceType: api
- sourceDefinitionId: 686473f1-76d9-4994-9cc7-9b13da46147c
Expand Down
4 changes: 0 additions & 4 deletions airbyte-integrations/connectors/source-asana/CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-asana/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.1.1
LABEL io.airbyte.version=0.1.2
LABEL io.airbyte.name=airbyte/source-asana
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"todo-wrong-field": "this should be an incomplete config file, used in standard tests"
"access_token": "<wrong_access_token>"
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"type": ["null", "string"]
},
"created_at": {
"type": ["null", "array"],
"type": ["null", "string"],
"format": "date-time"
},
"project": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": ["null", "string"]
},
"created_at": {
"type": ["null", "array"],
"type": ["null", "string"],
"format": "date-time"
},
"created_by": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@
"type": ["null", "string"]
},
"text_value": {
"type": ["null", "boolean"]
"type": ["null", "string"]
},
"type": {
"type": ["null", "string"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,19 @@
}
},
"workspaces": {
"type": ["null", "object"],
"properties": {
"gid": {
"type": ["null", "string"]
},
"resource_type": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"gid": {
"type": ["null", "string"]
},
"resource_type": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
}
}
}
}
Expand Down
8 changes: 8 additions & 0 deletions docs/integrations/sources/asana.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,11 @@ The Asana connector should not run into Asana API limitations under normal usage
Please follow these [steps](https://developers.asana.com/docs/personal-access-token)
to obtain Personal Access Token for your account.


## Changelog

| Version | Date | Pull Request | Subject |
| :------ | :-------- | :----- | :------ |
| 0.1.2 | 2021-09-24 | [6402](https://github.com/airbytehq/airbyte/pull/6402) | Fix SAT tests: update schemas and invalid_config.json file |
| 0.1.1 | 2021-06-09 | [3973](https://github.com/airbytehq/airbyte/pull/3973) | Add entrypoint and bump version for connector |
| 0.1.0 | 2021-05-25 | [3510](https://github.com/airbytehq/airbyte/pull/3510) | New Source: Asana |