From 7b93ebb29ae2a100dec0ab069a7ce925b932c456 Mon Sep 17 00:00:00 2001 From: Vikas26021999 <79831638+Vikas26021999@users.noreply.github.com> Date: Wed, 16 Aug 2023 20:15:37 +0530 Subject: [PATCH 1/4] fix: enabling mirror mode for databricks rETL (#837) --- src/configurations/sources/databricks/db-config.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/configurations/sources/databricks/db-config.json b/src/configurations/sources/databricks/db-config.json index b5c680739..c49a00f77 100644 --- a/src/configurations/sources/databricks/db-config.json +++ b/src/configurations/sources/databricks/db-config.json @@ -4,7 +4,8 @@ "displayName": "Databricks", "options": { "syncBehaviours": [ - "upsert" + "upsert", + "mirror" ], "isSqlModelSupported": true, "hidden": true From 316a0deffd1ddc1d63231874c35e98df8e248c27 Mon Sep 17 00:00:00 2001 From: Vikas26021999 <79831638+Vikas26021999@users.noreply.github.com> Date: Wed, 16 Aug 2023 20:37:18 +0530 Subject: [PATCH 2/4] fix: catalog for databricks (#840) --- src/configurations/sources/databricks/ui-config.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/configurations/sources/databricks/ui-config.json b/src/configurations/sources/databricks/ui-config.json index 4f8d7c2e0..a19b6902f 100644 --- a/src/configurations/sources/databricks/ui-config.json +++ b/src/configurations/sources/databricks/ui-config.json @@ -50,6 +50,16 @@ "required": true, "addInAccountSummary": false, "secret": true + }, + { + "type": "textInput", + "label": "Catalog", + "value": "catalog", + "regex": "^(.{0,100})$", + "regexErrorMessage": "Invalid Value", + "required": false, + "addInAccountSummary": true, + "trim": true } ] } From 5020408e8e3d2438236f38e1dee565e34196fec1 Mon Sep 17 00:00:00 2001 From: Vikas26021999 <79831638+Vikas26021999@users.noreply.github.com> Date: Wed, 16 Aug 2023 20:37:32 +0530 Subject: [PATCH 3/4] fix: releasing databricks to all customers (#839) --- src/configurations/sources/databricks/db-config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/configurations/sources/databricks/db-config.json b/src/configurations/sources/databricks/db-config.json index c49a00f77..724884e4a 100644 --- a/src/configurations/sources/databricks/db-config.json +++ b/src/configurations/sources/databricks/db-config.json @@ -8,7 +8,7 @@ "mirror" ], "isSqlModelSupported": true, - "hidden": true + "hidden": false }, "type": "warehouse" } From 2266adca8e72c3e8c96612b861f58c0b2fe83801 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Wed, 16 Aug 2023 15:10:36 +0000 Subject: [PATCH 4/4] chore(release): 1.45.2 --- CHANGELOG.md | 9 +++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d12faab7c..6d66da7d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [1.45.2](https://github.com/rudderlabs/rudder-config-schema/compare/v1.45.1...v1.45.2) (2023-08-16) + + +### Bug Fixes + +* catalog for databricks ([#840](https://github.com/rudderlabs/rudder-config-schema/issues/840)) ([316a0de](https://github.com/rudderlabs/rudder-config-schema/commit/316a0deffd1ddc1d63231874c35e98df8e248c27)) +* enabling mirror mode for databricks rETL ([#837](https://github.com/rudderlabs/rudder-config-schema/issues/837)) ([7b93ebb](https://github.com/rudderlabs/rudder-config-schema/commit/7b93ebb29ae2a100dec0ab069a7ce925b932c456)) +* releasing databricks to all customers ([#839](https://github.com/rudderlabs/rudder-config-schema/issues/839)) ([5020408](https://github.com/rudderlabs/rudder-config-schema/commit/5020408e8e3d2438236f38e1dee565e34196fec1)) + ### [1.45.1](https://github.com/rudderlabs/rudder-config-schema/compare/v1.45.0...v1.45.1) (2023-08-16) diff --git a/package-lock.json b/package-lock.json index 73ac526d2..69d25b683 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rudder-config-schema", - "version": "1.45.1", + "version": "1.45.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rudder-config-schema", - "version": "1.45.1", + "version": "1.45.2", "license": "MIT", "dependencies": { "ajv": "^8.12.0", diff --git a/package.json b/package.json index 1035f001d..3c4ad8cd3 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rudder-config-schema", - "version": "1.45.1", + "version": "1.45.2", "description": "", "main": "src/index.ts", "private": true,