Skip to content

Commit

Permalink
Update fields in destination-connectors specifications: mssql, mssql-…
Browse files Browse the repository at this point in the history
…strict-encrypt (#9158)

* Files title/description update for issue # 8950

* Version update for issue # 8950

* Changelogs update for PR #9158

* update destination_specs.yaml with new version

* update version for destination-mssql-strict-encrypt

* fix destination-mssql-strict-encrypt integration tests

Co-authored-by: mkhokh <mariia.khokh@globallogic.com>
  • Loading branch information
igrankova and mkhokh-33 authored Jan 4, 2022
1 parent c3c38a1 commit 9de7443
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 32 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"destinationDefinitionId": "d4353156-9217-4cad-8dd7-c108fd4f74cf",
"name": "MS SQL Server",
"dockerRepository": "airbyte/destination-mssql",
"dockerImageTag": "0.1.12",
"dockerImageTag": "0.1.13",
"documentationUrl": "https://docs.airbyte.io/integrations/destinations/mssql",
"icon": "mssql.svg"
}
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
- name: MS SQL Server
destinationDefinitionId: d4353156-9217-4cad-8dd7-c108fd4f74cf
dockerRepository: airbyte/destination-mssql
dockerImageTag: 0.1.12
dockerImageTag: 0.1.13
documentationUrl: https://docs.airbyte.io/integrations/destinations/mssql
icon: mssql.svg
- name: MeiliSearch
Expand Down
23 changes: 12 additions & 11 deletions airbyte-config/init/src/main/resources/seed/destination_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2015,7 +2015,7 @@
supportsDBT: false
supported_destination_sync_modes:
- "append"
- dockerImage: "airbyte/destination-mssql:0.1.12"
- dockerImage: "airbyte/destination-mssql:0.1.13"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/destinations/mssql"
connectionSpecification:
Expand All @@ -2032,12 +2032,12 @@
properties:
host:
title: "Host"
description: "Hostname of the database."
description: "The host name of the MSSQL database."
type: "string"
order: 0
port:
title: "Port"
description: "Port of the database."
description: "The port of the MSSQL database."
type: "integer"
minimum: 0
maximum: 65536
Expand All @@ -2047,7 +2047,7 @@
order: 1
database:
title: "DB Name"
description: "Name of the database."
description: "The name of the MSSQL database."
type: "string"
order: 2
schema:
Expand All @@ -2062,24 +2062,25 @@
order: 3
username:
title: "User"
description: "Username to use to access the database."
description: "The username which is used to access the database."
type: "string"
order: 4
password:
title: "Password"
description: "Password associated with the username."
description: "The password associated with this username."
type: "string"
airbyte_secret: true
order: 5
ssl_method:
title: "SSL Method"
type: "object"
description: "Encryption method to use when communicating with the database"
description: "The encryption method which is used to communicate with the\
\ database."
order: 6
oneOf:
- title: "Unencrypted"
additionalProperties: false
description: "Data transfer will not be encrypted."
description: "The data transfer will not be encrypted."
required:
- "ssl_method"
type: "object"
Expand All @@ -2091,8 +2092,8 @@
default: "unencrypted"
- title: "Encrypted (trust server certificate)"
additionalProperties: false
description: "Use the cert provided by the server without verification.\
\ (For testing purposes only!)"
description: "Use the certificate provided by the server without verification.\
\ (For testing purposes only!)"
required:
- "ssl_method"
type: "object"
Expand All @@ -2104,7 +2105,7 @@
default: "encrypted_trust_server_certificate"
- title: "Encrypted (verify certificate)"
additionalProperties: false
description: "Verify and use the cert provided by the server."
description: "Verify and use the certificate provided by the server."
required:
- "ssl_method"
- "trustStoreName"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ ENV APPLICATION destination-mssql-strict-encrypt

COPY --from=build /airbyte /airbyte

