Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛Destination-mssql: fixed integration tests #13304

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
- name: MS SQL Server
destinationDefinitionId: d4353156-9217-4cad-8dd7-c108fd4f74cf
dockerRepository: airbyte/destination-mssql
dockerImageTag: 0.1.17
dockerImageTag: 0.1.18
documentationUrl: https://docs.airbyte.io/integrations/destinations/mssql
icon: mssql.svg
releaseStage: alpha
Expand Down
16 changes: 13 additions & 3 deletions airbyte-config/init/src/main/resources/seed/destination_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2417,7 +2417,7 @@
supportsDBT: false
supported_destination_sync_modes:
- "append"
- dockerImage: "airbyte/destination-mssql:0.1.17"
- dockerImage: "airbyte/destination-mssql:0.1.18"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/destinations/mssql"
connectionSpecification:
Expand Down Expand Up @@ -2473,12 +2473,19 @@
type: "string"
airbyte_secret: true
order: 5
jdbc_url_params:
title: "JDBC URL Params"
description: "Additional properties to pass to the JDBC URL string when\
\ connecting to the database formatted as 'key=value' pairs separated\
\ by the symbol '&'. (example: key1=value1&key2=value2&key3=value3)."
type: "string"
order: 6
ssl_method:
title: "SSL Method"
type: "object"
description: "The encryption method which is used to communicate with the\
\ database."
order: 6
order: 7
oneOf:
- title: "Unencrypted"
additionalProperties: false
Expand All @@ -2489,6 +2496,7 @@
properties:
ssl_method:
type: "string"
const: "unencrypted"
enum:
- "unencrypted"
default: "unencrypted"
Expand All @@ -2502,6 +2510,7 @@
properties:
ssl_method:
type: "string"
const: "encrypted_trust_server_certificate"
enum:
- "encrypted_trust_server_certificate"
default: "encrypted_trust_server_certificate"
Expand All @@ -2516,6 +2525,7 @@
properties:
ssl_method:
type: "string"
const: "encrypted_verify_certificate"
enum:
- "encrypted_verify_certificate"
default: "encrypted_verify_certificate"
Expand All @@ -2524,7 +2534,7 @@
type: "string"
description: "Specifies the host name of the server. The value of\
\ this property must match the subject property of the certificate."
order: 7
order: 8
tunnel_method:
type: "object"
title: "SSH Tunnel Method"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ ENV APPLICATION destination-mssql

COPY --from=build /airbyte /airbyte

LABEL io.airbyte.version=0.1.17
LABEL io.airbyte.version=0.1.18
LABEL io.airbyte.name=airbyte/destination-mssql