From ba499e67bbff4cfcb9c508524ae8733db4172239 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 15:11:14 -0400 Subject: [PATCH] Bump requests from 2.20.0 to 2.31.0 (#56) * Bump requests from 2.20.0 to 2.31.0 Bumps [requests](https://github.com/psf/requests) from 2.20.0 to 2.31.0. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](https://github.com/psf/requests/compare/v2.20.0...v2.31.0) --- updated-dependencies: - dependency-name: requests dependency-type: direct:production ... Signed-off-by: dependabot[bot] * Bump version, update changelog * Bump version, update changelog --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andy Lu --- CHANGELOG.md | 5 ++++- setup.py | 6 +++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 534d789..39ad79a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.11.1 + * Dependabot update [#56](https://github.com/singer-io/tap-freshdesk/pull/56) + ## 0.11.0 * Add `integer` as a valid type for `groups.auto_ticket_assign` [#42](https://github.com/singer-io/tap-freshdesk/pull/42) @@ -11,4 +14,4 @@ * Adds embedded fields to tickets endpoint [#19](https://github.com/singer-io/tap-freshdesk/pull/19) ## 0.8.2 - * Adds `try` logic around sync_tickets function to handle soft-deleted tickets [#18](https://github.com/singer-io/tap-freshdesk/pull/18) + * Adds `try` logic around sync_tickets function to handle soft-deleted tickets [#18](https://github.com/singer-io/tap-freshdesk/pull/18) \ No newline at end of file diff --git a/setup.py b/setup.py index b4f3170..c1ce0e3 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup(name='tap-freshdesk', - version='0.11.0', + version='0.11.1', description='Singer.io tap for extracting data from the Freshdesk API', author='Stitch', url='http://singer.io', @@ -11,7 +11,7 @@ py_modules=['tap_freshdesk'], install_requires=[ 'singer-python==5.2.3', - 'requests==2.20.0', + 'requests==2.31.0', 'backoff==1.3.2' ], entry_points=''' @@ -33,4 +33,4 @@ ], }, include_package_data=True, -) +) \ No newline at end of file