From 0a1b63fe38a7183b683a31837f62ca96c4da9bc4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 15:57:07 -0500 Subject: [PATCH] Bump requests from 2.20.0 to 2.31.0 (#50) * 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 --------- 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(-) mode change 100755 => 100644 setup.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 0248a07..de044d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog ## 0.4.0 +## 0.4.1 + * Dependabot update [#50](https://github.com/singer-io/tap-zendesk-chat/pull/50) + * Code Refactoring [#45](https://github.com/singer-io/tap-zendesk-chat/pull/45) - Improved directory structure @@ -52,4 +55,4 @@ * Lowers the chat interval days retrieved to 14 to account for a 10k search result limit [#8](https://github.com/singer-io/tap-zendesk-chat/pull/8) ## 0.1.12 - * Allow chat interval days to be specified as a string in the config [#10](https://github.com/singer-io/tap-zendesk-chat/pull/10) + * Allow chat interval days to be specified as a string in the config [#10](https://github.com/singer-io/tap-zendesk-chat/pull/10) \ No newline at end of file diff --git a/setup.py b/setup.py old mode 100755 new mode 100644 index 76a55a0..cda1d62 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="tap-zendesk-chat", - version="0.4.0", + version="0.4.1", description="Singer.io tap for extracting data from the Zendesk Chat API", author="Stitch", url="https://singer.io", @@ -11,7 +11,7 @@ py_modules=["tap_zendesk_chat"], install_requires=[ "singer-python==5.12.1", - "requests==2.20.0", + "requests==2.31.0", ], extras_require={"dev": ["pylint", "ipdb", "nose"]}, entry_points=""" @@ -21,4 +21,4 @@ packages=find_packages(exclude=["tests"]), package_data={"schemas": ["tap_zendesk_chat/schemas/*.json"]}, include_package_data=True, -) +) \ No newline at end of file