Skip to content

Commit

Permalink
[AP-1840] bump zenpy from 2.0.0 to 2.0.52 (#1183)
Browse files Browse the repository at this point in the history
* bump zenpy

* bump zenpy
  • Loading branch information
amofakhar authored Sep 13, 2024
1 parent 2f370fa commit 237edaf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.65.3 (2024-09-13)
-------------------
- Bump `zenpy` in `tap-zendesk` from `2.0.0` to `2.0.52`

0.65.2 (2024-09-05)
-------------------
- Pin tap-zendesk to v1.2.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(name='pipelinewise',
python_requires='==3.8.*',
version='0.65.2',
version='0.65.3',
description='PipelineWise',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
Expand Down
2 changes: 1 addition & 1 deletion singer-connectors/tap-zendesk/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
py_modules=['tap_zendesk'],
install_requires=[
'pipelinewise-singer-python==1.*',
'zenpy==2.0.0',
'zenpy==2.0.52',
],
extras_require={
'test': [
Expand Down
2 changes: 1 addition & 1 deletion singer-connectors/tap-zendesk/tap_zendesk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def main():
# OAuth has precedence
creds = oauth_auth(parsed_args) or api_token_auth(parsed_args)
session = get_session(parsed_args.config)
client = Zenpy(session=session, ratelimit=internal_config['rate_limit'], **creds)
client = Zenpy(session=session, proactive_ratelimit=internal_config['rate_limit'], **creds)
client.internal_config = internal_config

add_session_hooks(client.tickets.session)
Expand Down

0 comments on commit 237edaf

Please sign in to comment.