Skip to content
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
2 changes: 1 addition & 1 deletion airbyte_cdk/manifest_migrations/migrations/registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#

manifest_migrations:
- version: 6.48.0
- version: 6.48.2
migrations:
- name: http_requester_url_base_to_url
order: 1
Expand Down
16 changes: 8 additions & 8 deletions unit_tests/manifest_migrations/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def manifest_with_url_base_to_migrate_to_url() -> Dict[str, Any]:
@pytest.fixture
def expected_manifest_with_url_base_migrated_to_url() -> Dict[str, Any]:
return {
"version": "6.48.0",
"version": "6.48.2",
"type": "DeclarativeSource",
"check": {"type": "CheckStream", "stream_names": ["A"]},
"definitions": {
Expand Down Expand Up @@ -494,13 +494,13 @@ def expected_manifest_with_url_base_migrated_to_url() -> Dict[str, Any]:
"applied_migrations": [
{
"from_version": "0.0.0",
"to_version": "6.48.0",
"to_version": "6.48.2",
"migration": "HttpRequesterUrlBaseToUrl",
"migrated_at": "2025-04-01T00:00:00+00:00", # time freezed in the test
},
{
"from_version": "0.0.0",
"to_version": "6.48.0",
"to_version": "6.48.2",
"migration": "HttpRequesterPathToUrl",
"migrated_at": "2025-04-01T00:00:00+00:00", # time freezed in the test
},
Expand All @@ -512,7 +512,7 @@ def expected_manifest_with_url_base_migrated_to_url() -> Dict[str, Any]:
@pytest.fixture
def manifest_with_migrated_url_base_and_path_is_joined_to_url() -> Dict[str, Any]:
return {
"version": "6.48.0",
"version": "6.48.2",
"type": "DeclarativeSource",
"check": {"type": "CheckStream", "stream_names": ["A"]},
"definitions": {},
Expand Down Expand Up @@ -822,7 +822,7 @@ def manifest_with_request_body_json_and_data_to_migrate_to_request_body() -> Dic
@pytest.fixture
def expected_manifest_with_migrated_to_request_body() -> Dict[str, Any]:
return {
"version": "6.48.0",
"version": "6.48.2",
"type": "DeclarativeSource",
"check": {"type": "CheckStream", "stream_names": ["A"]},
"definitions": {
Expand Down Expand Up @@ -1178,19 +1178,19 @@ def expected_manifest_with_migrated_to_request_body() -> Dict[str, Any]:
"applied_migrations": [
{
"from_version": "0.0.0",
"to_version": "6.48.0",
"to_version": "6.48.2",
"migration": "HttpRequesterUrlBaseToUrl",
"migrated_at": "2025-04-01T00:00:00+00:00",
},
{
"from_version": "0.0.0",
"to_version": "6.48.0",
"to_version": "6.48.2",
"migration": "HttpRequesterPathToUrl",
"migrated_at": "2025-04-01T00:00:00+00:00",
},
{
"from_version": "0.0.0",
"to_version": "6.48.0",
"to_version": "6.48.2",
"migration": "HttpRequesterRequestBodyJsonDataToRequestBody",
"migrated_at": "2025-04-01T00:00:00+00:00",
},
Expand Down
Loading