From 427a859c638c13d851bc5f7e0b14cfd31e34eb2a Mon Sep 17 00:00:00 2001 From: AkshayMata Date: Tue, 24 Jan 2023 15:13:18 -0800 Subject: [PATCH] Bump sql-migration version to 1.2.2 (#21717) This PR bumps sql-migration version to 1.2.2 in order to release to insider's gallery. This also disables the LoginMigration button as we do not want to release it to public yet. --- extensions/sql-migration/package.json | 2 +- extensions/sql-migration/src/dashboard/dashboardTab.ts | 1 - extensions/sql-migration/src/dashboard/migrationsListTab.ts | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/extensions/sql-migration/package.json b/extensions/sql-migration/package.json index c8f69327fe..4d9bdd80f4 100644 --- a/extensions/sql-migration/package.json +++ b/extensions/sql-migration/package.json @@ -2,7 +2,7 @@ "name": "sql-migration", "displayName": "%displayName%", "description": "%description%", - "version": "1.2.1", + "version": "1.2.2", "publisher": "Microsoft", "preview": false, "license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt", diff --git a/extensions/sql-migration/src/dashboard/dashboardTab.ts b/extensions/sql-migration/src/dashboard/dashboardTab.ts index 0e7443b31d..309261f26b 100644 --- a/extensions/sql-migration/src/dashboard/dashboardTab.ts +++ b/extensions/sql-migration/src/dashboard/dashboardTab.ts @@ -141,7 +141,6 @@ export class DashboardTab extends TabBase { const toolbar = view.modelBuilder.toolbarContainer(); toolbar.addToolbarItems([ { component: this.createNewMigrationButton() }, - { component: this.createNewLoginMigrationButton() }, { component: this.createNewSupportRequestButton() }, { component: this.createFeedbackButton() }, ]); diff --git a/extensions/sql-migration/src/dashboard/migrationsListTab.ts b/extensions/sql-migration/src/dashboard/migrationsListTab.ts index 58b932d809..0ac32b3f24 100644 --- a/extensions/sql-migration/src/dashboard/migrationsListTab.ts +++ b/extensions/sql-migration/src/dashboard/migrationsListTab.ts @@ -144,7 +144,6 @@ export class MigrationsListTab extends TabBase { toolbar.addToolbarItems([ { component: this.createNewMigrationButton(), toolbarSeparatorAfter: true }, - { component: this.createNewLoginMigrationButton(), toolbarSeparatorAfter: true }, { component: this.createNewSupportRequestButton() }, { component: this.createFeedbackButton(), toolbarSeparatorAfter: true }, { component: this._refreshLoader },