Source Trello: enable specifying board ids in configuration (bump version) (#8259)
* bump version 0.1.2 -> 0.1.3 * trello.md updated * fix: 'Start date' -> 'Start Date' * source_specs.yaml updated Signed-off-by: Sergey Chvalyuk <grubberr@gmail.com>
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
"sourceDefinitionId": "8da67652-004c-11ec-9a03-0242ac130003",
|
||||
"name": "Trello",
|
||||
"dockerRepository": "airbyte/source-trello",
|
||||
"dockerImageTag": "0.1.2",
|
||||
"dockerImageTag": "0.1.3",
|
||||
"documentationUrl": "https://docs.airbyte.io/integrations/sources/trello",
|
||||
"icon": "trelllo.svg"
|
||||
}
|
||||
|
||||
@@ -665,7 +665,7 @@
|
||||
- name: Trello
|
||||
sourceDefinitionId: 8da67652-004c-11ec-9a03-0242ac130003
|
||||
dockerRepository: airbyte/source-trello
|
||||
dockerImageTag: 0.1.2
|
||||
dockerImageTag: 0.1.3
|
||||
documentationUrl: https://docs.airbyte.io/integrations/sources/trello
|
||||
icon: trelllo.svg
|
||||
sourceType: api
|
||||
|
||||
@@ -6108,7 +6108,7 @@
|
||||
- "overwrite"
|
||||
- "append"
|
||||
- "append_dedup"
|
||||
- dockerImage: "airbyte/source-trello:0.1.2"
|
||||
- dockerImage: "airbyte/source-trello:0.1.3"
|
||||
spec:
|
||||
documentationUrl: "https://docs.airbyte.io/integrations/sources/trello"
|
||||
connectionSpecification:
|
||||
@@ -6135,12 +6135,21 @@
|
||||
airbyte_secret: true
|
||||
start_date:
|
||||
type: "string"
|
||||
title: "Start date"
|
||||
title: "Start Date"
|
||||
pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}.[0-9]{3}Z$"
|
||||
description: "UTC date and time in the format 2017-01-25T00:00:00Z. Any\
|
||||
\ data before this date will not be replicated."
|
||||
examples:
|
||||
- "2021-03-01T00:00:00.000Z"
|
||||
board_ids:
|
||||
type: "array"
|
||||
items:
|
||||
type: "string"
|
||||
pattern: "^[0-9a-fA-F]{24}$"
|
||||
title: "Trello board IDs"
|
||||
description: "IDs of the boards from which you'd like to replicate data.\
|
||||
\ If left empty, data from all boards to which you have access will be\
|
||||
\ replicated."
|
||||
supportsNormalization: false
|
||||
supportsDBT: false
|
||||
supported_destination_sync_modes: []
|
||||
|
||||
@@ -29,5 +29,5 @@ COPY source_trello ./source_trello
|
||||
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
|
||||
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
|
||||
|
||||
LABEL io.airbyte.version=0.1.2
|
||||
LABEL io.airbyte.version=0.1.3
|
||||
LABEL io.airbyte.name=airbyte/source-trello
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
},
|
||||
"start_date": {
|
||||
"type": "string",
|
||||
"title": "Start date",
|
||||
"title": "Start Date",
|
||||
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}.[0-9]{3}Z$",
|
||||
"description": "UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated.",
|
||||
"examples": ["2021-03-01T00:00:00.000Z"]
|
||||
|
||||
@@ -49,6 +49,7 @@ Please read [How to get your APIs Token and Key](https://developer.atlassian.com
|
||||
|
||||
| Version | Date | Pull Request | Subject |
|
||||
| :--- | :--- | :--- | :--- |
|
||||
| 0.1.3 | 2021-11-25 | [8183](https://github.com/airbytehq/airbyte/pull/8183) | Enable specifying board ids in configuration |
|
||||
| 0.1.2 | 2021-11-08 | [7499](https://github.com/airbytehq/airbyte/pull/7499) | Remove base-python dependencies |
|
||||
| 0.1.1 | 2021-10-12 | [6968](https://github.com/airbytehq/airbyte/pull/6968) | Add oAuth flow support |
|
||||
| 0.1.0 | 2021-08-18 | [5501](https://github.com/airbytehq/airbyte/pull/5501) | Release Trello CDK Connector |
|
||||
|
||||
Reference in New Issue
Block a user