You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| 2.0.8 | 2024-10-23 | - Fix library deprecations, fix issues in the Azure Identity library |
85
+
| 2.0.7 | 2024-01-01 | - Update Kusto JAVA SDK |
84
86
| 2.0.3 | 2023-12-12 | - Make JSON mapping field optional. If not provided logstash output JSON attribute names will be used for column resolution |
85
87
| 2.0.2 | 2023-11-28 | - Bugfix for the scenario where the plugin uses managed identity. Instead of providing the managed identity name as empty in the config,it can completely be skipped |
86
88
| 2.0.0 | 2023-09-19 | - Upgrade to the latest Java SDK version [5.0.2](https://github.com/Azure/azure-kusto-java/releases/tag/v5.0.2). Tests have been performed on **__Logstash 8.5__** and up (Does not work with 6.x or 7.x versions of Logstash - For these versions use 1.x.x versions of logstash-output-kusto gem) - Fixes CVE's in common-text & outdated Jackson libraries |
Copy file name to clipboardExpand all lines: build.gradle
+42-36Lines changed: 42 additions & 36 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,13 @@ apply plugin: 'maven-publish'
10
10
// The gemspec contains the gem metadata to build and package the gem. The gradle build serves as a mechanism of getting these "vendor" files required for the gem.
11
11
// The alternative is to use ruby-maven gem to package, but this runs into classpath conflicts/issues with the logstash plugin.
12
12
group "org.logstash.outputs"
13
-
version Files.readAllLines(Paths.get("version")).first()
13
+
14
+
def versionFile =Paths.get("version")
15
+
if (Files.exists(versionFile)) {
16
+
version =Files.readAllLines(versionFile).first()
17
+
} else {
18
+
version ="2.0.7"
19
+
}
14
20
15
21
repositories {
16
22
mavenCentral()
@@ -23,16 +29,16 @@ repositories {
23
29
// update dependencies to bom azure-sdk-bom/1.2.24
0 commit comments