LABEL io.airbyte.version=0.1.2
LABEL io.airbyte.version=0.1.3
LABEL io.airbyte.name=airbyte/destination-mssql-strict-encrypt
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
"properties": {
"host": {
"title": "Host",
"description": "Hostname of the database.",
"description": "The host name of the MSSQL database.",
"type": "string",
"order": 0
},
"port": {
"title": "Port",
"description": "Port of the database.",
"description": "The port of the MSSQL database.",
"type": "integer",
"minimum": 0,
"maximum": 65536,
Expand All @@ -29,7 +29,7 @@
},
"database": {
"title": "DB Name",
"description": "Name of the database.",
"description": "The name of the MSSQL database.",
"type": "string",
"order": 2
},
Expand All @@ -43,27 +43,27 @@
},
"username": {
"title": "User",
"description": "Username to use to access the database.",
"description": "The username which is used to access the database.",
"type": "string",
"order": 4
},
"password": {
"title": "Password",
"description": "Password associated with the username.",
"description": "The password associated with this username.",
"type": "string",
"airbyte_secret": true,
"order": 5
},
"ssl_method": {
"title": "SSL Method",
"type": "object",
"description": "Encryption method to use when communicating with the database",
"description": "The encryption method which is used to communicate with the database.",
"order": 6,
"oneOf": [
{
"title": "Encrypted (trust server certificate)",
"additionalProperties": false,
"description": "Use the cert provided by the server without verification. (For testing purposes only!)",
"description": "Use the certificate provided by the server without verification. (For testing purposes only!)",
"required": ["ssl_method"],
"type": "object",
"properties": {
Expand All @@ -77,7 +77,7 @@
{
"title": "Encrypted (verify certificate)",
"additionalProperties": false,
"description": "Verify and use the cert provided by the server.",
"description": "Verify and use the certificate provided by the server.",
"required": ["ssl_method", "trustStoreName", "trustStorePassword"],
"type": "object",
"properties": {
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.12
LABEL io.airbyte.version=0.1.13
LABEL io.airbyte.name=airbyte/destination-mssql
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
"properties": {
"host": {
"title": "Host",
"description": "Hostname of the database.",
"description": "The host name of the MSSQL database.",
"type": "string",
"order": 0
},
"port": {
"title": "Port",
"description": "Port of the database.",
"description": "The port of the MSSQL database.",
"type": "integer",
"minimum": 0,
"maximum": 65536,
Expand All @@ -29,7 +29,7 @@
},
"database": {
"title": "DB Name",
"description": "Name of the database.",
"description": "The name of the MSSQL database.",
"type": "string",
"order": 2
},
Expand All @@ -43,27 +43,27 @@
},
"username": {
"title": "User",
"description": "Username to use to access the database.",
"description": "The username which is used to access the database.",
"type": "string",
"order": 4
},
"password": {
"title": "Password",
"description": "Password associated with the username.",
"description": "The password associated with this username.",
"type": "string",
"airbyte_secret": true,
"order": 5
},
"ssl_method": {
"title": "SSL Method",
"type": "object",
"description": "Encryption method to use when communicating with the database",
"description": "The encryption method which is used to communicate with the database.",
"order": 6,
"oneOf": [
{
"title": "Unencrypted",
"additionalProperties": false,
"description": "Data transfer will not be encrypted.",
"description": "The data transfer will not be encrypted.",
"required": ["ssl_method"],
"type": "object",
"properties": {
Expand All @@ -77,7 +77,7 @@
{
"title": "Encrypted (trust server certificate)",
"additionalProperties": false,
"description": "Use the cert provided by the server without verification. (For testing purposes only!)",
"description": "Use the certificate provided by the server without verification. (For testing purposes only!)",
"required": ["ssl_method"],
"type": "object",
"properties": {
Expand All @@ -91,7 +91,7 @@
{
"title": "Encrypted (verify certificate)",
"additionalProperties": false,
"description": "Verify and use the cert provided by the server.",
"description": "Verify and use the certificate provided by the server.",
"required": ["ssl_method", "trustStoreName", "trustStorePassword"],
"type": "object",
"properties": {
Expand Down
2 changes: 2 additions & 0 deletions docs/integrations/destinations/mssql.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ Using this feature requires additional configuration, when creating the source.

| Version | Date | Pull Request | Subject |
|:--------| :--- |:---------------------------------------------------------| :--- |
| 0.1.13 | 2021-12-28 | [\#9158](https://github.com/airbytehq/airbyte/pull/9158) | Update connector fields title/description |
| 0.1.12 | 2021-12-01 | [\#8371](https://github.com/airbytehq/airbyte/pull/8371) | Fixed incorrect handling "\n" in ssh key |
| 0.1.11 | 2021-11-08 | [#7719](https://github.com/airbytehq/airbyte/pull/7719) | Improve handling of wide rows by buffering records based on their byte size rather than their count |
| 0.1.10 | 2021-10-11 | [\#6877](https://github.com/airbytehq/airbyte/pull/6877) | Add `normalization` capability, add `append+deduplication` sync mode |
Expand All @@ -135,5 +136,6 @@ Using this feature requires additional configuration, when creating the source.
### Changelog (Strict Encrypt)
| Version | Date | Pull Request | Subject |
|:--------| :--- | :--- | :--- |
| 0.1.3 | 2021-12-28 | [\#9158](https://github.com/airbytehq/airbyte/pull/9158) | Update connector fields title/description |
| 0.1.2 | 2021-12-01 | [8371](https://github.com/airbytehq/airbyte/pull/8371) | Fixed incorrect handling "\n" in ssh key |
| 0.1.1 | 2021-11-08 | [#7719](https://github.com/airbytehq/airbyte/pull/7719) | Improve handling of wide rows by buffering records based on their byte size rather than their count |

0 comments on commit 9de7443

Please sign in to comment.