From 13936df60df7cc2a5b15ee7746d9f1632c5a6def Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Jan 2025 12:50:02 +0000 Subject: [PATCH] feat(deps): Bump singer-sdk from 0.43.1 to 0.44.0 Bumps [singer-sdk](https://github.com/meltano/sdk) from 0.43.1 to 0.44.0. - [Release notes](https://github.com/meltano/sdk/releases) - [Changelog](https://github.com/meltano/sdk/blob/main/CHANGELOG.md) - [Commits](https://github.com/meltano/sdk/compare/v0.43.1...v0.44.0) --- updated-dependencies: - dependency-name: singer-sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- poetry.lock | 32 ++++++++++++++++++++++++++------ pyproject.toml | 4 ++-- 2 files changed, 28 insertions(+), 8 deletions(-) diff --git a/poetry.lock b/poetry.lock index 5f61c88..adf7b00 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.5 and should not be changed by hand. [[package]] name = "appdirs" @@ -975,13 +975,13 @@ files = [ [[package]] name = "singer-sdk" -version = "0.43.1" +version = "0.44.0" description = "A framework for building Singer taps" optional = false python-versions = ">=3.9" files = [ - {file = "singer_sdk-0.43.1-py3-none-any.whl", hash = "sha256:bd03da661317907b26db6806f1adb2a365c6183889f981602a405f8f784aa1ba"}, - {file = "singer_sdk-0.43.1.tar.gz", hash = "sha256:4941208e95bde7865943b06677536aee316a755b5b3b7af0a6ef7717454e8645"}, + {file = "singer_sdk-0.44.0-py3-none-any.whl", hash = "sha256:15d896edae6e16c2614e5211f52546a63ea58cd88578e61efc259dfefc032972"}, + {file = "singer_sdk-0.44.0.tar.gz", hash = "sha256:050ab063188a0d6f6989456d0d3d9c52cb6da706950ec6f8d8ad1a60ecae7a1b"}, ] [package.dependencies] @@ -997,7 +997,7 @@ joblib = ">=1.3.0" jsonpath-ng = ">=1.5.3" jsonschema = ">=4.16.0" packaging = ">=23.1" -pytest = {version = ">=7.2.1", optional = true, markers = "extra == \"docs\" or extra == \"testing\""} +pytest = {version = ">=7.2.1", optional = true, markers = "extra == \"testing\""} python-dotenv = ">=0.20" PyYAML = ">=6.0" referencing = ">=0.30.0" @@ -1007,6 +1007,10 @@ simpleeval = ">=0.9.13,<1.0.1 || >1.0.1" simplejson = ">=3.17.6" sqlalchemy = ">=1.4,<3.0" typing-extensions = ">=4.5.0" +urllib3 = [ + {version = "<2", markers = "python_version < \"3.10\""}, + {version = "*", markers = "python_version >= \"3.10\""}, +] [package.extras] docs = ["furo (>=2024.5.6)", "myst-parser (>=3)", "pytest (>=7.2.1)", "sphinx (>=7)", "sphinx-copybutton (>=0.5.2)", "sphinx-inline-tabs (>=2023.4.21)", "sphinx-notfound-page (>=1.0.0)", "sphinx-reredirects (>=0.1.5)"] @@ -1145,6 +1149,22 @@ files = [ {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, ] +[[package]] +name = "urllib3" +version = "1.26.20" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "urllib3-1.26.20-py2.py3-none-any.whl", hash = "sha256:0ed14ccfbf1c30a9072c7ca157e4319b70d65f623e91e7b32fadb2853431016e"}, + {file = "urllib3-1.26.20.tar.gz", hash = "sha256:40c2dc0c681e47eb8f90e7e27bf6ff7df2e677421fd46756da1161c39ca70d32"}, +] + +[package.extras] +brotli = ["brotli (==1.0.9)", "brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] +socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] + [[package]] name = "urllib3" version = "2.2.3" @@ -1184,4 +1204,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = ">=3.9" -content-hash = "cc52eece08dd3604621709929cc759dc7b6a33298d4cf378c3fe540ee3ba4b7c" +content-hash = "1c4c278ab1ca490bd855ece6a4031a970c12fed9fafc77f1b1dbb6b143de18db" diff --git a/pyproject.toml b/pyproject.toml index b99f291..d9e40b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,12 +19,12 @@ license = "Apache-2.0" [tool.poetry.dependencies] python = ">=3.9" requests = "~=2.31" -singer-sdk = "~=0.43.1" +singer-sdk = "~=0.44.0" genson = "~=1.2" [tool.poetry.group.dev.dependencies] pytest = "~=8.0" -singer-sdk = { version = "~=0.43.1", extras = [ +singer-sdk = { version = "~=0.44.0", extras = [ "testing", ] }