Skip to content

Commit a1dd40b

Browse files
author
Baz
authored
fix: (CDK) (Manifest Migration) - correct the migration versions to v6.48.2 (#518)
1 parent b9f4736 commit a1dd40b

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

airbyte_cdk/manifest_migrations/migrations/registry.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44

55
manifest_migrations:
6-
- version: 6.48.0
6+
- version: 6.48.2
77
migrations:
88
- name: http_requester_url_base_to_url
99
order: 1

unit_tests/manifest_migrations/conftest.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def manifest_with_url_base_to_migrate_to_url() -> Dict[str, Any]:
197197
@pytest.fixture
198198
def expected_manifest_with_url_base_migrated_to_url() -> Dict[str, Any]:
199199
return {
200-
"version": "6.48.0",
200+
"version": "6.48.2",
201201
"type": "DeclarativeSource",
202202
"check": {"type": "CheckStream", "stream_names": ["A"]},
203203
"definitions": {
@@ -494,13 +494,13 @@ def expected_manifest_with_url_base_migrated_to_url() -> Dict[str, Any]:
494494
"applied_migrations": [
495495
{
496496
"from_version": "0.0.0",
497-
"to_version": "6.48.0",
497+
"to_version": "6.48.2",
498498
"migration": "HttpRequesterUrlBaseToUrl",
499499
"migrated_at": "2025-04-01T00:00:00+00:00", # time freezed in the test
500500
},
501501
{
502502
"from_version": "0.0.0",
503-
"to_version": "6.48.0",
503+
"to_version": "6.48.2",
504504
"migration": "HttpRequesterPathToUrl",
505505
"migrated_at": "2025-04-01T00:00:00+00:00", # time freezed in the test
506506
},
@@ -512,7 +512,7 @@ def expected_manifest_with_url_base_migrated_to_url() -> Dict[str, Any]:
512512
@pytest.fixture
513513
def manifest_with_migrated_url_base_and_path_is_joined_to_url() -> Dict[str, Any]:
514514
return {
515-
"version": "6.48.0",
515+
"version": "6.48.2",
516516
"type": "DeclarativeSource",
517517
"check": {"type": "CheckStream", "stream_names": ["A"]},
518518
"definitions": {},
@@ -822,7 +822,7 @@ def manifest_with_request_body_json_and_data_to_migrate_to_request_body() -> Dic
822822
@pytest.fixture
823823
def expected_manifest_with_migrated_to_request_body() -> Dict[str, Any]:
824824
return {
825-
"version": "6.48.0",
825+
"version": "6.48.2",
826826
"type": "DeclarativeSource",
827827
"check": {"type": "CheckStream", "stream_names": ["A"]},
828828
"definitions": {
@@ -1178,19 +1178,19 @@ def expected_manifest_with_migrated_to_request_body() -> Dict[str, Any]:
11781178
"applied_migrations": [
11791179
{
11801180
"from_version": "0.0.0",
1181-
"to_version": "6.48.0",
1181+
"to_version": "6.48.2",
11821182
"migration": "HttpRequesterUrlBaseToUrl",
11831183
"migrated_at": "2025-04-01T00:00:00+00:00",
11841184
},
11851185
{
11861186
"from_version": "0.0.0",
1187-
"to_version": "6.48.0",
1187+
"to_version": "6.48.2",
11881188
"migration": "HttpRequesterPathToUrl",
11891189
"migrated_at": "2025-04-01T00:00:00+00:00",
11901190
},
11911191
{
11921192
"from_version": "0.0.0",
1193-
"to_version": "6.48.0",
1193+
"to_version": "6.48.2",
11941194
"migration": "HttpRequesterRequestBodyJsonDataToRequestBody",
11951195
"migrated_at": "2025-04-01T00:00:00+00:00",
11961196
},

0 commit comments

Comments
 (0)