Skip to content

Commit 40194c6

Browse files
authored
🐛 Source Slack schema and retry function (#9575)
* remove datetime from bot-profile channel_msgs * correct retry-after * return retry-after * bump connector version
1 parent 86b506f commit 40194c6

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

airbyte-config/init/src/main/resources/config/STANDARD_SOURCE_DEFINITION/c2281cee-86f9-4a86-bb48-d23286b4c7bd.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"sourceDefinitionId": "c2281cee-86f9-4a86-bb48-d23286b4c7bd",
33
"name": "Slack",
44
"dockerRepository": "airbyte/source-slack",
5-
"dockerImageTag": "0.1.13",
5+
"dockerImageTag": "0.1.14",
66
"documentationUrl": "https://docs.airbyte.io/integrations/sources/slack",
77
"icon": "slack.svg"
88
}

airbyte-config/init/src/main/resources/seed/source_definitions.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@
669669
- name: Slack
670670
sourceDefinitionId: c2281cee-86f9-4a86-bb48-d23286b4c7bd
671671
dockerRepository: airbyte/source-slack
672-
dockerImageTag: 0.1.13
672+
dockerImageTag: 0.1.14
673673
documentationUrl: https://docs.airbyte.io/integrations/sources/slack
674674
icon: slack.svg
675675
sourceType: api

airbyte-config/init/src/main/resources/seed/source_specs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7151,7 +7151,7 @@
71517151
supportsNormalization: false
71527152
supportsDBT: false
71537153
supported_destination_sync_modes: []
7154-
- dockerImage: "airbyte/source-slack:0.1.13"
7154+
- dockerImage: "airbyte/source-slack:0.1.14"
71557155
spec:
71567156
documentationUrl: "https://docs.airbyte.io/integrations/sources/slack"
71577157
connectionSpecification:

airbyte-integrations/connectors/source-slack/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ RUN pip install .
1616
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
1717
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
1818

19-
LABEL io.airbyte.version=0.1.13
19+
LABEL io.airbyte.version=0.1.14
2020
LABEL io.airbyte.name=airbyte/source-slack

airbyte-integrations/connectors/source-slack/source_slack/schemas/channel_messages.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@
3838
"type": ["null", "string"]
3939
},
4040
"updated": {
41-
"type": ["null", "string"],
42-
"format": "date-time"
41+
"type": ["null", "string"]
4342
}
4443
},
4544
"type": ["null", "object"]

docs/integrations/sources/slack.md

+1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ We recommend creating a restricted, read-only key specifically for Airbyte acces
111111

112112
| Version | Date | Pull Request | Subject |
113113
| :--- | :--- | :--- | :--- |
114+
| 0.1.14 | 2022-01-26 | [9575](https://github.com/airbytehq/airbyte/pull/9575) | Correct schema |
114115
| 0.1.13 | 2021-11-08 | [7499](https://github.com/airbytehq/airbyte/pull/7499) | Remove base-python dependencies |
115116
| 0.1.12 | 2021-10-07 | [6570](https://github.com/airbytehq/airbyte/pull/6570) | Implement OAuth support with OAuth authenticator |
116117
| 0.1.11 | 2021-08-27 | [5830](https://github.com/airbytehq/airbyte/pull/5830) | Fixed sync operations hang forever issue |

0 commit comments

Comments
 (0)