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

Upgrade facebook_business SDK to v19.0.0 #238

Merged
merged 1 commit into from
Mar 6, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.20.1
* Bump facebook_business SDK to v19.0.0 [#238](https://github.com/singer-io/tap-facebook/pull/238)

## 1.20.0
* Run on python 3.11.7 [#237](https://github.com/singer-io/tap-facebook/pull/237)

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup

setup(name='tap-facebook',
version='1.20.0',
version='1.20.1',
description='Singer.io tap for extracting data from the Facebook Ads API',
author='Stitch',
url='https://singer.io',
Expand All @@ -13,7 +13,7 @@
'attrs==17.3.0',
'backoff==2.2.1',
'pendulum==1.2.0',
'facebook_business==17.0.2',
'facebook_business==19.0.0',
'requests==2.20.0',
'singer-python==6.0.0',
],
Expand Down
2 changes: 1 addition & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class TestClient():
def __init__(self):
self.base_url = 'https://graph.facebook.com'
self.api_version = 'v18.0'
self.api_version = 'v19.0'
self.account_id = os.getenv('TAP_FACEBOOK_ACCOUNT_ID')
self.access_token = os.getenv('TAP_FACEBOOK_ACCESS_TOKEN')
self.account_url = f"{self.base_url}/{self.api_version}/act_{self.account_id}"
Expand Down