Skip to content

Commit 9695212

Browse files
Release source connectors (#14077)
* Release source connectors * Fix issue with database connection in test * Fix failing tests due to authentication * auto-bump connector version * auto-bump connector version * auto-bump connector version Co-authored-by: Octavia Squidington III <[email protected]>
1 parent b84d632 commit 9695212

File tree

10 files changed

+16
-16
lines changed

10 files changed

+16
-16
lines changed

airbyte-config/init/src/main/resources/seed/source_definitions.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@
541541
- name: Microsoft SQL Server (MSSQL)
542542
sourceDefinitionId: b5ea17b1-f170-46dc-bc31-cc744ca984c1
543543
dockerRepository: airbyte/source-mssql
544-
dockerImageTag: 0.4.3
544+
dockerImageTag: 0.4.5
545545
documentationUrl: https://docs.airbyte.io/integrations/sources/mssql
546546
icon: mssql.svg
547547
sourceType: database
@@ -589,7 +589,7 @@
589589
- name: MySQL
590590
sourceDefinitionId: 435bb9a5-7887-4809-aa58-28c27df0d7ad
591591
dockerRepository: airbyte/source-mysql
592-
dockerImageTag: 0.5.13
592+
dockerImageTag: 0.5.15
593593
documentationUrl: https://docs.airbyte.io/integrations/sources/mysql
594594
icon: mysql.svg
595595
sourceType: database
@@ -731,7 +731,7 @@
731731
- name: Postgres
732732
sourceDefinitionId: decd338e-5647-4c0b-adf4-da0e75f5a750
733733
dockerRepository: airbyte/source-postgres
734-
dockerImageTag: 0.4.26
734+
dockerImageTag: 0.4.28
735735
documentationUrl: https://docs.airbyte.io/integrations/sources/postgres
736736
icon: postgresql.svg
737737
sourceType: database

airbyte-config/init/src/main/resources/seed/source_specs.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4888,7 +4888,7 @@
48884888
supportsNormalization: false
48894889
supportsDBT: false
48904890
supported_destination_sync_modes: []
4891-
- dockerImage: "airbyte/source-mssql:0.4.3"
4891+
- dockerImage: "airbyte/source-mssql:0.4.5"
48924892
spec:
48934893
documentationUrl: "https://docs.airbyte.io/integrations/destinations/mssql"
48944894
connectionSpecification:
@@ -5677,7 +5677,7 @@
56775677
supportsNormalization: false
56785678
supportsDBT: false
56795679
supported_destination_sync_modes: []
5680-
- dockerImage: "airbyte/source-mysql:0.5.13"
5680+
- dockerImage: "airbyte/source-mysql:0.5.15"
56815681
spec:
56825682
documentationUrl: "https://docs.airbyte.io/integrations/sources/mysql"
56835683
connectionSpecification:
@@ -6783,7 +6783,7 @@
67836783
supportsNormalization: false
67846784
supportsDBT: false
67856785
supported_destination_sync_modes: []
6786-
- dockerImage: "airbyte/source-postgres:0.4.26"
6786+
- dockerImage: "airbyte/source-postgres:0.4.28"
67876787
spec:
67886788
documentationUrl: "https://docs.airbyte.com/integrations/sources/postgres"
67896789
connectionSpecification:

airbyte-integrations/connectors/source-mssql-strict-encrypt/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ ENV APPLICATION source-mssql-strict-encrypt
1616

1717
COPY --from=build /airbyte /airbyte
1818

19-
LABEL io.airbyte.version=0.4.3
19+
LABEL io.airbyte.version=0.4.5
2020
LABEL io.airbyte.name=airbyte/source-mssql-strict-encrypt

airbyte-integrations/connectors/source-mssql/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ ENV APPLICATION source-mssql
1616

1717
COPY --from=build /airbyte /airbyte
1818

19-
LABEL io.airbyte.version=0.4.3
19+
LABEL io.airbyte.version=0.4.5
2020
LABEL io.airbyte.name=airbyte/source-mssql

airbyte-integrations/connectors/source-mysql-strict-encrypt/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ ENV APPLICATION source-mysql-strict-encrypt
1616

1717
COPY --from=build /airbyte /airbyte
1818

19-
LABEL io.airbyte.version=0.5.10
19+
LABEL io.airbyte.version=0.5.15
2020
LABEL io.airbyte.name=airbyte/source-mysql-strict-encrypt

airbyte-integrations/connectors/source-mysql-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/mysql_strict_encrypt/MySqlStrictEncryptSourceAcceptanceTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ protected void setupEnvironment(final TestDestinationEnv environment) throws Exc
5555

5656
try (final DSLContext dslContext = DSLContextFactory.create(
5757
config.get("username").asText(),
58-
"",
58+
config.get("password").asText(),
5959
DatabaseDriver.MYSQL.getDriverClassName(),
6060
String.format("jdbc:mysql://%s:%s/%s?%s",
6161
config.get("host").asText(),

airbyte-integrations/connectors/source-mysql-strict-encrypt/src/test/java/io/airbyte/integrations/source/mysql_strict_encrypt/MySqlStrictEncryptJdbcSourceAcceptanceTest.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ public void setup() throws Exception {
5959
.put("host", container.getHost())
6060
.put("port", container.getFirstMappedPort())
6161
.put("database", Strings.addRandomSuffix("db", "_", 10))
62-
.put("username", TEST_USER)
63-
.put("password", TEST_PASSWORD)
62+
.put("username", container.getUsername())
63+
.put("password", container.getPassword())
6464
.build());
6565

6666
dslContext = DSLContextFactory.create(
6767
config.get("username").asText(),
68-
"",
68+
config.get("password").asText(),
6969
DatabaseDriver.MYSQL.getDriverClassName(),
7070
String.format("jdbc:mysql://%s:%s?%s",
7171
config.get("host").asText(),

airbyte-integrations/connectors/source-mysql/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ ENV APPLICATION source-mysql
1616

1717
COPY --from=build /airbyte /airbyte
1818

19-
LABEL io.airbyte.version=0.5.13
19+
LABEL io.airbyte.version=0.5.15
2020
LABEL io.airbyte.name=airbyte/source-mysql

airbyte-integrations/connectors/source-postgres-strict-encrypt/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ ENV APPLICATION source-postgres-strict-encrypt
1616

1717
COPY --from=build /airbyte /airbyte
1818

19-
LABEL io.airbyte.version=0.4.26
19+
LABEL io.airbyte.version=0.4.28
2020
LABEL io.airbyte.name=airbyte/source-postgres-strict-encrypt

airbyte-integrations/connectors/source-postgres/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ ENV APPLICATION source-postgres
1616

1717
COPY --from=build /airbyte /airbyte
1818

19-
LABEL io.airbyte.version=0.4.26
19+
LABEL io.airbyte.version=0.4.28
2020
LABEL io.airbyte.name=airbyte/source-postgres

0 commit comments

Comments
 (0)