Skip to content
Open
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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.1.4
* Dependabot update [#82](https://github.com/singer-io/tap-google-analytics/pull/82)

## 1.1.3
* Allow non-valid datetime strings in the date fields, specifically to handle the case where a report's row limit is reached. [#75](https://github.com/singer-io/tap-google-analytics/pull/75)
* More on Google's row limits [here](https://support.google.com/analytics/answer/9309767).
Expand Down Expand Up @@ -89,4 +92,4 @@
* Handles top-level exceptions through Singer function [#14](https://github.com/singer-io/tap-google-analytics/pull/11)

## 0.2.0
* Adds a 'report_definitions' config parameter to add support for syncing multiple reports [#11](https://github.com/singer-io/tap-google-analytics/pull/11)
* Adds a 'report_definitions' config parameter to add support for syncing multiple reports [#11](https://github.com/singer-io/tap-google-analytics/pull/11)
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@

setup(
name="tap-google-analytics",
version="1.1.3",
version="1.1.4",
description="Singer.io tap for extracting data",
author="Stitch",
url="http://singer.io",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_google_analytics"],
install_requires=[
"singer-python==5.9.0",
"requests==2.22.0",
"requests==2.31.0",
"backoff==1.8.0",
"jwt==0.6.1"
],
Expand All @@ -33,4 +33,4 @@
"tap_google_analytics": ["tap_google_analytics/ga_cubes.json"]
},
include_package_data=True,
)
)