Skip to content
This repository was archived by the owner on Dec 4, 2023. It is now read-only.

Commit d776095

Browse files
tracyboehrerTracy Boehrer
andauthored
Updated azure dependencies (#1484)
* Updated azure dependencies * Updated Jackson dependencies * Update POM jackson dependencies Co-authored-by: Tracy Boehrer <trboehre@microsoft.com>
1 parent 0e7f20d commit d776095

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

libraries/bot-azure/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
<dependency>
5858
<groupId>com.microsoft.azure</groupId>
5959
<artifactId>azure-documentdb</artifactId>
60-
<version>2.4.3</version>
60+
<version>2.6.4</version>
6161
</dependency>
6262

6363
<dependency>
@@ -76,7 +76,7 @@
7676
<dependency>
7777
<groupId>com.azure</groupId>
7878
<artifactId>azure-storage-queue</artifactId>
79-
<version>12.11.0</version>
79+
<version>12.14.0</version>
8080
</dependency>
8181

8282
<dependency>
@@ -90,7 +90,7 @@
9090
<dependency>
9191
<groupId>com.azure</groupId>
9292
<artifactId>azure-storage-blob</artifactId>
93-
<version>12.14.1</version>
93+
<version>12.17.1</version>
9494
</dependency>
9595
</dependencies>
9696

libraries/bot-dialogs/src/main/java/com/microsoft/bot/dialogs/ObjectPath.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ public static void removePathValue(Object obj, String path) {
208208
}
209209
} else {
210210
// lastSegment is an index
211-
((ArrayNode) current).set((int) lastSegment, null);
211+
((ArrayNode) current).set((int) lastSegment, (JsonNode) null);
212212
}
213213
}
214214
}

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -281,22 +281,22 @@
281281
<dependency>
282282
<groupId>com.fasterxml.jackson.module</groupId>
283283
<artifactId>jackson-module-parameter-names</artifactId>
284-
<version>2.12.1</version>
284+
<version>2.13.3</version>
285285
</dependency>
286286
<dependency>
287287
<groupId>com.fasterxml.jackson.datatype</groupId>
288288
<artifactId>jackson-datatype-jdk8</artifactId>
289-
<version>2.12.1</version>
289+
<version>2.13.3</version>
290290
</dependency>
291291
<dependency>
292292
<groupId>com.fasterxml.jackson.datatype</groupId>
293293
<artifactId>jackson-datatype-jsr310</artifactId>
294-
<version>2.12.1</version>
294+
<version>2.13.3</version>
295295
</dependency>
296296
<dependency>
297297
<groupId>com.fasterxml.jackson.core</groupId>
298298
<artifactId>jackson-databind</artifactId>
299-
<version>2.12.6.1</version>
299+
<version>2.13.3</version>
300300
</dependency>
301301

302302
<dependency>

0 commit comments

Comments
 (0)