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

Update fields in destination-connectors specifications: mssql, mssql-strict-encrypt #9158

Merged
merged 7 commits into from
Jan 4, 2022
Merged
Show file tree
Hide file tree
Changes from 3 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 @@ -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
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
1 change: 1 addition & 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 Down