Skip to content

Commit fe32ef7

Browse files
authored
Fix dependabot issues (#5225)
* Update pom.xml * Update pom.xml * Update pom.xml * Update pom.xml * Update pom.xml * Update pom.xml * Update setup.py * Update requirements_train.txt
1 parent 4110a7b commit fe32ef7

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

apps/model-inference-examples/model-inference-flink/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
</dependency>
3838
<dependency>
3939
<groupId>commons-lang</groupId>
40-
<artifactId>commons-lang</artifactId>
41-
<version>2.6</version>
40+
<artifactId>commons-lang3</artifactId>
41+
<version>3.18.0</version>
4242
</dependency>
4343
<dependency>
4444
<groupId>com.intel.analytics.bigdl</groupId>

apps/model-inference-examples/recommendation-inference/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
<dependencies>
2323
<dependency>
2424
<groupId>commons-lang</groupId>
25-
<artifactId>commons-lang</artifactId>
26-
<version>2.6</version>
25+
<artifactId>commons-lang3</artifactId>
26+
<version>3.18.0</version>
2727
</dependency>
2828
<dependency>
2929
<groupId>org.scala-lang</groupId>

apps/model-inference-examples/text-classification-inference/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
<dependencies>
5050
<dependency>
5151
<groupId>commons-lang</groupId>
52-
<artifactId>commons-lang</artifactId>
53-
<version>2.6</version>
52+
<artifactId>commons-lang3</artifactId>
53+
<version>3.18.0</version>
5454
</dependency>
5555
<dependency>
5656
<groupId>com.intel.analytics.bigdl</groupId>

apps/model-inference-examples/text-classification-training/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
</dependency>
3737
<dependency>
3838
<groupId>commons-lang</groupId>
39-
<artifactId>commons-lang</artifactId>
40-
<version>2.6</version>
39+
<artifactId>commons-lang3</artifactId>
40+
<version>3.18.0</version>
4141
</dependency>
4242
<dependency>
4343
<groupId>com.intel.analytics.bigdl</groupId>

python/nano/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def setup_package():
138138

139139
install_requires = ["intel-openmp; (platform_machine=='x86_64' or platform_machine == 'AMD64')",
140140
"cloudpickle",
141-
"protobuf==3.19.5",
141+
"protobuf==4.25.8",
142142
"py-cpuinfo",
143143
"pyyaml",
144144
"packaging",

python/requirements/friesian/requirements_train.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ hiredis==2.0.0
1212
psutil
1313
prometheus-client==0.11.0
1414
setproctitle
15-
protobuf==3.19.5
15+
protobuf>=4.25.8

scala/orca/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<dependency>
5656
<groupId>org.apache.zookeeper</groupId>
5757
<artifactId>zookeeper</artifactId>
58-
<version>3.9.2</version>
58+
<version>[3.9.3,)</version>
5959
<scope>test</scope>
6060
</dependency>
6161
<dependency>

scala/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@
189189
<bigdl-core-all-scope>compile</bigdl-core-all-scope>
190190
<data-store-url>http://download.tensorflow.org</data-store-url>
191191
<lightgbm.scope>provided</lightgbm.scope>
192-
<grpc.version>1.53.0</grpc.version>
192+
<grpc.version>1.53.1</grpc.version>
193193
<parquet.version>1.12.3</parquet.version>
194194

195195
</properties>

0 commit comments

Comments
 (0)