Skip to content

Commit

Permalink
packaging: SQL taps now require SQLAlchemy 2.0+
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Dec 4, 2024
1 parent 959fe08 commit e9ccf97
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ fs-s3fs = { version = "~=1.1.1", optional = true }
{%- if cookiecutter.stream_type in ["REST", "GraphQL"] %}
requests = "~=2.32.3"
{%- endif %}
{%- if cookiecutter.stream_type == "SQL" %}
sqlalchemy = "~=2.0.36"
{%- endif %}

[tool.poetry.group.dev.dependencies]
pytest = ">=8"
Expand Down
4 changes: 4 additions & 0 deletions docs/guides/sql-tap.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Building SQL taps

``{warning}
Starting with version `0.43.0`, SQL taps require SQLAlchemy 2.0 or newer.
```
## Mapping SQL types to JSON Schema
Starting with version `0.41.0`, the Meltano Singer SDK provides a clean way to map SQL types to JSON Schema. This is useful when the SQL dialect you are using has custom types that need to be mapped accordingly to JSON Schema.
Expand Down

0 comments on commit e9ccf97

Please sign in to comment.