Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
4 changes: 4 additions & 0 deletions src/serviceconnector-passwordless/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Release History
===============
3.3.2
++++++
* Add documentation explaining manual steps required for connecting to SQL database in Fabric.

3.3.1
++++++
* Change Fabric SQL token endpoint for Cloud Shell compatibility.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1043,6 +1043,9 @@ def get_create_query(self):
grant_q2 = "ALTER ROLE db_datawriter ADD MEMBER \"{}\"".format(self.aad_username)
grant_q3 = "ALTER ROLE db_ddladmin ADD MEMBER \"{}\"".format(self.aad_username)

logger.warning("Manual steps required to complete this service connection. Please refer to %s for more details.", "https://learn.microsoft.com/en-us/azure/service-connector/how-to-integrate-fabric-sql#share-access-to-sql-database-in-fabric")
input("Press ENTER to continue...")

return [delete_q, role_q, grant_q1, grant_q2, grant_q3]


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
# --------------------------------------------------------------------------------------------


VERSION = '3.3.1'
VERSION = '3.3.2'
NAME = 'serviceconnector-passwordless'
2 changes: 1 addition & 1 deletion src/serviceconnector-passwordless/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
logger.warn("Wheel is not available, disabling bdist_wheel hook")


VERSION = '3.3.1'
VERSION = '3.3.2'

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down
Loading