Skip to content

Commit

Permalink
🎉 Source Slack bugfix: don't overwrite thread_ts in threads stream (#…
Browse files Browse the repository at this point in the history
…3483)

* setup.py install_requirements updated

* setup.py formatting fix.
slack.md docks update.

* Bump source-slack-singer docker version
  • Loading branch information
htrueman committed May 20, 2021
1 parent 6c96b81 commit f9feb2e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"sourceDefinitionId": "41375467-61ae-4204-8e38-e2b8b7365f23",
"name": "Slack",
"dockerRepository": "airbyte/source-slack-singer",
"dockerImageTag": "0.2.1",
"dockerImageTag": "0.2.2",
"documentationUrl": "https://hub.docker.com/repository/docker/airbyte/source-slack-singer",
"icon": "slack.svg"
}
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
- sourceDefinitionId: 41375467-61ae-4204-8e38-e2b8b7365f23
name: Slack
dockerRepository: airbyte/source-slack-singer
dockerImageTag: 0.2.1
dockerImageTag: 0.2.2
documentationUrl: https://hub.docker.com/repository/docker/airbyte/source-slack-singer
icon: slack.svg
- sourceDefinitionId: 59f1e50a-331f-4f09-b3e8-2e8d4d355f44
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ENV CODE_PATH="source_slack_singer"
ENV AIRBYTE_IMPL_MODULE="source_slack_singer"
ENV AIRBYTE_IMPL_PATH="SourceSlackSinger"

LABEL io.airbyte.version=0.2.1
LABEL io.airbyte.version=0.2.2
LABEL io.airbyte.name=airbyte/source-slack-singer

WORKDIR /airbyte/integration_code
Expand Down
8 changes: 7 additions & 1 deletion airbyte-integrations/connectors/source-slack-singer/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,13 @@
description="Source implementation for Slack API, built on the Singer tap implementation",
author="Airbyte",
author_email="contact@airbyte.io",
install_requires=["tap-slack==1.0.0", "slack-sdk==3.0.0", "airbyte-protocol", "base-singer", "base-python"],
install_requires=[
"tap-slack @ https://github.com/airbytehq/tap-slack/tarball/v1.0.1-airbyte",
"slack-sdk==3.0.0",
"airbyte-protocol",
"base-singer",
"base-python",
],
packages=find_packages(),
package_data={"": ["*.json"]},
)
2 changes: 1 addition & 1 deletion docs/integrations/sources/slack.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

This source can sync data for the [Slack API](https://api.slack.com/). It supports both Full Refresh and Incremental syncs. You can choose if this connector will copy only the new or updated data, or all rows in the tables and columns you set up for replication, every time a sync is run.

This Source Connector is based on a [Singer Tap](https://github.com/singer-io/tap-slack).
This Source Connector is based on a [Singer Tap](https://github.com/airbytehq/tap-slack).

### Output schema

Expand Down

0 comments on commit f9feb2e

Please sign in to comment.