Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only write airbyte messages to duckdb on read #38647

Merged
merged 2 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions airbyte-ci/connectors/live-tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,10 @@ The traffic recorded on the control connector is passed to the target connector

## Changelog

### 0.17.2

Fix duckdb dependency.

### 0.17.1

Bump the connection-retriever version to fix deprecated query.
Expand Down
107 changes: 54 additions & 53 deletions airbyte-ci/connectors/live-tests/poetry.lock

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

4 changes: 2 additions & 2 deletions airbyte-ci/connectors/live-tests/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "live-tests"
version = "0.17.0"
version = "0.17.2"
description = "Contains utilities for testing connectors against live data."
authors = ["Airbyte <contact@airbyte.io>"]
license = "MIT"
Expand All @@ -28,7 +28,7 @@ docker = ">=6,<7"
asyncclick = "^8.1.7.1"
# TODO: when this is open-sourced, don't require connection-retriever
connection-retriever = {git = "git@github.com:airbytehq/airbyte-platform-internal", subdirectory = "tools/connection-retriever"}
duckdb = "^0.10.0"
duckdb = "<=0.10.1" # Pinned due to this issue https://github.com/duckdb/duckdb/issues/11152
pandas = "^2.2.1"
pytest-sugar = "^1.0.0"
asyncer = "^0.0.5"
Expand Down
Loading