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

Sync with upstream fork #8

Merged
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,28 @@
* [#82](https://github.com/singer-io/tap-google-ads/pull/82)


## v1.4.0
* Updates API version to 12
* Updates pkg version to 19.0.0
* Removes `gmail_ad` fields from `ad_performance_report` as they are no longer available after API version bump.
* [#76](https://github.com/singer-io/tap-google-ads/pull/76)

## v1.3.4
* Updates API Version to 11
* Updates pkg version to 17.0.0
* [#79](https://github.com/singer-io/tap-google-ads/pull/79)

## v1.6.0
* Updates API version to 15
* Updates pkg version to 22.1.0
* [#86](https://github.com/singer-io/tap-google-ads/pull/86)

## v1.5.0
* Updates API version to 13
* Updates pkg version to 21.0.0
* [#82](https://github.com/singer-io/tap-google-ads/pull/82)


## v1.4.0
* Updates API version to 12
* Updates pkg version to 19.0.0
Expand Down
6 changes: 3 additions & 3 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-google-ads',
version='1.5.0',
version='1.6.0',
description='Singer.io tap for extracting data from the Google Ads API',
author='Stitch',
url='http://singer.io',
Expand All @@ -13,8 +13,8 @@
'singer-python==5.12.2',
'requests==2.26.0',
'backoff==1.8.0',
'google-ads==21.0.0',
'protobuf==4.22.3',
'google-ads==22.1.0',
'protobuf==4.24.4',

# Necessary to handle gRPC exceptions properly, documented
# in an issue here: https://github.com/googleapis/python-api-core/issues/301
Expand Down
10 changes: 5 additions & 5 deletions tap_google_ads/report_definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1734,11 +1734,11 @@
"segments.external_conversion_source",
"segments.month",
"segments.product_aggregator_id",
"segments.product_bidding_category_level1",
"segments.product_bidding_category_level2",
"segments.product_bidding_category_level3",
"segments.product_bidding_category_level4",
"segments.product_bidding_category_level5",
"segments.product_category_level1",
"segments.product_category_level2",
"segments.product_category_level3",
"segments.product_category_level4",
"segments.product_category_level5",
"segments.product_brand",
"segments.product_channel",
"segments.product_channel_exclusivity",
Expand Down
2 changes: 1 addition & 1 deletion tap_google_ads/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

LOGGER = singer.get_logger()

API_VERSION = "v13"
API_VERSION = "v15"

API_PARAMETERS = {
"omit_unselected_resource_names": "true"
Expand Down