Skip to content

Commit

Permalink
fix(live-tests): hot-fix UserDict annotation bug (#46905)
Browse files Browse the repository at this point in the history
  • Loading branch information
natikgadzhi authored Oct 15, 2024
1 parent b759f91 commit dfb6d8e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 5 additions & 1 deletion airbyte-ci/connectors/live-tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,13 +179,17 @@ The traffic recorded on the control connector is passed to the target connector

## Changelog

### 0.19.1

Fixed the `UserDict` type annotation not found bug.

### 0.19.0

Delete the `debug`command.

### 0.18.8

Improve error message when failing to retrieve connection.
Improve error message when failing to retrieve connection.
Ask to double-check that a sync ran with the control version on the selected connection.

### 0.18.7
Expand Down
2 changes: 1 addition & 1 deletion 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.19.0"
version = "0.19.1"
description = "Contains utilities for testing connectors against live data."
authors = ["Airbyte <[email protected]>"]
license = "MIT"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.

from __future__ import annotations

import json
import logging
import tempfile
Expand Down

0 comments on commit dfb6d8e

Please sign in to comment.