File tree 5 files changed +5
-2
lines changed
airbyte-cdk/java/airbyte-cdk
db-sources/src/main/kotlin/io/airbyte/cdk/integrations/source/jdbc
airbyte-integrations/connectors/source-mssql
docs/integrations/sources
5 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -174,6 +174,7 @@ corresponds to that version.
174
174
175
175
| Version | Date | Pull Request | Subject |
176
176
| :-----------| :-----------| :------------------------------------------------------------| :---------------------------------------------------------------------------------------------------------------------------------------------------------------|
177
+ | 0.48.8 | 2025-03-11 | [ \# 55709] ( https://github.com/airbytehq/airbyte/pull/55709 ) | Filter unwanted tables in discover to prevent null table issues |
177
178
| 0.48.7 | 2025-01-26 | [ \# 51596] ( https://github.com/airbytehq/airbyte/pull/51596 ) | Make efficient table discovery during read |
178
179
| 0.48.6 | 2025-01-26 | [ \# 51596] ( https://github.com/airbytehq/airbyte/pull/51596 ) | Fix flaky source mssql tests |
179
180
| 0.48.5 | 2025-01-16 | [ \# 51583] ( https://github.com/airbytehq/airbyte/pull/51583 ) | Also save SSL key to /tmp in destination-postgres |
Original file line number Diff line number Diff line change 1
- version =0.48.7
1
+ version =0.48.8
Original file line number Diff line number Diff line change @@ -576,6 +576,7 @@ abstract class AbstractJdbcSource<Datatype>(
576
576
}
577
577
.values
578
578
.map { fields: List <JsonNode > -> jsonFieldListToTableInfo(fields) }
579
+ .filter { ti: TableInfo <CommonField <Datatype >> -> ti.name == tableName }
579
580
.firstOrNull()
580
581
}
581
582
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
5
5
airbyteJavaConnector {
6
6
cdkVersionRequired = ' 0.48.7'
7
7
features = [' db-sources' ]
8
- useLocalCdk = false
8
+ useLocalCdk = true
9
9
}
10
10
11
11
java {
Original file line number Diff line number Diff line change @@ -445,6 +445,7 @@ WHERE actor_definition_id ='b5ea17b1-f170-46dc-bc31-cc744ca984c1' AND (configura
445
445
446
446
| Version | Date | Pull Request | Subject |
447
447
| :--------| :-----------| :------------------------------------------------------------------------------------------------------------------| :------------------------------------------------------------------------------------------------------------------------------------------------|
448
+ | 4.1.24 | 2025-03-11 | [ 55709] ( https://github.com/airbytehq/airbyte/pull/55709 ) | Filter unwanted tables in discover to prevent null table issues |
448
449
| 4.1.23 | 2025-03-06 | [ 55234] ( https://github.com/airbytehq/airbyte/pull/55234 ) | Update base image version for certified DB source connectors |
449
450
| 4.1.22 | 2025-02-10 | [ 53217] ( https://github.com/airbytehq/airbyte/pull/53217 ) | Default to PK when the clustered index is composite. |
450
451
| 4.1.21 | 2025-02-21 | [ 54189] ( https://github.com/airbytehq/airbyte/pull/54189 ) | Print state data only in the debugging log. |
You can’t perform that action at this time.
0 commit comments