From 415a3530b919ba6357afe7658814aaf54297ce5f Mon Sep 17 00:00:00 2001 From: Amir Mofakhar Date: Fri, 24 May 2024 10:59:24 +0100 Subject: [PATCH] [AP-1703] bump pymongo and release 1.4.0 (#119) * bump pymongo and release 1.4.0 * not supporting python 3.6 * added code owner * added code owner --- .github/workflows/ci.yaml | 2 +- CHANGELOG.md | 4 ++++ CODEOWNERS | 2 ++ setup.py | 4 ++-- 4 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 CODEOWNERS diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2246de0..cbb4998 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ 3.6, 3.7, 3.8 ] + python-version: [3.7, 3.8 ] steps: - name: Checkout repository diff --git a/CHANGELOG.md b/CHANGELOG.md index 1813792..6982d8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.4.0 + * Bump `pymongo` from `3.12.*` to `4.7.*` + + ## 1.3.0 * Support connection to MongoAtlas using `mongodb+srv` protocol * Pin dnspython to `2.1.*` diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..5860fcd --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,2 @@ +# Catchall +* @transferwise/analytics-platform \ No newline at end of file diff --git a/setup.py b/setup.py index 8a7390f..47d834c 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ long_desc = fh.read() setup(name='pipelinewise-tap-mongodb', - version='1.3.0', + version='1.4.0', description='Singer.io tap for extracting data from MongoDB - Pipelinewise compatible', long_description=long_desc, long_description_content_type='text/markdown', @@ -20,7 +20,7 @@ py_modules=['tap_mongodb'], install_requires=[ 'pipelinewise-singer-python==1.*', - 'pymongo==3.12.*', + 'pymongo==4.7.*', 'tzlocal==2.1.*', 'terminaltables==3.1.*', 'dnspython==2.1.*',