Skip to content

Commit 6e72928

Browse files
committed
updated migrations to the latest CDK version
1 parent 5bb675d commit 6e72928

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

airbyte_cdk/manifest_migrations/migrations/registry.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44

55
manifest_migrations:
6-
- version: 6.45.2
6+
- version: 6.47.1
77
migrations:
88
- name: http_requester_url_base_to_url
99
order: 1

unit_tests/manifest_migrations/conftest.py

+8-8
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.45.2",
200+
"version": "6.47.1",
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.45.2",
497+
"to_version": "6.47.1",
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.45.2",
503+
"to_version": "6.47.1",
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.45.3",
515+
"version": "6.47.1",
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.45.2",
825+
"version": "6.47.1",
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.45.2",
1181+
"to_version": "6.47.1",
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.45.2",
1187+
"to_version": "6.47.1",
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.45.2",
1193+
"to_version": "6.47.1",
11941194
"migration": "HttpRequesterRequestBodyJsonDataToRequestBody",
11951195
"migrated_at": "2025-04-01T00:00:00+00:00",
11961196
},

0 commit comments

Comments
 (0)