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

Add support for Synapse link connection #17845

Merged
merged 9 commits into from
May 13, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix build error
houjiaqi committed May 10, 2022
commit 62640c0b02e7ee5749db29bf8680b82f9f302985
1 change: 1 addition & 0 deletions src/Accounts/Accounts/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -20,6 +20,7 @@

## Upcoming Release
* Upgraded System.Reflection.DispatchProxy on Windows PowerShell [#17856]
* Updated Azure.Core to 1.24.0

## Version 2.7.6
* Upgraded Microsoft.Rest.ClientRuntime to 2.3.24
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ public static class CustomAssemblyResolver
private static IDictionary<string, Version> NetFxPreloadAssemblies =
new Dictionary<string, Version>(StringComparer.InvariantCultureIgnoreCase)
{
{"Azure.Core", new Version("1.22.0.0")},
{"Azure.Core", new Version("1.24.0.0")},
{"Microsoft.Bcl.AsyncInterfaces", new Version("1.1.1.0")},
{"Microsoft.Identity.Client", new Version("4.30.1.0") },
{"Microsoft.Identity.Client.Extensions.Msal", new Version("2.18.4.0") },
6 changes: 1 addition & 5 deletions src/Synapse/Synapse/Az.Synapse.psd1
Original file line number Diff line number Diff line change
@@ -237,11 +237,7 @@ CmdletsToExport = 'Get-AzSynapseSparkJob', 'Stop-AzSynapseSparkJob',
'Start-AzSynapseLinkConnection',
'Stop-AzSynapseLinkConnection',
'Remove-AzSynapseLinkConnection',
'Get-AzSynapseLinkConnectionDetailedStatus',
'Set-AzSynapseLinkConnectionLinkTables',
'Get-AzSynapseLinkConnectionLinkTables',
'Get-AzSynapseLinkConnectionLinkTablesStatus',
'Update-AzSynapseLinkConnectionLandingZoneCredential'
'Get-AzSynapseLinkConnectionDetailedStatus'

# Variables to export from this module
# VariablesToExport = @()
1 change: 0 additions & 1 deletion src/Synapse/Synapse/Models/SynapseConstants.cs
Original file line number Diff line number Diff line change
@@ -207,7 +207,6 @@ public static class SynapseConstants

public const string ActiveDirectoryOnlyAuthentication = nameof(ActiveDirectoryOnlyAuthentication);


public const string LinkConnectionLinkTable = nameof(LinkConnectionLinkTable);

public const string LinkConnectionLinkTableStatus = nameof(LinkConnectionLinkTableStatus);
Binary file modified src/lib/NetCorePreloadAssemblies/Azure.Core.dll
Binary file not shown.
Binary file modified src/lib/NetFxPreloadAssemblies/Azure.Core.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion tools/Common.Netcore.Dependencies.targets
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@
<PackageReference Include="Microsoft.Azure.PowerShell.Common.Share" Version="1.3.57-preview"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Core" Version="1.22.0"/>
<PackageReference Include="Azure.Core" Version="1.24.0"/>
</ItemGroup>
<ItemGroup Condition="'$(IsTestProject)' != 'true'">
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0">
Binary file not shown.