Skip to content

Commit 3076cac

Browse files
Bugfix/fix version conflicts (#61)
* *Downgrade Kusto versions for compat with function bundles * *Fix comments
1 parent 85bbea4 commit 3076cac

9 files changed

Lines changed: 370 additions & 478 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
contents: read
1818
strategy:
1919
matrix:
20-
dotnet-version: ['6.0.x' ]
20+
dotnet-version: ['6.0.x']
2121
steps:
2222
- name: Azure login
2323
uses: azure/login@v2

Directory.Packages.props

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<Project>
22
<ItemGroup>
3-
<PackageVersion Include="BenchmarkDotNet" Version="0.14.0" />
43
<PackageVersion Include="Microsoft.AspNet.Mvc" Version="5.2.10" />
54
<PackageVersion Include="Microsoft.AspNetCore.Http" Version="2.2.2" />
65
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Abstractions" Version="2.2.1" />
@@ -9,8 +8,14 @@
98
<PackageVersion Include="Microsoft.Azure.Functions.Worker.Extensions.Abstractions" Version="1.3.0" />
109
<PackageVersion Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.3.0" />
1110
<PackageVersion Include="Microsoft.Azure.Functions.Worker.Sdk" Version="2.0.1" />
12-
<PackageVersion Include="Microsoft.Azure.Kusto.Data" Version="13.0.2" />
13-
<PackageVersion Include="Microsoft.Azure.Kusto.Ingest" Version="13.0.2" />
11+
<!--
12+
**IMPORTANT**
13+
extension-bundles.public pipelines have to be accounted for the updates on the Kusto package.
14+
Changes to the versions (including transitive ones in package.lock.json) here also should be reflected in
15+
https://github.com/Azure/azure-functions-extension-bundles/tree/main-preview/ExtensionBundle.Tests/TestData
16+
-->
17+
<PackageVersion Include="Microsoft.Azure.Kusto.Data" Version="12.2.8" />
18+
<PackageVersion Include="Microsoft.Azure.Kusto.Ingest" Version="12.2.8" />
1419
<PackageVersion Include="Microsoft.Azure.WebJobs" Version="3.0.41" />
1520
<PackageVersion Include="Microsoft.Azure.WebJobs.Core" Version="3.0.34" />
1621
<PackageVersion Include="Microsoft.Azure.WebJobs.Extensions" Version="4.0.2" />

Worker.Extensions.Kusto/Microsoft.Azure.Functions.Worker.Extensions.Kusto.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<Description>Kusto extensions for .NET isolated Azure Functions</Description>
77
<Product>Kusto Binding Worker (.NET isolated Azure Functions)</Product>
88
<!-- Default Version for dev -->
9-
<Version>1.0.12-Preview</Version>
10-
<SupportedVersion>1.0.12-Preview</SupportedVersion>
9+
<Version>1.0.13-Preview</Version>
10+
<SupportedVersion>1.0.13-Preview</SupportedVersion>
1111
<PackageId>Microsoft.Azure.Functions.Worker.Extensions.Kusto</PackageId>
1212
<PackageTags>Microsoft Azure WebJobs;AzureFunctions Isolated Dotnet;Isolated Kusto Azure;Kusto Worker</PackageTags>
1313
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>

java-library/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.microsoft.azure.functions</groupId>
55
<artifactId>azure-functions-java-library-kusto</artifactId>
6-
<version>1.0.12-Preview</version>
6+
<version>1.0.13-Preview</version>
77
<packaging>jar</packaging>
88
<name>Microsoft Azure Functions Java Kusto Types</name>
99
<description>This package contains all Java annotations to interact with Microsoft Azure Functions runtime for Kusto (ADX) Bindings.</description>

0 commit comments

Comments
 (0)