Skip to content

Commit d149eda

Browse files
committed
revert Jackson BOM and lock at 2.19.2 due to OpenAI lib
1 parent 1e9bd3f commit d149eda

2 files changed

Lines changed: 14 additions & 11 deletions

File tree

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>org.junit</groupId>
5151
<artifactId>junit-bom</artifactId>
52-
<version>5.13.1</version>
52+
<version>5.13.4</version>
5353
<type>pom</type>
5454
<scope>import</scope>
5555
</dependency>
@@ -61,7 +61,7 @@
6161
<dependency>
6262
<groupId>software.amazon.awscdk</groupId>
6363
<artifactId>aws-cdk-lib</artifactId>
64-
<version>2.202.0</version>
64+
<version>2.214.0</version>
6565
</dependency>
6666

6767
<!-- Respective AWS Construct Libraries -->
@@ -75,7 +75,7 @@
7575
<dependency>
7676
<groupId>org.projectlombok</groupId>
7777
<artifactId>lombok</artifactId>
78-
<version>1.18.38</version>
78+
<version>1.18.42</version>
7979
<scope>provided</scope>
8080
</dependency>
8181

@@ -92,7 +92,7 @@
9292
<dependency>
9393
<groupId>org.assertj</groupId>
9494
<artifactId>assertj-core</artifactId>
95-
<version>3.27.3</version>
95+
<version>3.27.4</version>
9696
<scope>test</scope>
9797
</dependency>
9898
</dependencies>

twilio/pom.xml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,23 +37,26 @@
3737
<dependency>
3838
<groupId>com.fasterxml.jackson</groupId>
3939
<artifactId>jackson-bom</artifactId>
40-
<version>2.19.1</version>
40+
<!-- Pinned at 2.19.2 because OpenAI client 0.18.2 still references
41+
PropertyNamingStrategy.SNAKE_CASE (removed in 2.20.0).
42+
TODO: update once legacy OpenAI lib is retired. -->
43+
<version>2.19.2</version>
4144
<type>pom</type>
4245
<scope>import</scope>
4346
</dependency>
4447

4548
<dependency>
4649
<groupId>org.apache.logging.log4j</groupId>
4750
<artifactId>log4j-bom</artifactId>
48-
<version>2.25.0</version>
51+
<version>2.25.2</version>
4952
<type>pom</type>
5053
<scope>import</scope>
5154
</dependency>
5255

5356
<dependency>
5457
<groupId>org.junit</groupId>
5558
<artifactId>junit-bom</artifactId>
56-
<version>5.13.1</version>
59+
<version>5.13.4</version>
5760
<type>pom</type>
5861
<scope>import</scope>
5962
</dependency>
@@ -67,7 +70,7 @@
6770
<dependency>
6871
<groupId>software.amazon.lambda</groupId>
6972
<artifactId>powertools-cloudformation</artifactId>
70-
<version>2.1.1</version>
73+
<version>2.4.0</version>
7174
<exclusions>
7275
<exclusion>
7376
<groupId>com.fasterxml.jackson.core</groupId>
@@ -121,7 +124,7 @@
121124
<dependency>
122125
<groupId>org.projectlombok</groupId>
123126
<artifactId>lombok</artifactId>
124-
<version>1.18.38</version>
127+
<version>1.18.42</version>
125128
<scope>provided</scope>
126129
</dependency>
127130

@@ -138,7 +141,7 @@
138141
<dependency>
139142
<groupId>org.assertj</groupId>
140143
<artifactId>assertj-core</artifactId>
141-
<version>3.27.3</version>
144+
<version>3.27.4</version>
142145
<scope>test</scope>
143146
</dependency>
144147
<dependency>
@@ -156,7 +159,7 @@
156159
<plugin>
157160
<groupId>org.apache.maven.plugins</groupId>
158161
<artifactId>maven-shade-plugin</artifactId>
159-
<version>3.6.0</version>
162+
<version>3.6.1</version>
160163
<configuration>
161164
<createDependencyReducedPom>false</createDependencyReducedPom>
162165
<finalName>twilio</finalName>

0 commit comments

Comments
 (0)