Skip to content

Commit

Permalink
fix(snowflake): pin oscrypto to solve ongoing issue with OpenSSL 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
davinov committed Oct 20, 2023
1 parent a83afa8 commit a89c175
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 18 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@

## Unreleased

## Fixed

- Snowflake connector: pin oscrypto version to avoid `oscrypto.errors.LibraryNotFoundError: Error detecting the version of libcrypto` (see https://github.com/wbond/oscrypto/issues/75)

### [4.9.2] 2023-10-04

## Fixed

- Google Big Query: get project_id from connector config whatever auth mode (JWT/GoogleCreds).
- Snowflake connector: pin oscrypto version to avoid `oscrypto.errors.LibraryNotFoundError: Error detecting the version of libcrypto` (see https://github.com/wbond/oscrypto/issues/75)

### [4.9.1] 2023-09-22

Expand Down
42 changes: 25 additions & 17 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ simplejson = {version = "^3.17.6", optional = true}
pyhdb = {version = ">=0.3.4,<1.0", optional = true}
zeep = {version = "^4.1.0", optional = true}
snowflake-connector-python = {version = ">=2.7.12,<4.0.0", optional = true}
# Pinned until https://github.com/wbond/oscrypto/issues/75 is released
oscrypto = {git = "https://github.com/wbond/oscrypto.git", rev = "1547f535001ba568b239b8797465536759c742a3", optional = true}
pyarrow = {version = "<14", optional = true}
toucan-client = {version = "^1.0.1", optional = true}
peakina = {version = ">=0.11,<0.13", optional = true}
Expand Down Expand Up @@ -128,7 +130,7 @@ postgres = ["psycopg2"]
Redshift = ["redshift_connector", "lxml"]
sap_hana = ["pyhdb"]
soap = ["zeep", "lxml"]
snowflake = ["snowflake-connector-python", "PyJWT", "pyarrow"]
snowflake = ["snowflake-connector-python", "PyJWT", "pyarrow", "oscrypto"]
toucan_toco = ["toucan_client"]

# All
Expand Down

0 comments on commit a89c175

Please sign in to comment.