Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit fbcf1f6

Browse files
author
Corneil du Plessis
authored
1 parent 8c85da3 commit fbcf1f6

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,12 @@
117117
</modules>
118118
<dependencyManagement>
119119
<dependencies>
120+
<!-- CVE-2022-31690 -->
121+
<dependency>
122+
<groupId>org.springframework.security</groupId>
123+
<artifactId>spring-security-oauth2-client</artifactId>
124+
<version>5.7.8</version>
125+
</dependency>
120126
<!-- address CVEs CVE-2022-41854, CVE-2022-38752, CVE-2022-38751, CVE-2022-38750, CVE-2022-38749, CVE-2022-25857 -->
121127
<!-- CVE-2022-1471 remains but is address but using safe constructors -->
122128
<dependency>

src/scripts/scdf-issues-2103

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#!/bin/bash
2+
3+
VALUES='
4+
2.10.3,spring-cloud-dataflow-build
5+
2.10.3,spring-cloud-dataflow-common
6+
2.8.3,spring-cloud-deployer
7+
2.8.3,spring-cloud-deployer-local
8+
2.8.3,spring-cloud-deployer-cloudfoundry
9+
2.8.3,spring-cloud-deployer-kubernetes
10+
1.8.3,spring-cloud-common-security-config
11+
2.9.3,spring-cloud-skipper
12+
3.3.3,spring-cloud-dataflow-ui
13+
2.10.3,spring-cloud-dataflow
14+
'
15+
16+
17+
for VALUE in $VALUES;
18+
do
19+
MILESTONE=$(echo $VALUE | cut -f1 -d,)
20+
REPO=$(echo $VALUE | cut -f2 -d,)
21+
TEMPLATE="{{range .}}spring-cloud/$REPO#{{.number}} {{.title}}{{\"\n\"}}{{end}}"
22+
gh issue list --repo spring-cloud/$REPO --search milestone:$MILESTONE --state all
23+
done;

0 commit comments

Comments
 (0)