Skip to content

Commit

Permalink
🐛 Source Asana: fix schemas and invalid_config.json (#6402)
Browse files Browse the repository at this point in the history
* Update schemas + update invalid config file

* Add `Changelog` to asana.md + remove CHANGELOG.md

* Bump connector's version + update docs
  • Loading branch information
Zirochkaa authored Sep 24, 2021
1 parent 5551698 commit fe3026d
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 21 deletions.
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 |

0 comments on commit fe3026d

Please sign in to comment.