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 Facebook Pages: removed deprecated field live_encoders from Page stream #9032

Merged
merged 3 commits into from
Dec 23, 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 @@ -182,7 +182,7 @@
- name: Facebook Pages
sourceDefinitionId: 010eb12f-837b-4685-892d-0a39f76a98f5
dockerRepository: airbyte/source-facebook-pages
dockerImageTag: 0.1.5
dockerImageTag: 0.1.6
documentationUrl: https://hub.docker.com/r/airbyte/source-facebook-pages
icon: facebook.svg
sourceType: api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1579,7 +1579,7 @@
oauthFlowInitParameters: []
oauthFlowOutputParameters:
- - "access_token"
- dockerImage: "airbyte/source-facebook-pages:0.1.5"
- dockerImage: "airbyte/source-facebook-pages:0.1.6"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/facebook-pages"
connectionSpecification:
Expand Down
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.5
LABEL io.airbyte.version=0.1.6
LABEL io.airbyte.name=airbyte/source-facebook-pages
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,6 @@
# "insights_exports", Tried accessing nonexisting field (insights_exports) on node type (Page)
"instagram_accounts",
"likes",
"live_encoders",
"live_videos",
"locations",
"nativeoffers",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1554,39 +1554,6 @@
}
}
},
"live_encoders": {
"type": ["object", "null"],
"properties": {
"data": {
"type": ["array", "null"],
"items": {
"$ref": "liveencoder.json"
}
},
"paging": {
"type": ["object", "null"],
"properties": {
"previous": {
"type": ["string", "null"]
},
"next": {
"type": ["string", "null"]
},
"cursors": {
"type": "object",
"properties": {
"before": {
"type": ["string", "null"]
},
"after": {
"type": ["string", "null"]
}
}
}
}
}
}
},
"live_videos": {
"type": ["object", "null"],
"properties": {
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/facebook-pages.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ You can easily get the page id from the page url. For example, if you have a pag

| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.1.6 | 2021-12-22 | [9032](https://github.com/airbytehq/airbyte/pull/9032) | Remove deprecated field `live_encoders` from Page stream |
| 0.1.5 | 2021-11-26 | [8267](https://github.com/airbytehq/airbyte/pull/) | updated all empty objects in schemas for Page and Post streams |
| 0.1.4 | 2021-11-26 | [](https://github.com/airbytehq/airbyte/pull/) | Remove unsupported insights_export field from Pages request |
| 0.1.3 | 2021-10-28 | [7440](https://github.com/airbytehq/airbyte/pull/7440) | Generate Page token from config access token |
Expand Down